From 785e892d9d8ec81d97bdea83709efdecea68e4e2 Mon Sep 17 00:00:00 2001 From: itn Date: Thu, 5 Oct 2023 17:12:52 +0900 Subject: [PATCH 1/7] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EC=83=81=EC=84=B8=20?= =?UTF-8?q?=ED=8C=9D=EC=97=85=20=EB=AC=B8=EC=9E=90=EC=A2=85=EB=A5=98=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp b/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp index 035e0577..fd248b14 100644 --- a/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp +++ b/src/main/webapp/WEB-INF/jsp/cmm/uss/umt/EgovGnrlUserSelectUpdt.jsp @@ -3858,7 +3858,7 @@ function kakaoATDelayCancel(msgGroupId){ 그림 - + 그림 @@ -4068,7 +4068,7 @@ function kakaoATDelayCancel(msgGroupId){ 그림 - + 그림 @@ -4287,7 +4287,7 @@ function kakaoATDelayCancel(msgGroupId){ 그림 - + 그림 From 474063728b1a1f966dc3304a4546f3ba8e958acf Mon Sep 17 00:00:00 2001 From: itn Date: Fri, 6 Oct 2023 16:16:38 +0900 Subject: [PATCH 2/7] =?UTF-8?q?=EB=AC=B8=EC=9E=90=EC=9E=AC=EC=A0=84?= =?UTF-8?q?=EC=86=A1=20=EA=B0=9C=EB=B0=9C=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../web/MjonMsgCampainDataController.java | 5 + .../msgdata/service/MjonMsgDataService.java | 9 +- .../mjo/msgdata/service/MjonMsgDataVO.java | 65 +++++++++++ .../msgdata/service/impl/MjonMsgDataDAO.java | 12 ++ .../service/impl/MjonMsgDataServiceImpl.java | 13 ++- .../msgdata/web/MjonMsgDataController.java | 82 ++++++++++++++ .../sqlmap/let/msg/MjonMsgData_SQL_mysql.xml | 50 ++++++++ .../jsp/web/msgcampain/MsgDataView.jsp | 107 ++++++++++++++++++ .../WEB-INF/jsp/web/msgdata/MsgDataView.jsp | 105 +++++++++++++++++ .../jsp/web/msgsent/MsgSentAllListAjax.jsp | 15 +++ .../WEB-INF/jsp/web/msgsent/MsgSentView.jsp | 40 ++++++- 11 files changed, 500 insertions(+), 3 deletions(-) diff --git a/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java b/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java index 7eb06978..4445266a 100644 --- a/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java +++ b/src/main/java/itn/let/mjo/msgcampain/web/MjonMsgCampainDataController.java @@ -279,6 +279,11 @@ public class MjonMsgCampainDataController { } model.addAttribute("letterVO", letterVO); + // 문자 재전송 New + model.addAttribute("msgResendAllFlag", searchVO.getMsgResendAllFlag()); + model.addAttribute("msgResendAllGroupId", searchVO.getMsgResendAllGroupId()); + model.addAttribute("msgResendAllAdvertiseYn", searchVO.getMsgResendAllAdvertiseYn()); + return "web/msgcampain/MsgDataView"; } diff --git a/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataService.java b/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataService.java index b57e44a8..f85c0057 100644 --- a/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataService.java +++ b/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataService.java @@ -157,5 +157,12 @@ public interface MjonMsgDataService { public List selectPayUserWithKakaoList(MjonMsgVO mjonMsgVO) throws Exception; - public List selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception; + public List selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception; + + // 문자 그룹정보 => 재전송용 + public MjonMsgDataVO selectMjMsgGroupInfoByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception; + + // 문자 상세정보 => 재전송용 + public List selectMjMsgListByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception; + } diff --git a/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataVO.java b/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataVO.java index 524c8d53..e4cb9175 100644 --- a/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataVO.java +++ b/src/main/java/itn/let/mjo/msgdata/service/MjonMsgDataVO.java @@ -60,6 +60,71 @@ public class MjonMsgDataVO extends UserDefaultVO{ private String userIp; //사용자 아이피 정보 private String refundYn; //문자전송 실패시 환불처리 완료 여부 + + private String msgGroupId; + private String filePath1; //그림이미지1 경로 + private String filePath2; //그림이미지2 경로 + private String filePath3; //그림이미지3 경로 + private String callFrom; + private String callTo; + private String msgResendAllFlag; + private String msgResendAllGroupId; + private String msgResendAllAdvertiseYn; + + public String getMsgGroupId() { + return msgGroupId; + } + public void setMsgGroupId(String msgGroupId) { + this.msgGroupId = msgGroupId; + } + public String getFilePath1() { + return filePath1; + } + public void setFilePath1(String filePath1) { + this.filePath1 = filePath1; + } + public String getFilePath2() { + return filePath2; + } + public void setFilePath2(String filePath2) { + this.filePath2 = filePath2; + } + public String getFilePath3() { + return filePath3; + } + public void setFilePath3(String filePath3) { + this.filePath3 = filePath3; + } + public String getCallFrom() { + return callFrom; + } + public void setCallFrom(String callFrom) { + this.callFrom = callFrom; + } + public String getCallTo() { + return callTo; + } + public void setCallTo(String callTo) { + this.callTo = callTo; + } + public String getMsgResendAllFlag() { + return msgResendAllFlag; + } + public void setMsgResendAllFlag(String msgResendAllFlag) { + this.msgResendAllFlag = msgResendAllFlag; + } + public String getMsgResendAllGroupId() { + return msgResendAllGroupId; + } + public void setMsgResendAllGroupId(String msgResendAllGroupId) { + this.msgResendAllGroupId = msgResendAllGroupId; + } + public String getMsgResendAllAdvertiseYn() { + return msgResendAllAdvertiseYn; + } + public void setMsgResendAllAdvertiseYn(String msgResendAllAdvertiseYn) { + this.msgResendAllAdvertiseYn = msgResendAllAdvertiseYn; + } public String getCodeId() { return codeId; diff --git a/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataDAO.java b/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataDAO.java index e40d7874..e7291b58 100644 --- a/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataDAO.java +++ b/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataDAO.java @@ -329,4 +329,16 @@ public class MjonMsgDataDAO extends EgovAbstractDAO { public List selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception{ return (List) list("mjonMsgDAO.selectPayUserWithKakaoSumList",mjonMsgVO); } + + // 문자 그룹정보 => 재전송용 + public MjonMsgDataVO selectMjMsgGroupInfoByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{ + return (MjonMsgDataVO) select("MjonMsgDataDAO.selectMjMsgGroupInfoByResend", mjonMsgDataVO); + } + + // 문자 상세정보 => 재전송용 + @SuppressWarnings("unchecked") + public List selectMjMsgListByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{ + return (List) list("MjonMsgDataDAO.selectMjMsgListByResend", mjonMsgDataVO); + } + } diff --git a/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.java b/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.java index a25c3e86..c63824e3 100644 --- a/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.java +++ b/src/main/java/itn/let/mjo/msgdata/service/impl/MjonMsgDataServiceImpl.java @@ -2279,5 +2279,16 @@ public class MjonMsgDataServiceImpl extends EgovAbstractServiceImpl implements M @Override public List selectPayUserWithKakaoSumList(MjonMsgVO mjonMsgVO) throws Exception { return mjonMsgDataDAO.selectPayUserWithKakaoSumList(mjonMsgVO); - } + } + + // 문자 그룹정보 => 재전송용 + public MjonMsgDataVO selectMjMsgGroupInfoByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{ + return mjonMsgDataDAO.selectMjMsgGroupInfoByResend(mjonMsgDataVO); + } + + // 문자 상세정보 => 재전송용 + public List selectMjMsgListByResend(MjonMsgDataVO mjonMsgDataVO) throws Exception{ + return mjonMsgDataDAO.selectMjMsgListByResend(mjonMsgDataVO); + } + } diff --git a/src/main/java/itn/let/mjo/msgdata/web/MjonMsgDataController.java b/src/main/java/itn/let/mjo/msgdata/web/MjonMsgDataController.java index 0eb3f0a7..7260fd20 100644 --- a/src/main/java/itn/let/mjo/msgdata/web/MjonMsgDataController.java +++ b/src/main/java/itn/let/mjo/msgdata/web/MjonMsgDataController.java @@ -398,6 +398,11 @@ public class MjonMsgDataController { } + // 문자 재전송 New + model.addAttribute("msgResendAllFlag", searchVO.getMsgResendAllFlag()); + model.addAttribute("msgResendAllGroupId", searchVO.getMsgResendAllGroupId()); + model.addAttribute("msgResendAllAdvertiseYn", searchVO.getMsgResendAllAdvertiseYn()); + }catch(Exception ex) { ex.printStackTrace(); @@ -5865,4 +5870,81 @@ public class MjonMsgDataController { return rtnValue; } + @RequestMapping(value= {"/web/mjon/msgdata/selectMjMsgGroupInfoByResendAjax.do"}) + public ModelAndView selectMjMsgGroupInfoByResendAjax( + MjonMsgDataVO mjonMsgDataVO, + HttpServletRequest request, + ModelMap model) throws Exception { + + ModelAndView modelAndView = new ModelAndView(); + modelAndView.setViewName("jsonView"); + + boolean isSuccess = true; + String msg = ""; + + LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; + String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); + + try { + if(userId.equals("")) { + isSuccess = false; + msg = "로그인이 필요합니다."; + } + else { + mjonMsgDataVO.setUserId(userId); + mjonMsgDataVO.setMsgGroupId(mjonMsgDataVO.getMsgResendAllGroupId()); + mjonMsgDataVO = mjonMsgDataService.selectMjMsgGroupInfoByResend(mjonMsgDataVO); + } + } + catch(Exception e) { + isSuccess = false; + msg = e.getMessage(); + } + + modelAndView.addObject("isSuccess", isSuccess); + modelAndView.addObject("msg", msg); + modelAndView.addObject("result", mjonMsgDataVO); + + return modelAndView; + } + + @RequestMapping(value= {"/web/mjon/msgdata/selectMjMsgListByResendAjax.do"}) + public ModelAndView selectMjMsgListByResendAjax( + MjonMsgDataVO mjonMsgDataVO, + HttpServletRequest request, + ModelMap model) throws Exception { + + ModelAndView modelAndView = new ModelAndView(); + modelAndView.setViewName("jsonView"); + + boolean isSuccess = true; + String msg = ""; + List resultList = null; + + LoginVO loginVO = EgovUserDetailsHelper.isAuthenticated()? (LoginVO)EgovUserDetailsHelper.getAuthenticatedUser():null; + String userId = loginVO == null ? "" : EgovStringUtil.isNullToString(loginVO.getId()); + + try { + if(userId.equals("")) { + isSuccess = false; + msg = "로그인이 필요합니다."; + } + else { + mjonMsgDataVO.setUserId(userId); + mjonMsgDataVO.setMsgGroupId(mjonMsgDataVO.getMsgResendAllGroupId()); + resultList = mjonMsgDataService.selectMjMsgListByResend(mjonMsgDataVO); + } + } + catch(Exception e) { + isSuccess = false; + msg = e.getMessage(); + } + + modelAndView.addObject("isSuccess", isSuccess); + modelAndView.addObject("msg", msg); + modelAndView.addObject("resultList", resultList); + + return modelAndView; + } + } diff --git a/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml b/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml index b7e5e5c8..e1cd9f42 100644 --- a/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml +++ b/src/main/resources/egovframework/sqlmap/let/msg/MjonMsgData_SQL_mysql.xml @@ -7248,5 +7248,55 @@ )FN1 ORDER BY msgGroupId DESC + + + + + + diff --git a/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataView.jsp b/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataView.jsp index aae7d989..efd9e061 100644 --- a/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataView.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/msgcampain/MsgDataView.jsp @@ -20,6 +20,10 @@ var tableAddr = null; //주소록 불러오기 팝업 Tabulator 변수 var loginVO = '${loginVO}'; var popCustomScrT=0; // 맞춤제작 요청 JSPark => 2023.02.21 추가 +var msgResendAllFlag = "${msgResendAllFlag}"; +var msgResendAllGroupId = "${msgResendAllGroupId}"; +var msgResendAllAdvertiseYn = "${msgResendAllAdvertiseYn}"; + $(document).ready(function(){ //문자 발송 화면 폼 불러오기 listMsgDataView(); @@ -50,8 +54,102 @@ $(document).ready(function(){ // 맞춤제작 요청 JSPark => 2023.02.21 추가 //맞춤제작 등록 Popup //customPopup(); + }); +//문자 그룹정보 => 재전송용 +function getMjMsgGroupInfoByResend() { + $.ajax({ + type: "POST", + url: "/web/mjon/msgdata/selectMjMsgGroupInfoByResendAjax.do", + data: {"msgResendAllGroupId" : msgResendAllGroupId}, + dataType:'json', + async: false, + success: function (data) { + if(data.isSuccess == true){ + //data.result.callFrom; + //data.result.subject; + //data.result.smsTxt; + //data.result.filePath1; + //data.result.filePath2; + //data.result.filePath3; + + // 발신번호 + var reCallFrom = $.trim(removeDash($("#callFromList option:selected").val())); + if ($.trim(removeDash(data.result.callFrom)) != reCallFrom) { + alert("선택된 발신번호가 이전에 발송한 발신번호가 아닙니다.\n발신번호를 확인해주세요.") + } + + /* + // 제목 + if (data.result.subject != null && data.result.subject != "") { + $('.msg_title').addClass('active'); + $("input:radio[name='title_status']:radio[value='Y']").prop('checked', true); // 선택하기 + $('.textbox').show(); + $("#mmsSubject").val(data.result.subject); + } + + var reSmsTxt = data.result.smsTxt.replaceAll("
", "\n"); //줄발꿈문자 변환하기 + // 문자내용 + if(reSmsTxt != null){ + $("#smsTxtArea").val(reSmsTxt); + fnByteString(reSmsTxt); + } + */ + + } else { + alert("Message : " + msg); + } + }, + error: function (e) { + //alert("저장에 실패하였습니다."); + //console.log("ERROR : ", e); + } + }); +} + +// 문자 상세정보 => 재전송용 +function getMjMsgListByResend() { + $.ajax({ + type: "POST", + url: "/web/mjon/msgdata/selectMjMsgListByResendAjax.do", + data: {"msgResendAllGroupId" : msgResendAllGroupId}, + dataType:'json', + async: true, + success: function (data) { + if(data.isSuccess == true){ + var listCnt = data.resultList.length; + + //수신자 처리 변수 + var callToList = []; //수신자 처리 리스트 + var tableData = []; //수신자 tabulator 처리 변수 + + for(var i = 0; i < listCnt; i++){ // 수신자 리스트 Tabulator에 입력해 주기 + callToList[i] = data.resultList[i].callTo; + tableData.push({phone: removeDash(callToList[i])}); + } + + if(tableData.length > 0){ + tableL.addData(dupliPhoneData(tableData)); // 받는사람 목록에 주소 정보 입력하기 + + totRows = tableL.getRows().length; + updateTotCnt(totRows); //전체 데이터 갯수 구하기 + + //결제 금액 구하기 + totalPriceSum(totRows); + } + + } else { + //alert("Message : " + msg); + } + }, + error: function (e) { + //alert("저장에 실패하였습니다."); + //console.log("ERROR : ", e); + } + }); +} + function listMsgDataView(){ var sendData = $(document.searchForm).serializeArray() ; @@ -77,6 +175,15 @@ function listMsgDataView(){ fnAddrSet(moveAddrFlag, addrIdList); } + // 문자 재전송 New + if (msgResendAllFlag == "Y") { + // 문자 그룹정보 => 재전송용 + getMjMsgGroupInfoByResend(); + + // 문자 상세정보 => 재전송용 + getMjMsgListByResend(); + } + }); diff --git a/src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataView.jsp b/src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataView.jsp index a6c86e43..f2fd2030 100644 --- a/src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataView.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/msgdata/MsgDataView.jsp @@ -20,6 +20,10 @@ var tableAddr = null; //주소록 불러오기 팝업 Tabulator 변수 var loginVO = '${loginVO}'; var popCustomScrT=0; // 맞춤제작 요청 JSPark => 2023.02.21 추가 +var msgResendAllFlag = "${msgResendAllFlag}"; +var msgResendAllGroupId = "${msgResendAllGroupId}"; +var msgResendAllAdvertiseYn = "${msgResendAllAdvertiseYn}"; + $(document).ready(function(){ var tsMoreSampleYn = "${moreSampleYn}"; var tsMainImgFlag = "${mainImgVO.mainImgFlag}"; @@ -79,6 +83,99 @@ $(document).ready(function(){ //customPopup(); }); +// 문자 그룹정보 => 재전송용 +function getMjMsgGroupInfoByResend() { + $.ajax({ + type: "POST", + url: "/web/mjon/msgdata/selectMjMsgGroupInfoByResendAjax.do", + data: {"msgResendAllGroupId" : msgResendAllGroupId}, + dataType:'json', + async: false, + success: function (data) { + if(data.isSuccess == true){ + //data.result.callFrom; + //data.result.subject; + //data.result.smsTxt; + //data.result.filePath1; + //data.result.filePath2; + //data.result.filePath3; + + // 발신번호 + var reCallFrom = $.trim(removeDash($("#callFromList option:selected").val())); + if ($.trim(removeDash(data.result.callFrom)) != reCallFrom) { + alert("선택된 발신번호가 이전에 발송한 발신번호가 아닙니다.\n발신번호를 확인해주세요.") + } + + /* + // 제목 + if (data.result.subject != null && data.result.subject != "") { + $('.msg_title').addClass('active'); + $("input:radio[name='title_status']:radio[value='Y']").prop('checked', true); // 선택하기 + $('.textbox').show(); + $("#mmsSubject").val(data.result.subject); + } + + var reSmsTxt = data.result.smsTxt.replaceAll("
", "\n"); //줄발꿈문자 변환하기 + // 문자내용 + if(reSmsTxt != null){ + $("#smsTxtArea").val(reSmsTxt); + fnByteString(reSmsTxt); + } + */ + + } else { + alert("Message : " + msg); + } + }, + error: function (e) { + //alert("저장에 실패하였습니다."); + //console.log("ERROR : ", e); + } + }); +} + +// 문자 상세정보 => 재전송용 +function getMjMsgListByResend() { + $.ajax({ + type: "POST", + url: "/web/mjon/msgdata/selectMjMsgListByResendAjax.do", + data: {"msgResendAllGroupId" : msgResendAllGroupId}, + dataType:'json', + async: false, + success: function (data) { + if(data.isSuccess == true){ + var listCnt = data.resultList.length; + + //수신자 처리 변수 + var callToList = []; //수신자 처리 리스트 + var tableData = []; //수신자 tabulator 처리 변수 + + for(var i = 0; i < listCnt; i++){ // 수신자 리스트 Tabulator에 입력해 주기 + callToList[i] = data.resultList[i].callTo; + tableData.push({phone: removeDash(callToList[i])}); + } + + if(tableData.length > 0){ + tableL.addData(dupliPhoneData(tableData)); // 받는사람 목록에 주소 정보 입력하기 + + totRows = tableL.getRows().length; + updateTotCnt(totRows); //전체 데이터 갯수 구하기 + + //결제 금액 구하기 + totalPriceSum(totRows); + } + + } else { + //alert("Message : " + msg); + } + }, + error: function (e) { + //alert("저장에 실패하였습니다."); + //console.log("ERROR : ", e); + } + }); +} + function listMsgDataView(){ @@ -268,6 +365,14 @@ function listMsgDataView(){ fnAddrSet(moveAddrFlag, addrIdList); } + // 문자 재전송 New + if (msgResendAllFlag == "Y") { + // 문자 그룹정보 => 재전송용 + getMjMsgGroupInfoByResend(); + + // 문자 상세정보 => 재전송용 + getMjMsgListByResend(); + } }); diff --git a/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentAllListAjax.jsp b/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentAllListAjax.jsp index 64f93ec6..c3536e38 100644 --- a/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentAllListAjax.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentAllListAjax.jsp @@ -136,9 +136,21 @@ $(document).ready(function(){ + + + + + + + + + + + + @@ -194,6 +206,9 @@ $(document).ready(function(){ + <%-- + + --%> diff --git a/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentView.jsp b/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentView.jsp index 0560defa..40743e55 100644 --- a/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentView.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/msgsent/MsgSentView.jsp @@ -704,6 +704,40 @@ function infoPop(pageUrl){ document.popForm.target = "infoPop"; document.popForm.submit(); } + +//문자 재전송 +function fnMjMsgReSendAll(msgGroupId, replaceCnt, electionCnt, advertisementCnt) { + if (replaceCnt > 0) { + alert("치환문자는 재전송 불가합니다."); + } + else { + var title = ""; + if (electionCnt > 0) { + title = "선거문자발송"; + } + else { + title = "문자발송"; + } + + if (confirm(title + " 화면으로 이동합니다.\n문자내용, 받는사람 확인후 발송해주세요.")) { + var form = document.reSendAllForm; + form.msgResendAllFlag.value = "Y"; + form.msgResendAllGroupId.value = msgGroupId; + if (electionCnt > 0) { + form.action="/web/mjon/msgcampain/selectMsgDataView.do"; + } + else { + if (advertisementCnt > 0) { + // 광고문자 + form.msgResendAllAdvertiseYn.value = "Y"; + } + form.action="/web/mjon/msgdata/selectMsgDataView.do"; + } + form.submit(); + } + } +} +
@@ -1046,4 +1080,8 @@ function infoPop(pageUrl){
- \ No newline at end of file +
+ + + +
\ No newline at end of file From 0f558fbbe6a59ee54815aac478ebda3c684701b5 Mon Sep 17 00:00:00 2001 From: subsub Date: Fri, 6 Oct 2023 17:37:49 +0900 Subject: [PATCH 3/7] =?UTF-8?q?2023/10/06=20=EB=A9=94=EC=9D=B8=EB=B9=84?= =?UTF-8?q?=EC=A3=BC=EC=96=BC=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/WEB-INF/jsp/web/main/mainPage.jsp | 8 ++------ .../images/main/f_visual_01_20231006.jpg | Bin 0 -> 309724 bytes .../images/main/f_visual_03_20231006.jpg | Bin 0 -> 424823 bytes 3 files changed, 2 insertions(+), 6 deletions(-) create mode 100644 src/main/webapp/publish/images/main/f_visual_01_20231006.jpg create mode 100644 src/main/webapp/publish/images/main/f_visual_03_20231006.jpg diff --git a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp index 383a8693..b367e052 100644 --- a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp @@ -1237,17 +1237,13 @@ function fn_click_banner_add_stat(bannerMenuCode){
문자온, 카카오 '알림톡' 서비스 오픈! 문자온 알림톡, 대한민국 최저가 선언! 조건없이 무조건 6.9원! 카카오톡 채널아이디 추가를 하지 않은 이용자에게도 카카오톡 메시지 발송이 가능한 서비스! 알림톡 바로가기 알림톡 도착 kakao 문자온에서 알림톡이 도착하였습니다! 기업전용/1,000자 이하 텍스트 & 이미지/문자 대비 65% 저렴
- - -
문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 책과 함께 하는 가을 여행 10월 9일 한글날 아름다운 우리말을 사용하며, 행복한 한글날 보내시길 바랍니다.
+
문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 Halloween 즐겁고 유쾌한 할로윈데이 보내세요 가을엔 독서 같이 책읽으실래요?
문자도 보내고! 현금도 챙기는! 문자온만의 특별한 혜택! 결제금액의 2% 포인트 추가 적립! 포인트 1만점 이상 적립 시 현금페이백
- - -
다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. Fall in Music Autumn Concert 09/15(토) 출연가수 온밴드, 온스파, 온와이스, 온뱅, 문자아이들, 온마이걸 주관: 문자온 코리아 협찬: 문자온추진위원회 후원 : 문자온추진위원회 한글날 한글날 이벤트 3행시 짓기 #한글날 #쿠폰 #이벤트 #좋아요 #댓글 이벤트 기간 2023.10.01 ~ 2023.10.06 당첨상품 음료 기프티콘 쿠폰(200명) 100% 국내산 유기농 우리김치 김장김치 예약판매 최적의 산지에서 수확한 신선한 배추와 엄선된 양념으로 보다 깊은 감칠맛을 선사합니다. 행사기간 2029.10.20~11.7
+
다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 가을은 캠핑의 계절! 낭만캠핑 캠핑하기 좋은 계절, 가을이 돌아왔습니다. 즐거운 캠핑을 떠나고 싶으신가요? 지금 이벤트에 참여하시면, 캠핑 지원금을 드립니다. 지금 바로 참여하세요! 즐거운 캠핑 지원금 문자온에서 확인해보세요! HALLOWEEN 할로윈이벤트 이벤트에 참여하시고 무시무시한 혜택을 받아보세요 이벤트 기간 2099.10.01  10.31 이벤트 대상 10,000원 이상 구매한 모든 고객 event 01 5만원 이상 구매시 5,000원할인쿠폰 증정! event02 이벤트 기간동안 무료배송! event03 어플 설치 시 10% 추가 할인 쿠폰 증정! HALLOWEEN 할로윈 코스튬 할로윈 분위기에 맞게 코스튬을 하고 와요! 할로윈 CAKE 할로윈을 맞이하여 호박케이크를 만들어봐요! 문자온 영어학원 T.031.123.4567
문자는 이제, 문자온! 선택은 역시 문자온! 문자사이트 선택의 5가지 기준 1. 가격, 속도, 성능, 기능, 보안이 보장되는가? 2. 결제, 정산, 계산서 발행 등 업무가 자동화 되어 있고 편리한가? 3. 최신 IT 기술과 트렌드가 반영되어 있는가? 4. 회원가입 및 발신번호 인증이 쉽고 빠르며, 대량문자를 전송하기에 사용이 편리한가? 5. 매일 문자샘플이 업데이트 되고, CS 및 기술응대가 실시간적으로 이루어지는가?
diff --git a/src/main/webapp/publish/images/main/f_visual_01_20231006.jpg b/src/main/webapp/publish/images/main/f_visual_01_20231006.jpg new file mode 100644 index 0000000000000000000000000000000000000000..361c87dda92c8fda5b5b93fc0feadc893c34aaa9 GIT binary patch literal 309724 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 S7Z=Jr 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 literal 0 HcmV?d00001 diff --git a/src/main/webapp/publish/images/main/f_visual_03_20231006.jpg b/src/main/webapp/publish/images/main/f_visual_03_20231006.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a8f50902167ee77f94d7e24dac3d2bbcc6b3da1 GIT binary patch literal 424823 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 z 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 z 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
문자온, 카카오 '알림톡' 서비스 오픈! 문자온 알림톡, 대한민국 최저가 선언! 조건없이 무조건 6.9원! 카카오톡 채널아이디 추가를 하지 않은 이용자에게도 카카오톡 메시지 발송이 가능한 서비스! 알림톡 바로가기 알림톡 도착 kakao 문자온에서 알림톡이 도착하였습니다! 기업전용/1,000자 이하 텍스트 & 이미지/문자 대비 65% 저렴

To3k7$uKYk=2HVx=xA~PnVQC=E2 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 Date: Fri, 6 Oct 2023 17:52:12 +0900 Subject: [PATCH 4/7] =?UTF-8?q?=EB=A9=94=EC=9D=B8=EB=B9=84=EC=A3=BC?= =?UTF-8?q?=EC=96=BC=20=ED=95=9C=EA=B8=80=EB=82=A0=3D>=ED=95=A0=EB=A1=9C?= =?UTF-8?q?=EC=9C=88=20=EC=9E=90=EB=8F=99=EB=B3=80=EA=B2=BD=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../webapp/WEB-INF/jsp/web/main/mainPage.jsp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp index b367e052..c092ce5c 100644 --- a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp @@ -22,7 +22,7 @@ $(document).ready(function() { } // 슬라이드 이미지 변경 - //setMainSlideImgChange(); + setMainSlideImgChange(); //슬라이드 이미지 변경 => Double // 9월 30일 개천절 @@ -295,7 +295,7 @@ function leadingZeros(n, digits) { // 슬라이드 이미지 변경 function setMainSlideImgChange() { var parentsDayShow = false; - var rsvDate = "2023-09-04"; + var rsvDate = "2023-10-10"; var now = new Date(); now = leadingZeros(now.getFullYear(), 4) + '-' + leadingZeros(now.getMonth() + 1, 2) + '-' + leadingZeros(now.getDate(), 2); if (now >= rsvDate) { @@ -304,10 +304,10 @@ function setMainSlideImgChange() { // 석가탄신일 => 현충일 이미지로 변경 if (parentsDayShow == true) { - $("#mainSlideImg_1001").attr("src", "/publish/images/main/f_visual_01_20230904.jpg"); - $("#mainSlideImg_1001").attr("alt", "문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 풍성한 한가위 되세요 풍요로움과 넉넉함이 함께하는 한가위가 되시길 기원합니다. 秋夕 행복하고 안전한 귀성길 되세요! 즐겁고 행복한 한가위 보내시고, 고향길 안전하게 다녀오시길 바랍니다."); - $("#mainSlideImg_1002").attr("src", "/publish/images/main/f_visual_03_20230904.jpg"); - $("#mainSlideImg_1002").attr("alt", "다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 밝은 보름달처럼 행복한 추석 보내세요 秋夕 우리 민족 최대의 큰 명절 추석을 맞이하여 보름달에 걱정근심 맡기고 건강과 안녕을 기원하며 가족들과 함께 뜻 깊고 따뜻한 명절이 되시기를 바랍니다. 고향 가시는 길 안전하고 편안하게 다녀오십시오 항상 웃음 가득한 날이 가득하시길 바랍니다. 감사합니다 - 문자온 일동 - 이벤트 기간 : 09월 25일부터 9월 30일까지 문자온몰에서 추석맞이 쇼핑도 하GO! 소원도 빌GO! 추석맞이 소원빌기 보름달님 제 소원을 들어주세요 제 소원은 바로 가족 모두가 건강하는거예요~~ ID : MUNJAON_USER 한가위를 맞이하여 소원빌기 이벤트를 진행합니다. 공식 SNS를 팔로우 한 후 이벤트 게시물에 자신이 바라는 소원을 댓글로 달아주세요! 추첨을 통해 푸짐한 선물을 드립니다. ▶ 당첨자 발표 : 10월 2일 Korea Thanksgiving Day 추석맞이 배송비무료 EVENT 2099.09.28 ~ 2099.09.30"); + $("#mainSlideImg_1001").attr("src", "/publish/images/main/f_visual_01_20231006.jpg"); + $("#mainSlideImg_1001").attr("alt", "문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 Halloween 즐겁고 유쾌한 할로윈데이 보내세요 가을엔 독서 같이 책읽으실래요?"); + $("#mainSlideImg_1002").attr("src", "/publish/images/main/f_visual_03_20231006.jpg"); + $("#mainSlideImg_1002").attr("alt", "다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 가을은 캠핑의 계절! 낭만캠핑 캠핑하기 좋은 계절, 가을이 돌아왔습니다. 즐거운 캠핑을 떠나고 싶으신가요? 지금 이벤트에 참여하시면, 캠핑 지원금을 드립니다. 지금 바로 참여하세요! 즐거운 캠핑 지원금 문자온에서 확인해보세요! HALLOWEEN 할로윈이벤트 이벤트에 참여하시고 무시무시한 혜택을 받아보세요 이벤트 기간 2099.10.01 10.31 이벤트 대상 10,000원 이상 구매한 모든 고객 event 01 5만원 이상 구매시 5,000원할인쿠폰 증정! event02 이벤트 기간동안 무료배송! event03 어플 설치 시 10% 추가 할인 쿠폰 증정! HALLOWEEN 할로윈 코스튬 할로윈 분위기에 맞게 코스튬을 하고 와요! 할로윈 CAKE 할로윈을 맞이하여 호박케이크를 만들어봐요! 문자온 영어학원 T.031.123.4567"); // Main Visual Swiper getMainVisualSwiper(); @@ -1237,13 +1237,13 @@ function fn_click_banner_add_stat(bannerMenuCode){

-
문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 Halloween 즐겁고 유쾌한 할로윈데이 보내세요 가을엔 독서 같이 책읽으실래요?
+
문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 책과 함께 하는 가을 여행 10월 9일 한글날 아름다운 우리말을 사용하며, 행복한 한글날 보내시길 바랍니다.
문자도 보내고! 현금도 챙기는! 문자온만의 특별한 혜택! 결제금액의 2% 포인트 추가 적립! 포인트 1만점 이상 적립 시 현금페이백
-
다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 가을은 캠핑의 계절! 낭만캠핑 캠핑하기 좋은 계절, 가을이 돌아왔습니다. 즐거운 캠핑을 떠나고 싶으신가요? 지금 이벤트에 참여하시면, 캠핑 지원금을 드립니다. 지금 바로 참여하세요! 즐거운 캠핑 지원금 문자온에서 확인해보세요! HALLOWEEN 할로윈이벤트 이벤트에 참여하시고 무시무시한 혜택을 받아보세요 이벤트 기간 2099.10.01  10.31 이벤트 대상 10,000원 이상 구매한 모든 고객 event 01 5만원 이상 구매시 5,000원할인쿠폰 증정! event02 이벤트 기간동안 무료배송! event03 어플 설치 시 10% 추가 할인 쿠폰 증정! HALLOWEEN 할로윈 코스튬 할로윈 분위기에 맞게 코스튬을 하고 와요! 할로윈 CAKE 할로윈을 맞이하여 호박케이크를 만들어봐요! 문자온 영어학원 T.031.123.4567
+
다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. Fall in Music Autumn Concert 09/15(토) 출연가수 온밴드, 온스파, 온와이스, 온뱅, 문자아이들, 온마이걸 주관: 문자온 코리아 협찬: 문자온추진위원회 후원 : 문자온추진위원회 한글날 한글날 이벤트 3행시 짓기 #한글날 #쿠폰 #이벤트 #좋아요 #댓글 이벤트 기간 2023.10.01 ~ 2023.10.06 당첨상품 음료 기프티콘 쿠폰(200명) 100% 국내산 유기농 우리김치 김장김치 예약판매 최적의 산지에서 수확한 신선한 배추와 엄선된 양념으로 보다 깊은 감칠맛을 선사합니다. 행사기간 2029.10.20~11.7
문자는 이제, 문자온! 선택은 역시 문자온! 문자사이트 선택의 5가지 기준 1. 가격, 속도, 성능, 기능, 보안이 보장되는가? 2. 결제, 정산, 계산서 발행 등 업무가 자동화 되어 있고 편리한가? 3. 최신 IT 기술과 트렌드가 반영되어 있는가? 4. 회원가입 및 발신번호 인증이 쉽고 빠르며, 대량문자를 전송하기에 사용이 편리한가? 5. 매일 문자샘플이 업데이트 되고, CS 및 기술응대가 실시간적으로 이루어지는가?
From 572763728da82c1348659881b0ae2a8caafd37a7 Mon Sep 17 00:00:00 2001 From: itn Date: Tue, 10 Oct 2023 09:39:57 +0900 Subject: [PATCH 5/7] =?UTF-8?q?=EB=A9=94=EC=9D=B8=EB=B9=84=EC=A3=BC?= =?UTF-8?q?=EC=96=BC=20=ED=95=A0=EB=A1=9C=EC=9C=88=20=EA=B3=A0=EC=A0=95?= =?UTF-8?q?=EC=9C=BC=EB=A1=9C=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp index c092ce5c..0bfc2d82 100644 --- a/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp +++ b/src/main/webapp/WEB-INF/jsp/web/main/mainPage.jsp @@ -22,7 +22,7 @@ $(document).ready(function() { } // 슬라이드 이미지 변경 - setMainSlideImgChange(); + //setMainSlideImgChange(); //슬라이드 이미지 변경 => Double // 9월 30일 개천절 @@ -1237,13 +1237,13 @@ function fn_click_banner_add_stat(bannerMenuCode){
문자온, 카카오 '알림톡' 서비스 오픈! 문자온 알림톡, 대한민국 최저가 선언! 조건없이 무조건 6.9원! 카카오톡 채널아이디 추가를 하지 않은 이용자에게도 카카오톡 메시지 발송이 가능한 서비스! 알림톡 바로가기 알림톡 도착 kakao 문자온에서 알림톡이 도착하였습니다! 기업전용/1,000자 이하 텍스트 & 이미지/문자 대비 65% 저렴
-
문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 책과 함께 하는 가을 여행 10월 9일 한글날 아름다운 우리말을 사용하며, 행복한 한글날 보내시길 바랍니다.
+
문자는 이제, 문자온! 단 한번, 국내 최저가! 인생 최저가! 첫결제 단문 7.5원 장문 32원 그림 59원 Halloween 즐겁고 유쾌한 할로윈데이 보내세요 가을엔 독서 같이 책읽으실래요?
문자도 보내고! 현금도 챙기는! 문자온만의 특별한 혜택! 결제금액의 2% 포인트 추가 적립! 포인트 1만점 이상 적립 시 현금페이백
-
다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. Fall in Music Autumn Concert 09/15(토) 출연가수 온밴드, 온스파, 온와이스, 온뱅, 문자아이들, 온마이걸 주관: 문자온 코리아 협찬: 문자온추진위원회 후원 : 문자온추진위원회 한글날 한글날 이벤트 3행시 짓기 #한글날 #쿠폰 #이벤트 #좋아요 #댓글 이벤트 기간 2023.10.01 ~ 2023.10.06 당첨상품 음료 기프티콘 쿠폰(200명) 100% 국내산 유기농 우리김치 김장김치 예약판매 최적의 산지에서 수확한 신선한 배추와 엄선된 양념으로 보다 깊은 감칠맛을 선사합니다. 행사기간 2029.10.20~11.7
+
다른 사이트에는 없다! 오직 문자온에만 있다! 최고의 디자이너가 직접 제작하는 그림문자 맞춤제작을 통해 나만의 문자를 디자인 해보세요. 가을은 캠핑의 계절! 낭만캠핑 캠핑하기 좋은 계절, 가을이 돌아왔습니다. 즐거운 캠핑을 떠나고 싶으신가요? 지금 이벤트에 참여하시면, 캠핑 지원금을 드립니다. 지금 바로 참여하세요! 즐거운 캠핑 지원금 문자온에서 확인해보세요! HALLOWEEN 할로윈이벤트 이벤트에 참여하시고 무시무시한 혜택을 받아보세요 이벤트 기간 2099.10.01  10.31 이벤트 대상 10,000원 이상 구매한 모든 고객 event 01 5만원 이상 구매시 5,000원할인쿠폰 증정! event02 이벤트 기간동안 무료배송! event03 어플 설치 시 10% 추가 할인 쿠폰 증정! HALLOWEEN 할로윈 코스튬 할로윈 분위기에 맞게 코스튬을 하고 와요! 할로윈 CAKE 할로윈을 맞이하여 호박케이크를 만들어봐요! 문자온 영어학원 T.031.123.4567
문자는 이제, 문자온! 선택은 역시 문자온! 문자사이트 선택의 5가지 기준 1. 가격, 속도, 성능, 기능, 보안이 보장되는가? 2. 결제, 정산, 계산서 발행 등 업무가 자동화 되어 있고 편리한가? 3. 최신 IT 기술과 트렌드가 반영되어 있는가? 4. 회원가입 및 발신번호 인증이 쉽고 빠르며, 대량문자를 전송하기에 사용이 편리한가? 5. 매일 문자샘플이 업데이트 되고, CS 및 기술응대가 실시간적으로 이루어지는가?
From 04c1a9ec8517fd06864f2ec66c6979d36c652b4d Mon Sep 17 00:00:00 2001 From: itn Date: Tue, 10 Oct 2023 10:32:04 +0900 Subject: [PATCH 6/7] =?UTF-8?q?pdf.js=20=EB=9D=BC=EC=9D=B4=EB=B8=8C?= =?UTF-8?q?=EB=9F=AC=EB=A6=AC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp | 2 +- src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfViewPhone.jsp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp b/src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp index d4a70100..bec08418 100644 --- a/src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp +++ b/src/main/webapp/WEB-INF/jsp/uss/ion/msg/pdfView.jsp @@ -33,7 +33,7 @@ - + \ No newline at end of file diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/loading-icon.gif b/src/main/webapp/js/pdfjs-3.11.174/web/images/loading-icon.gif new file mode 100644 index 0000000000000000000000000000000000000000..1c72ebb554be018511ae972c3f2361dff02dce02 GIT binary patch literal 2545 zcma*pX;2es8VB%~zPr=ibVMCx-JQ^BhLDAsK)^**h(ZDp9YGuzZ%~j!}+w%FI;|aC7){7CdVvG)P{bng1y9Te*f}~*`1kQl$jwb z$tlW~rRS!X?#xfm_&6tTdp_`cjgYwbRFLNdoJCN$S-yhg`ZnC-yvedRSmOh%;Y`Gl6bY$Z-}#C=#F4%9!I1b zWQ~f+9P?;vhCxWwlwl=lrWG|7IYo;{jjmzJ5R9?f>n%-d@>kLINUc z4wM5dAO;kq<$}Dk{2-u0$I6@2N}&cUx9nmV1dYc8jfC}%=F9WCg^OQK9C6poh#2!A z3^EU*UFZvS^)?bu3T?J;@Ahb~%I?+@4!l5!*TjC}GIslNan-RCrrd~PdHYnNLJk+m&`$Y+NV(e>CCu%R#_8GqY4cv#j`#uRWdsg9DxWy(?oOvgCU}&@jy%c!H&-Q zqXJxajAtmQRoRa9V-RFXXh-bK*;Fum{BjpkYQGX~i@OZ^Dx0n&H}kvGKqQ?w(6iGXu_g08T|_hp#ZvFzIwKF*a=oMJ~3UGAjZ?g}GOxm44td zXoyYrU*I=y*vHv89hkYH(v5R#wc)BC3dZJKb3K)f>zaM3%JP(mpecViP0eKKYf3zy z->jx_mc?mCtPEvCQ?uppk?eLJt}_IR7giW%Jr)RyI!+E-voIs*lXI*z`GQc_&D#X( z{6G};HPYj6O|$lXxBJeDaweqa{4L=tOZCjTI^&UOxXg})LRG_cr^B9Rqt(i5ORbQX zq`_xCRsH>xEYY%&*Nyi#{S_JZNlTm#K56`RI%7^amom;*h90Si&g1CfaFV3D|a!`3Y-GKKbL*KSbl z>I96`TR@CqPJl(>QqB~RvK~-U)`e`l4LIqj+IU^~yyIe*|BRVB>4Bup%j{tLdKz4j zY^<8P8m~GRGz*yv0&-RJE+-keJ+%m3wNeopzsltWd->eWmBVwUr)pX` zK~CD<;~Z*Uy3W`3+MrEYxm5qYQ!z%YI;y7DTG`UVH0;@{M{!B&id_}3DBQ?zsotuR zEGLdRx25nLm%-wjlnEi;-aN_1S7???rO~WgA67jjr&(vRa3y$u#kqJbeKnw z{!T!1li9>M+sJ6AUe+*9d}2uGjhzd z|L1Rtp8uTGYyZoQ*`DS^m2dw-X{a)l+3m?ncvn^+O>)hdd3(hMtlhkRGns{<8c0I! zDDjpmwtj?@!6kA|iu3q+Ai;@JR+ zfk+ln&YFC{4bhK6IxVgLs4W%^8Lk`qzWU*L>yq0A3;l}{!wKZ!ue)C)SKI)9dl1hl zhIRLV@8E}rwvE{gX(}$f6x*k)_`*Ijt1=EU-Ls6-(phomeQBgtUs z5Xz~Cd*nE)Ac!0i4ep}Z1AugMB(&F?)#CU{Qc{Sp^vKsdL}vRB30H+Bbzrn`M##H3 z{W8dc_mDroEE+p8_}mnJtzZ4!RNe)zhB)Ds;S57nYSJxtek>^~&(7B+N5MPf2+2xx z5Dl&4X|c@f{Kd|z1r+N|$DmsoVp*3yOdxT^J^-VAk)Z@$4^XrPrFP-Co+MXZ+KJ(W z{JNYvraLLWA;&tRhIKOvhW|HC|L-dLvAUF(MG0(Nl?4tB{RzN7I(}Cb%hwN{crFC8 zji#aJElKvDFV+&VI1V?oUMA>*kto0^;3W8FQBSZ|{ z$v~TqE=(8DZa^i$^oht&h};P1N&wMXorKh*Z68gPV&ouy>%f36Oqkwemyeas$Qbz# zV?7Jy%o7KY6^I=P@eCji%W`o5sf(5hySYo9$l4e2`(hIV_?=H-#R6}0$WVA|*(K@3 z=5?@RlcLh(meW%A4)hGzcvEpm(_w?>zhL*i&s9$2>r zAtk{8Cia|+Y+V!uX9BtpXoF%lswuRKsM!pSs!?yhlCy!269K0|b M?FSZn2B>%I-}ej|s{jB1 literal 0 HcmV?d00001 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/loading.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/loading.svg new file mode 100644 index 00000000..0a15ff68 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/loading.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-documentProperties.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-documentProperties.svg new file mode 100644 index 00000000..dd3917b9 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-documentProperties.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-firstPage.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-firstPage.svg new file mode 100644 index 00000000..f5c917f1 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-firstPage.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-handTool.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-handTool.svg new file mode 100644 index 00000000..b7073b59 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-handTool.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-lastPage.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-lastPage.svg new file mode 100644 index 00000000..c04f6507 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-lastPage.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-rotateCcw.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-rotateCcw.svg new file mode 100644 index 00000000..da73a1b1 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-rotateCcw.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-rotateCw.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-rotateCw.svg new file mode 100644 index 00000000..c41ce736 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-rotateCw.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollHorizontal.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollHorizontal.svg new file mode 100644 index 00000000..fb440b94 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollHorizontal.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollPage.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollPage.svg new file mode 100644 index 00000000..64a9f500 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollPage.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollVertical.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollVertical.svg new file mode 100644 index 00000000..dc7e8052 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollVertical.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollWrapped.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollWrapped.svg new file mode 100644 index 00000000..75fe26bc --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-scrollWrapped.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-selectTool.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-selectTool.svg new file mode 100644 index 00000000..94d51410 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-selectTool.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadEven.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadEven.svg new file mode 100644 index 00000000..ce201e33 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadEven.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadNone.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadNone.svg new file mode 100644 index 00000000..e8d487fa --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadNone.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadOdd.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadOdd.svg new file mode 100644 index 00000000..9211a427 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/secondaryToolbarButton-spreadOdd.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-bookmark.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-bookmark.svg new file mode 100644 index 00000000..c4c37c90 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-bookmark.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-currentOutlineItem.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-currentOutlineItem.svg new file mode 100644 index 00000000..01e67623 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-currentOutlineItem.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-download.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-download.svg new file mode 100644 index 00000000..e2e850ad --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-download.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorFreeText.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorFreeText.svg new file mode 100644 index 00000000..e4db3a57 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorFreeText.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorInk.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorInk.svg new file mode 100644 index 00000000..b579eec7 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorInk.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorStamp.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorStamp.svg new file mode 100644 index 00000000..f0469b1b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-editorStamp.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-menuArrow.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-menuArrow.svg new file mode 100644 index 00000000..82ffeaab --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-menuArrow.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-openFile.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-openFile.svg new file mode 100644 index 00000000..e773781d --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-openFile.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-pageDown.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-pageDown.svg new file mode 100644 index 00000000..1fc12e73 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-pageDown.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-pageUp.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-pageUp.svg new file mode 100644 index 00000000..0936b9a5 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-pageUp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-presentationMode.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-presentationMode.svg new file mode 100644 index 00000000..901d5672 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-presentationMode.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-print.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-print.svg new file mode 100644 index 00000000..97a39047 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-print.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-search.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-search.svg new file mode 100644 index 00000000..0cc7ae21 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-search.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-secondaryToolbarToggle.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-secondaryToolbarToggle.svg new file mode 100644 index 00000000..cace8637 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-secondaryToolbarToggle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-sidebarToggle.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-sidebarToggle.svg new file mode 100644 index 00000000..1d8d0e4b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-sidebarToggle.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewAttachments.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewAttachments.svg new file mode 100644 index 00000000..ab73f6e6 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewAttachments.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewLayers.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewLayers.svg new file mode 100644 index 00000000..1d726682 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewLayers.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewOutline.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewOutline.svg new file mode 100644 index 00000000..7ed1bd97 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewOutline.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewThumbnail.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewThumbnail.svg new file mode 100644 index 00000000..040d1232 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-viewThumbnail.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-zoomIn.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-zoomIn.svg new file mode 100644 index 00000000..30ec51a2 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-zoomIn.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-zoomOut.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-zoomOut.svg new file mode 100644 index 00000000..f273b599 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/toolbarButton-zoomOut.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/treeitem-collapsed.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/treeitem-collapsed.svg new file mode 100644 index 00000000..831cddfc --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/treeitem-collapsed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/images/treeitem-expanded.svg b/src/main/webapp/js/pdfjs-3.11.174/web/images/treeitem-expanded.svg new file mode 100644 index 00000000..2d45f0c8 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/images/treeitem-expanded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ach/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ach/viewer.properties new file mode 100644 index 00000000..110e317f --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ach/viewer.properties @@ -0,0 +1,203 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pot buk mukato +previous_label=Mukato +next.title=Pot buk malubo +next_label=Malubo + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pot buk +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=pi {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} me {{pagesCount}}) + +zoom_out.title=Jwik Matidi +zoom_out_label=Jwik Matidi +zoom_in.title=Kwot Madit +zoom_in_label=Kwot Madit +zoom.title=Kwoti +presentation_mode.title=Lokke i kit me tyer +presentation_mode_label=Kit me tyer +open_file.title=Yab Pwail +open_file_label=Yab +print.title=Go +print_label=Go +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. + +# Secondary toolbar and context menu +tools.title=Gintic +tools_label=Gintic +first_page.title=Cit i pot buk mukwongo +first_page_label=Cit i pot buk mukwongo +last_page.title=Cit i pot buk magiko +last_page_label=Cit i pot buk magiko +page_rotate_cw.title=Wire i tung lacuc +page_rotate_cw_label=Wire i tung lacuc +page_rotate_ccw.title=Wire i tung lacam +page_rotate_ccw_label=Wire i tung lacam + +cursor_text_select_tool.title=Cak gitic me yero coc +cursor_text_select_tool_label=Gitic me yero coc +cursor_hand_tool.title=Cak gitic me cing +cursor_hand_tool_label=Gitic cing + + + +# Document properties dialog box +document_properties.title=Jami me gin acoya… +document_properties_label=Jami me gin acoya… +document_properties_file_name=Nying pwail: +document_properties_file_size=Dit pa pwail: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Wiye: +document_properties_author=Ngat mucoyo: +document_properties_subject=Subjek: +document_properties_keywords=Lok mapire tek: +document_properties_creation_date=Nino dwe me cwec: +document_properties_modification_date=Nino dwe me yub: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Lacwec: +document_properties_producer=Layub PDF: +document_properties_version=Kit PDF: +document_properties_page_count=Kwan me pot buk: +document_properties_page_size=Dit pa potbuk: +document_properties_page_size_unit_inches=i +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=atir +document_properties_page_size_orientation_landscape=arii +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Waraga +document_properties_page_size_name_legal=Cik +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=Eyo +document_properties_linearized_no=Pe +document_properties_close=Lor + +print_progress_message=Yubo coc me agoya… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Juki + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Lok gintic ma inget +toggle_sidebar_label=Lok gintic ma inget +document_outline.title=Nyut Wiyewiye me Gin acoya (dii-kiryo me yaro/kano jami weng) +document_outline_label=Pek pa gin acoya +attachments.title=Nyut twec +attachments_label=Twec +thumbs.title=Nyut cal +thumbs_label=Cal +findbar.title=Nong iye gin acoya +findbar_label=Nong + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pot buk {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Cal me pot buk {{page}} + +# Find panel button title and messages +find_input.title=Nong +find_input.placeholder=Nong i dokumen… +find_previous.title=Nong timme pa lok mukato +find_previous_label=Mukato +find_next.title=Nong timme pa lok malubo +find_next_label=Malubo +find_highlight=Ket Lanyut I Weng +find_match_case_label=Lok marwate +find_reached_top=Oo iwi gin acoya, omede ki i tere +find_reached_bottom=Oo i agiki me gin acoya, omede ki iwiye +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_not_found=Lok pe ononge + +# Predefined zoom values +page_scale_width=Lac me iye pot buk +page_scale_fit=Porre me pot buk +page_scale_auto=Kwot pire kene +page_scale_actual=Dite kikome +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Bal otime kun cano PDF. +invalid_file_error=Pwail me PDF ma pe atir onyo obale woko. +missing_file_error=Pwail me PDF tye ka rem. +unexpected_response_error=Lagam mape kigeno pa lapok tic. +rendering_error=Bal otime i kare me nyuto pot buk. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Lok angea manok] +password_label=Ket mung me donyo me yabo pwail me PDF man. +password_invalid=Mung me donyo pe atir. Tim ber i tem doki. +password_ok=OK +password_cancel=Juki + +printing_not_supported=Ciko: Layeny ma pe teno goyo liweng. +printing_not_ready=Ciko: PDF pe ocane weng me agoya. +web_fonts_disabled=Kijuko dit pa coc me kakube woko: pe romo tic ki dit pa coc me PDF ma kiketo i kine. + +# Editor + + + +# Editor Parameters + +# Editor aria diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/af/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/af/viewer.properties new file mode 100644 index 00000000..f2a9e2a1 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/af/viewer.properties @@ -0,0 +1,156 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Vorige bladsy +previous_label=Vorige +next.title=Volgende bladsy +next_label=Volgende + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Bladsy +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=van {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} van {{pagesCount}}) + +zoom_out.title=Zoem uit +zoom_out_label=Zoem uit +zoom_in.title=Zoem in +zoom_in_label=Zoem in +zoom.title=Zoem +presentation_mode.title=Wissel na voorleggingsmodus +presentation_mode_label=Voorleggingsmodus +open_file.title=Open lêer +open_file_label=Open +print.title=Druk +print_label=Druk + +# Secondary toolbar and context menu +tools.title=Nutsgoed +tools_label=Nutsgoed +first_page.title=Gaan na eerste bladsy +first_page_label=Gaan na eerste bladsy +last_page.title=Gaan na laaste bladsy +last_page_label=Gaan na laaste bladsy +page_rotate_cw.title=Roteer kloksgewys +page_rotate_cw_label=Roteer kloksgewys +page_rotate_ccw.title=Roteer anti-kloksgewys +page_rotate_ccw_label=Roteer anti-kloksgewys + +cursor_text_select_tool.title=Aktiveer gereedskap om teks te merk +cursor_text_select_tool_label=Teksmerkgereedskap +cursor_hand_tool.title=Aktiveer handjie +cursor_hand_tool_label=Handjie + +# Document properties dialog box +document_properties.title=Dokumenteienskappe… +document_properties_label=Dokumenteienskappe… +document_properties_file_name=Lêernaam: +document_properties_file_size=Lêergrootte: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kG ({{size_b}} grepe) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MG ({{size_b}} grepe) +document_properties_title=Titel: +document_properties_author=Outeur: +document_properties_subject=Onderwerp: +document_properties_keywords=Sleutelwoorde: +document_properties_creation_date=Skeppingsdatum: +document_properties_modification_date=Wysigingsdatum: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Skepper: +document_properties_producer=PDF-vervaardiger: +document_properties_version=PDF-weergawe: +document_properties_page_count=Aantal bladsye: +document_properties_close=Sluit + +print_progress_message=Berei tans dokument voor om te druk… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Kanselleer + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Sypaneel aan/af +toggle_sidebar_label=Sypaneel aan/af +document_outline.title=Wys dokumentskema (dubbelklik om alle items oop/toe te vou) +document_outline_label=Dokumentoorsig +attachments.title=Wys aanhegsels +attachments_label=Aanhegsels +thumbs.title=Wys duimnaels +thumbs_label=Duimnaels +findbar.title=Soek in dokument +findbar_label=Vind + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Bladsy {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Duimnael van bladsy {{page}} + +# Find panel button title and messages +find_input.title=Vind +find_input.placeholder=Soek in dokument… +find_previous.title=Vind die vorige voorkoms van die frase +find_previous_label=Vorige +find_next.title=Vind die volgende voorkoms van die frase +find_next_label=Volgende +find_highlight=Verlig almal +find_match_case_label=Kassensitief +find_reached_top=Bokant van dokument is bereik; gaan voort van onder af +find_reached_bottom=Einde van dokument is bereik; gaan voort van bo af +find_not_found=Frase nie gevind nie + +# Predefined zoom values +page_scale_width=Bladsywydte +page_scale_fit=Pas bladsy +page_scale_auto=Outomatiese zoem +page_scale_actual=Werklike grootte +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error='n Fout het voorgekom met die laai van die PDF. +invalid_file_error=Ongeldige of korrupte PDF-lêer. +missing_file_error=PDF-lêer is weg. +unexpected_response_error=Onverwagse antwoord van bediener. + +rendering_error='n Fout het voorgekom toe die bladsy weergegee is. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}-annotasie] +password_label=Gee die wagwoord om dié PDF-lêer mee te open. +password_invalid=Ongeldige wagwoord. Probeer gerus weer. +password_ok=OK +password_cancel=Kanselleer + +printing_not_supported=Waarskuwing: Dié blaaier ondersteun nie drukwerk ten volle nie. +printing_not_ready=Waarskuwing: Die PDF is nog nie volledig gelaai vir drukwerk nie. +web_fonts_disabled=Webfonte is gedeaktiveer: kan nie PDF-fonte wat ingebed is, gebruik nie. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/an/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/an/viewer.properties new file mode 100644 index 00000000..2fc1056b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/an/viewer.properties @@ -0,0 +1,222 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pachina anterior +previous_label=Anterior +next.title=Pachina siguient +next_label=Siguient + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pachina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Achiquir +zoom_out_label=Achiquir +zoom_in.title=Agrandir +zoom_in_label=Agrandir +zoom.title=Grandaria +presentation_mode.title=Cambear t'o modo de presentación +presentation_mode_label=Modo de presentación +open_file.title=Ubrir o fichero +open_file_label=Ubrir +print.title=Imprentar +print_label=Imprentar + +# Secondary toolbar and context menu +tools.title=Ferramientas +tools_label=Ferramientas +first_page.title=Ir ta la primer pachina +first_page_label=Ir ta la primer pachina +last_page.title=Ir ta la zaguer pachina +last_page_label=Ir ta la zaguer pachina +page_rotate_cw.title=Chirar enta la dreita +page_rotate_cw_label=Chira enta la dreita +page_rotate_ccw.title=Chirar enta la zurda +page_rotate_ccw_label=Chirar enta la zurda + +cursor_text_select_tool.title=Activar la ferramienta de selección de texto +cursor_text_select_tool_label=Ferramienta de selección de texto +cursor_hand_tool.title=Activar la ferramienta man +cursor_hand_tool_label=Ferramienta man + +scroll_vertical.title=Usar lo desplazamiento vertical +scroll_vertical_label=Desplazamiento vertical +scroll_horizontal.title=Usar lo desplazamiento horizontal +scroll_horizontal_label=Desplazamiento horizontal +scroll_wrapped.title=Activaar lo desplazamiento contino +scroll_wrapped_label=Desplazamiento contino + +spread_none.title=No unir vistas de pachinas +spread_none_label=Una pachina nomás +spread_odd.title=Mostrar vista de pachinas, con as impars a la zurda +spread_odd_label=Doble pachina, impar a la zurda +spread_even.title=Amostrar vista de pachinas, con as pars a la zurda +spread_even_label=Doble pachina, para a la zurda + +# Document properties dialog box +document_properties.title=Propiedatz d'o documento... +document_properties_label=Propiedatz d'o documento... +document_properties_file_name=Nombre de fichero: +document_properties_file_size=Grandaria d'o fichero: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titol: +document_properties_author=Autor: +document_properties_subject=Afer: +document_properties_keywords=Parolas clau: +document_properties_creation_date=Calendata de creyación: +document_properties_modification_date=Calendata de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creyador: +document_properties_producer=Creyador de PDF: +document_properties_version=Versión de PDF: +document_properties_page_count=Numero de pachinas: +document_properties_page_size=Mida de pachina: +document_properties_page_size_unit_inches=pulgadas +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} x {{height}} {{unit}} {{orientation}} +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} x {{height}} {{unit}} {{name}}, {{orientation}} +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista web rapida: +document_properties_linearized_yes=Sí +document_properties_linearized_no=No +document_properties_close=Zarrar + +print_progress_message=Se ye preparando la documentación pa imprentar… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Amostrar u amagar a barra lateral +toggle_sidebar_notification2.title=Cambiar barra lateral (lo documento contiene esquema/adchuntos/capas) +toggle_sidebar_label=Amostrar a barra lateral +document_outline.title=Amostrar esquema d'o documento (fer doble clic pa expandir/compactar totz los items) +document_outline_label=Esquema d'o documento +attachments.title=Amostrar os adchuntos +attachments_label=Adchuntos +layers.title=Amostrar capas (doble clic para reiniciar totas las capas a lo estau per defecto) +layers_label=Capas +thumbs.title=Amostrar as miniaturas +thumbs_label=Miniaturas +findbar.title=Trobar en o documento +findbar_label=Trobar + +additional_layers=Capas adicionals +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pachina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura d'a pachina {{page}} + +# Find panel button title and messages +find_input.title=Trobar +find_input.placeholder=Trobar en o documento… +find_previous.title=Trobar l'anterior coincidencia d'a frase +find_previous_label=Anterior +find_next.title=Trobar a siguient coincidencia d'a frase +find_next_label=Siguient +find_highlight=Resaltar-lo tot +find_match_case_label=Coincidencia de mayusclas/minusclas +find_entire_word_label=Parolas completas +find_reached_top=S'ha plegau a l'inicio d'o documento, se contina dende baixo +find_reached_bottom=S'ha plegau a la fin d'o documento, se contina dende alto +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} coincidencia +find_match_count[two]={{current}} de {{total}} coincidencias +find_match_count[few]={{current}} de {{total}} coincidencias +find_match_count[many]={{current}} de {{total}} coincidencias +find_match_count[other]={{current}} de {{total}} coincidencias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mas de {{limit}} coincidencias +find_match_count_limit[one]=Mas de {{limit}} coincidencias +find_match_count_limit[two]=Mas que {{limit}} coincidencias +find_match_count_limit[few]=Mas que {{limit}} coincidencias +find_match_count_limit[many]=Mas que {{limit}} coincidencias +find_match_count_limit[other]=Mas que {{limit}} coincidencias +find_not_found=No s'ha trobau a frase + +# Predefined zoom values +page_scale_width=Amplaria d'a pachina +page_scale_fit=Achuste d'a pachina +page_scale_auto=Grandaria automatica +page_scale_actual=Grandaria actual +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=S'ha produciu una error en cargar o PDF. +invalid_file_error=O PDF no ye valido u ye estorbau. +missing_file_error=No i ha fichero PDF. +unexpected_response_error=Respuesta a lo servicio inasperada. + +rendering_error=Ha ocurriu una error en renderizar a pachina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotación {{type}}] +password_label=Introduzca a clau ta ubrir iste fichero PDF. +password_invalid=Clau invalida. Torna a intentar-lo. +password_ok=Acceptar +password_cancel=Cancelar + +printing_not_supported=Pare cuenta: Iste navegador no maneya totalment as impresions. +printing_not_ready=Aviso: Encara no se ha cargau completament o PDF ta imprentar-lo. +web_fonts_disabled=As fuents web son desactivadas: no se puet incrustar fichers PDF. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ar/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ar/viewer.properties new file mode 100644 index 00000000..01c94239 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ar/viewer.properties @@ -0,0 +1,224 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=الصفحة السابقة +previous_label=السابقة +next.title=الصفحة التالية +next_label=التالية + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=صفحة +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=من {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} من {{pagesCount}}) + +zoom_out.title=بعّد +zoom_out_label=بعّد +zoom_in.title=قرّب +zoom_in_label=قرّب +zoom.title=التقريب +presentation_mode.title=انتقل لوضع العرض التقديمي +presentation_mode_label=وضع العرض التقديمي +open_file.title=افتح ملفًا +open_file_label=افتح +print.title=اطبع +print_label=اطبع + +# Secondary toolbar and context menu +tools.title=الأدوات +tools_label=الأدوات +first_page.title=انتقل إلى الصفحة الأولى +first_page_label=انتقل إلى الصفحة الأولى +last_page.title=انتقل إلى الصفحة الأخيرة +last_page_label=انتقل إلى الصفحة الأخيرة +page_rotate_cw.title=أدر باتجاه عقارب الساعة +page_rotate_cw_label=أدر باتجاه عقارب الساعة +page_rotate_ccw.title=أدر بعكس اتجاه عقارب الساعة +page_rotate_ccw_label=أدر بعكس اتجاه عقارب الساعة + +cursor_text_select_tool.title=فعّل أداة اختيار النص +cursor_text_select_tool_label=أداة اختيار النص +cursor_hand_tool.title=فعّل أداة اليد +cursor_hand_tool_label=أداة اليد + +scroll_vertical.title=استخدم التمرير الرأسي +scroll_vertical_label=التمرير الرأسي +scroll_horizontal.title=استخدم التمرير الأفقي +scroll_horizontal_label=التمرير الأفقي +scroll_wrapped.title=استخدم التمرير الملتف +scroll_wrapped_label=التمرير الملتف + +spread_none.title=لا تدمج هوامش الصفحات مع بعضها البعض +spread_none_label=بلا هوامش +spread_odd.title=ادمج هوامش الصفحات الفردية +spread_odd_label=هوامش الصفحات الفردية +spread_even.title=ادمج هوامش الصفحات الزوجية +spread_even_label=هوامش الصفحات الزوجية + +# Document properties dialog box +document_properties.title=خصائص المستند… +document_properties_label=خصائص المستند… +document_properties_file_name=اسم الملف: +document_properties_file_size=حجم الملف: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} ك.بايت ({{size_b}} بايت) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} م.بايت ({{size_b}} بايت) +document_properties_title=العنوان: +document_properties_author=المؤلف: +document_properties_subject=الموضوع: +document_properties_keywords=الكلمات الأساسية: +document_properties_creation_date=تاريخ الإنشاء: +document_properties_modification_date=تاريخ التعديل: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}، {{time}} +document_properties_creator=المنشئ: +document_properties_producer=منتج PDF: +document_properties_version=إصدارة PDF: +document_properties_page_count=عدد الصفحات: +document_properties_page_size=مقاس الورقة: +document_properties_page_size_unit_inches=بوصة +document_properties_page_size_unit_millimeters=ملم +document_properties_page_size_orientation_portrait=طوليّ +document_properties_page_size_orientation_landscape=عرضيّ +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=خطاب +document_properties_page_size_name_legal=قانونيّ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string=‏{{width}} × ‏{{height}} ‏{{unit}} (‏{{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string=‏{{width}} × ‏{{height}} ‏{{unit}} (‏{{name}}، {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=العرض السريع عبر الوِب: +document_properties_linearized_yes=نعم +document_properties_linearized_no=لا +document_properties_close=أغلق + +print_progress_message=يُحضّر المستند للطباعة… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}٪ +print_progress_close=ألغِ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=بدّل ظهور الشريط الجانبي +toggle_sidebar_notification2.title=بدّل ظهور الشريط الجانبي (يحتوي المستند على مخطط أو مرفقات أو طبقات) +toggle_sidebar_label=بدّل ظهور الشريط الجانبي +document_outline.title=اعرض فهرس المستند (نقر مزدوج لتمديد أو تقليص كل العناصر) +document_outline_label=مخطط المستند +attachments.title=اعرض المرفقات +attachments_label=المُرفقات +layers.title=اعرض الطبقات (انقر مرتين لتصفير كل الطبقات إلى الحالة المبدئية) +layers_label=‏‏الطبقات +thumbs.title=اعرض مُصغرات +thumbs_label=مُصغّرات +findbar.title=ابحث في المستند +findbar_label=ابحث + +additional_layers=الطبقات الإضافية +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=صفحة {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=صفحة {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=مصغّرة صفحة {{page}} + +# Find panel button title and messages +find_input.title=ابحث +find_input.placeholder=ابحث في المستند… +find_previous.title=ابحث عن التّواجد السّابق للعبارة +find_previous_label=السابق +find_next.title=ابحث عن التّواجد التّالي للعبارة +find_next_label=التالي +find_highlight=أبرِز الكل +find_match_case_label=طابق حالة الأحرف +find_entire_word_label=كلمات كاملة +find_reached_top=تابعت من الأسفل بعدما وصلت إلى بداية المستند +find_reached_bottom=تابعت من الأعلى بعدما وصلت إلى نهاية المستند +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} من أصل مطابقة واحدة +find_match_count[two]={{current}} من أصل مطابقتين +find_match_count[few]={{current}} من أصل {{total}} مطابقات +find_match_count[many]={{current}} من أصل {{total}} مطابقة +find_match_count[other]={{current}} من أصل {{total}} مطابقة +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=فقط +find_match_count_limit[one]=أكثر من مطابقة واحدة +find_match_count_limit[two]=أكثر من مطابقتين +find_match_count_limit[few]=أكثر من {{limit}} مطابقات +find_match_count_limit[many]=أكثر من {{limit}} مطابقة +find_match_count_limit[other]=أكثر من {{limit}} مطابقة +find_not_found=لا وجود للعبارة + +# Predefined zoom values +page_scale_width=عرض الصفحة +page_scale_fit=ملائمة الصفحة +page_scale_auto=تقريب تلقائي +page_scale_actual=الحجم الفعلي +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}٪ + +loading_error=حدث عطل أثناء تحميل ملف PDF. +invalid_file_error=ملف PDF تالف أو غير صحيح. +missing_file_error=ملف PDF غير موجود. +unexpected_response_error=استجابة خادوم غير متوقعة. + +rendering_error=حدث خطأ أثناء عرض الصفحة. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}، {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[تعليق {{type}}] +password_label=أدخل لكلمة السر لفتح هذا الملف. +password_invalid=كلمة سر خطأ. من فضلك أعد المحاولة. +password_ok=حسنا +password_cancel=ألغِ + +printing_not_supported=تحذير: لا يدعم هذا المتصفح الطباعة بشكل كامل. +printing_not_ready=تحذير: ملف PDF لم يُحمّل كاملًا للطباعة. +web_fonts_disabled=خطوط الوب مُعطّلة: تعذّر استخدام خطوط PDF المُضمّنة. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ast/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ast/viewer.properties new file mode 100644 index 00000000..4274e180 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ast/viewer.properties @@ -0,0 +1,185 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Páxina anterior +previous_label=Anterior +next.title=Páxina siguiente +next_label=Siguiente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Páxina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Alloñar +zoom_out_label=Alloña +zoom_in.title=Averar +zoom_in_label=Avera +zoom.title=Zoom +presentation_mode.title=Cambiar al mou de presentación +presentation_mode_label=Mou de presentación +open_file_label=Abrir +print.title=Imprentar +print_label=Imprentar + +# Secondary toolbar and context menu +tools.title=Ferramientes +tools_label=Ferramientes +first_page_label=Dir a la primer páxina +last_page_label=Dir a la última páxina +page_rotate_cw.title=Voltia a la derecha +page_rotate_cw_label=Voltiar a la derecha +page_rotate_ccw.title=Voltia a la esquierda +page_rotate_ccw_label=Voltiar a la esquierda + +cursor_text_select_tool.title=Activa la ferramienta d'esbilla de testu +cursor_text_select_tool_label=Ferramienta d'esbilla de testu +cursor_hand_tool.title=Activa la ferramienta de mano +cursor_hand_tool_label=Ferramienta de mano + +scroll_vertical.title=Usa'l desplazamientu vertical +scroll_vertical_label=Desplazamientu vertical +scroll_horizontal.title=Usa'l desplazamientu horizontal +scroll_horizontal_label=Desplazamientu horizontal +scroll_wrapped.title=Usa'l desplazamientu continuu +scroll_wrapped_label=Desplazamientu continuu + +spread_none_label=Fueyes individuales +spread_odd_label=Fueyes pares +spread_even_label=Fueyes impares + +# Document properties dialog box +document_properties.title=Propiedaes del documentu… +document_properties_label=Propiedaes del documentu… +document_properties_file_name=Nome del ficheru: +document_properties_file_size=Tamañu del ficheru: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Títulu: +document_properties_keywords=Pallabres clave: +document_properties_creation_date=Data de creación: +document_properties_modification_date=Data de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_producer=Productor del PDF: +document_properties_version=Versión del PDF: +document_properties_page_count=Númberu de páxines: +document_properties_page_size=Tamañu de páxina: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista web rápida: +document_properties_linearized_yes=Sí +document_properties_linearized_no=Non +document_properties_close=Zarrar + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Encaboxar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Alternar la barra llateral +attachments.title=Amosar los axuntos +attachments_label=Axuntos +layers_label=Capes +thumbs.title=Amosar les miniatures +thumbs_label=Miniatures +findbar_label=Atopar + +additional_layers=Capes adicionales +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Páxina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Páxina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. + +# Find panel button title and messages +find_previous_label=Anterior +find_next_label=Siguiente +find_entire_word_label=Pallabres completes +find_reached_top=Algamóse'l comienzu de la páxina, síguese dende abaxo +find_reached_bottom=Algamóse la fin del documentu, síguese dende arriba +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count[one]={{current}} de {{total}} coincidencia +find_match_count[two]={{current}} de {{total}} coincidencies +find_match_count[few]={{current}} de {{total}} coincidencies +find_match_count[many]={{current}} de {{total}} coincidencies +find_match_count[other]={{current}} de {{total}} coincidencies +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit[zero]=Más de {{limit}} coincidencies +find_match_count_limit[one]=Más de {{limit}} coincidencia +find_match_count_limit[two]=Más de {{limit}} coincidencies +find_match_count_limit[few]=Más de {{limit}} coincidencies +find_match_count_limit[many]=Más de {{limit}} coincidencies +find_match_count_limit[other]=Más de {{limit}} coincidencies + +# Predefined zoom values +page_scale_auto=Zoom automáticu +page_scale_actual=Tamañu real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Asocedió un fallu mentanto se cargaba'l PDF. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_ok=Aceptar +password_cancel=Encaboxar + +# LOCALIZATION NOTE (unsupported_feature_signatures): Should contain the same +# exact string as in the `chrome.properties` file. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/az/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/az/viewer.properties new file mode 100644 index 00000000..ee114846 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/az/viewer.properties @@ -0,0 +1,222 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Əvvəlki səhifə +previous_label=Əvvəlkini tap +next.title=Növbəti səhifə +next_label=İrəli + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Səhifə +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=Uzaqlaş +zoom_out_label=Uzaqlaş +zoom_in.title=Yaxınlaş +zoom_in_label=Yaxınlaş +zoom.title=Yaxınlaşdırma +presentation_mode.title=Təqdimat Rejiminə Keç +presentation_mode_label=Təqdimat Rejimi +open_file.title=Fayl Aç +open_file_label=Aç +print.title=Yazdır +print_label=Yazdır + +# Secondary toolbar and context menu +tools.title=Alətlər +tools_label=Alətlər +first_page.title=İlk Səhifəyə get +first_page_label=İlk Səhifəyə get +last_page.title=Son Səhifəyə get +last_page_label=Son Səhifəyə get +page_rotate_cw.title=Saat İstiqamətində Fırlat +page_rotate_cw_label=Saat İstiqamətində Fırlat +page_rotate_ccw.title=Saat İstiqamətinin Əksinə Fırlat +page_rotate_ccw_label=Saat İstiqamətinin Əksinə Fırlat + +cursor_text_select_tool.title=Yazı seçmə alətini aktivləşdir +cursor_text_select_tool_label=Yazı seçmə aləti +cursor_hand_tool.title=Əl alətini aktivləşdir +cursor_hand_tool_label=Əl aləti + +scroll_vertical.title=Şaquli sürüşdürmə işlət +scroll_vertical_label=Şaquli sürüşdürmə +scroll_horizontal.title=Üfüqi sürüşdürmə işlət +scroll_horizontal_label=Üfüqi sürüşdürmə +scroll_wrapped.title=Bükülü sürüşdürmə işlət +scroll_wrapped_label=Bükülü sürüşdürmə + +spread_none.title=Yan-yana birləşdirilmiş səhifələri işlətmə +spread_none_label=Birləşdirmə +spread_odd.title=Yan-yana birləşdirilmiş səhifələri tək nömrəli səhifələrdən başlat +spread_odd_label=Tək nömrəli +spread_even.title=Yan-yana birləşdirilmiş səhifələri cüt nömrəli səhifələrdən başlat +spread_even_label=Cüt nömrəli + +# Document properties dialog box +document_properties.title=Sənəd xüsusiyyətləri… +document_properties_label=Sənəd xüsusiyyətləri… +document_properties_file_name=Fayl adı: +document_properties_file_size=Fayl ölçüsü: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bayt) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bayt) +document_properties_title=Başlık: +document_properties_author=Müəllif: +document_properties_subject=Mövzu: +document_properties_keywords=Açar sözlər: +document_properties_creation_date=Yaradılış Tarixi : +document_properties_modification_date=Dəyişdirilmə Tarixi : +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Yaradan: +document_properties_producer=PDF yaradıcısı: +document_properties_version=PDF versiyası: +document_properties_page_count=Səhifə sayı: +document_properties_page_size=Səhifə Ölçüsü: +document_properties_page_size_unit_inches=inç +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portret +document_properties_page_size_orientation_landscape=albom +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Məktub +document_properties_page_size_name_legal=Hüquqi +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Bəli +document_properties_linearized_no=Xeyr +document_properties_close=Qapat + +print_progress_message=Sənəd çap üçün hazırlanır… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Ləğv et + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Yan Paneli Aç/Bağla +toggle_sidebar_notification2.title=Yan paneli çevir (sənəddə icmal/bağlamalar/laylar mövcuddur) +toggle_sidebar_label=Yan Paneli Aç/Bağla +document_outline.title=Sənədin eskizini göstər (bütün bəndləri açmaq/yığmaq üçün iki dəfə klikləyin) +document_outline_label=Sənəd strukturu +attachments.title=Bağlamaları göstər +attachments_label=Bağlamalar +layers.title=Layları göstər (bütün layları ilkin halına sıfırlamaq üçün iki dəfə klikləyin) +layers_label=Laylar +thumbs.title=Kiçik şəkilləri göstər +thumbs_label=Kiçik şəkillər +findbar.title=Sənəddə Tap +findbar_label=Tap + +additional_layers=Əlavə laylar +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Səhifə{{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} səhifəsinin kiçik vəziyyəti + +# Find panel button title and messages +find_input.title=Tap +find_input.placeholder=Sənəddə tap… +find_previous.title=Bir öncəki uyğun gələn sözü tapır +find_previous_label=Geri +find_next.title=Bir sonrakı uyğun gələn sözü tapır +find_next_label=İrəli +find_highlight=İşarələ +find_match_case_label=Böyük/kiçik hərfə həssaslıq +find_entire_word_label=Tam sözlər +find_reached_top=Sənədin yuxarısına çatdı, aşağıdan davam edir +find_reached_bottom=Sənədin sonuna çatdı, yuxarıdan davam edir +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} / {{total}} uyğunluq +find_match_count[two]={{current}} / {{total}} uyğunluq +find_match_count[few]={{current}} / {{total}} uyğunluq +find_match_count[many]={{current}} / {{total}} uyğunluq +find_match_count[other]={{current}} / {{total}} uyğunluq +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}}-dan çox uyğunluq +find_match_count_limit[one]={{limit}}-dən çox uyğunluq +find_match_count_limit[two]={{limit}}-dən çox uyğunluq +find_match_count_limit[few]={{limit}} uyğunluqdan daha çox +find_match_count_limit[many]={{limit}} uyğunluqdan daha çox +find_match_count_limit[other]={{limit}} uyğunluqdan daha çox +find_not_found=Uyğunlaşma tapılmadı + +# Predefined zoom values +page_scale_width=Səhifə genişliyi +page_scale_fit=Səhifəni sığdır +page_scale_auto=Avtomatik yaxınlaşdır +page_scale_actual=Hazırkı Həcm +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF yüklenərkən bir səhv yarandı. +invalid_file_error=Səhv və ya zədələnmiş olmuş PDF fayl. +missing_file_error=PDF fayl yoxdur. +unexpected_response_error=Gözlənilməz server cavabı. + +rendering_error=Səhifə göstərilərkən səhv yarandı. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotasiyası] +password_label=Bu PDF faylı açmaq üçün parolu daxil edin. +password_invalid=Parol səhvdir. Bir daha yoxlayın. +password_ok=Tamam +password_cancel=Ləğv et + +printing_not_supported=Xəbərdarlıq: Çap bu səyyah tərəfindən tam olaraq dəstəklənmir. +printing_not_ready=Xəbərdarlıq: PDF çap üçün tam yüklənməyib. +web_fonts_disabled=Web Şriftlər söndürülüb: yerləşdirilmiş PDF şriftlərini istifadə etmək mümkün deyil. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/be/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/be/viewer.properties new file mode 100644 index 00000000..7981034b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/be/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Папярэдняя старонка +previous_label=Папярэдняя +next.title=Наступная старонка +next_label=Наступная + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Старонка +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=з {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} з {{pagesCount}}) + +zoom_out.title=Паменшыць +zoom_out_label=Паменшыць +zoom_in.title=Павялічыць +zoom_in_label=Павялічыць +zoom.title=Павялічэнне тэксту +presentation_mode.title=Пераключыцца ў рэжым паказу +presentation_mode_label=Рэжым паказу +open_file.title=Адкрыць файл +open_file_label=Адкрыць +print.title=Друкаваць +print_label=Друкаваць +save.title=Захаваць +save_label=Захаваць +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Сцягнуць +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Сцягнуць +bookmark1.title=Дзейная старонка (паглядзець URL-адрас з дзейнай старонкі) +bookmark1_label=Цяперашняя старонка +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Адкрыць у праграме +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Адкрыць у праграме + +# Secondary toolbar and context menu +tools.title=Прылады +tools_label=Прылады +first_page.title=Перайсці на першую старонку +first_page_label=Перайсці на першую старонку +last_page.title=Перайсці на апошнюю старонку +last_page_label=Перайсці на апошнюю старонку +page_rotate_cw.title=Павярнуць па сонцу +page_rotate_cw_label=Павярнуць па сонцу +page_rotate_ccw.title=Павярнуць супраць сонца +page_rotate_ccw_label=Павярнуць супраць сонца + +cursor_text_select_tool.title=Уключыць прыладу выбару тэксту +cursor_text_select_tool_label=Прылада выбару тэксту +cursor_hand_tool.title=Уключыць ручную прыладу +cursor_hand_tool_label=Ручная прылада + +scroll_page.title=Выкарыстоўваць пракрутку старонкi +scroll_page_label=Пракрутка старонкi +scroll_vertical.title=Ужываць вертыкальную пракрутку +scroll_vertical_label=Вертыкальная пракрутка +scroll_horizontal.title=Ужываць гарызантальную пракрутку +scroll_horizontal_label=Гарызантальная пракрутка +scroll_wrapped.title=Ужываць маштабавальную пракрутку +scroll_wrapped_label=Маштабавальная пракрутка + +spread_none.title=Не выкарыстоўваць разгорнутыя старонкі +spread_none_label=Без разгорнутых старонак +spread_odd.title=Разгорнутыя старонкі пачынаючы з няцотных нумароў +spread_odd_label=Няцотныя старонкі злева +spread_even.title=Разгорнутыя старонкі пачынаючы з цотных нумароў +spread_even_label=Цотныя старонкі злева + +# Document properties dialog box +document_properties.title=Уласцівасці дакумента… +document_properties_label=Уласцівасці дакумента… +document_properties_file_name=Назва файла: +document_properties_file_size=Памер файла: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} байт) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} байт) +document_properties_title=Загаловак: +document_properties_author=Аўтар: +document_properties_subject=Тэма: +document_properties_keywords=Ключавыя словы: +document_properties_creation_date=Дата стварэння: +document_properties_modification_date=Дата змянення: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Стваральнік: +document_properties_producer=Вырабнік PDF: +document_properties_version=Версія PDF: +document_properties_page_count=Колькасць старонак: +document_properties_page_size=Памер старонкі: +document_properties_page_size_unit_inches=цаляў +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=кніжная +document_properties_page_size_orientation_landscape=альбомная +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Хуткі прагляд у Інтэрнэце: +document_properties_linearized_yes=Так +document_properties_linearized_no=Не +document_properties_close=Закрыць + +print_progress_message=Падрыхтоўка дакумента да друку… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Скасаваць + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Паказаць/схаваць бакавую панэль +toggle_sidebar_notification2.title=Паказаць/схаваць бакавую панэль (дакумент мае змест/укладанні/пласты) +toggle_sidebar_label=Паказаць/схаваць бакавую панэль +document_outline.title=Паказаць структуру дакумента (двайная пстрычка, каб разгарнуць /згарнуць усе элементы) +document_outline_label=Структура дакумента +attachments.title=Паказаць далучэнні +attachments_label=Далучэнні +layers.title=Паказаць пласты (націсніце двойчы, каб скінуць усе пласты да прадвызначанага стану) +layers_label=Пласты +thumbs.title=Паказ мініяцюр +thumbs_label=Мініяцюры +current_outline_item.title=Знайсці бягучы элемент структуры +current_outline_item_label=Бягучы элемент структуры +findbar.title=Пошук у дакуменце +findbar_label=Знайсці + +additional_layers=Дадатковыя пласты +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Старонка {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Старонка {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Мініяцюра старонкі {{page}} + +# Find panel button title and messages +find_input.title=Шукаць +find_input.placeholder=Шукаць у дакуменце… +find_previous.title=Знайсці папярэдні выпадак выразу +find_previous_label=Папярэдні +find_next.title=Знайсці наступны выпадак выразу +find_next_label=Наступны +find_highlight=Падфарбаваць усе +find_match_case_label=Адрозніваць вялікія/малыя літары +find_match_diacritics_label=З улікам дыякрытык +find_entire_word_label=Словы цалкам +find_reached_top=Дасягнуты пачатак дакумента, працяг з канца +find_reached_bottom=Дасягнуты канец дакумента, працяг з пачатку +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} з {{total}} супадзення +find_match_count[two]={{current}} з {{total}} супадзенняў +find_match_count[few]={{current}} з {{total}} супадзенняў +find_match_count[many]={{current}} з {{total}} супадзенняў +find_match_count[other]={{current}} з {{total}} супадзенняў +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Больш за {{limit}} супадзенняў +find_match_count_limit[one]=Больш за {{limit}} супадзенне +find_match_count_limit[two]=Больш за {{limit}} супадзенняў +find_match_count_limit[few]=Больш за {{limit}} супадзенняў +find_match_count_limit[many]=Больш за {{limit}} супадзенняў +find_match_count_limit[other]=Больш за {{limit}} супадзенняў +find_not_found=Выраз не знойдзены + +# Predefined zoom values +page_scale_width=Шырыня старонкі +page_scale_fit=Уцісненне старонкі +page_scale_auto=Аўтаматычнае павелічэнне +page_scale_actual=Сапраўдны памер +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Здарылася памылка ў часе загрузкі PDF. +invalid_file_error=Няспраўны або пашкоджаны файл PDF. +missing_file_error=Адсутны файл PDF. +unexpected_response_error=Нечаканы адказ сервера. +rendering_error=Здарылася памылка падчас адлюстравання старонкі. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Увядзіце пароль, каб адкрыць гэты файл PDF. +password_invalid=Нядзейсны пароль. Паспрабуйце зноў. +password_ok=Добра +password_cancel=Скасаваць + +printing_not_supported=Папярэджанне: друк не падтрымліваецца цалкам гэтым браўзерам. +printing_not_ready=Увага: PDF не сцягнуты цалкам для друкавання. +web_fonts_disabled=Шрыфты Сеціва забаронены: немагчыма ўжываць укладзеныя шрыфты PDF. + +# Editor +editor_free_text2.title=Тэкст +editor_free_text2_label=Тэкст +editor_ink2.title=Маляваць +editor_ink2_label=Маляваць + +editor_stamp.title=Дадаць выяву +editor_stamp_label=Дадаць выяву + +editor_stamp1.title=Дадаць або змяніць выявы +editor_stamp1_label=Дадаць або змяніць выявы + +free_text2_default_content=Пачніце набор тэксту… + +# Editor Parameters +editor_free_text_color=Колер +editor_free_text_size=Памер +editor_ink_color=Колер +editor_ink_thickness=Таўшчыня +editor_ink_opacity=Непразрыстасць + +editor_stamp_add_image_label=Дадаць выяву +editor_stamp_add_image.title=Дадаць выяву + +# Editor aria +editor_free_text2_aria_label=Тэкставы рэдактар +editor_ink2_aria_label=Графічны рэдактар +editor_ink_canvas_aria_label=Выява, створаная карыстальнікам diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/bg/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bg/viewer.properties new file mode 100644 index 00000000..1dde358e --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bg/viewer.properties @@ -0,0 +1,214 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Предишна страница +previous_label=Предишна +next.title=Следваща страница +next_label=Следваща + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Страница +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=от {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} от {{pagesCount}}) + +zoom_out.title=Намаляване +zoom_out_label=Намаляване +zoom_in.title=Увеличаване +zoom_in_label=Увеличаване +zoom.title=Мащабиране +presentation_mode.title=Превключване към режим на представяне +presentation_mode_label=Режим на представяне +open_file.title=Отваряне на файл +open_file_label=Отваряне +print.title=Отпечатване +print_label=Отпечатване + +# Secondary toolbar and context menu +tools.title=Инструменти +tools_label=Инструменти +first_page.title=Към първата страница +first_page_label=Към първата страница +last_page.title=Към последната страница +last_page_label=Към последната страница +page_rotate_cw.title=Завъртане по час. стрелка +page_rotate_cw_label=Завъртане по часовниковата стрелка +page_rotate_ccw.title=Завъртане обратно на час. стрелка +page_rotate_ccw_label=Завъртане обратно на часовниковата стрелка + +cursor_text_select_tool.title=Включване на инструмента за избор на текст +cursor_text_select_tool_label=Инструмент за избор на текст +cursor_hand_tool.title=Включване на инструмента ръка +cursor_hand_tool_label=Инструмент ръка + +scroll_vertical.title=Използване на вертикално плъзгане +scroll_vertical_label=Вертикално плъзгане +scroll_horizontal.title=Използване на хоризонтално +scroll_horizontal_label=Хоризонтално плъзгане +scroll_wrapped.title=Използване на мащабируемо плъзгане +scroll_wrapped_label=Мащабируемо плъзгане + +spread_none.title=Режимът на сдвояване е изключен +spread_none_label=Без сдвояване +spread_odd.title=Сдвояване, започвайки от нечетните страници +spread_odd_label=Нечетните отляво +spread_even.title=Сдвояване, започвайки от четните страници +spread_even_label=Четните отляво + +# Document properties dialog box +document_properties.title=Свойства на документа… +document_properties_label=Свойства на документа… +document_properties_file_name=Име на файл: +document_properties_file_size=Големина на файл: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} байта) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} байта) +document_properties_title=Заглавие: +document_properties_author=Автор: +document_properties_subject=Тема: +document_properties_keywords=Ключови думи: +document_properties_creation_date=Дата на създаване: +document_properties_modification_date=Дата на промяна: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Създател: +document_properties_producer=PDF произведен от: +document_properties_version=Издание на PDF: +document_properties_page_count=Брой страници: +document_properties_page_size=Размер на страницата: +document_properties_page_size_unit_inches=инч +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=портрет +document_properties_page_size_orientation_landscape=пейзаж +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Правни въпроси +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Бърз преглед: +document_properties_linearized_yes=Да +document_properties_linearized_no=Не +document_properties_close=Затваряне + +print_progress_message=Подготвяне на документа за отпечатване… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Отказ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Превключване на страничната лента +toggle_sidebar_label=Превключване на страничната лента +document_outline.title=Показване на структурата на документа (двукратно щракване за свиване/разгъване на всичко) +document_outline_label=Структура на документа +attachments.title=Показване на притурките +attachments_label=Притурки +thumbs.title=Показване на миниатюрите +thumbs_label=Миниатюри +findbar.title=Намиране в документа +findbar_label=Търсене + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Страница {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Миниатюра на страница {{page}} + +# Find panel button title and messages +find_input.title=Търсене +find_input.placeholder=Търсене в документа… +find_previous.title=Намиране на предишно съвпадение на фразата +find_previous_label=Предишна +find_next.title=Намиране на следващо съвпадение на фразата +find_next_label=Следваща +find_highlight=Открояване на всички +find_match_case_label=Съвпадение на регистъра +find_entire_word_label=Цели думи +find_reached_top=Достигнато е началото на документа, продължаване от края +find_reached_bottom=Достигнат е краят на документа, продължаване от началото +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} от {{total}} съвпадение +find_match_count[two]={{current}} от {{total}} съвпадения +find_match_count[few]={{current}} от {{total}} съвпадения +find_match_count[many]={{current}} от {{total}} съвпадения +find_match_count[other]={{current}} от {{total}} съвпадения +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Повече от {{limit}} съвпадения +find_match_count_limit[one]=Повече от {{limit}} съвпадение +find_match_count_limit[two]=Повече от {{limit}} съвпадения +find_match_count_limit[few]=Повече от {{limit}} съвпадения +find_match_count_limit[many]=Повече от {{limit}} съвпадения +find_match_count_limit[other]=Повече от {{limit}} съвпадения +find_not_found=Фразата не е намерена + +# Predefined zoom values +page_scale_width=Ширина на страницата +page_scale_fit=Вместване в страницата +page_scale_auto=Автоматично мащабиране +page_scale_actual=Действителен размер +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Получи се грешка при зареждане на PDF-а. +invalid_file_error=Невалиден или повреден PDF файл. +missing_file_error=Липсващ PDF файл. +unexpected_response_error=Неочакван отговор от сървъра. + +rendering_error=Грешка при изчертаване на страницата. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Анотация {{type}}] +password_label=Въведете парола за отваряне на този PDF файл. +password_invalid=Невалидна парола. Моля, опитайте отново. +password_ok=Добре +password_cancel=Отказ + +printing_not_supported=Внимание: Този четец няма пълна поддръжка на отпечатване. +printing_not_ready=Внимание: Този PDF файл не е напълно зареден за печат. +web_fonts_disabled=Уеб-шрифтовете са забранени: разрешаване на използването на вградените PDF шрифтове. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/bn/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bn/viewer.properties new file mode 100644 index 00000000..d842f4dc --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bn/viewer.properties @@ -0,0 +1,218 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=পূর্ববর্তী পাতা +previous_label=পূর্ববর্তী +next.title=পরবর্তী পাতা +next_label=পরবর্তী + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=পাতা +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} এর +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pagesCount}} এর {{pageNumber}}) + +zoom_out.title=ছোট আকারে প্রদর্শন +zoom_out_label=ছোট আকারে প্রদর্শন +zoom_in.title=বড় আকারে প্রদর্শন +zoom_in_label=বড় আকারে প্রদর্শন +zoom.title=বড় আকারে প্রদর্শন +presentation_mode.title=উপস্থাপনা মোডে স্যুইচ করুন +presentation_mode_label=উপস্থাপনা মোড +open_file.title=ফাইল খুলুন +open_file_label=খুলুন +print.title=মুদ্রণ +print_label=মুদ্রণ + +# Secondary toolbar and context menu +tools.title=টুল +tools_label=টুল +first_page.title=প্রথম পাতায় যাও +first_page_label=প্রথম পাতায় যাও +last_page.title=শেষ পাতায় যাও +last_page_label=শেষ পাতায় যাও +page_rotate_cw.title=ঘড়ির কাঁটার দিকে ঘোরাও +page_rotate_cw_label=ঘড়ির কাঁটার দিকে ঘোরাও +page_rotate_ccw.title=ঘড়ির কাঁটার বিপরীতে ঘোরাও +page_rotate_ccw_label=ঘড়ির কাঁটার বিপরীতে ঘোরাও + +cursor_text_select_tool.title=লেখা নির্বাচক টুল সক্রিয় করুন +cursor_text_select_tool_label=লেখা নির্বাচক টুল +cursor_hand_tool.title=হ্যান্ড টুল সক্রিয় করুন +cursor_hand_tool_label=হ্যান্ড টুল + +scroll_vertical.title=উলম্ব স্ক্রলিং ব্যবহার করুন +scroll_vertical_label=উলম্ব স্ক্রলিং +scroll_horizontal.title=অনুভূমিক স্ক্রলিং ব্যবহার করুন +scroll_horizontal_label=অনুভূমিক স্ক্রলিং +scroll_wrapped.title=Wrapped স্ক্রোলিং ব্যবহার করুন +scroll_wrapped_label=Wrapped স্ক্রোলিং + +spread_none.title=পেজ স্প্রেডগুলোতে যোগদান করবেন না +spread_none_label=Spreads নেই +spread_odd_label=বিজোড় Spreads +spread_even_label=জোড় Spreads + +# Document properties dialog box +document_properties.title=নথি বৈশিষ্ট্য… +document_properties_label=নথি বৈশিষ্ট্য… +document_properties_file_name=ফাইলের নাম: +document_properties_file_size=ফাইলের আকার: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} কেবি ({{size_b}} বাইট) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} এমবি ({{size_b}} বাইট) +document_properties_title=শিরোনাম: +document_properties_author=লেখক: +document_properties_subject=বিষয়: +document_properties_keywords=কীওয়ার্ড: +document_properties_creation_date=তৈরির তারিখ: +document_properties_modification_date=পরিবর্তনের তারিখ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=প্রস্তুতকারক: +document_properties_producer=পিডিএফ প্রস্তুতকারক: +document_properties_version=পিডিএফ সংষ্করণ: +document_properties_page_count=মোট পাতা: +document_properties_page_size=পাতার সাইজ: +document_properties_page_size_unit_inches=এর মধ্যে +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=উলম্ব +document_properties_page_size_orientation_landscape=অনুভূমিক +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=লেটার +document_properties_page_size_name_legal=লীগাল +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=হ্যাঁ +document_properties_linearized_no=না +document_properties_close=বন্ধ + +print_progress_message=মুদ্রণের জন্য নথি প্রস্তুত করা হচ্ছে… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=বাতিল + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=সাইডবার টগল করুন +toggle_sidebar_label=সাইডবার টগল করুন +document_outline.title=নথির আউটলাইন দেখাও (সব আইটেম প্রসারিত/সঙ্কুচিত করতে ডবল ক্লিক করুন) +document_outline_label=নথির রূপরেখা +attachments.title=সংযুক্তি দেখাও +attachments_label=সংযুক্তি +thumbs.title=থাম্বনেইল সমূহ প্রদর্শন করুন +thumbs_label=থাম্বনেইল সমূহ +findbar.title=নথির মধ্যে খুঁজুন +findbar_label=খুঁজুন + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=পাতা {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} পাতার থাম্বনেইল + +# Find panel button title and messages +find_input.title=খুঁজুন +find_input.placeholder=নথির মধ্যে খুঁজুন… +find_previous.title=বাক্যাংশের পূর্ববর্তী উপস্থিতি অনুসন্ধান +find_previous_label=পূর্ববর্তী +find_next.title=বাক্যাংশের পরবর্তী উপস্থিতি অনুসন্ধান +find_next_label=পরবর্তী +find_highlight=সব হাইলাইট করুন +find_match_case_label=অক্ষরের ছাঁদ মেলানো +find_entire_word_label=সম্পূর্ণ শব্দ +find_reached_top=পাতার শুরুতে পৌছে গেছে, নীচ থেকে আরম্ভ করা হয়েছে +find_reached_bottom=পাতার শেষে পৌছে গেছে, উপর থেকে আরম্ভ করা হয়েছে +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} এর {{current}} মিল +find_match_count[two]={{total}} এর {{current}} মিল +find_match_count[few]={{total}} এর {{current}} মিল +find_match_count[many]={{total}} এর {{current}} মিল +find_match_count[other]={{total}} এর {{current}} মিল +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} এর বেশি মিল +find_match_count_limit[one]={{limit}} এর বেশি মিল +find_match_count_limit[two]={{limit}} এর বেশি মিল +find_match_count_limit[few]={{limit}} এর বেশি মিল +find_match_count_limit[many]={{limit}} এর বেশি মিল +find_match_count_limit[other]={{limit}} এর বেশি মিল +find_not_found=বাক্যাংশ পাওয়া যায়নি + +# Predefined zoom values +page_scale_width=পাতার প্রস্থ +page_scale_fit=পাতা ফিট করুন +page_scale_auto=স্বয়ংক্রিয় জুম +page_scale_actual=প্রকৃত আকার +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=পিডিএফ লোড করার সময় ত্রুটি দেখা দিয়েছে। +invalid_file_error=অকার্যকর অথবা ক্ষতিগ্রস্ত পিডিএফ ফাইল। +missing_file_error=নিখোঁজ PDF ফাইল। +unexpected_response_error=অপ্রত্যাশীত সার্ভার প্রতিক্রিয়া। + +rendering_error=পাতা উপস্থাপনার সময় ত্রুটি দেখা দিয়েছে। + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} টীকা] +password_label=পিডিএফ ফাইলটি ওপেন করতে পাসওয়ার্ড দিন। +password_invalid=ভুল পাসওয়ার্ড। অনুগ্রহ করে আবার চেষ্টা করুন। +password_ok=ঠিক আছে +password_cancel=বাতিল + +printing_not_supported=সতর্কতা: এই ব্রাউজারে মুদ্রণ সম্পূর্ণভাবে সমর্থিত নয়। +printing_not_ready=সতর্কীকরণ: পিডিএফটি মুদ্রণের জন্য সম্পূর্ণ লোড হয়নি। +web_fonts_disabled=ওয়েব ফন্ট নিষ্ক্রিয়: সংযুক্ত পিডিএফ ফন্ট ব্যবহার করা যাচ্ছে না। + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/bo/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bo/viewer.properties new file mode 100644 index 00000000..dbfb2d13 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bo/viewer.properties @@ -0,0 +1,217 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=དྲ་ངོས་སྔོན་མ +previous_label=སྔོན་མ +next.title=དྲ་ངོས་རྗེས་མ +next_label=རྗེས་མ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ཤོག་ངོས +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=of {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Zoom Out +zoom_out_label=Zoom Out +zoom_in.title=Zoom In +zoom_in_label=Zoom In +zoom.title=Zoom +presentation_mode.title=Switch to Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Open File +open_file_label=Open +print.title=Print +print_label=Print + +# Secondary toolbar and context menu +tools.title=Tools +tools_label=Tools +first_page.title=Go to First Page +first_page_label=Go to First Page +last_page.title=Go to Last Page +last_page_label=Go to Last Page +page_rotate_cw.title=Rotate Clockwise +page_rotate_cw_label=Rotate Clockwise +page_rotate_ccw.title=Rotate Counterclockwise +page_rotate_ccw_label=Rotate Counterclockwise + +cursor_text_select_tool.title=Enable Text Selection Tool +cursor_text_select_tool_label=Text Selection Tool +cursor_hand_tool.title=Enable Hand Tool +cursor_hand_tool_label=Hand Tool + +scroll_vertical.title=Use Vertical Scrolling +scroll_vertical_label=Vertical Scrolling +scroll_horizontal.title=Use Horizontal Scrolling +scroll_horizontal_label=Horizontal Scrolling +scroll_wrapped.title=Use Wrapped Scrolling +scroll_wrapped_label=Wrapped Scrolling + +spread_none.title=Do not join page spreads +spread_none_label=No Spreads +spread_odd.title=Join page spreads starting with odd-numbered pages +spread_odd_label=Odd Spreads +spread_even.title=Join page spreads starting with even-numbered pages +spread_even_label=Even Spreads + +# Document properties dialog box +document_properties.title=Document Properties… +document_properties_label=Document Properties… +document_properties_file_name=File name: +document_properties_file_size=File size: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Title: +document_properties_author=Author: +document_properties_subject=Subject: +document_properties_keywords=Keywords: +document_properties_creation_date=Creation Date: +document_properties_modification_date=Modification Date: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creator: +document_properties_producer=PDF Producer: +document_properties_version=PDF Version: +document_properties_page_count=Page Count: +document_properties_page_size=Page Size: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portrait +document_properties_page_size_orientation_landscape=landscape +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Yes +document_properties_linearized_no=No +document_properties_close=Close + +print_progress_message=Preparing document for printing… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancel + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toggle Sidebar +toggle_sidebar_label=Toggle Sidebar +document_outline.title=Show Document Outline (double-click to expand/collapse all items) +document_outline_label=Document Outline +attachments.title=Show Attachments +attachments_label=Attachments +thumbs.title=Show Thumbnails +thumbs_label=Thumbnails +findbar.title=Find in Document +findbar_label=Find + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Page {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail of Page {{page}} + +# Find panel button title and messages +find_input.title=Find +find_input.placeholder=Find in document… +find_previous.title=Find the previous occurrence of the phrase +find_previous_label=Previous +find_next.title=Find the next occurrence of the phrase +find_next_label=Next +find_highlight=Highlight all +find_match_case_label=Match case +find_entire_word_label=Whole words +find_reached_top=Reached top of document, continued from bottom +find_reached_bottom=Reached end of document, continued from top +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} of {{total}} match +find_match_count[two]={{current}} of {{total}} matches +find_match_count[few]={{current}} of {{total}} matches +find_match_count[many]={{current}} of {{total}} matches +find_match_count[other]={{current}} of {{total}} matches +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=More than {{limit}} matches +find_match_count_limit[one]=More than {{limit}} match +find_match_count_limit[two]=More than {{limit}} matches +find_match_count_limit[few]=More than {{limit}} matches +find_match_count_limit[many]=More than {{limit}} matches +find_match_count_limit[other]=More than {{limit}} matches +find_not_found=Phrase not found + +# Predefined zoom values +page_scale_width=Page Width +page_scale_fit=Page Fit +page_scale_auto=Automatic Zoom +page_scale_actual=Actual Size +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=An error occurred while loading the PDF. +invalid_file_error=Invalid or corrupted PDF file. +missing_file_error=Missing PDF file. +unexpected_response_error=Unexpected server response. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +rendering_error=An error occurred while rendering the page. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Enter the password to open this PDF file. +password_invalid=Invalid password. Please try again. +password_ok=OK +password_cancel=Cancel + +printing_not_supported=Warning: Printing is not fully supported by this browser. +printing_not_ready=Warning: The PDF is not fully loaded for printing. +web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/br/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/br/viewer.properties new file mode 100644 index 00000000..5c5da0fa --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/br/viewer.properties @@ -0,0 +1,224 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pajenn a-raok +previous_label=A-raok +next.title=Pajenn war-lerc'h +next_label=War-lerc'h + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pajenn +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=eus {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} war {{pagesCount}}) + +zoom_out.title=Zoum bihanaat +zoom_out_label=Zoum bihanaat +zoom_in.title=Zoum brasaat +zoom_in_label=Zoum brasaat +zoom.title=Zoum +presentation_mode.title=Trec'haoliñ etrezek ar mod kinnigadenn +presentation_mode_label=Mod kinnigadenn +open_file.title=Digeriñ ur restr +open_file_label=Digeriñ ur restr +print.title=Moullañ +print_label=Moullañ + +# Secondary toolbar and context menu +tools.title=Ostilhoù +tools_label=Ostilhoù +first_page.title=Mont d'ar bajenn gentañ +first_page_label=Mont d'ar bajenn gentañ +last_page.title=Mont d'ar bajenn diwezhañ +last_page_label=Mont d'ar bajenn diwezhañ +page_rotate_cw.title=C'hwelañ gant roud ar bizied +page_rotate_cw_label=C'hwelañ gant roud ar bizied +page_rotate_ccw.title=C'hwelañ gant roud gin ar bizied +page_rotate_ccw_label=C'hwelañ gant roud gin ar bizied + +cursor_text_select_tool.title=Gweredekaat an ostilh diuzañ testenn +cursor_text_select_tool_label=Ostilh diuzañ testenn +cursor_hand_tool.title=Gweredekaat an ostilh dorn +cursor_hand_tool_label=Ostilh dorn + +scroll_vertical.title=Arverañ an dibunañ a-blom +scroll_vertical_label=Dibunañ a-serzh +scroll_horizontal.title=Arverañ an dibunañ a-blaen +scroll_horizontal_label=Dibunañ a-blaen +scroll_wrapped.title=Arverañ an dibunañ paket +scroll_wrapped_label=Dibunañ paket + +spread_none.title=Chom hep stagañ ar skignadurioù +spread_none_label=Skignadenn ebet +spread_odd.title=Lakaat ar pajennadoù en ur gregiñ gant ar pajennoù ampar +spread_odd_label=Pajennoù ampar +spread_even.title=Lakaat ar pajennadoù en ur gregiñ gant ar pajennoù par +spread_even_label=Pajennoù par + +# Document properties dialog box +document_properties.title=Perzhioù an teul… +document_properties_label=Perzhioù an teul… +document_properties_file_name=Anv restr: +document_properties_file_size=Ment ar restr: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} Ke ({{size_b}} eizhbit) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} Me ({{size_b}} eizhbit) +document_properties_title=Titl: +document_properties_author=Aozer: +document_properties_subject=Danvez: +document_properties_keywords=Gerioù-alc'hwez: +document_properties_creation_date=Deiziad krouiñ: +document_properties_modification_date=Deiziad kemmañ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Krouer: +document_properties_producer=Kenderc'her PDF: +document_properties_version=Handelv PDF: +document_properties_page_count=Niver a bajennoù: +document_properties_page_size=Ment ar bajenn: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=poltred +document_properties_page_size_orientation_landscape=gweledva +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Lizher +document_properties_page_size_name_legal=Lezennel +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Gwel Web Herrek: +document_properties_linearized_yes=Ya +document_properties_linearized_no=Ket +document_properties_close=Serriñ + +print_progress_message=O prientiñ an teul evit moullañ... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Nullañ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Diskouez/kuzhat ar varrenn gostez +toggle_sidebar_notification2.title=Trec'haoliñ ar varrenn-gostez (ur steuñv pe stagadennoù a zo en teul) +toggle_sidebar_label=Diskouez/kuzhat ar varrenn gostez +document_outline.title=Diskouez steuñv an teul (daouglikit evit brasaat/bihanaat an holl elfennoù) +document_outline_label=Sinedoù an teuliad +attachments.title=Diskouez ar c'henstagadurioù +attachments_label=Kenstagadurioù +layers.title=Diskouez ar gwiskadoù (daou-glikañ evit adderaouekaat an holl gwiskadoù d'o stad dre ziouer) +layers_label=Gwiskadoù +thumbs.title=Diskouez ar melvennoù +thumbs_label=Melvennoù +findbar.title=Klask e-barzh an teuliad +findbar_label=Klask + +additional_layers=Gwiskadoù ouzhpenn +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pajenn {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pajenn {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Melvenn ar bajenn {{page}} + +# Find panel button title and messages +find_input.title=Klask +find_input.placeholder=Klask e-barzh an teuliad +find_previous.title=Kavout an tamm frazenn kent o klotañ ganti +find_previous_label=Kent +find_next.title=Kavout an tamm frazenn war-lerc'h o klotañ ganti +find_next_label=War-lerc'h +find_highlight=Usskediñ pep tra +find_match_case_label=Teurel evezh ouzh ar pennlizherennoù +find_entire_word_label=Gerioù a-bezh +find_reached_top=Tizhet eo bet derou ar bajenn, kenderc'hel diouzh an diaz +find_reached_bottom=Tizhet eo bet dibenn ar bajenn, kenderc'hel diouzh ar c'hrec'h +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=Klotadenn {{current}} war {{total}} +find_match_count[two]=Klotadenn {{current}} war {{total}} +find_match_count[few]=Klotadenn {{current}} war {{total}} +find_match_count[many]=Klotadenn {{current}} war {{total}} +find_match_count[other]=Klotadenn {{current}} war {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Muioc'h eget {{limit}} a glotadennoù +find_match_count_limit[one]=Muioc'h eget {{limit}} a glotadennoù +find_match_count_limit[two]=Muioc'h eget {{limit}} a glotadennoù +find_match_count_limit[few]=Muioc'h eget {{limit}} a glotadennoù +find_match_count_limit[many]=Muioc'h eget {{limit}} a glotadennoù +find_match_count_limit[other]=Muioc'h eget {{limit}} a glotadennoù +find_not_found=N'haller ket kavout ar frazenn + +# Predefined zoom values +page_scale_width=Led ar bajenn +page_scale_fit=Pajenn a-bezh +page_scale_auto=Zoum emgefreek +page_scale_actual=Ment wir +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Degouezhet ez eus bet ur fazi e-pad kargañ ar PDF. +invalid_file_error=Restr PDF didalvoudek pe kontronet. +missing_file_error=Restr PDF o vankout. +unexpected_response_error=Respont dic'hortoz a-berzh an dafariad + +rendering_error=Degouezhet ez eus bet ur fazi e-pad skrammañ ar bajennad. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Notennañ] +password_label=Enankit ar ger-tremen evit digeriñ ar restr PDF-mañ. +password_invalid=Ger-tremen didalvoudek. Klaskit en-dro mar plij. +password_ok=Mat eo +password_cancel=Nullañ + +printing_not_supported=Kemenn: N'eo ket skoret penn-da-benn ar moullañ gant ar merdeer-mañ. +printing_not_ready=Kemenn: N'hall ket bezañ moullet ar restr PDF rak n'eo ket karget penn-da-benn. +web_fonts_disabled=Diweredekaet eo an nodrezhoù web: n'haller ket arverañ an nodrezhoù PDF enframmet. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/brx/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/brx/viewer.properties new file mode 100644 index 00000000..1c2fc07f --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/brx/viewer.properties @@ -0,0 +1,184 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=आगोलनि बिलाइ +previous_label=आगोलनि +next.title=उननि बिलाइ +next_label=उननि + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=बिलाइ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} नि +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pagesCount}} नि {{pageNumber}}) + +zoom_out.title=फिसायै जुम खालाम +zoom_out_label=फिसायै जुम खालाम +zoom_in.title=गेदेरै जुम खालाम +zoom_in_label=गेदेरै जुम खालाम +zoom.title=जुम खालाम +presentation_mode.title=दिन्थिफुंनाय म'डआव थां +presentation_mode_label=दिन्थिफुंनाय म'ड +open_file.title=फाइलखौ खेव +open_file_label=खेव +print.title=साफाय +print_label=साफाय + +# Secondary toolbar and context menu +tools.title=टुल +tools_label=टुल +first_page.title=गिबि बिलाइआव थां +first_page_label=गिबि बिलाइआव थां +last_page.title=जोबथा बिलाइआव थां +last_page_label=जोबथा बिलाइआव थां +page_rotate_cw.title=घरि गिदिंनाय फार्से फिदिं +page_rotate_cw_label=घरि गिदिंनाय फार्से फिदिं +page_rotate_ccw.title=घरि गिदिंनाय उल्था फार्से फिदिं +page_rotate_ccw_label=घरि गिदिंनाय उल्था फार्से फिदिं + + + + +# Document properties dialog box +document_properties.title=फोरमान बिलाइनि आखुथाय... +document_properties_label=फोरमान बिलाइनि आखुथाय... +document_properties_file_name=फाइलनि मुं: +document_properties_file_size=फाइलनि महर: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} बाइट) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} बाइट) +document_properties_title=बिमुं: +document_properties_author=लिरगिरि: +document_properties_subject=आयदा: +document_properties_keywords=गाहाय सोदोब: +document_properties_creation_date=सोरजिनाय अक्ट': +document_properties_modification_date=सुद्रायनाय अक्ट': +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=सोरजिग्रा: +document_properties_producer=PDF दिहुनग्रा: +document_properties_version=PDF बिसान: +document_properties_page_count=बिलाइनि हिसाब: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=प'र्ट्रेट +document_properties_page_size_orientation_landscape=लेण्डस्केप +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=लायजाम +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=नंगौ +document_properties_linearized_no=नङा +document_properties_close=बन्द खालाम + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=नेवसि + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=टग्गल साइडबार +toggle_sidebar_label=टग्गल साइडबार +document_outline_label=फोरमान बिलाइ सिमा हांखो +attachments.title=नांजाब होनायखौ दिन्थि +attachments_label=नांजाब होनाय +thumbs.title=थामनेइलखौ दिन्थि +thumbs_label=थामनेइल +findbar.title=फोरमान बिलाइआव नागिरना दिहुन +findbar_label=नायगिरना दिहुन + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=बिलाइ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=बिलाइ {{page}} नि थामनेइल + +# Find panel button title and messages +find_input.title=नायगिरना दिहुन +find_input.placeholder=फोरमान बिलाइआव नागिरना दिहुन... +find_previous.title=बाथ्रा खोन्दोबनि सिगांनि नुजाथिनायखौ नागिर +find_previous_label=आगोलनि +find_next.title=बाथ्रा खोन्दोबनि उननि नुजाथिनायखौ नागिर +find_next_label=उननि +find_highlight=गासैखौबो हाइलाइट खालाम +find_match_case_label=गोरोबनाय केस +find_reached_top=थालो निफ्राय जागायनानै फोरमान बिलाइनि बिजौआव सौहैबाय +find_reached_bottom=बिजौ निफ्राय जागायनानै फोरमान बिलाइनि बिजौआव सौहैबाय +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_not_found=बाथ्रा खोन्दोब मोनाखै + +# Predefined zoom values +page_scale_width=बिलाइनि गुवार +page_scale_fit=बिलाइ गोरोबनाय +page_scale_auto=गावनोगाव जुम +page_scale_actual=थार महर +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF ल'ड खालामनाय समाव मोनसे गोरोन्थि जाबाय। +invalid_file_error=बाहायजायै एबा गाज्रि जानाय PDF फाइल +missing_file_error=गोमानाय PDF फाइल +unexpected_response_error=मिजिंथियै सार्भार फिननाय। + +rendering_error=बिलाइखौ राव सोलायनाय समाव मोनसे गोरोन्थि जादों। + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} सोदोब बेखेवनाय] +password_label=बे PDF फाइलखौ खेवनो पासवार्ड हाबहो। +password_invalid=बाहायजायै पासवार्ड। अननानै फिन नाजा। +password_ok=OK +password_cancel=नेवसि + +printing_not_supported=सांग्रांथि: साफायनाया बे ब्राउजारजों आबुङै हेफाजाब होजाया। +printing_not_ready=सांग्रांथि: PDF खौ साफायनायनि थाखाय फुरायै ल'ड खालामाखै। +web_fonts_disabled=वेब फन्टखौ लोरबां खालामबाय: अरजाबहोनाय PDF फन्टखौ बाहायनो हायाखै। + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/bs/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bs/viewer.properties new file mode 100644 index 00000000..6285b4d5 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/bs/viewer.properties @@ -0,0 +1,173 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Prethodna strana +previous_label=Prethodna +next.title=Sljedeća strna +next_label=Sljedeća + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Strana +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=od {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} od {{pagesCount}}) + +zoom_out.title=Umanji +zoom_out_label=Umanji +zoom_in.title=Uvećaj +zoom_in_label=Uvećaj +zoom.title=Uvećanje +presentation_mode.title=Prebaci se u prezentacijski režim +presentation_mode_label=Prezentacijski režim +open_file.title=Otvori fajl +open_file_label=Otvori +print.title=Štampaj +print_label=Štampaj + +# Secondary toolbar and context menu +tools.title=Alati +tools_label=Alati +first_page.title=Idi na prvu stranu +first_page_label=Idi na prvu stranu +last_page.title=Idi na zadnju stranu +last_page_label=Idi na zadnju stranu +page_rotate_cw.title=Rotiraj u smjeru kazaljke na satu +page_rotate_cw_label=Rotiraj u smjeru kazaljke na satu +page_rotate_ccw.title=Rotiraj suprotno smjeru kazaljke na satu +page_rotate_ccw_label=Rotiraj suprotno smjeru kazaljke na satu + +cursor_text_select_tool.title=Omogući alat za označavanje teksta +cursor_text_select_tool_label=Alat za označavanje teksta +cursor_hand_tool.title=Omogući ručni alat +cursor_hand_tool_label=Ručni alat + +# Document properties dialog box +document_properties.title=Svojstva dokumenta... +document_properties_label=Svojstva dokumenta... +document_properties_file_name=Naziv fajla: +document_properties_file_size=Veličina fajla: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajta) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajta) +document_properties_title=Naslov: +document_properties_author=Autor: +document_properties_subject=Predmet: +document_properties_keywords=Ključne riječi: +document_properties_creation_date=Datum kreiranja: +document_properties_modification_date=Datum promjene: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Kreator: +document_properties_producer=PDF stvaratelj: +document_properties_version=PDF verzija: +document_properties_page_count=Broj stranica: +document_properties_page_size=Veličina stranice: +document_properties_page_size_unit_inches=u +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=uspravno +document_properties_page_size_orientation_landscape=vodoravno +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Pismo +document_properties_page_size_name_legal=Pravni +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +document_properties_close=Zatvori + +print_progress_message=Pripremam dokument za štampu… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Otkaži + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Uključi/isključi bočnu traku +toggle_sidebar_label=Uključi/isključi bočnu traku +document_outline.title=Prikaži outline dokumenta (dvoklik za skupljanje/širenje svih stavki) +document_outline_label=Konture dokumenta +attachments.title=Prikaži priloge +attachments_label=Prilozi +thumbs.title=Prikaži thumbnailove +thumbs_label=Thumbnailovi +findbar.title=Pronađi u dokumentu +findbar_label=Pronađi + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Strana {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail strane {{page}} + +# Find panel button title and messages +find_input.title=Pronađi +find_input.placeholder=Pronađi u dokumentu… +find_previous.title=Pronađi prethodno pojavljivanje fraze +find_previous_label=Prethodno +find_next.title=Pronađi sljedeće pojavljivanje fraze +find_next_label=Sljedeće +find_highlight=Označi sve +find_match_case_label=Osjetljivost na karaktere +find_reached_top=Dostigao sam vrh dokumenta, nastavljam sa dna +find_reached_bottom=Dostigao sam kraj dokumenta, nastavljam sa vrha +find_not_found=Fraza nije pronađena + +# Predefined zoom values +page_scale_width=Širina strane +page_scale_fit=Uklopi stranu +page_scale_auto=Automatsko uvećanje +page_scale_actual=Stvarna veličina +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Došlo je do greške prilikom učitavanja PDF-a. +invalid_file_error=Neispravan ili oštećen PDF fajl. +missing_file_error=Nedostaje PDF fajl. +unexpected_response_error=Neočekivani odgovor servera. + +rendering_error=Došlo je do greške prilikom renderiranja strane. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} pribilješka] +password_label=Upišite lozinku da biste otvorili ovaj PDF fajl. +password_invalid=Pogrešna lozinka. Pokušajte ponovo. +password_ok=OK +password_cancel=Otkaži + +printing_not_supported=Upozorenje: Štampanje nije u potpunosti podržano u ovom browseru. +printing_not_ready=Upozorenje: PDF nije u potpunosti učitan za štampanje. +web_fonts_disabled=Web fontovi su onemogućeni: nemoguće koristiti ubačene PDF fontove. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ca/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ca/viewer.properties new file mode 100644 index 00000000..a51aa44a --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ca/viewer.properties @@ -0,0 +1,256 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pàgina anterior +previous_label=Anterior +next.title=Pàgina següent +next_label=Següent + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pàgina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Redueix +zoom_out_label=Redueix +zoom_in.title=Amplia +zoom_in_label=Amplia +zoom.title=Escala +presentation_mode.title=Canvia al mode de presentació +presentation_mode_label=Mode de presentació +open_file.title=Obre el fitxer +open_file_label=Obre +print.title=Imprimeix +print_label=Imprimeix +save.title=Desa +save_label=Desa +bookmark1.title=Pàgina actual (mostra l'URL de la pàgina actual) +bookmark1_label=Pàgina actual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Obre en una aplicació +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Obre en una aplicació + +# Secondary toolbar and context menu +tools.title=Eines +tools_label=Eines +first_page.title=Vés a la primera pàgina +first_page_label=Vés a la primera pàgina +last_page.title=Vés a l'última pàgina +last_page_label=Vés a l'última pàgina +page_rotate_cw.title=Gira cap a la dreta +page_rotate_cw_label=Gira cap a la dreta +page_rotate_ccw.title=Gira cap a l'esquerra +page_rotate_ccw_label=Gira cap a l'esquerra + +cursor_text_select_tool.title=Habilita l'eina de selecció de text +cursor_text_select_tool_label=Eina de selecció de text +cursor_hand_tool.title=Habilita l'eina de mà +cursor_hand_tool_label=Eina de mà + +scroll_page.title=Usa el desplaçament de pàgina +scroll_page_label=Desplaçament de pàgina +scroll_vertical.title=Utilitza el desplaçament vertical +scroll_vertical_label=Desplaçament vertical +scroll_horizontal.title=Utilitza el desplaçament horitzontal +scroll_horizontal_label=Desplaçament horitzontal +scroll_wrapped.title=Activa el desplaçament continu +scroll_wrapped_label=Desplaçament continu + +spread_none.title=No agrupis les pàgines de dues en dues +spread_none_label=Una sola pàgina +spread_odd.title=Mostra dues pàgines començant per les pàgines de numeració senar +spread_odd_label=Doble pàgina (senar) +spread_even.title=Mostra dues pàgines començant per les pàgines de numeració parell +spread_even_label=Doble pàgina (parell) + +# Document properties dialog box +document_properties.title=Propietats del document… +document_properties_label=Propietats del document… +document_properties_file_name=Nom del fitxer: +document_properties_file_size=Mida del fitxer: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Títol: +document_properties_author=Autor: +document_properties_subject=Assumpte: +document_properties_keywords=Paraules clau: +document_properties_creation_date=Data de creació: +document_properties_modification_date=Data de modificació: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creador: +document_properties_producer=Generador de PDF: +document_properties_version=Versió de PDF: +document_properties_page_count=Nombre de pàgines: +document_properties_page_size=Mida de la pàgina: +document_properties_page_size_unit_inches=polzades +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=apaïsat +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista web ràpida: +document_properties_linearized_yes=Sí +document_properties_linearized_no=No +document_properties_close=Tanca + +print_progress_message=S'està preparant la impressió del document… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancel·la + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Mostra/amaga la barra lateral +toggle_sidebar_notification2.title=Mostra/amaga la barra lateral (el document conté un esquema, adjuncions o capes) +toggle_sidebar_label=Mostra/amaga la barra lateral +document_outline.title=Mostra l'esquema del document (doble clic per ampliar/reduir tots els elements) +document_outline_label=Esquema del document +attachments.title=Mostra les adjuncions +attachments_label=Adjuncions +layers.title=Mostra les capes (doble clic per restablir totes les capes al seu estat per defecte) +layers_label=Capes +thumbs.title=Mostra les miniatures +thumbs_label=Miniatures +current_outline_item.title=Cerca l'element d'esquema actual +current_outline_item_label=Element d'esquema actual +findbar.title=Cerca al document +findbar_label=Cerca + +additional_layers=Capes addicionals +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pàgina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pàgina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura de la pàgina {{page}} + +# Find panel button title and messages +find_input.title=Cerca +find_input.placeholder=Cerca al document… +find_previous.title=Cerca l'anterior coincidència de l'expressió +find_previous_label=Anterior +find_next.title=Cerca la següent coincidència de l'expressió +find_next_label=Següent +find_highlight=Ressalta-ho tot +find_match_case_label=Distingeix entre majúscules i minúscules +find_match_diacritics_label=Respecta els diacrítics +find_entire_word_label=Paraules senceres +find_reached_top=S'ha arribat al principi del document, es continua pel final +find_reached_bottom=S'ha arribat al final del document, es continua pel principi +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} coincidència +find_match_count[two]={{current}} de {{total}} coincidències +find_match_count[few]={{current}} de {{total}} coincidències +find_match_count[many]={{current}} de {{total}} coincidències +find_match_count[other]={{current}} de {{total}} coincidències +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Més de {{limit}} coincidències +find_match_count_limit[one]=Més d'{{limit}} coincidència +find_match_count_limit[two]=Més de {{limit}} coincidències +find_match_count_limit[few]=Més de {{limit}} coincidències +find_match_count_limit[many]=Més de {{limit}} coincidències +find_match_count_limit[other]=Més de {{limit}} coincidències +find_not_found=No s'ha trobat l'expressió + +# Predefined zoom values +page_scale_width=Amplada de la pàgina +page_scale_fit=Ajusta la pàgina +page_scale_auto=Zoom automàtic +page_scale_actual=Mida real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=S'ha produït un error en carregar el PDF. +invalid_file_error=El fitxer PDF no és vàlid o està malmès. +missing_file_error=Falta el fitxer PDF. +unexpected_response_error=Resposta inesperada del servidor. +rendering_error=S'ha produït un error mentre es renderitzava la pàgina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotació {{type}}] +password_label=Introduïu la contrasenya per obrir aquest fitxer PDF. +password_invalid=La contrasenya no és vàlida. Torneu-ho a provar. +password_ok=D'acord +password_cancel=Cancel·la + +printing_not_supported=Avís: la impressió no és plenament funcional en aquest navegador. +printing_not_ready=Atenció: el PDF no s'ha acabat de carregar per imprimir-lo. +web_fonts_disabled=Els tipus de lletra web estan desactivats: no es poden utilitzar els tipus de lletra incrustats al PDF. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Dibuixa +editor_ink2_label=Dibuixa + +free_text2_default_content=Escriviu… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Mida +editor_ink_color=Color +editor_ink_thickness=Gruix +editor_ink_opacity=Opacitat + +# Editor aria +editor_free_text2_aria_label=Editor de text +editor_ink2_aria_label=Editor de dibuix +editor_ink_canvas_aria_label=Imatge creada per l'usuari diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/cak/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/cak/viewer.properties new file mode 100644 index 00000000..e504e07b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/cak/viewer.properties @@ -0,0 +1,253 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Jun kan ruxaq +previous_label=Jun kan +next.title=Jun chik ruxaq +next_label=Jun chik + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Ruxaq +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=richin {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} richin {{pagesCount}}) + +zoom_out.title=Tich'utinirisäx +zoom_out_label=Tich'utinirisäx +zoom_in.title=Tinimirisäx +zoom_in_label=Tinimirisäx +zoom.title=Sum +presentation_mode.title=Tijal ri rub'anikil niwachin +presentation_mode_label=Pa rub'eyal niwachin +open_file.title=Tijaq Yakb'äl +open_file_label=Tijaq +print.title=Titz'ajb'äx +print_label=Titz'ajb'äx + +save.title=Tiyak +save_label=Tiyak +bookmark1_label=Ruxaq k'o wakami + +# Secondary toolbar and context menu +tools.title=Samajib'äl +tools_label=Samajib'äl +first_page.title=Tib'e pa nab'ey ruxaq +first_page_label=Tib'e pa nab'ey ruxaq +last_page.title=Tib'e pa ruk'isib'äl ruxaq +last_page_label=Tib'e pa ruk'isib'äl ruxaq +page_rotate_cw.title=Tisutïx pan ajkiq'a' +page_rotate_cw_label=Tisutïx pan ajkiq'a' +page_rotate_ccw.title=Tisutïx pan ajxokon +page_rotate_ccw_label=Tisutïx pan ajxokon + +cursor_text_select_tool.title=Titzij ri rusamajib'al Rucha'ik Rucholajem Tzij +cursor_text_select_tool_label=Rusamajib'al Rucha'ik Rucholajem Tzij +cursor_hand_tool.title=Titzij ri q'ab'aj samajib'äl +cursor_hand_tool_label=Q'ab'aj Samajib'äl + +scroll_page.title=Tokisäx Ruxaq Q'axanem +scroll_page_label=Ruxaq Q'axanem +scroll_vertical.title=Tokisäx Pa'äl Q'axanem +scroll_vertical_label=Pa'äl Q'axanem +scroll_horizontal.title=Tokisäx Kotz'öl Q'axanem +scroll_horizontal_label=Kotz'öl Q'axanem +scroll_wrapped.title=Tokisäx Tzub'aj Q'axanem +scroll_wrapped_label=Tzub'aj Q'axanem + +spread_none.title=Man ketun taq ruxaq pa rub'eyal wuj +spread_none_label=Majun Rub'eyal +spread_odd.title=Ke'atunu' ri taq ruxaq rik'in natikirisaj rik'in jun man k'ulaj ta rajilab'al +spread_odd_label=Man K'ulaj Ta Rub'eyal +spread_even.title=Ke'atunu' ri taq ruxaq rik'in natikirisaj rik'in jun k'ulaj rajilab'al +spread_even_label=K'ulaj Rub'eyal + +# Document properties dialog box +document_properties.title=Taq richinil wuj… +document_properties_label=Taq richinil wuj… +document_properties_file_name=Rub'i' yakb'äl: +document_properties_file_size=Runimilem yakb'äl: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=B'i'aj: +document_properties_author=B'anel: +document_properties_subject=Taqikil: +document_properties_keywords=Kixe'el taq tzij: +document_properties_creation_date=Ruq'ijul xtz'uk: +document_properties_modification_date=Ruq'ijul xjalwachïx: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Q'inonel: +document_properties_producer=PDF b'anöy: +document_properties_version=PDF ruwäch: +document_properties_page_count=Jarupe' ruxaq: +document_properties_page_size=Runimilem ri Ruxaq: +document_properties_page_size_unit_inches=pa +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=rupalem +document_properties_page_size_orientation_landscape=rukotz'olem +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Loman wuj +document_properties_page_size_name_legal=Taqanel tzijol +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Anin Rutz'etik Ajk'amaya'l: +document_properties_linearized_yes=Ja' +document_properties_linearized_no=Mani +document_properties_close=Titz'apïx + +print_progress_message=Ruchojmirisaxik wuj richin nitz'ajb'äx… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Tiq'at + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Tijal ri ajxikin kajtz'ik +toggle_sidebar_notification2.title=Tik'ex ri ajxikin yuqkajtz'ik (ri wuj eruk'wan taq ruchi'/taqo/kuchuj) +toggle_sidebar_label=Tijal ri ajxikin kajtz'ik +document_outline.title=Tik'ut pe ruch'akulal wuj (kamul-pitz'oj richin nirik'/nich'utinirisäx ronojel ruch'akulal) +document_outline_label=Ruch'akulal wuj +attachments.title=Kek'ut pe ri taq taqoj +attachments_label=Taq taqoj +layers.title=Kek'ut taq Kuchuj (ka'i'-pitz' richin yetzolïx ronojel ri taq kuchuj e k'o wi) +layers_label=Taq kuchuj +thumbs.title=Kek'ut pe taq ch'utiq +thumbs_label=Koköj +current_outline_item.title=Kekanöx Taq Ch'akulal Kik'wan Chib'äl +current_outline_item_label=Taq Ch'akulal Kik'wan Chib'äl +findbar.title=Tikanöx chupam ri wuj +findbar_label=Tikanöx + +additional_layers=Tz'aqat ta Kuchuj +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Ruxaq {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Ruxaq {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Ruch'utinirisaxik ruxaq {{page}} + +# Find panel button title and messages +find_input.title=Tikanöx +find_input.placeholder=Tikanöx pa wuj… +find_previous.title=Tib'an b'enam pa ri jun kan q'aptzij xilitäj +find_previous_label=Jun kan +find_next.title=Tib'e pa ri jun chik pajtzij xilitäj +find_next_label=Jun chik +find_highlight=Tiya' retal ronojel +find_match_case_label=Tuk'äm ri' kik'in taq nimatz'ib' chuqa' taq ch'utitz'ib' +find_match_diacritics_label=Tiya' Kikojol Tz'aqat taq Tz'ib' +find_entire_word_label=Tz'aqät taq tzij +find_reached_top=Xb'eq'i' ri rutikirib'al wuj, xtikanöx k'a pa ruk'isib'äl +find_reached_bottom=Xb'eq'i' ri ruk'isib'äl wuj, xtikanöx pa rutikirib'al +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} richin {{total}} nuk'äm ri' +find_match_count[two]={{current}} richin {{total}} nikik'äm ki' +find_match_count[few]={{current}} richin {{total}} nikik'äm ki' +find_match_count[many]={{current}} richin {{total}} nikik'äm ki' +find_match_count[other]={{current}} richin {{total}} nikik'äm ki' +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=K'ïy chi re {{limit}} nikik'äm ki' +find_match_count_limit[one]=K'ïy chi re {{limit}} nuk'äm ri' +find_match_count_limit[two]=K'ïy chi re {{limit}} nikik'äm ki' +find_match_count_limit[few]=K'ïy chi re {{limit}} nikik'äm ki' +find_match_count_limit[many]=K'ïy chi re {{limit}} nikik'äm ki' +find_match_count_limit[other]=K'ïy chi re {{limit}} nikik'äm ki' +find_not_found=Man xilitäj ta ri pajtzij + +# Predefined zoom values +page_scale_width=Ruwa ruxaq +page_scale_fit=Tinuk' ruxaq +page_scale_auto=Yonil chi nimilem +page_scale_actual=Runimilem Wakami +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=\u0020Xk'ulwachitäj jun sach'oj toq xnuk'ux ri PDF . +invalid_file_error=Man oke ta o yujtajinäq ri PDF yakb'äl. +missing_file_error=Man xilitäj ta ri PDF yakb'äl. +unexpected_response_error=Man oyob'en ta tz'olin rutzij ruk'u'x samaj. + +rendering_error=Xk'ulwachitäj jun sachoj toq ninuk'wachij ri ruxaq. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Tz'ib'anïk] +password_label=Tatz'ib'aj ri ewan tzij richin najäq re yakb'äl re' pa PDF. +password_invalid=Man okel ta ri ewan tzij: Tatojtob'ej chik. +password_ok=Ütz +password_cancel=Tiq'at + +printing_not_supported=Rutzijol k'ayewal: Ri rutz'ajb'axik man koch'el ta ronojel pa re okik'amaya'l re'. +printing_not_ready=Rutzijol k'ayewal: Ri PDF man xusamajij ta ronojel richin nitz'ajb'äx. +web_fonts_disabled=E chupül ri taq ajk'amaya'l tz'ib': man tikirel ta nokisäx ri taq tz'ib' PDF pa ch'ikenïk + +# Editor +editor_free_text2.title=Rucholajem tz'ib' +editor_free_text2_label=Rucholajem tz'ib' +editor_ink2.title=Tiwachib'ëx +editor_ink2_label=Tiwachib'ëx + +free_text2_default_content=Titikitisäx rutz'ib'axik… + +# Editor Parameters +editor_free_text_color=B'onil +editor_free_text_size=Nimilem +editor_ink_color=B'onil +editor_ink_thickness=Rupimil +editor_ink_opacity=Q'equmal + +# Editor aria +editor_free_text2_aria_label=Nuk'unel tz'ib'atzij +editor_ink2_aria_label=Nuk'unel wachib'äl +editor_ink_canvas_aria_label=Wachib'äl nuk'un ruma okisaxel diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ckb/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ckb/viewer.properties new file mode 100644 index 00000000..af4a3321 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ckb/viewer.properties @@ -0,0 +1,213 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=پەڕەی پێشوو +previous_label=پێشوو +next.title=پەڕەی دوواتر +next_label=دوواتر + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=پەرە +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=لە {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} لە {{pagesCount}}) + +zoom_out.title=ڕۆچوونی +zoom_out_label=ڕۆچوونی +zoom_in.title=هێنانەپێش +zoom_in_label=هێنانەپێش +zoom.title=زووم +presentation_mode.title=گۆڕین بۆ دۆخی پێشکەشکردن +presentation_mode_label=دۆخی پێشکەشکردن +open_file.title=پەڕگە بکەرەوە +open_file_label=کردنەوە +print.title=چاپکردن +print_label=چاپکردن + +# Secondary toolbar and context menu +tools.title=ئامرازەکان +tools_label=ئامرازەکان +first_page.title=برۆ بۆ یەکەم پەڕە +first_page_label=بڕۆ بۆ یەکەم پەڕە +last_page.title=بڕۆ بۆ کۆتا پەڕە +last_page_label=بڕۆ بۆ کۆتا پەڕە +page_rotate_cw.title=ئاڕاستەی میلی کاتژمێر +page_rotate_cw_label=ئاڕاستەی میلی کاتژمێر +page_rotate_ccw.title=پێچەوانەی میلی کاتژمێر +page_rotate_ccw_label=پێچەوانەی میلی کاتژمێر + +cursor_text_select_tool.title=توڵامرازی نیشانکەری دەق چالاک بکە +cursor_text_select_tool_label=توڵامرازی نیشانکەری دەق +cursor_hand_tool.title=توڵامرازی دەستی چالاک بکە +cursor_hand_tool_label=توڵامرازی دەستی + +scroll_vertical.title=ناردنی ئەستوونی بەکاربێنە +scroll_vertical_label=ناردنی ئەستوونی +scroll_horizontal.title=ناردنی ئاسۆیی بەکاربێنە +scroll_horizontal_label=ناردنی ئاسۆیی +scroll_wrapped.title=ناردنی لوولکراو بەکاربێنە +scroll_wrapped_label=ناردنی لوولکراو + + +# Document properties dialog box +document_properties.title=تایبەتمەندییەکانی بەڵگەنامە... +document_properties_label=تایبەتمەندییەکانی بەڵگەنامە... +document_properties_file_name=ناوی پەڕگە: +document_properties_file_size=قەبارەی پەڕگە: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} کب ({{size_b}} بایت) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} مب ({{size_b}} بایت) +document_properties_title=سەردێڕ: +document_properties_author=نووسەر +document_properties_subject=بابەت: +document_properties_keywords=کلیلەوشە: +document_properties_creation_date=بەرواری درووستکردن: +document_properties_modification_date=بەرواری دەستکاریکردن: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=درووستکەر: +document_properties_producer=بەرهەمهێنەری PDF: +document_properties_version=وەشانی PDF: +document_properties_page_count=ژمارەی پەرەکان: +document_properties_page_size=قەبارەی پەڕە: +document_properties_page_size_unit_inches=ئینچ +document_properties_page_size_unit_millimeters=ملم +document_properties_page_size_orientation_portrait=پۆرترەیت(درێژ) +document_properties_page_size_orientation_landscape=پانیی +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=نامە +document_properties_page_size_name_legal=یاسایی +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=پیشاندانی وێبی خێرا: +document_properties_linearized_yes=بەڵێ +document_properties_linearized_no=نەخێر +document_properties_close=داخستن + +print_progress_message=بەڵگەنامە ئامادەدەکرێت بۆ چاپکردن... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=پاشگەزبوونەوە + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=لاتەنیشت پیشاندان/شاردنەوە +toggle_sidebar_label=لاتەنیشت پیشاندان/شاردنەوە +document_outline_label=سنووری چوارچێوە +attachments.title=پاشکۆکان پیشان بدە +attachments_label=پاشکۆکان +layers_label=چینەکان +thumbs.title=وێنۆچکە پیشان بدە +thumbs_label=وێنۆچکە +findbar.title=لە بەڵگەنامە بگەرێ +findbar_label=دۆزینەوە + +additional_layers=چینی زیاتر +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=پەڕەی {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=وێنۆچکەی پەڕەی {{page}} + +# Find panel button title and messages +find_input.title=دۆزینەوە +find_input.placeholder=لە بەڵگەنامە بگەرێ... +find_previous.title=هەبوونی پێشوو بدۆزرەوە لە ڕستەکەدا +find_previous_label=پێشوو +find_next.title=هەبوونی داهاتوو بدۆزەرەوە لە ڕستەکەدا +find_next_label=دوواتر +find_highlight=هەمووی نیشانە بکە +find_match_case_label=دۆخی لەیەکچوون +find_entire_word_label=هەموو وشەکان +find_reached_top=گەشتیتە سەرەوەی بەڵگەنامە، لە خوارەوە دەستت پێکرد +find_reached_bottom=گەشتیتە کۆتایی بەڵگەنامە. لەسەرەوە دەستت پێکرد +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} لە کۆی {{total}} لەیەکچوو +find_match_count[two]={{current}} لە کۆی {{total}} لەیەکچوو +find_match_count[few]={{current}} لە کۆی {{total}} لەیەکچوو +find_match_count[many]={{current}} لە کۆی {{total}} لەیەکچوو +find_match_count[other]={{current}} لە کۆی {{total}} لەیەکچوو +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=زیاتر لە {{limit}} لەیەکچوو +find_match_count_limit[one]=زیاتر لە {{limit}} لەیەکچوو +find_match_count_limit[two]=زیاتر لە {{limit}} لەیەکچوو +find_match_count_limit[few]=زیاتر لە {{limit}} لەیەکچوو +find_match_count_limit[many]=زیاتر لە {{limit}} لەیەکچوو +find_match_count_limit[other]=زیاتر لە {{limit}} لەیەکچوو +find_not_found=نووسین نەدۆزرایەوە + +# Predefined zoom values +page_scale_width=پانی پەڕە +page_scale_fit=پڕبوونی پەڕە +page_scale_auto=زوومی خۆکار +page_scale_actual=قەبارەی ڕاستی +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=هەڵەیەک ڕوویدا لە کاتی بارکردنی PDF. +invalid_file_error=پەڕگەی pdf تێکچووە یان نەگونجاوە. +missing_file_error=پەڕگەی pdf بوونی نیە. +unexpected_response_error=وەڵامی ڕاژەخوازی نەخوازراو. + +rendering_error=هەڵەیەک ڕوویدا لە کاتی پوختەکردنی (ڕێندەر) پەڕە. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} سەرنج] +password_label=وشەی تێپەڕ بنووسە بۆ کردنەوەی پەڕگەی pdf. +password_invalid=وشەی تێپەڕ هەڵەیە. تکایە دووبارە هەوڵ بدەرەوە. +password_ok=باشە +password_cancel=پاشگەزبوونەوە + +printing_not_supported=ئاگاداربە: چاپکردن بە تەواوی پشتگیر ناکرێت لەم وێبگەڕە. +printing_not_ready=ئاگاداربە: PDF بە تەواوی بارنەبووە بۆ چاپکردن. +web_fonts_disabled=جۆرەپیتی وێب ناچالاکە: نەتوانی جۆرەپیتی تێخراوی ناو pdfـەکە بەکاربێت. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/cs/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/cs/viewer.properties new file mode 100644 index 00000000..49f88d7d --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/cs/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Přejde na předchozí stránku +previous_label=Předchozí +next.title=Přejde na následující stránku +next_label=Další + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Stránka +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=z {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} z {{pagesCount}}) + +zoom_out.title=Zmenší velikost +zoom_out_label=Zmenšit +zoom_in.title=Zvětší velikost +zoom_in_label=Zvětšit +zoom.title=Nastaví velikost +presentation_mode.title=Přepne do režimu prezentace +presentation_mode_label=Režim prezentace +open_file.title=Otevře soubor +open_file_label=Otevřít +print.title=Vytiskne dokument +print_label=Vytisknout +save.title=Uložit +save_label=Uložit +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Stáhnout +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Stáhnout +bookmark1.title=Aktuální stránka (zobrazit URL od aktuální stránky) +bookmark1_label=Aktuální stránka +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Otevřít v aplikaci +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Otevřít v aplikaci + +# Secondary toolbar and context menu +tools.title=Nástroje +tools_label=Nástroje +first_page.title=Přejde na první stránku +first_page_label=Přejít na první stránku +last_page.title=Přejde na poslední stránku +last_page_label=Přejít na poslední stránku +page_rotate_cw.title=Otočí po směru hodin +page_rotate_cw_label=Otočit po směru hodin +page_rotate_ccw.title=Otočí proti směru hodin +page_rotate_ccw_label=Otočit proti směru hodin + +cursor_text_select_tool.title=Povolí výběr textu +cursor_text_select_tool_label=Výběr textu +cursor_hand_tool.title=Povolí nástroj ručička +cursor_hand_tool_label=Nástroj ručička + +scroll_page.title=Posouvat po stránkách +scroll_page_label=Posouvání po stránkách +scroll_vertical.title=Použít svislé posouvání +scroll_vertical_label=Svislé posouvání +scroll_horizontal.title=Použít vodorovné posouvání +scroll_horizontal_label=Vodorovné posouvání +scroll_wrapped.title=Použít postupné posouvání +scroll_wrapped_label=Postupné posouvání + +spread_none.title=Nesdružovat stránky +spread_none_label=Žádné sdružení +spread_odd.title=Sdruží stránky s umístěním lichých vlevo +spread_odd_label=Sdružení stránek (liché vlevo) +spread_even.title=Sdruží stránky s umístěním sudých vlevo +spread_even_label=Sdružení stránek (sudé vlevo) + +# Document properties dialog box +document_properties.title=Vlastnosti dokumentu… +document_properties_label=Vlastnosti dokumentu… +document_properties_file_name=Název souboru: +document_properties_file_size=Velikost souboru: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajtů) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajtů) +document_properties_title=Název stránky: +document_properties_author=Autor: +document_properties_subject=Předmět: +document_properties_keywords=Klíčová slova: +document_properties_creation_date=Datum vytvoření: +document_properties_modification_date=Datum úpravy: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Vytvořil: +document_properties_producer=Tvůrce PDF: +document_properties_version=Verze PDF: +document_properties_page_count=Počet stránek: +document_properties_page_size=Velikost stránky: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=na výšku +document_properties_page_size_orientation_landscape=na šířku +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Dopis +document_properties_page_size_name_legal=Právní dokument +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Rychlé zobrazování z webu: +document_properties_linearized_yes=Ano +document_properties_linearized_no=Ne +document_properties_close=Zavřít + +print_progress_message=Příprava dokumentu pro tisk… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Zrušit + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Postranní lišta +toggle_sidebar_notification2.title=Přepnout postranní lištu (dokument obsahuje osnovu/přílohy/vrstvy) +toggle_sidebar_label=Postranní lišta +document_outline.title=Zobrazí osnovu dokumentu (poklepání přepne zobrazení všech položek) +document_outline_label=Osnova dokumentu +attachments.title=Zobrazí přílohy +attachments_label=Přílohy +layers.title=Zobrazit vrstvy (poklepáním obnovíte všechny vrstvy do výchozího stavu) +layers_label=Vrstvy +thumbs.title=Zobrazí náhledy +thumbs_label=Náhledy +current_outline_item.title=Najít aktuální položku v osnově +current_outline_item_label=Aktuální položka v osnově +findbar.title=Najde v dokumentu +findbar_label=Najít + +additional_layers=Další vrstvy +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Strana {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Strana {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Náhled strany {{page}} + +# Find panel button title and messages +find_input.title=Najít +find_input.placeholder=Najít v dokumentu… +find_previous.title=Najde předchozí výskyt hledaného textu +find_previous_label=Předchozí +find_next.title=Najde další výskyt hledaného textu +find_next_label=Další +find_highlight=Zvýraznit +find_match_case_label=Rozlišovat velikost +find_match_diacritics_label=Rozlišovat diakritiku +find_entire_word_label=Celá slova +find_reached_top=Dosažen začátek dokumentu, pokračuje se od konce +find_reached_bottom=Dosažen konec dokumentu, pokračuje se od začátku +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}}. z {{total}} výskytu +find_match_count[two]={{current}}. z {{total}} výskytů +find_match_count[few]={{current}}. z {{total}} výskytů +find_match_count[many]={{current}}. z {{total}} výskytů +find_match_count[other]={{current}}. z {{total}} výskytů +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Více než {{limit}} výskytů +find_match_count_limit[one]=Více než {{limit}} výskyt +find_match_count_limit[two]=Více než {{limit}} výskyty +find_match_count_limit[few]=Více než {{limit}} výskyty +find_match_count_limit[many]=Více než {{limit}} výskytů +find_match_count_limit[other]=Více než {{limit}} výskytů +find_not_found=Hledaný text nenalezen + +# Predefined zoom values +page_scale_width=Podle šířky +page_scale_fit=Podle výšky +page_scale_auto=Automatická velikost +page_scale_actual=Skutečná velikost +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=Při nahrávání PDF nastala chyba. +invalid_file_error=Neplatný nebo chybný soubor PDF. +missing_file_error=Chybí soubor PDF. +unexpected_response_error=Neočekávaná odpověď serveru. +rendering_error=Při vykreslování stránky nastala chyba. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotace typu {{type}}] +password_label=Pro otevření PDF souboru vložte heslo. +password_invalid=Neplatné heslo. Zkuste to znovu. +password_ok=OK +password_cancel=Zrušit + +printing_not_supported=Upozornění: Tisk není v tomto prohlížeči plně podporován. +printing_not_ready=Upozornění: Dokument PDF není kompletně načten. +web_fonts_disabled=Webová písma jsou zakázána, proto není možné použít vložená písma PDF. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Kreslení +editor_ink2_label=Kreslení + +editor_stamp1.title=Přidání či úprava obrázků +editor_stamp1_label=Přidání či úprava obrázků + +free_text2_default_content=Začněte psát… + +# Editor Parameters +editor_free_text_color=Barva +editor_free_text_size=Velikost +editor_ink_color=Barva +editor_ink_thickness=Tloušťka +editor_ink_opacity=Průhlednost + +editor_stamp_add_image_label=Přidat obrázek +editor_stamp_add_image.title=Přidat obrázek + +# Editor aria +editor_free_text2_aria_label=Textový editor +editor_ink2_aria_label=Editor kreslení +editor_ink_canvas_aria_label=Uživatelem vytvořený obrázek + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Náhradní popis +editor_alt_text_edit_button_label=Upravit náhradní popis +editor_alt_text_dialog_label=Vyberte možnost +editor_alt_text_dialog_description=Náhradní popis pomáhá, když lidé obrázek nevidí nebo když se nenačítá. +editor_alt_text_add_description_label=Přidat popis +editor_alt_text_add_description_description=Snažte se o 1-2 věty, které popisují předmět, prostředí nebo činnosti. +editor_alt_text_mark_decorative_label=Označit jako dekorativní +editor_alt_text_mark_decorative_description=Používá se pro okrasné obrázky, jako jsou rámečky nebo vodoznaky. +editor_alt_text_cancel_button=Zrušit +editor_alt_text_save_button=Uložit +editor_alt_text_decorative_tooltip=Označen jako dekorativní +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Například: “Mladý muž si sedá ke stolu, aby se najedl.” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/cy/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/cy/viewer.properties new file mode 100644 index 00000000..005f742d --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/cy/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Tudalen Flaenorol +previous_label=Blaenorol +next.title=Tudalen Nesaf +next_label=Nesaf + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Tudalen +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=o {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} o {{pagesCount}}) + +zoom_out.title=Chwyddo Allan +zoom_out_label=Chwyddo Allan +zoom_in.title=Chwyddo Mewn +zoom_in_label=Chwyddo Mewn +zoom.title=Chwyddo +presentation_mode.title=Newid i'r Modd Cyflwyno +presentation_mode_label=Modd Cyflwyno +open_file.title=Agor Ffeil +open_file_label=Agor +print.title=Argraffu +print_label=Argraffu +save.title=Cadw +save_label=Cadw +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Llwytho i Lawr +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Llwytho i Lawr +bookmark1.title=Tudalen Gyfredol (Gweld URL o'r Dudalen Gyfredol) +bookmark1_label=Tudalen Gyfredol +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Agor yn yr ap +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Agor yn yr ap + +# Secondary toolbar and context menu +tools.title=Offer +tools_label=Offer +first_page.title=Mynd i'r Dudalen Gyntaf +first_page_label=Mynd i'r Dudalen Gyntaf +last_page.title=Mynd i'r Dudalen Olaf +last_page_label=Mynd i'r Dudalen Olaf +page_rotate_cw.title=Cylchdroi Clocwedd +page_rotate_cw_label=Cylchdroi Clocwedd +page_rotate_ccw.title=Cylchdroi Gwrthglocwedd +page_rotate_ccw_label=Cylchdroi Gwrthglocwedd + +cursor_text_select_tool.title=Galluogi Dewis Offeryn Testun +cursor_text_select_tool_label=Offeryn Dewis Testun +cursor_hand_tool.title=Galluogi Offeryn Llaw +cursor_hand_tool_label=Offeryn Llaw + +scroll_page.title=Defnyddio Sgrolio Tudalen +scroll_page_label=Sgrolio Tudalen +scroll_vertical.title=Defnyddio Sgrolio Fertigol +scroll_vertical_label=Sgrolio Fertigol +scroll_horizontal.title=Defnyddio Sgrolio Llorweddol +scroll_horizontal_label=Sgrolio Llorweddol +scroll_wrapped.title=Defnyddio Sgrolio Amlapio +scroll_wrapped_label=Sgrolio Amlapio + +spread_none.title=Peidio uno trawsdaleniadau +spread_none_label=Dim Trawsdaleniadau +spread_odd.title=Uno trawsdaleniadau gan gychwyn gyda thudalennau odrif +spread_odd_label=Trawsdaleniadau Odrif +spread_even.title=Uno trawsdaleniadau gan gychwyn gyda thudalennau eilrif +spread_even_label=Trawsdaleniadau Eilrif + +# Document properties dialog box +document_properties.title=Priodweddau Dogfen… +document_properties_label=Priodweddau Dogfen… +document_properties_file_name=Enw ffeil: +document_properties_file_size=Maint ffeil: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} beit) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} beit) +document_properties_title=Teitl: +document_properties_author=Awdur: +document_properties_subject=Pwnc: +document_properties_keywords=Allweddair: +document_properties_creation_date=Dyddiad Creu: +document_properties_modification_date=Dyddiad Addasu: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Crewr: +document_properties_producer=Cynhyrchydd PDF: +document_properties_version=Fersiwn PDF: +document_properties_page_count=Cyfrif Tudalen: +document_properties_page_size=Maint Tudalen: +document_properties_page_size_unit_inches=o fewn +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portread +document_properties_page_size_orientation_landscape=tirlun +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Llythyr +document_properties_page_size_name_legal=Cyfreithiol +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Golwg Gwe Cyflym: +document_properties_linearized_yes=Iawn +document_properties_linearized_no=Na +document_properties_close=Cau + +print_progress_message=Paratoi dogfen ar gyfer ei hargraffu… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Diddymu + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toglo'r Bar Ochr +toggle_sidebar_notification2.title=Toglo'r Bar Ochr (mae'r ddogfen yn cynnwys amlinelliadau/atodiadau/haenau) +toggle_sidebar_label=Toglo'r Bar Ochr +document_outline.title=Dangos Amlinell Dogfen (clic dwbl i ymestyn/cau pob eitem) +document_outline_label=Amlinelliad Dogfen +attachments.title=Dangos Atodiadau +attachments_label=Atodiadau +layers.title=Dangos Haenau (cliciwch ddwywaith i ailosod yr holl haenau i'r cyflwr rhagosodedig) +layers_label=Haenau +thumbs.title=Dangos Lluniau Bach +thumbs_label=Lluniau Bach +current_outline_item.title=Canfod yr Eitem Amlinellol Gyfredol +current_outline_item_label=Yr Eitem Amlinellol Gyfredol +findbar.title=Canfod yn y Ddogfen +findbar_label=Canfod + +additional_layers=Haenau Ychwanegol +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Tudalen {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Tudalen {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Llun Bach Tudalen {{page}} + +# Find panel button title and messages +find_input.title=Canfod +find_input.placeholder=Canfod yn y ddogfen… +find_previous.title=Canfod enghraifft flaenorol o'r ymadrodd +find_previous_label=Blaenorol +find_next.title=Canfod enghraifft nesaf yr ymadrodd +find_next_label=Nesaf +find_highlight=Amlygu Popeth +find_match_case_label=Cydweddu Maint +find_match_diacritics_label=Diacritigau Cyfatebol +find_entire_word_label=Geiriau Cyfan +find_reached_top=Wedi cyrraedd brig y dudalen, parhau o'r gwaelod +find_reached_bottom=Wedi cyrraedd diwedd y dudalen, parhau o'r brig +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} o {{total}} cydweddiad +find_match_count[two]={{current}} o {{total}} cydweddiad +find_match_count[few]={{current}} o {{total}} cydweddiad +find_match_count[many]={{current}} o {{total}} cydweddiad +find_match_count[other]={{current}} o {{total}} cydweddiad +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mwy na {{limit}} cydweddiad +find_match_count_limit[one]=Mwy na {{limit}} cydweddiad +find_match_count_limit[two]=Mwy na {{limit}} cydweddiad +find_match_count_limit[few]=Mwy na {{limit}} cydweddiad +find_match_count_limit[many]=Mwy na {{limit}} cydweddiad +find_match_count_limit[other]=Mwy na {{limit}} cydweddiad +find_not_found=Heb ganfod ymadrodd + +# Predefined zoom values +page_scale_width=Lled Tudalen +page_scale_fit=Ffit Tudalen +page_scale_auto=Chwyddo Awtomatig +page_scale_actual=Maint Gwirioneddol +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Digwyddodd gwall wrth lwytho'r PDF. +invalid_file_error=Ffeil PDF annilys neu llwgr. +missing_file_error=Ffeil PDF coll. +unexpected_response_error=Ymateb annisgwyl gan y gweinydd. +rendering_error=Digwyddodd gwall wrth adeiladu'r dudalen. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anodiad {{type}} ] +password_label=Rhowch gyfrinair i agor y PDF. +password_invalid=Cyfrinair annilys. Ceisiwch eto. +password_ok=Iawn +password_cancel=Diddymu + +printing_not_supported=Rhybudd: Nid yw argraffu yn cael ei gynnal yn llawn gan y porwr. +printing_not_ready=Rhybudd: Nid yw'r PDF wedi ei lwytho'n llawn ar gyfer argraffu. +web_fonts_disabled=Ffontiau gwe wedi eu hanalluogi: methu defnyddio ffontiau PDF mewnblanedig. + +# Editor +editor_free_text2.title=Testun +editor_free_text2_label=Testun +editor_ink2.title=Lluniadu +editor_ink2_label=Lluniadu + +editor_stamp.title=Ychwanegu delwedd +editor_stamp_label=Ychwanegu delwedd + +editor_stamp1.title=Ychwanegu neu olygu delweddau +editor_stamp1_label=Ychwanegu neu olygu delweddau + +free_text2_default_content=Cychwyn teipio… + +# Editor Parameters +editor_free_text_color=Lliw +editor_free_text_size=Maint +editor_ink_color=Lliw +editor_ink_thickness=Trwch +editor_ink_opacity=Didreiddedd + +editor_stamp_add_image_label=Ychwanegu delwedd +editor_stamp_add_image.title=Ychwanegu delwedd + +# Editor aria +editor_free_text2_aria_label=Golygydd Testun +editor_ink2_aria_label=Golygydd Lluniadu +editor_ink_canvas_aria_label=Delwedd wedi'i chreu gan ddefnyddwyr diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/da/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/da/viewer.properties new file mode 100644 index 00000000..305238be --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/da/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Forrige side +previous_label=Forrige +next.title=Næste side +next_label=Næste + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Side +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=af {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} af {{pagesCount}}) + +zoom_out.title=Zoom ud +zoom_out_label=Zoom ud +zoom_in.title=Zoom ind +zoom_in_label=Zoom ind +zoom.title=Zoom +presentation_mode.title=Skift til fuldskærmsvisning +presentation_mode_label=Fuldskærmsvisning +open_file.title=Åbn fil +open_file_label=Åbn +print.title=Udskriv +print_label=Udskriv +save.title=Gem +save_label=Gem +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Hent +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Hent +bookmark1.title=Aktuel side (vis URL fra den aktuelle side) +bookmark1_label=Aktuel side +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Åbn i app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Åbn i app + +# Secondary toolbar and context menu +tools.title=Funktioner +tools_label=Funktioner +first_page.title=Gå til første side +first_page_label=Gå til første side +last_page.title=Gå til sidste side +last_page_label=Gå til sidste side +page_rotate_cw.title=Roter med uret +page_rotate_cw_label=Roter med uret +page_rotate_ccw.title=Roter mod uret +page_rotate_ccw_label=Roter mod uret + +cursor_text_select_tool.title=Aktiver markeringsværktøj +cursor_text_select_tool_label=Markeringsværktøj +cursor_hand_tool.title=Aktiver håndværktøj +cursor_hand_tool_label=Håndværktøj + +scroll_page.title=Brug sidescrolling +scroll_page_label=Sidescrolling +scroll_vertical.title=Brug vertikal scrolling +scroll_vertical_label=Vertikal scrolling +scroll_horizontal.title=Brug horisontal scrolling +scroll_horizontal_label=Horisontal scrolling +scroll_wrapped.title=Brug ombrudt scrolling +scroll_wrapped_label=Ombrudt scrolling + +spread_none.title=Vis enkeltsider +spread_none_label=Enkeltsider +spread_odd.title=Vis opslag med ulige sidenumre til venstre +spread_odd_label=Opslag med forside +spread_even.title=Vis opslag med lige sidenumre til venstre +spread_even_label=Opslag uden forside + +# Document properties dialog box +document_properties.title=Dokumentegenskaber… +document_properties_label=Dokumentegenskaber… +document_properties_file_name=Filnavn: +document_properties_file_size=Filstørrelse: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titel: +document_properties_author=Forfatter: +document_properties_subject=Emne: +document_properties_keywords=Nøgleord: +document_properties_creation_date=Oprettet: +document_properties_modification_date=Redigeret: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Program: +document_properties_producer=PDF-producent: +document_properties_version=PDF-version: +document_properties_page_count=Antal sider: +document_properties_page_size=Sidestørrelse: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=stående +document_properties_page_size_orientation_landscape=liggende +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Hurtig web-visning: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nej +document_properties_close=Luk + +print_progress_message=Forbereder dokument til udskrivning… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Annuller + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Slå sidepanel til eller fra +toggle_sidebar_notification2.title=Slå sidepanel til eller fra (dokumentet indeholder disposition/vedhæftede filer/lag) +toggle_sidebar_label=Slå sidepanel til eller fra +document_outline.title=Vis dokumentets disposition (dobbeltklik for at vise/skjule alle elementer) +document_outline_label=Dokument-disposition +attachments.title=Vis vedhæftede filer +attachments_label=Vedhæftede filer +layers.title=Vis lag (dobbeltklik for at nulstille alle lag til standard-tilstanden) +layers_label=Lag +thumbs.title=Vis miniaturer +thumbs_label=Miniaturer +current_outline_item.title=Find det aktuelle dispositions-element +current_outline_item_label=Aktuelt dispositions-element +findbar.title=Find i dokument +findbar_label=Find + +additional_layers=Yderligere lag +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Side {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Side {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniature af side {{page}} + +# Find panel button title and messages +find_input.title=Find +find_input.placeholder=Find i dokument… +find_previous.title=Find den forrige forekomst +find_previous_label=Forrige +find_next.title=Find den næste forekomst +find_next_label=Næste +find_highlight=Fremhæv alle +find_match_case_label=Forskel på store og små bogstaver +find_match_diacritics_label=Diakritiske tegn +find_entire_word_label=Hele ord +find_reached_top=Toppen af siden blev nået, fortsatte fra bunden +find_reached_bottom=Bunden af siden blev nået, fortsatte fra toppen +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} af {{total}} forekomst +find_match_count[two]={{current}} af {{total}} forekomster +find_match_count[few]={{current}} af {{total}} forekomster +find_match_count[many]={{current}} af {{total}} forekomster +find_match_count[other]={{current}} af {{total}} forekomster +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mere end {{limit}} forekomster +find_match_count_limit[one]=Mere end {{limit}} forekomst +find_match_count_limit[two]=Mere end {{limit}} forekomster +find_match_count_limit[few]=Mere end {{limit}} forekomster +find_match_count_limit[many]=Mere end {{limit}} forekomster +find_match_count_limit[other]=Mere end {{limit}} forekomster +find_not_found=Der blev ikke fundet noget + +# Predefined zoom values +page_scale_width=Sidebredde +page_scale_fit=Tilpas til side +page_scale_auto=Automatisk zoom +page_scale_actual=Faktisk størrelse +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Der opstod en fejl ved indlæsning af PDF-filen. +invalid_file_error=PDF-filen er ugyldig eller ødelagt. +missing_file_error=Manglende PDF-fil. +unexpected_response_error=Uventet svar fra serveren. +rendering_error=Der opstod en fejl ved generering af siden. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}kommentar] +password_label=Angiv adgangskode til at åbne denne PDF-fil. +password_invalid=Ugyldig adgangskode. Prøv igen. +password_ok=OK +password_cancel=Fortryd + +printing_not_supported=Advarsel: Udskrivning er ikke fuldt understøttet af browseren. +printing_not_ready=Advarsel: PDF-filen er ikke fuldt indlæst til udskrivning. +web_fonts_disabled=Webskrifttyper er deaktiverede. De indlejrede skrifttyper i PDF-filen kan ikke anvendes. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Tegn +editor_ink2_label=Tegn + +editor_stamp.title=Tilføj et billede +editor_stamp_label=Tilføj et billede + +editor_stamp1.title=Tilføj eller rediger billeder +editor_stamp1_label=Tilføj eller rediger billeder + +free_text2_default_content=Begynd at skrive… + +# Editor Parameters +editor_free_text_color=Farve +editor_free_text_size=Størrelse +editor_ink_color=Farve +editor_ink_thickness=Tykkelse +editor_ink_opacity=Uigennemsigtighed + +editor_stamp_add_image_label=Tilføj billede +editor_stamp_add_image.title=Tilføj billede + +# Editor aria +editor_free_text2_aria_label=Teksteditor +editor_ink2_aria_label=Tegnings-editor +editor_ink_canvas_aria_label=Brugeroprettet billede diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/de/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/de/viewer.properties new file mode 100644 index 00000000..a370ba4e --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/de/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Eine Seite zurück +previous_label=Zurück +next.title=Eine Seite vor +next_label=Vor + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Seite +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=von {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} von {{pagesCount}}) + +zoom_out.title=Verkleinern +zoom_out_label=Verkleinern +zoom_in.title=Vergrößern +zoom_in_label=Vergrößern +zoom.title=Zoom +presentation_mode.title=In Präsentationsmodus wechseln +presentation_mode_label=Präsentationsmodus +open_file.title=Datei öffnen +open_file_label=Öffnen +print.title=Drucken +print_label=Drucken +save.title=Speichern +save_label=Speichern +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Herunterladen +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Herunterladen +bookmark1.title=Aktuelle Seite (URL von aktueller Seite anzeigen) +bookmark1_label=Aktuelle Seite +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Mit App öffnen +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Mit App öffnen + +# Secondary toolbar and context menu +tools.title=Werkzeuge +tools_label=Werkzeuge +first_page.title=Erste Seite anzeigen +first_page_label=Erste Seite anzeigen +last_page.title=Letzte Seite anzeigen +last_page_label=Letzte Seite anzeigen +page_rotate_cw.title=Im Uhrzeigersinn drehen +page_rotate_cw_label=Im Uhrzeigersinn drehen +page_rotate_ccw.title=Gegen Uhrzeigersinn drehen +page_rotate_ccw_label=Gegen Uhrzeigersinn drehen + +cursor_text_select_tool.title=Textauswahl-Werkzeug aktivieren +cursor_text_select_tool_label=Textauswahl-Werkzeug +cursor_hand_tool.title=Hand-Werkzeug aktivieren +cursor_hand_tool_label=Hand-Werkzeug + +scroll_page.title=Seiten einzeln anordnen +scroll_page_label=Einzelseitenanordnung +scroll_vertical.title=Seiten übereinander anordnen +scroll_vertical_label=Vertikale Seitenanordnung +scroll_horizontal.title=Seiten nebeneinander anordnen +scroll_horizontal_label=Horizontale Seitenanordnung +scroll_wrapped.title=Seiten neben- und übereinander anordnen, abhängig vom Platz +scroll_wrapped_label=Kombinierte Seitenanordnung + +spread_none.title=Seiten nicht nebeneinander anzeigen +spread_none_label=Einzelne Seiten +spread_odd.title=Jeweils eine ungerade und eine gerade Seite nebeneinander anzeigen +spread_odd_label=Ungerade + gerade Seite +spread_even.title=Jeweils eine gerade und eine ungerade Seite nebeneinander anzeigen +spread_even_label=Gerade + ungerade Seite + +# Document properties dialog box +document_properties.title=Dokumenteigenschaften +document_properties_label=Dokumenteigenschaften… +document_properties_file_name=Dateiname: +document_properties_file_size=Dateigröße: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} Bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} Bytes) +document_properties_title=Titel: +document_properties_author=Autor: +document_properties_subject=Thema: +document_properties_keywords=Stichwörter: +document_properties_creation_date=Erstelldatum: +document_properties_modification_date=Bearbeitungsdatum: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}} {{time}} +document_properties_creator=Anwendung: +document_properties_producer=PDF erstellt mit: +document_properties_version=PDF-Version: +document_properties_page_count=Seitenzahl: +document_properties_page_size=Seitengröße: +document_properties_page_size_unit_inches=Zoll +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=Hochformat +document_properties_page_size_orientation_landscape=Querformat +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Schnelle Webanzeige: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nein +document_properties_close=Schließen + +print_progress_message=Dokument wird für Drucken vorbereitet… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Abbrechen + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Sidebar umschalten +toggle_sidebar_notification2.title=Sidebar umschalten (Dokument enthält Dokumentstruktur/Anhänge/Ebenen) +toggle_sidebar_label=Sidebar umschalten +document_outline.title=Dokumentstruktur anzeigen (Doppelklicken, um alle Einträge aus- bzw. einzuklappen) +document_outline_label=Dokumentstruktur +attachments.title=Anhänge anzeigen +attachments_label=Anhänge +layers.title=Ebenen anzeigen (Doppelklicken, um alle Ebenen auf den Standardzustand zurückzusetzen) +layers_label=Ebenen +thumbs.title=Miniaturansichten anzeigen +thumbs_label=Miniaturansichten +current_outline_item.title=Aktuelles Struktur-Element finden +current_outline_item_label=Aktuelles Struktur-Element +findbar.title=Dokument durchsuchen +findbar_label=Suchen + +additional_layers=Zusätzliche Ebenen +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Seite {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Seite {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniaturansicht von Seite {{page}} + +# Find panel button title and messages +find_input.title=Suchen +find_input.placeholder=Dokument durchsuchen… +find_previous.title=Vorheriges Vorkommen des Suchbegriffs finden +find_previous_label=Zurück +find_next.title=Nächstes Vorkommen des Suchbegriffs finden +find_next_label=Weiter +find_highlight=Alle hervorheben +find_match_case_label=Groß-/Kleinschreibung beachten +find_match_diacritics_label=Akzente +find_entire_word_label=Ganze Wörter +find_reached_top=Anfang des Dokuments erreicht, fahre am Ende fort +find_reached_bottom=Ende des Dokuments erreicht, fahre am Anfang fort +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} von {{total}} Übereinstimmung +find_match_count[two]={{current}} von {{total}} Übereinstimmungen +find_match_count[few]={{current}} von {{total}} Übereinstimmungen +find_match_count[many]={{current}} von {{total}} Übereinstimmungen +find_match_count[other]={{current}} von {{total}} Übereinstimmungen +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mehr als {{limit}} Übereinstimmungen +find_match_count_limit[one]=Mehr als {{limit}} Übereinstimmung +find_match_count_limit[two]=Mehr als {{limit}} Übereinstimmungen +find_match_count_limit[few]=Mehr als {{limit}} Übereinstimmungen +find_match_count_limit[many]=Mehr als {{limit}} Übereinstimmungen +find_match_count_limit[other]=Mehr als {{limit}} Übereinstimmungen +find_not_found=Suchbegriff nicht gefunden + +# Predefined zoom values +page_scale_width=Seitenbreite +page_scale_fit=Seitengröße +page_scale_auto=Automatischer Zoom +page_scale_actual=Originalgröße +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=Beim Laden der PDF-Datei trat ein Fehler auf. +invalid_file_error=Ungültige oder beschädigte PDF-Datei +missing_file_error=Fehlende PDF-Datei +unexpected_response_error=Unerwartete Antwort des Servers +rendering_error=Beim Darstellen der Seite trat ein Fehler auf. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anlage: {{type}}] +password_label=Geben Sie zum Öffnen der PDF-Datei deren Passwort ein. +password_invalid=Falsches Passwort. Bitte versuchen Sie es erneut. +password_ok=OK +password_cancel=Abbrechen + +printing_not_supported=Warnung: Die Drucken-Funktion wird durch diesen Browser nicht vollständig unterstützt. +printing_not_ready=Warnung: Die PDF-Datei ist nicht vollständig geladen, dies ist für das Drucken aber empfohlen. +web_fonts_disabled=Web-Schriftarten sind deaktiviert: Eingebettete PDF-Schriftarten konnten nicht geladen werden. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Zeichnen +editor_ink2_label=Zeichnen + +editor_stamp.title=Ein Bild hinzufügen +editor_stamp_label=Ein Bild hinzufügen + +editor_stamp1.title=Grafiken hinzufügen oder bearbeiten +editor_stamp1_label=Grafiken hinzufügen oder bearbeiten + +free_text2_default_content=Schreiben beginnen… + +# Editor Parameters +editor_free_text_color=Farbe +editor_free_text_size=Größe +editor_ink_color=Farbe +editor_ink_thickness=Dicke +editor_ink_opacity=Deckkraft + +editor_stamp_add_image_label=Grafik hinzufügen +editor_stamp_add_image.title=Grafik hinzufügen + +# Editor aria +editor_free_text2_aria_label=Texteditor +editor_ink2_aria_label=Zeichnungseditor +editor_ink_canvas_aria_label=Vom Benutzer erstelltes Bild diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/dsb/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/dsb/viewer.properties new file mode 100644 index 00000000..4094e149 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/dsb/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pjerwjejšny bok +previous_label=Slědk +next.title=Pśiducy bok +next_label=Dalej + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Bok +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=z {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} z {{pagesCount}}) + +zoom_out.title=Pómjeńšyś +zoom_out_label=Pómjeńšyś +zoom_in.title=Pówětšyś +zoom_in_label=Pówětšyś +zoom.title=Skalěrowanje +presentation_mode.title=Do prezentaciskego modusa pśejś +presentation_mode_label=Prezentaciski modus +open_file.title=Dataju wócyniś +open_file_label=Wócyniś +print.title=Śišćaś +print_label=Śišćaś +save.title=Składowaś +save_label=Składowaś +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Ześěgnuś +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Ześěgnuś +bookmark1.title=Aktualny bok (URL z aktualnego boka pokazaś) +bookmark1_label=Aktualny bok +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=W nałoženju wócyniś +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=W nałoženju wócyniś + +# Secondary toolbar and context menu +tools.title=Rědy +tools_label=Rědy +first_page.title=K prědnemu bokoju +first_page_label=K prědnemu bokoju +last_page.title=K slědnemu bokoju +last_page_label=K slědnemu bokoju +page_rotate_cw.title=Wobwjertnuś ako špěra źo +page_rotate_cw_label=Wobwjertnuś ako špěra źo +page_rotate_ccw.title=Wobwjertnuś nawopaki ako špěra źo +page_rotate_ccw_label=Wobwjertnuś nawopaki ako špěra źo + +cursor_text_select_tool.title=Rěd za wuběranje teksta zmóžniś +cursor_text_select_tool_label=Rěd za wuběranje teksta +cursor_hand_tool.title=Rucny rěd zmóžniś +cursor_hand_tool_label=Rucny rěd + +scroll_page.title=Kulanje boka wužywaś +scroll_page_label=Kulanje boka +scroll_vertical.title=Wertikalne suwanje wužywaś +scroll_vertical_label=Wertikalne suwanje +scroll_horizontal.title=Horicontalne suwanje wužywaś +scroll_horizontal_label=Horicontalne suwanje +scroll_wrapped.title=Pózlažke suwanje wužywaś +scroll_wrapped_label=Pózlažke suwanje + +spread_none.title=Boki njezwězaś +spread_none_label=Žeden dwójny bok +spread_odd.title=Boki zachopinajucy z njerownymi bokami zwězaś +spread_odd_label=Njerowne boki +spread_even.title=Boki zachopinajucy z rownymi bokami zwězaś +spread_even_label=Rowne boki + +# Document properties dialog box +document_properties.title=Dokumentowe kakosći… +document_properties_label=Dokumentowe kakosći… +document_properties_file_name=Mě dataje: +document_properties_file_size=Wjelikosć dataje: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajtow) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajtow) +document_properties_title=Titel: +document_properties_author=Awtor: +document_properties_subject=Tema: +document_properties_keywords=Klucowe słowa: +document_properties_creation_date=Datum napóranja: +document_properties_modification_date=Datum změny: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Awtor: +document_properties_producer=PDF-gótowaŕ: +document_properties_version=PDF-wersija: +document_properties_page_count=Licba bokow: +document_properties_page_size=Wjelikosć boka: +document_properties_page_size_unit_inches=col +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=wusoki format +document_properties_page_size_orientation_landscape=prěcny format +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Jo +document_properties_linearized_no=Ně +document_properties_close=Zacyniś + +print_progress_message=Dokument pśigótujo se za śišćanje… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Pśetergnuś + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Bócnicu pokazaś/schowaś +toggle_sidebar_notification2.title=Bocnicu pśešaltowaś (dokument rozrědowanje/pśipiski/warstwy wopśimujo) +toggle_sidebar_label=Bócnicu pokazaś/schowaś +document_outline.title=Dokumentowe naraźenje pokazaś (dwójne kliknjenje, aby se wšykne zapiski pokazali/schowali) +document_outline_label=Dokumentowa struktura +attachments.title=Pśidanki pokazaś +attachments_label=Pśidanki +layers.title=Warstwy pokazaś (klikniśo dwójcy, aby wšykne warstwy na standardny staw slědk stajił) +layers_label=Warstwy +thumbs.title=Miniatury pokazaś +thumbs_label=Miniatury +current_outline_item.title=Aktualny rozrědowański zapisk pytaś +current_outline_item_label=Aktualny rozrědowański zapisk +findbar.title=W dokumenśe pytaś +findbar_label=Pytaś + +additional_layers=Dalšne warstwy +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Bok {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Bok {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura boka {{page}} + +# Find panel button title and messages +find_input.title=Pytaś +find_input.placeholder=W dokumenśe pytaś… +find_previous.title=Pjerwjejšne wustupowanje pytańskego wuraza pytaś +find_previous_label=Slědk +find_next.title=Pśidujuce wustupowanje pytańskego wuraza pytaś +find_next_label=Dalej +find_highlight=Wšykne wuzwignuś +find_match_case_label=Na wjelikopisanje źiwaś +find_match_diacritics_label=Diakritiske znamuška wužywaś +find_entire_word_label=Cełe słowa +find_reached_top=Zachopjeńk dokumenta dostany, pókšacujo se z kóńcom +find_reached_bottom=Kóńc dokumenta dostany, pókšacujo se ze zachopjeńkom +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} z {{total}} wótpowědnika +find_match_count[two]={{current}} z {{total}} wótpowědnikowu +find_match_count[few]={{current}} z {{total}} wótpowědnikow +find_match_count[many]={{current}} z {{total}} wótpowědnikow +find_match_count[other]={{current}} z {{total}} wótpowědnikow +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Wěcej ako {{limit}} wótpowědnikow +find_match_count_limit[one]=Wěcej ako {{limit}} wótpowědnik +find_match_count_limit[two]=Wěcej ako {{limit}} wótpowědnika +find_match_count_limit[few]=Wěcej ako {{limit}} wótpowědniki +find_match_count_limit[many]=Wěcej ako {{limit}} wótpowědnikow +find_match_count_limit[other]=Wěcej ako {{limit}} wótpowědnikow +find_not_found=Pytański wuraz njejo se namakał + +# Predefined zoom values +page_scale_width=Šyrokosć boka +page_scale_fit=Wjelikosć boka +page_scale_auto=Awtomatiske skalěrowanje +page_scale_actual=Aktualna wjelikosć +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Pśi zacytowanju PDF jo zmólka nastała. +invalid_file_error=Njepłaśiwa abo wobškóźona PDF-dataja. +missing_file_error=Felujuca PDF-dataja. +unexpected_response_error=Njewócakane serwerowe wótegrono. +rendering_error=Pśi zwobraznjanju boka jo zmólka nastała. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Typ pśipiskow: {{type}}] +password_label=Zapódajśo gronidło, aby PDF-dataju wócynił. +password_invalid=Njepłaśiwe gronidło. Pšosym wopytajśo hyšći raz. +password_ok=W pórěźe +password_cancel=Pśetergnuś + +printing_not_supported=Warnowanje: Śišćanje njepódpěra se połnje pśez toś ten wobglědowak. +printing_not_ready=Warnowanje: PDF njejo se za śišćanje dopołnje zacytał. +web_fonts_disabled=Webpisma su znjemóžnjone: njejo móžno, zasajźone PDF-pisma wužywaś. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Kresliś +editor_ink2_label=Kresliś + +editor_stamp1.title=Wobraze pśidaś abo wobźěłaś +editor_stamp1_label=Wobraze pśidaś abo wobźěłaś + +free_text2_default_content=Zachopśo pisaś… + +# Editor Parameters +editor_free_text_color=Barwa +editor_free_text_size=Wjelikosć +editor_ink_color=Barwa +editor_ink_thickness=Tłustosć +editor_ink_opacity=Opacita + +editor_stamp_add_image_label=Wobraz pśidaś +editor_stamp_add_image.title=Wobraz pśidaś + +# Editor aria +editor_free_text2_aria_label=Tekstowy editor +editor_ink2_aria_label=Kresleński editor +editor_ink_canvas_aria_label=Wobraz napórany wót wužywarja + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alternatiwny tekst +editor_alt_text_edit_button_label=Alternatiwny tekst wobźěłaś +editor_alt_text_dialog_label=Nastajenje wubraś +editor_alt_text_dialog_description=Alternatiwny tekst pomaga, gaž luźe njamógu wobraz wiźeś abo gaž se wobraz njezacytajo. +editor_alt_text_add_description_label=Wopisanje pśidaś +editor_alt_text_add_description_description=Pišćo 1 sadu abo 2 saźe, kótarejž temu, nastajenje abo akcije wopisujotej. +editor_alt_text_mark_decorative_label=Ako dekoratiwny markěrowaś +editor_alt_text_mark_decorative_description=To se za pyšnjece wobraze wužywa, na pśikład ramiki abo wódowe znamjenja. +editor_alt_text_cancel_button=Pśetergnuś +editor_alt_text_save_button=Składowaś +editor_alt_text_decorative_tooltip=Ako dekoratiwny markěrowany +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Na pśikład, „Młody muski za blidom sejźi, aby jěź jědł“ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/el/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/el/viewer.properties new file mode 100644 index 00000000..e28ab7f2 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/el/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Προηγούμενη σελίδα +previous_label=Προηγούμενη +next.title=Επόμενη σελίδα +next_label=Επόμενη + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Σελίδα +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=από {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} από {{pagesCount}}) + +zoom_out.title=Σμίκρυνση +zoom_out_label=Σμίκρυνση +zoom_in.title=Μεγέθυνση +zoom_in_label=Μεγέθυνση +zoom.title=Ζουμ +presentation_mode.title=Εναλλαγή σε λειτουργία παρουσίασης +presentation_mode_label=Λειτουργία παρουσίασης +open_file.title=Άνοιγμα αρχείου +open_file_label=Άνοιγμα +print.title=Εκτύπωση +print_label=Εκτύπωση +save.title=Αποθήκευση +save_label=Αποθήκευση +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Λήψη +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Λήψη +bookmark1.title=Τρέχουσα σελίδα (Προβολή URL από τρέχουσα σελίδα) +bookmark1_label=Τρέχουσα σελίδα +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Άνοιγμα σε εφαρμογή +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Άνοιγμα σε εφαρμογή + +# Secondary toolbar and context menu +tools.title=Εργαλεία +tools_label=Εργαλεία +first_page.title=Μετάβαση στην πρώτη σελίδα +first_page_label=Μετάβαση στην πρώτη σελίδα +last_page.title=Μετάβαση στην τελευταία σελίδα +last_page_label=Μετάβαση στην τελευταία σελίδα +page_rotate_cw.title=Δεξιόστροφη περιστροφή +page_rotate_cw_label=Δεξιόστροφη περιστροφή +page_rotate_ccw.title=Αριστερόστροφη περιστροφή +page_rotate_ccw_label=Αριστερόστροφη περιστροφή + +cursor_text_select_tool.title=Ενεργοποίηση εργαλείου επιλογής κειμένου +cursor_text_select_tool_label=Εργαλείο επιλογής κειμένου +cursor_hand_tool.title=Ενεργοποίηση εργαλείου χεριού +cursor_hand_tool_label=Εργαλείο χεριού + +scroll_page.title=Χρήση κύλισης σελίδας +scroll_page_label=Κύλιση σελίδας +scroll_vertical.title=Χρήση κάθετης κύλισης +scroll_vertical_label=Κάθετη κύλιση +scroll_horizontal.title=Χρήση οριζόντιας κύλισης +scroll_horizontal_label=Οριζόντια κύλιση +scroll_wrapped.title=Χρήση κυκλικής κύλισης +scroll_wrapped_label=Κυκλική κύλιση + +spread_none.title=Να μη γίνει σύνδεση επεκτάσεων σελίδων +spread_none_label=Χωρίς επεκτάσεις +spread_odd.title=Σύνδεση επεκτάσεων σελίδων ξεκινώντας από τις μονές σελίδες +spread_odd_label=Μονές επεκτάσεις +spread_even.title=Σύνδεση επεκτάσεων σελίδων ξεκινώντας από τις ζυγές σελίδες +spread_even_label=Ζυγές επεκτάσεις + +# Document properties dialog box +document_properties.title=Ιδιότητες εγγράφου… +document_properties_label=Ιδιότητες εγγράφου… +document_properties_file_name=Όνομα αρχείου: +document_properties_file_size=Μέγεθος αρχείου: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Τίτλος: +document_properties_author=Συγγραφέας: +document_properties_subject=Θέμα: +document_properties_keywords=Λέξεις-κλειδιά: +document_properties_creation_date=Ημερομηνία δημιουργίας: +document_properties_modification_date=Ημερομηνία τροποποίησης: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Δημιουργός: +document_properties_producer=Παραγωγός PDF: +document_properties_version=Έκδοση PDF: +document_properties_page_count=Αριθμός σελίδων: +document_properties_page_size=Μέγεθος σελίδας: +document_properties_page_size_unit_inches=ίντσες +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=κατακόρυφα +document_properties_page_size_orientation_landscape=οριζόντια +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Επιστολή +document_properties_page_size_name_legal=Τύπου Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Ταχεία προβολή ιστού: +document_properties_linearized_yes=Ναι +document_properties_linearized_no=Όχι +document_properties_close=Κλείσιμο + +print_progress_message=Προετοιμασία του εγγράφου για εκτύπωση… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Ακύρωση + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=(Απ)ενεργοποίηση πλαϊνής γραμμής +toggle_sidebar_notification2.title=(Απ)ενεργοποίηση πλαϊνής γραμμής (το έγγραφο περιέχει περίγραμμα/συνημμένα/επίπεδα) +toggle_sidebar_label=(Απ)ενεργοποίηση πλαϊνής γραμμής +document_outline.title=Εμφάνιση διάρθρωσης εγγράφου (διπλό κλικ για ανάπτυξη/σύμπτυξη όλων των στοιχείων) +document_outline_label=Διάρθρωση εγγράφου +attachments.title=Εμφάνιση συνημμένων +attachments_label=Συνημμένα +layers.title=Εμφάνιση επιπέδων (διπλό κλικ για επαναφορά όλων των επιπέδων στην προεπιλεγμένη κατάσταση) +layers_label=Επίπεδα +thumbs.title=Εμφάνιση μικρογραφιών +thumbs_label=Μικρογραφίες +current_outline_item.title=Εύρεση τρέχοντος στοιχείου διάρθρωσης +current_outline_item_label=Τρέχον στοιχείο διάρθρωσης +findbar.title=Εύρεση στο έγγραφο +findbar_label=Εύρεση + +additional_layers=Επιπρόσθετα επίπεδα +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Σελίδα {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Σελίδα {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Μικρογραφία σελίδας {{page}} + +# Find panel button title and messages +find_input.title=Εύρεση +find_input.placeholder=Εύρεση στο έγγραφο… +find_previous.title=Εύρεση της προηγούμενης εμφάνισης της φράσης +find_previous_label=Προηγούμενο +find_next.title=Εύρεση της επόμενης εμφάνισης της φράσης +find_next_label=Επόμενο +find_highlight=Επισήμανση όλων +find_match_case_label=Συμφωνία πεζών/κεφαλαίων +find_match_diacritics_label=Αντιστοίχιση διακριτικών +find_entire_word_label=Ολόκληρες λέξεις +find_reached_top=Φτάσατε στην αρχή του εγγράφου, συνέχεια από το τέλος +find_reached_bottom=Φτάσατε στο τέλος του εγγράφου, συνέχεια από την αρχή +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} από {{total}} αντιστοιχία +find_match_count[two]={{current}} από {{total}} αντιστοιχίες +find_match_count[few]={{current}} από {{total}} αντιστοιχίες +find_match_count[many]={{current}} από {{total}} αντιστοιχίες +find_match_count[other]={{current}} από {{total}} αντιστοιχίες +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Περισσότερες από {{limit}} αντιστοιχίες +find_match_count_limit[one]=Περισσότερες από {{limit}} αντιστοιχία +find_match_count_limit[two]=Περισσότερες από {{limit}} αντιστοιχίες +find_match_count_limit[few]=Περισσότερες από {{limit}} αντιστοιχίες +find_match_count_limit[many]=Περισσότερες από {{limit}} αντιστοιχίες +find_match_count_limit[other]=Περισσότερες από {{limit}} αντιστοιχίες +find_not_found=Η φράση δεν βρέθηκε + +# Predefined zoom values +page_scale_width=Πλάτος σελίδας +page_scale_fit=Μέγεθος σελίδας +page_scale_auto=Αυτόματο ζουμ +page_scale_actual=Πραγματικό μέγεθος +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Προέκυψε σφάλμα κατά τη φόρτωση του PDF. +invalid_file_error=Μη έγκυρο ή κατεστραμμένο αρχείο PDF. +missing_file_error=Λείπει αρχείο PDF. +unexpected_response_error=Μη αναμενόμενη απόκριση από το διακομιστή. +rendering_error=Προέκυψε σφάλμα κατά την εμφάνιση της σελίδας. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Σχόλιο «{{type}}»] +password_label=Εισαγάγετε τον κωδικό πρόσβασης για να ανοίξετε αυτό το αρχείο PDF. +password_invalid=Μη έγκυρος κωδικός πρόσβασης. Παρακαλώ δοκιμάστε ξανά. +password_ok=OK +password_cancel=Ακύρωση + +printing_not_supported=Προειδοποίηση: Η εκτύπωση δεν υποστηρίζεται πλήρως από το πρόγραμμα περιήγησης. +printing_not_ready=Προειδοποίηση: Το PDF δεν φορτώθηκε πλήρως για εκτύπωση. +web_fonts_disabled=Οι γραμματοσειρές ιστού είναι ανενεργές: δεν είναι δυνατή η χρήση των ενσωματωμένων γραμματοσειρών PDF. + +# Editor +editor_free_text2.title=Κείμενο +editor_free_text2_label=Κείμενο +editor_ink2.title=Σχέδιο +editor_ink2_label=Σχέδιο + +editor_stamp.title=Προσθήκη εικόνας +editor_stamp_label=Προσθήκη εικόνας + +editor_stamp1.title=Προσθήκη ή επεξεργασία εικόνων +editor_stamp1_label=Προσθήκη ή επεξεργασία εικόνων + +free_text2_default_content=Ξεκινήστε να πληκτρολογείτε… + +# Editor Parameters +editor_free_text_color=Χρώμα +editor_free_text_size=Μέγεθος +editor_ink_color=Χρώμα +editor_ink_thickness=Πάχος +editor_ink_opacity=Αδιαφάνεια + +editor_stamp_add_image_label=Προσθήκη εικόνας +editor_stamp_add_image.title=Προσθήκη εικόνας + +# Editor aria +editor_free_text2_aria_label=Επεξεργασία κειμένου +editor_ink2_aria_label=Επεξεργασία σχεδίων +editor_ink_canvas_aria_label=Εικόνα από τον χρήστη diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-CA/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-CA/viewer.properties new file mode 100644 index 00000000..8e10fcfb --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-CA/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Previous Page +previous_label=Previous +next.title=Next Page +next_label=Next + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Page +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=of {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Zoom Out +zoom_out_label=Zoom Out +zoom_in.title=Zoom In +zoom_in_label=Zoom In +zoom.title=Zoom +presentation_mode.title=Switch to Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Open File +open_file_label=Open +print.title=Print +print_label=Print +save.title=Save +save_label=Save +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Download +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Download +bookmark1.title=Current Page (View URL from Current Page) +bookmark1_label=Current Page +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Open in app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Open in app + +# Secondary toolbar and context menu +tools.title=Tools +tools_label=Tools +first_page.title=Go to First Page +first_page_label=Go to First Page +last_page.title=Go to Last Page +last_page_label=Go to Last Page +page_rotate_cw.title=Rotate Clockwise +page_rotate_cw_label=Rotate Clockwise +page_rotate_ccw.title=Rotate Counterclockwise +page_rotate_ccw_label=Rotate Counterclockwise + +cursor_text_select_tool.title=Enable Text Selection Tool +cursor_text_select_tool_label=Text Selection Tool +cursor_hand_tool.title=Enable Hand Tool +cursor_hand_tool_label=Hand Tool + +scroll_page.title=Use Page Scrolling +scroll_page_label=Page Scrolling +scroll_vertical.title=Use Vertical Scrolling +scroll_vertical_label=Vertical Scrolling +scroll_horizontal.title=Use Horizontal Scrolling +scroll_horizontal_label=Horizontal Scrolling +scroll_wrapped.title=Use Wrapped Scrolling +scroll_wrapped_label=Wrapped Scrolling + +spread_none.title=Do not join page spreads +spread_none_label=No Spreads +spread_odd.title=Join page spreads starting with odd-numbered pages +spread_odd_label=Odd Spreads +spread_even.title=Join page spreads starting with even-numbered pages +spread_even_label=Even Spreads + +# Document properties dialog box +document_properties.title=Document Properties… +document_properties_label=Document Properties… +document_properties_file_name=File name: +document_properties_file_size=File size: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Title: +document_properties_author=Author: +document_properties_subject=Subject: +document_properties_keywords=Keywords: +document_properties_creation_date=Creation Date: +document_properties_modification_date=Modification Date: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creator: +document_properties_producer=PDF Producer: +document_properties_version=PDF Version: +document_properties_page_count=Page Count: +document_properties_page_size=Page Size: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portrait +document_properties_page_size_orientation_landscape=landscape +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Yes +document_properties_linearized_no=No +document_properties_close=Close + +print_progress_message=Preparing document for printing… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancel + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toggle Sidebar +toggle_sidebar_notification2.title=Toggle Sidebar (document contains outline/attachments/layers) +toggle_sidebar_label=Toggle Sidebar +document_outline.title=Show Document Outline (double-click to expand/collapse all items) +document_outline_label=Document Outline +attachments.title=Show Attachments +attachments_label=Attachments +layers.title=Show Layers (double-click to reset all layers to the default state) +layers_label=Layers +thumbs.title=Show Thumbnails +thumbs_label=Thumbnails +current_outline_item.title=Find Current Outline Item +current_outline_item_label=Current Outline Item +findbar.title=Find in Document +findbar_label=Find + +additional_layers=Additional Layers +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Page {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Page {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail of Page {{page}} + +# Find panel button title and messages +find_input.title=Find +find_input.placeholder=Find in document… +find_previous.title=Find the previous occurrence of the phrase +find_previous_label=Previous +find_next.title=Find the next occurrence of the phrase +find_next_label=Next +find_highlight=Highlight All +find_match_case_label=Match Case +find_match_diacritics_label=Match Diacritics +find_entire_word_label=Whole Words +find_reached_top=Reached top of document, continued from bottom +find_reached_bottom=Reached end of document, continued from top +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} of {{total}} match +find_match_count[two]={{current}} of {{total}} matches +find_match_count[few]={{current}} of {{total}} matches +find_match_count[many]={{current}} of {{total}} matches +find_match_count[other]={{current}} of {{total}} matches +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=More than {{limit}} matches +find_match_count_limit[one]=More than {{limit}} match +find_match_count_limit[two]=More than {{limit}} matches +find_match_count_limit[few]=More than {{limit}} matches +find_match_count_limit[many]=More than {{limit}} matches +find_match_count_limit[other]=More than {{limit}} matches +find_not_found=Phrase not found + +# Predefined zoom values +page_scale_width=Page Width +page_scale_fit=Page Fit +page_scale_auto=Automatic Zoom +page_scale_actual=Actual Size +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=An error occurred while loading the PDF. +invalid_file_error=Invalid or corrupted PDF file. +missing_file_error=Missing PDF file. +unexpected_response_error=Unexpected server response. +rendering_error=An error occurred while rendering the page. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Enter the password to open this PDF file. +password_invalid=Invalid password. Please try again. +password_ok=OK +password_cancel=Cancel + +printing_not_supported=Warning: Printing is not fully supported by this browser. +printing_not_ready=Warning: The PDF is not fully loaded for printing. +web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Draw +editor_ink2_label=Draw + +editor_stamp.title=Add an image +editor_stamp_label=Add an image + +editor_stamp1.title=Add or edit images +editor_stamp1_label=Add or edit images + +free_text2_default_content=Start typing… + +# Editor Parameters +editor_free_text_color=Colour +editor_free_text_size=Size +editor_ink_color=Colour +editor_ink_thickness=Thickness +editor_ink_opacity=Opacity + +editor_stamp_add_image_label=Add image +editor_stamp_add_image.title=Add image + +# Editor aria +editor_free_text2_aria_label=Text Editor +editor_ink2_aria_label=Draw Editor +editor_ink_canvas_aria_label=User-created image diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-GB/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-GB/viewer.properties new file mode 100644 index 00000000..50f50f66 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-GB/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Previous Page +previous_label=Previous +next.title=Next Page +next_label=Next + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Page +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=of {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Zoom Out +zoom_out_label=Zoom Out +zoom_in.title=Zoom In +zoom_in_label=Zoom In +zoom.title=Zoom +presentation_mode.title=Switch to Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Open File +open_file_label=Open +print.title=Print +print_label=Print +save.title=Save +save_label=Save +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Download +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Download +bookmark1.title=Current Page (View URL from Current Page) +bookmark1_label=Current Page +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Open in app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Open in app + +# Secondary toolbar and context menu +tools.title=Tools +tools_label=Tools +first_page.title=Go to First Page +first_page_label=Go to First Page +last_page.title=Go to Last Page +last_page_label=Go to Last Page +page_rotate_cw.title=Rotate Clockwise +page_rotate_cw_label=Rotate Clockwise +page_rotate_ccw.title=Rotate Anti-Clockwise +page_rotate_ccw_label=Rotate Anti-Clockwise + +cursor_text_select_tool.title=Enable Text Selection Tool +cursor_text_select_tool_label=Text Selection Tool +cursor_hand_tool.title=Enable Hand Tool +cursor_hand_tool_label=Hand Tool + +scroll_page.title=Use Page Scrolling +scroll_page_label=Page Scrolling +scroll_vertical.title=Use Vertical Scrolling +scroll_vertical_label=Vertical Scrolling +scroll_horizontal.title=Use Horizontal Scrolling +scroll_horizontal_label=Horizontal Scrolling +scroll_wrapped.title=Use Wrapped Scrolling +scroll_wrapped_label=Wrapped Scrolling + +spread_none.title=Do not join page spreads +spread_none_label=No Spreads +spread_odd.title=Join page spreads starting with odd-numbered pages +spread_odd_label=Odd Spreads +spread_even.title=Join page spreads starting with even-numbered pages +spread_even_label=Even Spreads + +# Document properties dialog box +document_properties.title=Document Properties… +document_properties_label=Document Properties… +document_properties_file_name=File name: +document_properties_file_size=File size: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Title: +document_properties_author=Author: +document_properties_subject=Subject: +document_properties_keywords=Keywords: +document_properties_creation_date=Creation Date: +document_properties_modification_date=Modification Date: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creator: +document_properties_producer=PDF Producer: +document_properties_version=PDF Version: +document_properties_page_count=Page Count: +document_properties_page_size=Page Size: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portrait +document_properties_page_size_orientation_landscape=landscape +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Yes +document_properties_linearized_no=No +document_properties_close=Close + +print_progress_message=Preparing document for printing… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancel + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toggle Sidebar +toggle_sidebar_notification2.title=Toggle Sidebar (document contains outline/attachments/layers) +toggle_sidebar_label=Toggle Sidebar +document_outline.title=Show Document Outline (double-click to expand/collapse all items) +document_outline_label=Document Outline +attachments.title=Show Attachments +attachments_label=Attachments +layers.title=Show Layers (double-click to reset all layers to the default state) +layers_label=Layers +thumbs.title=Show Thumbnails +thumbs_label=Thumbnails +current_outline_item.title=Find Current Outline Item +current_outline_item_label=Current Outline Item +findbar.title=Find in Document +findbar_label=Find + +additional_layers=Additional Layers +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Page {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Page {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail of Page {{page}} + +# Find panel button title and messages +find_input.title=Find +find_input.placeholder=Find in document… +find_previous.title=Find the previous occurrence of the phrase +find_previous_label=Previous +find_next.title=Find the next occurrence of the phrase +find_next_label=Next +find_highlight=Highlight All +find_match_case_label=Match Case +find_match_diacritics_label=Match Diacritics +find_entire_word_label=Whole Words +find_reached_top=Reached top of document, continued from bottom +find_reached_bottom=Reached end of document, continued from top +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} of {{total}} match +find_match_count[two]={{current}} of {{total}} matches +find_match_count[few]={{current}} of {{total}} matches +find_match_count[many]={{current}} of {{total}} matches +find_match_count[other]={{current}} of {{total}} matches +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=More than {{limit}} matches +find_match_count_limit[one]=More than {{limit}} match +find_match_count_limit[two]=More than {{limit}} matches +find_match_count_limit[few]=More than {{limit}} matches +find_match_count_limit[many]=More than {{limit}} matches +find_match_count_limit[other]=More than {{limit}} matches +find_not_found=Phrase not found + +# Predefined zoom values +page_scale_width=Page Width +page_scale_fit=Page Fit +page_scale_auto=Automatic Zoom +page_scale_actual=Actual Size +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=An error occurred while loading the PDF. +invalid_file_error=Invalid or corrupted PDF file. +missing_file_error=Missing PDF file. +unexpected_response_error=Unexpected server response. +rendering_error=An error occurred while rendering the page. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Enter the password to open this PDF file. +password_invalid=Invalid password. Please try again. +password_ok=OK +password_cancel=Cancel + +printing_not_supported=Warning: Printing is not fully supported by this browser. +printing_not_ready=Warning: The PDF is not fully loaded for printing. +web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Draw +editor_ink2_label=Draw + +editor_stamp1.title=Add or edit images +editor_stamp1_label=Add or edit images + +free_text2_default_content=Start typing… + +# Editor Parameters +editor_free_text_color=Colour +editor_free_text_size=Size +editor_ink_color=Colour +editor_ink_thickness=Thickness +editor_ink_opacity=Opacity + +editor_stamp_add_image_label=Add image +editor_stamp_add_image.title=Add image + +# Editor aria +editor_free_text2_aria_label=Text Editor +editor_ink2_aria_label=Draw Editor +editor_ink_canvas_aria_label=User-created image + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alt text +editor_alt_text_edit_button_label=Edit alt text +editor_alt_text_dialog_label=Choose an option +editor_alt_text_dialog_description=Alt text (alternative text) helps when people can’t see the image or when it doesn’t load. +editor_alt_text_add_description_label=Add a description +editor_alt_text_add_description_description=Aim for 1-2 sentences that describe the subject, setting, or actions. +editor_alt_text_mark_decorative_label=Mark as decorative +editor_alt_text_mark_decorative_description=This is used for ornamental images, like borders or watermarks. +editor_alt_text_cancel_button=Cancel +editor_alt_text_save_button=Save +editor_alt_text_decorative_tooltip=Marked as decorative +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=For example, “A young man sits down at a table to eat a meal” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-US/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-US/viewer.properties new file mode 100644 index 00000000..b0369cc2 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/en-US/viewer.properties @@ -0,0 +1,282 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Previous Page +previous_label=Previous +next.title=Next Page +next_label=Next + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Page +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=of {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Zoom Out +zoom_out_label=Zoom Out +zoom_in.title=Zoom In +zoom_in_label=Zoom In +zoom.title=Zoom +presentation_mode.title=Switch to Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Open File +open_file_label=Open +print.title=Print +print_label=Print +save.title=Save +save_label=Save +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Download +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Download +bookmark1.title=Current Page (View URL from Current Page) +bookmark1_label=Current Page +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Open in app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Open in app + +# Secondary toolbar and context menu +tools.title=Tools +tools_label=Tools +first_page.title=Go to First Page +first_page_label=Go to First Page +last_page.title=Go to Last Page +last_page_label=Go to Last Page +page_rotate_cw.title=Rotate Clockwise +page_rotate_cw_label=Rotate Clockwise +page_rotate_ccw.title=Rotate Counterclockwise +page_rotate_ccw_label=Rotate Counterclockwise + +cursor_text_select_tool.title=Enable Text Selection Tool +cursor_text_select_tool_label=Text Selection Tool +cursor_hand_tool.title=Enable Hand Tool +cursor_hand_tool_label=Hand Tool + +scroll_page.title=Use Page Scrolling +scroll_page_label=Page Scrolling +scroll_vertical.title=Use Vertical Scrolling +scroll_vertical_label=Vertical Scrolling +scroll_horizontal.title=Use Horizontal Scrolling +scroll_horizontal_label=Horizontal Scrolling +scroll_wrapped.title=Use Wrapped Scrolling +scroll_wrapped_label=Wrapped Scrolling + +spread_none.title=Do not join page spreads +spread_none_label=No Spreads +spread_odd.title=Join page spreads starting with odd-numbered pages +spread_odd_label=Odd Spreads +spread_even.title=Join page spreads starting with even-numbered pages +spread_even_label=Even Spreads + +# Document properties dialog box +document_properties.title=Document Properties… +document_properties_label=Document Properties… +document_properties_file_name=File name: +document_properties_file_size=File size: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Title: +document_properties_author=Author: +document_properties_subject=Subject: +document_properties_keywords=Keywords: +document_properties_creation_date=Creation Date: +document_properties_modification_date=Modification Date: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creator: +document_properties_producer=PDF Producer: +document_properties_version=PDF Version: +document_properties_page_count=Page Count: +document_properties_page_size=Page Size: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portrait +document_properties_page_size_orientation_landscape=landscape +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Yes +document_properties_linearized_no=No +document_properties_close=Close + +print_progress_message=Preparing document for printing… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancel + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toggle Sidebar +toggle_sidebar_notification2.title=Toggle Sidebar (document contains outline/attachments/layers) +toggle_sidebar_label=Toggle Sidebar +document_outline.title=Show Document Outline (double-click to expand/collapse all items) +document_outline_label=Document Outline +attachments.title=Show Attachments +attachments_label=Attachments +layers.title=Show Layers (double-click to reset all layers to the default state) +layers_label=Layers +thumbs.title=Show Thumbnails +thumbs_label=Thumbnails +current_outline_item.title=Find Current Outline Item +current_outline_item_label=Current Outline Item +findbar.title=Find in Document +findbar_label=Find + +additional_layers=Additional Layers +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Page {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Page {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail of Page {{page}} + +# Find panel button title and messages +find_input.title=Find +find_input.placeholder=Find in document… +find_previous.title=Find the previous occurrence of the phrase +find_previous_label=Previous +find_next.title=Find the next occurrence of the phrase +find_next_label=Next +find_highlight=Highlight All +find_match_case_label=Match Case +find_match_diacritics_label=Match Diacritics +find_entire_word_label=Whole Words +find_reached_top=Reached top of document, continued from bottom +find_reached_bottom=Reached end of document, continued from top +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} of {{total}} match +find_match_count[two]={{current}} of {{total}} matches +find_match_count[few]={{current}} of {{total}} matches +find_match_count[many]={{current}} of {{total}} matches +find_match_count[other]={{current}} of {{total}} matches +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=More than {{limit}} matches +find_match_count_limit[one]=More than {{limit}} match +find_match_count_limit[two]=More than {{limit}} matches +find_match_count_limit[few]=More than {{limit}} matches +find_match_count_limit[many]=More than {{limit}} matches +find_match_count_limit[other]=More than {{limit}} matches +find_not_found=Phrase not found + +# Predefined zoom values +page_scale_width=Page Width +page_scale_fit=Page Fit +page_scale_auto=Automatic Zoom +page_scale_actual=Actual Size +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=An error occurred while loading the PDF. +invalid_file_error=Invalid or corrupted PDF file. +missing_file_error=Missing PDF file. +unexpected_response_error=Unexpected server response. +rendering_error=An error occurred while rendering the page. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Enter the password to open this PDF file. +password_invalid=Invalid password. Please try again. +password_ok=OK +password_cancel=Cancel + +printing_not_supported=Warning: Printing is not fully supported by this browser. +printing_not_ready=Warning: The PDF is not fully loaded for printing. +web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Draw +editor_ink2_label=Draw +editor_stamp1.title=Add or edit images +editor_stamp1_label=Add or edit images + +free_text2_default_content=Start typing… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Size +editor_ink_color=Color +editor_ink_thickness=Thickness +editor_ink_opacity=Opacity +editor_stamp_add_image_label=Add image +editor_stamp_add_image.title=Add image + +# Editor aria +editor_free_text2_aria_label=Text Editor +editor_ink2_aria_label=Draw Editor +editor_ink_canvas_aria_label=User-created image + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alt text +editor_alt_text_edit_button_label=Edit alt text +editor_alt_text_dialog_label=Choose an option +editor_alt_text_dialog_description=Alt text (alternative text) helps when people can’t see the image or when it doesn’t load. +editor_alt_text_add_description_label=Add a description +editor_alt_text_add_description_description=Aim for 1-2 sentences that describe the subject, setting, or actions. +editor_alt_text_mark_decorative_label=Mark as decorative +editor_alt_text_mark_decorative_description=This is used for ornamental images, like borders or watermarks. +editor_alt_text_cancel_button=Cancel +editor_alt_text_save_button=Save +editor_alt_text_decorative_tooltip=Marked as decorative +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=For example, “A young man sits down at a table to eat a meal” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/eo/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/eo/viewer.properties new file mode 100644 index 00000000..2018f9e7 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/eo/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Antaŭa paĝo +previous_label=Malantaŭen +next.title=Venonta paĝo +next_label=Antaŭen + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Paĝo +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=el {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} el {{pagesCount}}) + +zoom_out.title=Malpligrandigi +zoom_out_label=Malpligrandigi +zoom_in.title=Pligrandigi +zoom_in_label=Pligrandigi +zoom.title=Pligrandigilo +presentation_mode.title=Iri al prezenta reĝimo +presentation_mode_label=Prezenta reĝimo +open_file.title=Malfermi dosieron +open_file_label=Malfermi +print.title=Presi +print_label=Presi +save.title=Konservi +save_label=Konservi +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Elŝuti +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Elŝuti +bookmark1.title=Nuna paĝo (Montri adreson de la nuna paĝo) +bookmark1_label=Nuna paĝo +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Malfermi en programo +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Malfermi en programo + +# Secondary toolbar and context menu +tools.title=Iloj +tools_label=Iloj +first_page.title=Iri al la unua paĝo +first_page_label=Iri al la unua paĝo +last_page.title=Iri al la lasta paĝo +last_page_label=Iri al la lasta paĝo +page_rotate_cw.title=Rotaciigi dekstrume +page_rotate_cw_label=Rotaciigi dekstrume +page_rotate_ccw.title=Rotaciigi maldekstrume +page_rotate_ccw_label=Rotaciigi maldekstrume + +cursor_text_select_tool.title=Aktivigi tekstan elektilon +cursor_text_select_tool_label=Teksta elektilo +cursor_hand_tool.title=Aktivigi ilon de mano +cursor_hand_tool_label=Ilo de mano + +scroll_page.title=Uzi ŝovadon de paĝo +scroll_page_label=Ŝovado de paĝo +scroll_vertical.title=Uzi vertikalan ŝovadon +scroll_vertical_label=Vertikala ŝovado +scroll_horizontal.title=Uzi horizontalan ŝovadon +scroll_horizontal_label=Horizontala ŝovado +scroll_wrapped.title=Uzi ambaŭdirektan ŝovadon +scroll_wrapped_label=Ambaŭdirekta ŝovado + +spread_none.title=Ne montri paĝojn po du +spread_none_label=Unupaĝa vido +spread_odd.title=Kunigi paĝojn komencante per nepara paĝo +spread_odd_label=Po du paĝoj, neparaj maldekstre +spread_even.title=Kunigi paĝojn komencante per para paĝo +spread_even_label=Po du paĝoj, paraj maldekstre + +# Document properties dialog box +document_properties.title=Atributoj de dokumento… +document_properties_label=Atributoj de dokumento… +document_properties_file_name=Nomo de dosiero: +document_properties_file_size=Grando de dosiero: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KO ({{size_b}} oktetoj) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MO ({{size_b}} oktetoj) +document_properties_title=Titolo: +document_properties_author=Aŭtoro: +document_properties_subject=Temo: +document_properties_keywords=Ŝlosilvorto: +document_properties_creation_date=Dato de kreado: +document_properties_modification_date=Dato de modifo: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Kreinto: +document_properties_producer=Produktinto de PDF: +document_properties_version=Versio de PDF: +document_properties_page_count=Nombro de paĝoj: +document_properties_page_size=Grando de paĝo: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertikala +document_properties_page_size_orientation_landscape=horizontala +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letera +document_properties_page_size_name_legal=Jura +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Rapida tekstaĵa vido: +document_properties_linearized_yes=Jes +document_properties_linearized_no=Ne +document_properties_close=Fermi + +print_progress_message=Preparo de dokumento por presi ĝin … +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Nuligi + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Montri/kaŝi flankan strion +toggle_sidebar_notification2.title=Montri/kaŝi flankan strion (la dokumento enhavas konturon/kunsendaĵojn/tavolojn) +toggle_sidebar_label=Montri/kaŝi flankan strion +document_outline.title=Montri la konturon de dokumento (alklaku duoble por faldi/malfaldi ĉiujn elementojn) +document_outline_label=Konturo de dokumento +attachments.title=Montri kunsendaĵojn +attachments_label=Kunsendaĵojn +layers.title=Montri tavolojn (duoble alklaku por remeti ĉiujn tavolojn en la norman staton) +layers_label=Tavoloj +thumbs.title=Montri miniaturojn +thumbs_label=Miniaturoj +current_outline_item.title=Trovi nunan konturan elementon +current_outline_item_label=Nuna kontura elemento +findbar.title=Serĉi en dokumento +findbar_label=Serĉi + +additional_layers=Aldonaj tavoloj +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Paĝo {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Paĝo {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniaturo de paĝo {{page}} + +# Find panel button title and messages +find_input.title=Serĉi +find_input.placeholder=Serĉi en dokumento… +find_previous.title=Serĉi la antaŭan aperon de la frazo +find_previous_label=Malantaŭen +find_next.title=Serĉi la venontan aperon de la frazo +find_next_label=Antaŭen +find_highlight=Elstarigi ĉiujn +find_match_case_label=Distingi inter majuskloj kaj minuskloj +find_match_diacritics_label=Respekti supersignojn +find_entire_word_label=Tutaj vortoj +find_reached_top=Komenco de la dokumento atingita, daŭrigado ekde la fino +find_reached_bottom=Fino de la dokumento atingita, daŭrigado ekde la komenco +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} el {{total}} kongruo +find_match_count[two]={{current}} el {{total}} kongruoj +find_match_count[few]={{current}} el {{total}} kongruoj +find_match_count[many]={{current}} el {{total}} kongruoj +find_match_count[other]={{current}} el {{total}} kongruoj +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Pli ol {{limit}} kongruoj +find_match_count_limit[one]=Pli ol {{limit}} kongruo +find_match_count_limit[two]=Pli ol {{limit}} kongruoj +find_match_count_limit[few]=Pli ol {{limit}} kongruoj +find_match_count_limit[many]=Pli ol {{limit}} kongruoj +find_match_count_limit[other]=Pli ol {{limit}} kongruoj +find_not_found=Frazo ne trovita + +# Predefined zoom values +page_scale_width=Larĝo de paĝo +page_scale_fit=Adapti paĝon +page_scale_auto=Aŭtomata skalo +page_scale_actual=Reala grando +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Okazis eraro dum la ŝargado de la PDF dosiero. +invalid_file_error=Nevalida aŭ difektita PDF dosiero. +missing_file_error=Mankas dosiero PDF. +unexpected_response_error=Neatendita respondo de servilo. +rendering_error=Okazis eraro dum la montro de la paĝo. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Prinoto: {{type}}] +password_label=Tajpu pasvorton por malfermi tiun ĉi dosieron PDF. +password_invalid=Nevalida pasvorto. Bonvolu provi denove. +password_ok=Akcepti +password_cancel=Nuligi + +printing_not_supported=Averto: tiu ĉi retumilo ne plene subtenas presadon. +printing_not_ready=Averto: la PDF dosiero ne estas plene ŝargita por presado. +web_fonts_disabled=Neaktivaj teksaĵaj tiparoj: ne elbas uzi enmetitajn tiparojn de PDF. + +# Editor +editor_free_text2.title=Teksto +editor_free_text2_label=Teksto +editor_ink2.title=Desegni +editor_ink2_label=Desegni + +editor_stamp.title=Aldoni bildon +editor_stamp_label=Aldoni bildon + +editor_stamp1.title=Aldoni aŭ modifi bildojn +editor_stamp1_label=Aldoni aŭ modifi bildojn + +free_text2_default_content=Ektajpi… + +# Editor Parameters +editor_free_text_color=Koloro +editor_free_text_size=Grando +editor_ink_color=Koloro +editor_ink_thickness=Dikeco +editor_ink_opacity=Maldiafaneco + +editor_stamp_add_image_label=Aldoni bildon +editor_stamp_add_image.title=Aldoni bildon + +# Editor aria +editor_free_text2_aria_label=Tekstan redaktilon +editor_ink2_aria_label=Desegnan redaktilon +editor_ink_canvas_aria_label=Bildo kreita de uzanto diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-AR/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-AR/viewer.properties new file mode 100644 index 00000000..63bb5389 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-AR/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página anterior +previous_label=Anterior +next.title=Página siguiente +next_label=Siguiente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Página +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=( {{pageNumber}} de {{pagesCount}} ) + +zoom_out.title=Alejar +zoom_out_label=Alejar +zoom_in.title=Acercar +zoom_in_label=Acercar +zoom.title=Zoom +presentation_mode.title=Cambiar a modo presentación +presentation_mode_label=Modo presentación +open_file.title=Abrir archivo +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir +save.title=Guardar +save_label=Guardar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Descargar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Descargar +bookmark1.title=Página actual (Ver URL de la página actual) +bookmark1_label=Página actual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Abrir en la aplicación +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Abrir en la aplicación + +# Secondary toolbar and context menu +tools.title=Herramientas +tools_label=Herramientas +first_page.title=Ir a primera página +first_page_label=Ir a primera página +last_page.title=Ir a última página +last_page_label=Ir a última página +page_rotate_cw.title=Rotar horario +page_rotate_cw_label=Rotar horario +page_rotate_ccw.title=Rotar antihorario +page_rotate_ccw_label=Rotar antihorario + +cursor_text_select_tool.title=Habilitar herramienta de selección de texto +cursor_text_select_tool_label=Herramienta de selección de texto +cursor_hand_tool.title=Habilitar herramienta mano +cursor_hand_tool_label=Herramienta mano + +scroll_page.title=Usar desplazamiento de página +scroll_page_label=Desplazamiento de página +scroll_vertical.title=Usar desplazamiento vertical +scroll_vertical_label=Desplazamiento vertical +scroll_horizontal.title=Usar desplazamiento vertical +scroll_horizontal_label=Desplazamiento horizontal +scroll_wrapped.title=Usar desplazamiento encapsulado +scroll_wrapped_label=Desplazamiento encapsulado + +spread_none.title=No unir páginas dobles +spread_none_label=Sin dobles +spread_odd.title=Unir páginas dobles comenzando con las impares +spread_odd_label=Dobles impares +spread_even.title=Unir páginas dobles comenzando con las pares +spread_even_label=Dobles pares + +# Document properties dialog box +document_properties.title=Propiedades del documento… +document_properties_label=Propiedades del documento… +document_properties_file_name=Nombre de archivo: +document_properties_file_size=Tamaño de archovo: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Asunto: +document_properties_keywords=Palabras clave: +document_properties_creation_date=Fecha de creación: +document_properties_modification_date=Fecha de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creador: +document_properties_producer=PDF Productor: +document_properties_version=Versión de PDF: +document_properties_page_count=Cantidad de páginas: +document_properties_page_size=Tamaño de página: +document_properties_page_size_unit_inches=en +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=normal +document_properties_page_size_orientation_landscape=apaisado +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista rápida de la Web: +document_properties_linearized_yes=Sí +document_properties_linearized_no=No +document_properties_close=Cerrar + +print_progress_message=Preparando documento para imprimir… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Alternar barra lateral +toggle_sidebar_notification2.title=Alternar barra lateral (el documento contiene esquemas/adjuntos/capas) +toggle_sidebar_label=Alternar barra lateral +document_outline.title=Mostrar esquema del documento (doble clic para expandir/colapsar todos los ítems) +document_outline_label=Esquema del documento +attachments.title=Mostrar adjuntos +attachments_label=Adjuntos +layers.title=Mostrar capas (doble clic para restablecer todas las capas al estado predeterminado) +layers_label=Capas +thumbs.title=Mostrar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Buscar elemento de esquema actual +current_outline_item_label=Elemento de esquema actual +findbar.title=Buscar en documento +findbar_label=Buscar + +additional_layers=Capas adicionales +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Página {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Página {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura de página {{page}} + +# Find panel button title and messages +find_input.title=Buscar +find_input.placeholder=Buscar en documento… +find_previous.title=Buscar la aparición anterior de la frase +find_previous_label=Anterior +find_next.title=Buscar la siguiente aparición de la frase +find_next_label=Siguiente +find_highlight=Resaltar todo +find_match_case_label=Coincidir mayúsculas +find_match_diacritics_label=Coincidir diacríticos +find_entire_word_label=Palabras completas +find_reached_top=Inicio de documento alcanzado, continuando desde abajo +find_reached_bottom=Fin de documento alcanzando, continuando desde arriba +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} coincidencias +find_match_count[two]={{current}} de {{total}} coincidencias +find_match_count[few]={{current}} de {{total}} coincidencias +find_match_count[many]={{current}} de {{total}} coincidencias +find_match_count[other]={{current}} de {{total}} coincidencias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Más de {{limit}} coincidencias +find_match_count_limit[one]=Más de {{limit}} coinciden +find_match_count_limit[two]=Más de {{limit}} coincidencias +find_match_count_limit[few]=Más de {{limit}} coincidencias +find_match_count_limit[many]=Más de {{limit}} coincidencias +find_match_count_limit[other]=Más de {{limit}} coincidencias +find_not_found=Frase no encontrada + +# Predefined zoom values +page_scale_width=Ancho de página +page_scale_fit=Ajustar página +page_scale_auto=Zoom automático +page_scale_actual=Tamaño real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ocurrió un error al cargar el PDF. +invalid_file_error=Archivo PDF no válido o cocrrupto. +missing_file_error=Archivo PDF faltante. +unexpected_response_error=Respuesta del servidor inesperada. +rendering_error=Ocurrió un error al dibujar la página. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Anotación] +password_label=Ingrese la contraseña para abrir este archivo PDF +password_invalid=Contraseña inválida. Intente nuevamente. +password_ok=Aceptar +password_cancel=Cancelar + +printing_not_supported=Advertencia: La impresión no está totalmente soportada por este navegador. +printing_not_ready=Advertencia: El PDF no está completamente cargado para impresión. +web_fonts_disabled=Tipografía web deshabilitada: no se pueden usar tipos incrustados en PDF. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Dibujar +editor_ink2_label=Dibujar + +editor_stamp1.title=Agregar o editar imágenes +editor_stamp1_label=Agregar o editar imágenes + +free_text2_default_content=Empezar a tipear… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Tamaño +editor_ink_color=Color +editor_ink_thickness=Espesor +editor_ink_opacity=Opacidad + +editor_stamp_add_image_label=Agregar una imagen +editor_stamp_add_image.title=Agregar una imagen + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de dibujos +editor_ink_canvas_aria_label=Imagen creada por el usuario + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Texto alternativo +editor_alt_text_edit_button_label=Editar el texto alternativo +editor_alt_text_dialog_label=Eligir una opción +editor_alt_text_dialog_description=El texto alternativo (texto alternativo) ayuda cuando las personas no pueden ver la imagen o cuando no se carga. +editor_alt_text_add_description_label=Agregar una descripción +editor_alt_text_add_description_description=Intente escribir 1 o 2 oraciones que describan el tema, el entorno o las acciones. +editor_alt_text_mark_decorative_label=Marcar como decorativo +editor_alt_text_mark_decorative_description=Esto se usa para imágenes ornamentales, como bordes o marcas de agua. +editor_alt_text_cancel_button=Cancelar +editor_alt_text_save_button=Guardar +editor_alt_text_decorative_tooltip=Marcado como decorativo +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Por ejemplo: “Un joven se sienta a la mesa a comer” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-CL/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-CL/viewer.properties new file mode 100644 index 00000000..b7996bc9 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-CL/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página anterior +previous_label=Anterior +next.title=Página siguiente +next_label=Siguiente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Página +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Alejar +zoom_out_label=Alejar +zoom_in.title=Acercar +zoom_in_label=Acercar +zoom.title=Ampliación +presentation_mode.title=Cambiar al modo de presentación +presentation_mode_label=Modo de presentación +open_file.title=Abrir archivo +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir +save.title=Guardar +save_label=Guardar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Descargar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Descargar +bookmark1.title=Página actual (Ver URL de la página actual) +bookmark1_label=Página actual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Abrir en una aplicación +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Abrir en una aplicación + +# Secondary toolbar and context menu +tools.title=Herramientas +tools_label=Herramientas +first_page.title=Ir a la primera página +first_page_label=Ir a la primera página +last_page.title=Ir a la última página +last_page_label=Ir a la última página +page_rotate_cw.title=Girar a la derecha +page_rotate_cw_label=Girar a la derecha +page_rotate_ccw.title=Girar a la izquierda +page_rotate_ccw_label=Girar a la izquierda + +cursor_text_select_tool.title=Activar la herramienta de selección de texto +cursor_text_select_tool_label=Herramienta de selección de texto +cursor_hand_tool.title=Activar la herramienta de mano +cursor_hand_tool_label=Herramienta de mano + +scroll_page.title=Usar desplazamiento de página +scroll_page_label=Desplazamiento de página +scroll_vertical.title=Usar desplazamiento vertical +scroll_vertical_label=Desplazamiento vertical +scroll_horizontal.title=Usar desplazamiento horizontal +scroll_horizontal_label=Desplazamiento horizontal +scroll_wrapped.title=Usar desplazamiento en bloque +scroll_wrapped_label=Desplazamiento en bloque + +spread_none.title=No juntar páginas a modo de libro +spread_none_label=Vista de una página +spread_odd.title=Junta las páginas partiendo con una de número impar +spread_odd_label=Vista de libro impar +spread_even.title=Junta las páginas partiendo con una de número par +spread_even_label=Vista de libro par + +# Document properties dialog box +document_properties.title=Propiedades del documento… +document_properties_label=Propiedades del documento… +document_properties_file_name=Nombre de archivo: +document_properties_file_size=Tamaño del archivo: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Asunto: +document_properties_keywords=Palabras clave: +document_properties_creation_date=Fecha de creación: +document_properties_modification_date=Fecha de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creador: +document_properties_producer=Productor del PDF: +document_properties_version=Versión de PDF: +document_properties_page_count=Cantidad de páginas: +document_properties_page_size=Tamaño de la página: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Oficio +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista rápida en Web: +document_properties_linearized_yes=Sí +document_properties_linearized_no=No +document_properties_close=Cerrar + +print_progress_message=Preparando documento para impresión… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Barra lateral +toggle_sidebar_notification2.title=Cambiar barra lateral (índice de contenidos del documento/adjuntos/capas) +toggle_sidebar_label=Mostrar u ocultar la barra lateral +document_outline.title=Mostrar esquema del documento (doble clic para expandir/contraer todos los elementos) +document_outline_label=Esquema del documento +attachments.title=Mostrar adjuntos +attachments_label=Adjuntos +layers.title=Mostrar capas (doble clic para restablecer todas las capas al estado predeterminado) +layers_label=Capas +thumbs.title=Mostrar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Buscar elemento de esquema actual +current_outline_item_label=Elemento de esquema actual +findbar.title=Buscar en el documento +findbar_label=Buscar + +additional_layers=Capas adicionales +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Página {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Página {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura de la página {{page}} + +# Find panel button title and messages +find_input.title=Encontrar +find_input.placeholder=Encontrar en el documento… +find_previous.title=Buscar la aparición anterior de la frase +find_previous_label=Previo +find_next.title=Buscar la siguiente aparición de la frase +find_next_label=Siguiente +find_highlight=Destacar todos +find_match_case_label=Coincidir mayús./minús. +find_match_diacritics_label=Coincidir diacríticos +find_entire_word_label=Palabras completas +find_reached_top=Se alcanzó el inicio del documento, continuando desde el final +find_reached_bottom=Se alcanzó el final del documento, continuando desde el inicio +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=Coincidencia {{current}} de {{total}} +find_match_count[two]=Coincidencia {{current}} de {{total}} +find_match_count[few]=Coincidencia {{current}} de {{total}} +find_match_count[many]=Coincidencia {{current}} de {{total}} +find_match_count[other]=Coincidencia {{current}} de {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Más de {{limit}} coincidencias +find_match_count_limit[one]=Más de {{limit}} coincidencia +find_match_count_limit[two]=Más de {{limit}} coincidencias +find_match_count_limit[few]=Más de {{limit}} coincidencias +find_match_count_limit[many]=Más de {{limit}} coincidencias +find_match_count_limit[other]=Más de {{limit}} coincidencias +find_not_found=Frase no encontrada + +# Predefined zoom values +page_scale_width=Ancho de página +page_scale_fit=Ajuste de página +page_scale_auto=Aumento automático +page_scale_actual=Tamaño actual +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ocurrió un error al cargar el PDF. +invalid_file_error=Archivo PDF inválido o corrupto. +missing_file_error=Falta el archivo PDF. +unexpected_response_error=Respuesta del servidor inesperada. +rendering_error=Ocurrió un error al renderizar la página. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Anotación] +password_label=Ingrese la contraseña para abrir este archivo PDF. +password_invalid=Contraseña inválida. Por favor, vuelve a intentarlo. +password_ok=Aceptar +password_cancel=Cancelar + +printing_not_supported=Advertencia: Imprimir no está soportado completamente por este navegador. +printing_not_ready=Advertencia: El PDF no está completamente cargado para ser impreso. +web_fonts_disabled=Las tipografías web están desactivadas: imposible usar las fuentes PDF embebidas. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Dibujar +editor_ink2_label=Dibujar + +editor_stamp1.title=Añadir o editar imágenes +editor_stamp1_label=Añadir o editar imágenes + +free_text2_default_content=Empieza a escribir… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Tamaño +editor_ink_color=Color +editor_ink_thickness=Grosor +editor_ink_opacity=Opacidad + +editor_stamp_add_image_label=Añadir imagen +editor_stamp_add_image.title=Añadir imagen + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de dibujos +editor_ink_canvas_aria_label=Imagen creada por el usuario + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Texto alternativo +editor_alt_text_edit_button_label=Editar texto alternativo +editor_alt_text_dialog_label=Elige una opción +editor_alt_text_dialog_description=El texto alternativo (alt text) ayuda cuando las personas no pueden ver la imagen o cuando no se carga. +editor_alt_text_add_description_label=Añade una descripción +editor_alt_text_add_description_description=Intenta escribir 1 o 2 oraciones que describan el tema, el ambiente o las acciones. +editor_alt_text_mark_decorative_label=Marcar como decorativa +editor_alt_text_mark_decorative_description=Se utiliza para imágenes ornamentales, como bordes o marcas de agua. +editor_alt_text_cancel_button=Cancelar +editor_alt_text_save_button=Guardar +editor_alt_text_decorative_tooltip=Marcada como decorativa +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Por ejemplo: “Un joven se sienta a la mesa a comer” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-ES/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-ES/viewer.properties new file mode 100644 index 00000000..7435385b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-ES/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página anterior +previous_label=Anterior +next.title=Página siguiente +next_label=Siguiente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Página +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Reducir +zoom_out_label=Reducir +zoom_in.title=Aumentar +zoom_in_label=Aumentar +zoom.title=Tamaño +presentation_mode.title=Cambiar al modo presentación +presentation_mode_label=Modo presentación +open_file.title=Abrir archivo +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir +save.title=Guardar +save_label=Guardar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Descargar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Descargar +bookmark1.title=Página actual (Ver URL de la página actual) +bookmark1_label=Página actual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Abrir en aplicación +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Abrir en aplicación + +# Secondary toolbar and context menu +tools.title=Herramientas +tools_label=Herramientas +first_page.title=Ir a la primera página +first_page_label=Ir a la primera página +last_page.title=Ir a la última página +last_page_label=Ir a la última página +page_rotate_cw.title=Rotar en sentido horario +page_rotate_cw_label=Rotar en sentido horario +page_rotate_ccw.title=Rotar en sentido antihorario +page_rotate_ccw_label=Rotar en sentido antihorario + +cursor_text_select_tool.title=Activar herramienta de selección de texto +cursor_text_select_tool_label=Herramienta de selección de texto +cursor_hand_tool.title=Activar herramienta de mano +cursor_hand_tool_label=Herramienta de mano + +scroll_page.title=Usar desplazamiento de página +scroll_page_label=Desplazamiento de página +scroll_vertical.title=Usar desplazamiento vertical +scroll_vertical_label=Desplazamiento vertical +scroll_horizontal.title=Usar desplazamiento horizontal +scroll_horizontal_label=Desplazamiento horizontal +scroll_wrapped.title=Usar desplazamiento en bloque +scroll_wrapped_label=Desplazamiento en bloque + +spread_none.title=No juntar páginas en vista de libro +spread_none_label=Vista de libro +spread_odd.title=Juntar las páginas partiendo de una con número impar +spread_odd_label=Vista de libro impar +spread_even.title=Juntar las páginas partiendo de una con número par +spread_even_label=Vista de libro par + +# Document properties dialog box +document_properties.title=Propiedades del documento… +document_properties_label=Propiedades del documento… +document_properties_file_name=Nombre de archivo: +document_properties_file_size=Tamaño de archivo: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Asunto: +document_properties_keywords=Palabras clave: +document_properties_creation_date=Fecha de creación: +document_properties_modification_date=Fecha de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creador: +document_properties_producer=Productor PDF: +document_properties_version=Versión PDF: +document_properties_page_count=Número de páginas: +document_properties_page_size=Tamaño de la página: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista rápida de la web: +document_properties_linearized_yes=Sí +document_properties_linearized_no=No +document_properties_close=Cerrar + +print_progress_message=Preparando documento para impresión… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Cambiar barra lateral +toggle_sidebar_notification2.title=Alternar barra lateral (el documento contiene esquemas/adjuntos/capas) +toggle_sidebar_label=Cambiar barra lateral +document_outline.title=Mostrar resumen del documento (doble clic para expandir/contraer todos los elementos) +document_outline_label=Resumen de documento +attachments.title=Mostrar adjuntos +attachments_label=Adjuntos +layers.title=Mostrar capas (doble clic para restablecer todas las capas al estado predeterminado) +layers_label=Capas +thumbs.title=Mostrar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Encontrar elemento de esquema actual +current_outline_item_label=Elemento de esquema actual +findbar.title=Buscar en el documento +findbar_label=Buscar + +additional_layers=Capas adicionales +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Página {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Página {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura de la página {{page}} + +# Find panel button title and messages +find_input.title=Buscar +find_input.placeholder=Buscar en el documento… +find_previous.title=Encontrar la anterior aparición de la frase +find_previous_label=Anterior +find_next.title=Encontrar la siguiente aparición de esta frase +find_next_label=Siguiente +find_highlight=Resaltar todos +find_match_case_label=Coincidencia de mayús./minús. +find_match_diacritics_label=Coincidir diacríticos +find_entire_word_label=Palabras completas +find_reached_top=Se alcanzó el inicio del documento, se continúa desde el final +find_reached_bottom=Se alcanzó el final del documento, se continúa desde el inicio +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} coincidencia +find_match_count[two]={{current}} de {{total}} coincidencias +find_match_count[few]={{current}} de {{total}} coincidencias +find_match_count[many]={{current}} de {{total}} coincidencias +find_match_count[other]={{current}} de {{total}} coincidencias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Más de {{limit}} coincidencias +find_match_count_limit[one]=Más de {{limit}} coincidencia +find_match_count_limit[two]=Más de {{limit}} coincidencias +find_match_count_limit[few]=Más de {{limit}} coincidencias +find_match_count_limit[many]=Más de {{limit}} coincidencias +find_match_count_limit[other]=Más de {{limit}} coincidencias +find_not_found=Frase no encontrada + +# Predefined zoom values +page_scale_width=Anchura de la página +page_scale_fit=Ajuste de la página +page_scale_auto=Tamaño automático +page_scale_actual=Tamaño real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ocurrió un error al cargar el PDF. +invalid_file_error=Fichero PDF no válido o corrupto. +missing_file_error=No hay fichero PDF. +unexpected_response_error=Respuesta inesperada del servidor. +rendering_error=Ocurrió un error al renderizar la página. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotación {{type}}] +password_label=Introduzca la contraseña para abrir este archivo PDF. +password_invalid=Contraseña no válida. Vuelva a intentarlo. +password_ok=Aceptar +password_cancel=Cancelar + +printing_not_supported=Advertencia: Imprimir no está totalmente soportado por este navegador. +printing_not_ready=Advertencia: Este PDF no se ha cargado completamente para poder imprimirse. +web_fonts_disabled=Las tipografías web están desactivadas: es imposible usar las tipografías PDF embebidas. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Dibujar +editor_ink2_label=Dibujar + +editor_stamp.title=Añadir una imagen +editor_stamp_label=Añadir una imagen + +editor_stamp1.title=Añadir o editar imágenes +editor_stamp1_label=Añadir o editar imágenes + +free_text2_default_content=Empezar a escribir… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Tamaño +editor_ink_color=Color +editor_ink_thickness=Grosor +editor_ink_opacity=Opacidad + +editor_stamp_add_image_label=Añadir imagen +editor_stamp_add_image.title=Añadir imagen + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de dibujos +editor_ink_canvas_aria_label=Imagen creada por el usuario diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-MX/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-MX/viewer.properties new file mode 100644 index 00000000..42bad414 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/es-MX/viewer.properties @@ -0,0 +1,257 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página anterior +previous_label=Anterior +next.title=Página siguiente +next_label=Siguiente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Página +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Reducir +zoom_out_label=Reducir +zoom_in.title=Aumentar +zoom_in_label=Aumentar +zoom.title=Zoom +presentation_mode.title=Cambiar al modo presentación +presentation_mode_label=Modo presentación +open_file.title=Abrir archivo +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir + +save.title=Guardar +save_label=Guardar +bookmark1.title=Página actual (Ver URL de la página actual) +bookmark1_label=Página actual + +open_in_app.title=Abrir en la aplicación +open_in_app_label=Abrir en la aplicación + +# Secondary toolbar and context menu +tools.title=Herramientas +tools_label=Herramientas +first_page.title=Ir a la primera página +first_page_label=Ir a la primera página +last_page.title=Ir a la última página +last_page_label=Ir a la última página +page_rotate_cw.title=Girar a la derecha +page_rotate_cw_label=Girar a la derecha +page_rotate_ccw.title=Girar a la izquierda +page_rotate_ccw_label=Girar a la izquierda + +cursor_text_select_tool.title=Activar la herramienta de selección de texto +cursor_text_select_tool_label=Herramienta de selección de texto +cursor_hand_tool.title=Activar la herramienta de mano +cursor_hand_tool_label=Herramienta de mano + +scroll_page.title=Usar desplazamiento de página +scroll_page_label=Desplazamiento de página +scroll_vertical.title=Usar desplazamiento vertical +scroll_vertical_label=Desplazamiento vertical +scroll_horizontal.title=Usar desplazamiento horizontal +scroll_horizontal_label=Desplazamiento horizontal +scroll_wrapped.title=Usar desplazamiento encapsulado +scroll_wrapped_label=Desplazamiento encapsulado + +spread_none.title=No unir páginas separadas +spread_none_label=Vista de una página +spread_odd.title=Unir las páginas partiendo con una de número impar +spread_odd_label=Vista de libro impar +spread_even.title=Juntar las páginas partiendo con una de número par +spread_even_label=Vista de libro par + +# Document properties dialog box +document_properties.title=Propiedades del documento… +document_properties_label=Propiedades del documento… +document_properties_file_name=Nombre del archivo: +document_properties_file_size=Tamaño del archivo: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Asunto: +document_properties_keywords=Palabras claves: +document_properties_creation_date=Fecha de creación: +document_properties_modification_date=Fecha de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creador: +document_properties_producer=Productor PDF: +document_properties_version=Versión PDF: +document_properties_page_count=Número de páginas: +document_properties_page_size=Tamaño de la página: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Oficio +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista rápida de la web: +document_properties_linearized_yes=Sí +document_properties_linearized_no=No +document_properties_close=Cerrar + +print_progress_message=Preparando documento para impresión… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Cambiar barra lateral +toggle_sidebar_notification2.title=Alternar barra lateral (el documento contiene esquemas/adjuntos/capas) +toggle_sidebar_label=Cambiar barra lateral +document_outline.title=Mostrar esquema del documento (doble clic para expandir/contraer todos los elementos) +document_outline_label=Esquema del documento +attachments.title=Mostrar adjuntos +attachments_label=Adjuntos +layers.title=Mostrar capas (doble clic para restablecer todas las capas al estado predeterminado) +layers_label=Capas +thumbs.title=Mostrar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Buscar elemento de esquema actual +current_outline_item_label=Elemento de esquema actual +findbar.title=Buscar en el documento +findbar_label=Buscar + +additional_layers=Capas adicionales +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Página {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Página {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura de la página {{page}} + +# Find panel button title and messages +find_input.title=Buscar +find_input.placeholder=Buscar en el documento… +find_previous.title=Ir a la anterior frase encontrada +find_previous_label=Anterior +find_next.title=Ir a la siguiente frase encontrada +find_next_label=Siguiente +find_highlight=Resaltar todo +find_match_case_label=Coincidir con mayúsculas y minúsculas +find_match_diacritics_label=Coincidir diacríticos +find_entire_word_label=Palabras completas +find_reached_top=Se alcanzó el inicio del documento, se buscará al final +find_reached_bottom=Se alcanzó el final del documento, se buscará al inicio +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} coincidencia +find_match_count[two]={{current}} de {{total}} coincidencias +find_match_count[few]={{current}} de {{total}} coincidencias +find_match_count[many]={{current}} de {{total}} coincidencias +find_match_count[other]={{current}} de {{total}} coincidencias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Más de {{limit}} coincidencias +find_match_count_limit[one]=Más de {{limit}} coinciden +find_match_count_limit[two]=Más de {{limit}} coincidencias +find_match_count_limit[few]=Más de {{limit}} coincidencias +find_match_count_limit[many]=Más de {{limit}} coincidencias +find_match_count_limit[other]=Más de {{limit}} coincidencias +find_not_found=No se encontró la frase + +# Predefined zoom values +page_scale_width=Ancho de página +page_scale_fit=Ajustar página +page_scale_auto=Zoom automático +page_scale_actual=Tamaño real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Un error ocurrió al cargar el PDF. +invalid_file_error=Archivo PDF invalido o dañado. +missing_file_error=Archivo PDF no encontrado. +unexpected_response_error=Respuesta inesperada del servidor. + +rendering_error=Un error ocurrió al renderizar la página. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} anotación] +password_label=Ingresa la contraseña para abrir este archivo PDF. +password_invalid=Contraseña inválida. Por favor intenta de nuevo. +password_ok=Aceptar +password_cancel=Cancelar + +printing_not_supported=Advertencia: La impresión no esta completamente soportada por este navegador. +printing_not_ready=Advertencia: El PDF no cargo completamente para impresión. +web_fonts_disabled=Las fuentes web están desactivadas: es imposible usar las fuentes PDF embebidas. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Dibujar +editor_ink2_label=Dibujar + +free_text2_default_content=Empieza a escribir… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Tamaño +editor_ink_color=Color +editor_ink_thickness=Grossor +editor_ink_opacity=Opacidad + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de dibujo +editor_ink_canvas_aria_label=Imagen creada por el usuario diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/et/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/et/viewer.properties new file mode 100644 index 00000000..12b2ce55 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/et/viewer.properties @@ -0,0 +1,229 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Eelmine lehekülg +previous_label=Eelmine +next.title=Järgmine lehekülg +next_label=Järgmine + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Leht +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}}/{{pagesCount}}) + +zoom_out.title=Vähenda +zoom_out_label=Vähenda +zoom_in.title=Suurenda +zoom_in_label=Suurenda +zoom.title=Suurendamine +presentation_mode.title=Lülitu esitlusrežiimi +presentation_mode_label=Esitlusrežiim +open_file.title=Ava fail +open_file_label=Ava +print.title=Prindi +print_label=Prindi + +# Secondary toolbar and context menu +tools.title=Tööriistad +tools_label=Tööriistad +first_page.title=Mine esimesele leheküljele +first_page_label=Mine esimesele leheküljele +last_page.title=Mine viimasele leheküljele +last_page_label=Mine viimasele leheküljele +page_rotate_cw.title=Pööra päripäeva +page_rotate_cw_label=Pööra päripäeva +page_rotate_ccw.title=Pööra vastupäeva +page_rotate_ccw_label=Pööra vastupäeva + +cursor_text_select_tool.title=Luba teksti valimise tööriist +cursor_text_select_tool_label=Teksti valimise tööriist +cursor_hand_tool.title=Luba sirvimistööriist +cursor_hand_tool_label=Sirvimistööriist + +scroll_page.title=Kasutatakse lehe kaupa kerimist +scroll_page_label=Lehe kaupa kerimine +scroll_vertical.title=Kasuta vertikaalset kerimist +scroll_vertical_label=Vertikaalne kerimine +scroll_horizontal.title=Kasuta horisontaalset kerimist +scroll_horizontal_label=Horisontaalne kerimine +scroll_wrapped.title=Kasuta rohkem mahutavat kerimist +scroll_wrapped_label=Rohkem mahutav kerimine + +spread_none.title=Ära kõrvuta lehekülgi +spread_none_label=Lehtede kõrvutamine puudub +spread_odd.title=Kõrvuta leheküljed, alustades paaritute numbritega lehekülgedega +spread_odd_label=Kõrvutamine paaritute numbritega alustades +spread_even.title=Kõrvuta leheküljed, alustades paarisnumbritega lehekülgedega +spread_even_label=Kõrvutamine paarisnumbritega alustades + +# Document properties dialog box +document_properties.title=Dokumendi omadused… +document_properties_label=Dokumendi omadused… +document_properties_file_name=Faili nimi: +document_properties_file_size=Faili suurus: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KiB ({{size_b}} baiti) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MiB ({{size_b}} baiti) +document_properties_title=Pealkiri: +document_properties_author=Autor: +document_properties_subject=Teema: +document_properties_keywords=Märksõnad: +document_properties_creation_date=Loodud: +document_properties_modification_date=Muudetud: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}} {{time}} +document_properties_creator=Looja: +document_properties_producer=Generaator: +document_properties_version=Generaatori versioon: +document_properties_page_count=Lehekülgi: +document_properties_page_size=Lehe suurus: +document_properties_page_size_unit_inches=tolli +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertikaalpaigutus +document_properties_page_size_orientation_landscape=rõhtpaigutus +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized="Fast Web View" tugi: +document_properties_linearized_yes=Jah +document_properties_linearized_no=Ei +document_properties_close=Sulge + +print_progress_message=Dokumendi ettevalmistamine printimiseks… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Loobu + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Näita külgriba +toggle_sidebar_notification2.title=Näita külgriba (dokument sisaldab sisukorda/manuseid/kihte) +toggle_sidebar_label=Näita külgriba +document_outline.title=Näita sisukorda (kõigi punktide laiendamiseks/ahendamiseks topeltklõpsa) +document_outline_label=Näita sisukorda +attachments.title=Näita manuseid +attachments_label=Manused +layers.title=Näita kihte (kõikide kihtide vaikeolekusse lähtestamiseks topeltklõpsa) +layers_label=Kihid +thumbs.title=Näita pisipilte +thumbs_label=Pisipildid +current_outline_item.title=Otsi üles praegune kontuuriüksus +current_outline_item_label=Praegune kontuuriüksus +findbar.title=Otsi dokumendist +findbar_label=Otsi + +additional_layers=Täiendavad kihid +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Lehekülg {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}}. lehekülg +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}}. lehekülje pisipilt + +# Find panel button title and messages +find_input.title=Otsi +find_input.placeholder=Otsi dokumendist… +find_previous.title=Otsi fraasi eelmine esinemiskoht +find_previous_label=Eelmine +find_next.title=Otsi fraasi järgmine esinemiskoht +find_next_label=Järgmine +find_highlight=Too kõik esile +find_match_case_label=Tõstutundlik +find_match_diacritics_label=Otsitakse diakriitiliselt +find_entire_word_label=Täissõnad +find_reached_top=Jõuti dokumendi algusesse, jätkati lõpust +find_reached_bottom=Jõuti dokumendi lõppu, jätkati algusest +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=vaste {{current}}/{{total}} +find_match_count[two]=vaste {{current}}/{{total}} +find_match_count[few]=vaste {{current}}/{{total}} +find_match_count[many]=vaste {{current}}/{{total}} +find_match_count[other]=vaste {{current}}/{{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Rohkem kui {{limit}} vastet +find_match_count_limit[one]=Rohkem kui {{limit}} vaste +find_match_count_limit[two]=Rohkem kui {{limit}} vastet +find_match_count_limit[few]=Rohkem kui {{limit}} vastet +find_match_count_limit[many]=Rohkem kui {{limit}} vastet +find_match_count_limit[other]=Rohkem kui {{limit}} vastet +find_not_found=Fraasi ei leitud + +# Predefined zoom values +page_scale_width=Mahuta laiusele +page_scale_fit=Mahuta leheküljele +page_scale_auto=Automaatne suurendamine +page_scale_actual=Tegelik suurus +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDFi laadimisel esines viga. +invalid_file_error=Vigane või rikutud PDF-fail. +missing_file_error=PDF-fail puudub. +unexpected_response_error=Ootamatu vastus serverilt. + +rendering_error=Lehe renderdamisel esines viga. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=PDF-faili avamiseks sisesta parool. +password_invalid=Vigane parool. Palun proovi uuesti. +password_ok=Sobib +password_cancel=Loobu + +printing_not_supported=Hoiatus: printimine pole selle brauseri poolt täielikult toetatud. +printing_not_ready=Hoiatus: PDF pole printimiseks täielikult laaditud. +web_fonts_disabled=Veebifondid on keelatud: PDFiga kaasatud fonte pole võimalik kasutada. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/eu/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/eu/viewer.properties new file mode 100644 index 00000000..45ecd663 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/eu/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Aurreko orria +previous_label=Aurrekoa +next.title=Hurrengo orria +next_label=Hurrengoa + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Orria +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages={{pagesCount}}/{{pageNumber}} + +zoom_out.title=Urrundu zooma +zoom_out_label=Urrundu zooma +zoom_in.title=Gerturatu zooma +zoom_in_label=Gerturatu zooma +zoom.title=Zooma +presentation_mode.title=Aldatu aurkezpen modura +presentation_mode_label=Arkezpen modua +open_file.title=Ireki fitxategia +open_file_label=Ireki +print.title=Inprimatu +print_label=Inprimatu +save.title=Gorde +save_label=Gorde +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Deskargatu +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Deskargatu +bookmark1.title=Uneko orria (ikusi uneko orriaren URLa) +bookmark1_label=Uneko orria +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Ireki aplikazioan +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Ireki aplikazioan + +# Secondary toolbar and context menu +tools.title=Tresnak +tools_label=Tresnak +first_page.title=Joan lehen orrira +first_page_label=Joan lehen orrira +last_page.title=Joan azken orrira +last_page_label=Joan azken orrira +page_rotate_cw.title=Biratu erlojuaren norantzan +page_rotate_cw_label=Biratu erlojuaren norantzan +page_rotate_ccw.title=Biratu erlojuaren aurkako norantzan +page_rotate_ccw_label=Biratu erlojuaren aurkako norantzan + +cursor_text_select_tool.title=Gaitu testuaren hautapen tresna +cursor_text_select_tool_label=Testuaren hautapen tresna +cursor_hand_tool.title=Gaitu eskuaren tresna +cursor_hand_tool_label=Eskuaren tresna + +scroll_page.title=Erabili orriaren korritzea +scroll_page_label=Orriaren korritzea +scroll_vertical.title=Erabili korritze bertikala +scroll_vertical_label=Korritze bertikala +scroll_horizontal.title=Erabili korritze horizontala +scroll_horizontal_label=Korritze horizontala +scroll_wrapped.title=Erabili korritze egokitua +scroll_wrapped_label=Korritze egokitua + +spread_none.title=Ez elkartu barreiatutako orriak +spread_none_label=Barreiatzerik ez +spread_odd.title=Elkartu barreiatutako orriak bakoiti zenbakidunekin hasita +spread_odd_label=Barreiatze bakoitia +spread_even.title=Elkartu barreiatutako orriak bikoiti zenbakidunekin hasita +spread_even_label=Barreiatze bikoitia + +# Document properties dialog box +document_properties.title=Dokumentuaren propietateak… +document_properties_label=Dokumentuaren propietateak… +document_properties_file_name=Fitxategi-izena: +document_properties_file_size=Fitxategiaren tamaina: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} byte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byte) +document_properties_title=Izenburua: +document_properties_author=Egilea: +document_properties_subject=Gaia: +document_properties_keywords=Gako-hitzak: +document_properties_creation_date=Sortze-data: +document_properties_modification_date=Aldatze-data: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Sortzailea: +document_properties_producer=PDFaren ekoizlea: +document_properties_version=PDF bertsioa: +document_properties_page_count=Orrialde kopurua: +document_properties_page_size=Orriaren tamaina: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=bertikala +document_properties_page_size_orientation_landscape=horizontala +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Gutuna +document_properties_page_size_name_legal=Legala +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Webeko ikuspegi bizkorra: +document_properties_linearized_yes=Bai +document_properties_linearized_no=Ez +document_properties_close=Itxi + +print_progress_message=Dokumentua inprimatzeko prestatzen… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent=%{{progress}} +print_progress_close=Utzi + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Txandakatu alboko barra +toggle_sidebar_notification2.title=Txandakatu alboko barra (dokumentuak eskema/eranskinak/geruzak ditu) +toggle_sidebar_label=Txandakatu alboko barra +document_outline.title=Erakutsi dokumentuaren eskema (klik bikoitza elementu guztiak zabaltzeko/tolesteko) +document_outline_label=Dokumentuaren eskema +attachments.title=Erakutsi eranskinak +attachments_label=Eranskinak +layers.title=Erakutsi geruzak (klik bikoitza geruza guztiak egoera lehenetsira berrezartzeko) +layers_label=Geruzak +thumbs.title=Erakutsi koadro txikiak +thumbs_label=Koadro txikiak +current_outline_item.title=Bilatu uneko eskemaren elementua +current_outline_item_label=Uneko eskemaren elementua +findbar.title=Bilatu dokumentuan +findbar_label=Bilatu + +additional_layers=Geruza gehigarriak +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}}. orria +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}}. orria +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}}. orriaren koadro txikia + +# Find panel button title and messages +find_input.title=Bilatu +find_input.placeholder=Bilatu dokumentuan… +find_previous.title=Bilatu esaldiaren aurreko parekatzea +find_previous_label=Aurrekoa +find_next.title=Bilatu esaldiaren hurrengo parekatzea +find_next_label=Hurrengoa +find_highlight=Nabarmendu guztia +find_match_case_label=Bat etorri maiuskulekin/minuskulekin +find_match_diacritics_label=Bereizi diakritikoak +find_entire_word_label=Hitz osoak +find_reached_top=Dokumentuaren hasierara heldu da, bukaeratik jarraitzen +find_reached_bottom=Dokumentuaren bukaerara heldu da, hasieratik jarraitzen +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}}/{{current}}. bat etortzea +find_match_count[two]={{total}}/{{current}}. bat etortzea +find_match_count[few]={{total}}/{{current}}. bat etortzea +find_match_count[many]={{total}}/{{current}}. bat etortzea +find_match_count[other]={{total}}/{{current}}. bat etortzea +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} bat-etortze baino gehiago +find_match_count_limit[one]=Bat-etortze {{limit}} baino gehiago +find_match_count_limit[two]={{limit}} bat-etortze baino gehiago +find_match_count_limit[few]={{limit}} bat-etortze baino gehiago +find_match_count_limit[many]={{limit}} bat-etortze baino gehiago +find_match_count_limit[other]={{limit}} bat-etortze baino gehiago +find_not_found=Esaldia ez da aurkitu + +# Predefined zoom values +page_scale_width=Orriaren zabalera +page_scale_fit=Doitu orrira +page_scale_auto=Zoom automatikoa +page_scale_actual=Benetako tamaina +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent=%{{scale}} + +# Loading indicator messages +loading_error=Errorea gertatu da PDFa kargatzean. +invalid_file_error=PDF fitxategi baliogabe edo hondatua. +missing_file_error=PDF fitxategia falta da. +unexpected_response_error=Espero gabeko zerbitzariaren erantzuna. +rendering_error=Errorea gertatu da orria errendatzean. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} ohartarazpena] +password_label=Idatzi PDF fitxategi hau irekitzeko pasahitza. +password_invalid=Pasahitz baliogabea. Saiatu berriro mesedez. +password_ok=Ados +password_cancel=Utzi + +printing_not_supported=Abisua: inprimatzeko euskarria ez da erabatekoa nabigatzaile honetan. +printing_not_ready=Abisua: PDFa ez dago erabat kargatuta inprimatzeko. +web_fonts_disabled=Webeko letra-tipoak desgaituta daude: ezin dira kapsulatutako PDF letra-tipoak erabili. + +# Editor +editor_free_text2.title=Testua +editor_free_text2_label=Testua +editor_ink2.title=Marrazkia +editor_ink2_label=Marrazkia + +editor_stamp1.title=Gehitu edo editatu irudiak +editor_stamp1_label=Gehitu edo editatu irudiak + +free_text2_default_content=Hasi idazten… + +# Editor Parameters +editor_free_text_color=Kolorea +editor_free_text_size=Tamaina +editor_ink_color=Kolorea +editor_ink_thickness=Loditasuna +editor_ink_opacity=Opakutasuna + +editor_stamp_add_image_label=Gehitu irudia +editor_stamp_add_image.title=Gehitu irudia + +# Editor aria +editor_free_text2_aria_label=Testu-editorea +editor_ink2_aria_label=Marrazki-editorea +editor_ink_canvas_aria_label=Erabiltzaileak sortutako irudia + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Testu alternatiboa +editor_alt_text_edit_button_label=Editatu testu alternatiboa +editor_alt_text_dialog_label=Aukeratu aukera +editor_alt_text_dialog_description=Testu alternatiboak laguntzen du jendeak ezin duenean irudia ikusi edo ez denean kargatzen. +editor_alt_text_add_description_label=Gehitu azalpena +editor_alt_text_add_description_description=Saiatu idazten gaia, ezarpena edo ekintzak deskribatzen dituen esaldi 1 edo 2. +editor_alt_text_mark_decorative_label=Markatu apaingarri gisa +editor_alt_text_mark_decorative_description=Irudiak apaingarrientzat erabiltzen da, adibidez ertz edo ur-marketarako. +editor_alt_text_cancel_button=Utzi +editor_alt_text_save_button=Gorde +editor_alt_text_decorative_tooltip=Apaingarri gisa markatuta +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Adibidez, "gizon gaztea mahaian eserita dago bazkaltzeko" diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/fa/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fa/viewer.properties new file mode 100644 index 00000000..a78b022d --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fa/viewer.properties @@ -0,0 +1,221 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=صفحهٔ قبلی +previous_label=قبلی +next.title=صفحهٔ بعدی +next_label=بعدی + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=صفحه +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=از {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}}از {{pagesCount}}) + +zoom_out.title=کوچک‌نمایی +zoom_out_label=کوچک‌نمایی +zoom_in.title=بزرگ‌نمایی +zoom_in_label=بزرگ‌نمایی +zoom.title=زوم +presentation_mode.title=تغییر به حالت ارائه +presentation_mode_label=حالت ارائه +open_file.title=باز کردن پرونده +open_file_label=باز کردن +print.title=چاپ +print_label=چاپ + +save_label=ذخیره + + +# Secondary toolbar and context menu +tools.title=ابزارها +tools_label=ابزارها +first_page.title=برو به اولین صفحه +first_page_label=برو به اولین صفحه +last_page.title=برو به آخرین صفحه +last_page_label=برو به آخرین صفحه +page_rotate_cw.title=چرخش ساعتگرد +page_rotate_cw_label=چرخش ساعتگرد +page_rotate_ccw.title=چرخش پاد ساعتگرد +page_rotate_ccw_label=چرخش پاد ساعتگرد + +cursor_text_select_tool.title=فعال کردن ابزارِ انتخابِ متن +cursor_text_select_tool_label=ابزارِ انتخابِ متن +cursor_hand_tool.title=فعال کردن ابزارِ دست +cursor_hand_tool_label=ابزار دست + +scroll_vertical.title=استفاده از پیمایش عمودی +scroll_vertical_label=پیمایش عمودی +scroll_horizontal.title=استفاده از پیمایش افقی +scroll_horizontal_label=پیمایش افقی + + +# Document properties dialog box +document_properties.title=خصوصیات سند... +document_properties_label=خصوصیات سند... +document_properties_file_name=نام فایل: +document_properties_file_size=حجم پرونده: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} کیلوبایت ({{size_b}} بایت) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} مگابایت ({{size_b}} بایت) +document_properties_title=عنوان: +document_properties_author=نویسنده: +document_properties_subject=موضوع: +document_properties_keywords=کلیدواژه‌ها: +document_properties_creation_date=تاریخ ایجاد: +document_properties_modification_date=تاریخ ویرایش: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}، {{time}} +document_properties_creator=ایجاد کننده: +document_properties_producer=ایجاد کننده PDF: +document_properties_version=نسخه PDF: +document_properties_page_count=تعداد صفحات: +document_properties_page_size=اندازه صفحه: +document_properties_page_size_unit_inches=اینچ +document_properties_page_size_unit_millimeters=میلی‌متر +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=نامه +document_properties_page_size_name_legal=حقوقی +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=بله +document_properties_linearized_no=خیر +document_properties_close=بستن + +print_progress_message=آماده سازی مدارک برای چاپ کردن… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=لغو + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=باز و بسته کردن نوار کناری +toggle_sidebar_label=تغییرحالت نوارکناری +document_outline.title=نمایش رئوس مطالب مدارک(برای بازشدن/جمع شدن همه موارد دوبار کلیک کنید) +document_outline_label=طرح نوشتار +attachments.title=نمایش پیوست‌ها +attachments_label=پیوست‌ها +layers_label=لایه‌ها +thumbs.title=نمایش تصاویر بندانگشتی +thumbs_label=تصاویر بندانگشتی +findbar.title=جستجو در سند +findbar_label=پیدا کردن + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=صفحهٔ {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=صفحه {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=تصویر بند‌ انگشتی صفحه {{page}} + +# Find panel button title and messages +find_input.title=پیدا کردن +find_input.placeholder=پیدا کردن در سند… +find_previous.title=پیدا کردن رخداد قبلی عبارت +find_previous_label=قبلی +find_next.title=پیدا کردن رخداد بعدی عبارت +find_next_label=بعدی +find_highlight=برجسته و هایلایت کردن همه موارد +find_match_case_label=تطبیق کوچکی و بزرگی حروف +find_entire_word_label=تمام کلمه‌ها +find_reached_top=به بالای صفحه رسیدیم، از پایین ادامه می‌دهیم +find_reached_bottom=به آخر صفحه رسیدیم، از بالا ادامه می‌دهیم +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count[one]={{current}} از {{total}} مطابقت دارد +find_match_count[two]={{current}} از {{total}} مطابقت دارد +find_match_count[few]={{current}} از {{total}} مطابقت دارد +find_match_count[many]={{current}} از {{total}} مطابقت دارد +find_match_count[other]={{current}} از {{total}} مطابقت دارد +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_not_found=عبارت پیدا نشد + +# Predefined zoom values +page_scale_width=عرض صفحه +page_scale_fit=اندازه کردن صفحه +page_scale_auto=بزرگنمایی خودکار +page_scale_actual=اندازه واقعی‌ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages + +# Loading indicator messages +loading_error=هنگام بارگیری پرونده PDF خطایی رخ داد. +invalid_file_error=پرونده PDF نامعتبر یامعیوب می‌باشد. +missing_file_error=پرونده PDF یافت نشد. +unexpected_response_error=پاسخ پیش بینی نشده سرور + +rendering_error=هنگام بارگیری صفحه خطایی رخ داد. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=جهت باز کردن پرونده PDF گذرواژه را وارد نمائید. +password_invalid=گذرواژه نامعتبر. لطفا مجددا تلاش کنید. +password_ok=تأیید +password_cancel=لغو + +printing_not_supported=هشدار: قابلیت چاپ به‌طور کامل در این مرورگر پشتیبانی نمی‌شود. +printing_not_ready=اخطار: پرونده PDF بطور کامل بارگیری نشده و امکان چاپ وجود ندارد. +web_fonts_disabled=فونت های تحت وب غیر فعال شده اند: امکان استفاده از نمایش دهنده داخلی PDF وجود ندارد. + +# Editor +editor_free_text2.title=متن +editor_free_text2_label=متن +editor_ink2.title=کشیدن +editor_ink2_label=کشیدن + + +# Editor Parameters +editor_free_text_color=رنگ +editor_free_text_size=اندازه +editor_ink_color=رنگ + +# Editor aria + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ff/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ff/viewer.properties new file mode 100644 index 00000000..bd984f55 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ff/viewer.properties @@ -0,0 +1,214 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Hello Ɓennungo +previous_label=Ɓennuɗo +next.title=Hello faango +next_label=Yeeso + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Hello +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=e nder {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Lonngo Woɗɗa +zoom_out_label=Lonngo Woɗɗa +zoom_in.title=Lonngo Ara +zoom_in_label=Lonngo Ara +zoom.title=Lonngo +presentation_mode.title=Faytu to Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Uddit Fiilde +open_file_label=Uddit +print.title=Winndito +print_label=Winndito + +# Secondary toolbar and context menu +tools.title=Kuutorɗe +tools_label=Kuutorɗe +first_page.title=Yah to hello adanngo +first_page_label=Yah to hello adanngo +last_page.title=Yah to hello wattindiingo +last_page_label=Yah to hello wattindiingo +page_rotate_cw.title=Yiiltu Faya Ñaamo +page_rotate_cw_label=Yiiltu Faya Ñaamo +page_rotate_ccw.title=Yiiltu Faya Nano +page_rotate_ccw_label=Yiiltu Faya Nano + +cursor_text_select_tool.title=Gollin kaɓirgel cuɓirgel binndi +cursor_text_select_tool_label=Kaɓirgel cuɓirgel binndi +cursor_hand_tool.title=Hurmin kuutorgal junngo +cursor_hand_tool_label=Kaɓirgel junngo + +scroll_vertical.title=Huutoro gorwitol daringol +scroll_vertical_label=Gorwitol daringol +scroll_horizontal.title=Huutoro gorwitol lelingol +scroll_horizontal_label=Gorwitol daringol +scroll_wrapped.title=Huutoro gorwitol coomingol +scroll_wrapped_label=Gorwitol coomingol + +spread_none.title=Hoto tawtu kelle kelle +spread_none_label=Alaa Spreads +spread_odd.title=Tawtu kelle puɗɗortooɗe kelle teelɗe +spread_odd_label=Kelle teelɗe +spread_even.title=Tawtu ɗereeji kelle puɗɗoriiɗi kelle teeltuɗe +spread_even_label=Kelle teeltuɗe + +# Document properties dialog box +document_properties.title=Keeroraaɗi Winndannde… +document_properties_label=Keeroraaɗi Winndannde… +document_properties_file_name=Innde fiilde: +document_properties_file_size=Ɓetol fiilde: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bite) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bite) +document_properties_title=Tiitoonde: +document_properties_author=Binnduɗo: +document_properties_subject=Toɓɓere: +document_properties_keywords=Kelmekele jiytirɗe: +document_properties_creation_date=Ñalnde Sosaa: +document_properties_modification_date=Ñalnde Waylaa: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Cosɗo: +document_properties_producer=Paggiiɗo PDF: +document_properties_version=Yamre PDF: +document_properties_page_count=Limoore Kelle: +document_properties_page_size=Ɓeto Hello: +document_properties_page_size_unit_inches=nder +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=dariingo +document_properties_page_size_orientation_landscape=wertiingo +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Ɓataake +document_properties_page_size_name_legal=Laawol +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Ɗisngo geese yaawngo: +document_properties_linearized_yes=Eey +document_properties_linearized_no=Alaa +document_properties_close=Uddu + +print_progress_message=Nana heboo winnditaade fiilannde… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Haaytu + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toggilo Palal Sawndo +toggle_sidebar_label=Toggilo Palal Sawndo +document_outline.title=Hollu Ƴiyal Fiilannde (dobdobo ngam wertude/taggude teme fof) +document_outline_label=Toɓɓe Fiilannde +attachments.title=Hollu Ɗisanɗe +attachments_label=Ɗisanɗe +thumbs.title=Hollu Dooɓe +thumbs_label=Dooɓe +findbar.title=Yiylo e fiilannde +findbar_label=Yiytu + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Hello {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Dooɓre Hello {{page}} + +# Find panel button title and messages +find_input.title=Yiytu +find_input.placeholder=Yiylo nder dokimaa +find_previous.title=Yiylo cilol ɓennugol konngol ngol +find_previous_label=Ɓennuɗo +find_next.title=Yiylo cilol garowol konngol ngol +find_next_label=Yeeso +find_highlight=Jalbin fof +find_match_case_label=Jaaɓnu darnde +find_entire_word_label=Kelme timmuɗe tan +find_reached_top=Heɓii fuɗɗorde fiilannde, jokku faya les +find_reached_bottom=Heɓii hoore fiilannde, jokku faya les +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} wonande laabi {{total}} +find_match_count[two]={{current}} wonande laabi {{total}} +find_match_count[few]={{current}} wonande laabi {{total}} +find_match_count[many]={{current}} wonande laabi {{total}} +find_match_count[other]={{current}} wonande laabi {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Ko ɓuri laabi {{limit}} +find_match_count_limit[one]=Ko ɓuri laani {{limit}} +find_match_count_limit[two]=Ko ɓuri laabi {{limit}} +find_match_count_limit[few]=Ko ɓuri laabi {{limit}} +find_match_count_limit[many]=Ko ɓuri laabi {{limit}} +find_match_count_limit[other]=Ko ɓuri laabi {{limit}} +find_not_found=Konngi njiyataa + +# Predefined zoom values +page_scale_width=Njaajeendi Hello +page_scale_fit=Keƴeendi Hello +page_scale_auto=Loongorde Jaajol +page_scale_actual=Ɓetol Jaati +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Juumre waɗii tuma nde loowata PDF oo. +invalid_file_error=Fiilde PDF moƴƴaani walla jiibii. +missing_file_error=Fiilde PDF ena ŋakki. +unexpected_response_error=Jaabtol sarworde tijjinooka. + +rendering_error=Juumre waɗii tuma nde yoŋkittoo hello. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Siiftannde] +password_label=Naatu finnde ngam uddite ndee fiilde PDF. +password_invalid=Finnde moƴƴaani. Tiiɗno eto kadi. +password_ok=OK +password_cancel=Haaytu + +printing_not_supported=Reentino: Winnditagol tammbitaaka no feewi e ndee wanngorde. +printing_not_ready=Reentino: PDF oo loowaaki haa timmi ngam winnditagol. +web_fonts_disabled=Ponte geese ko daaƴaaɗe: horiima huutoraade ponte PDF coomtoraaɗe. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/fi/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fi/viewer.properties new file mode 100644 index 00000000..e03e6a7c --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fi/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Edellinen sivu +previous_label=Edellinen +next.title=Seuraava sivu +next_label=Seuraava + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Sivu +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=Loitonna +zoom_out_label=Loitonna +zoom_in.title=Lähennä +zoom_in_label=Lähennä +zoom.title=Suurennus +presentation_mode.title=Siirry esitystilaan +presentation_mode_label=Esitystila +open_file.title=Avaa tiedosto +open_file_label=Avaa +print.title=Tulosta +print_label=Tulosta +save.title=Tallenna +save_label=Tallenna +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Lataa +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Lataa +bookmark1.title=Nykyinen sivu (Näytä URL-osoite nykyiseltä sivulta) +bookmark1_label=Nykyinen sivu +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Avaa sovelluksessa +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Avaa sovelluksessa + +# Secondary toolbar and context menu +tools.title=Tools +tools_label=Tools +first_page.title=Siirry ensimmäiselle sivulle +first_page_label=Siirry ensimmäiselle sivulle +last_page.title=Siirry viimeiselle sivulle +last_page_label=Siirry viimeiselle sivulle +page_rotate_cw.title=Kierrä oikealle +page_rotate_cw_label=Kierrä oikealle +page_rotate_ccw.title=Kierrä vasemmalle +page_rotate_ccw_label=Kierrä vasemmalle + +cursor_text_select_tool.title=Käytä tekstinvalintatyökalua +cursor_text_select_tool_label=Tekstinvalintatyökalu +cursor_hand_tool.title=Käytä käsityökalua +cursor_hand_tool_label=Käsityökalu + +scroll_page.title=Käytä sivun vieritystä +scroll_page_label=Sivun vieritys +scroll_vertical.title=Käytä pystysuuntaista vieritystä +scroll_vertical_label=Pystysuuntainen vieritys +scroll_horizontal.title=Käytä vaakasuuntaista vieritystä +scroll_horizontal_label=Vaakasuuntainen vieritys +scroll_wrapped.title=Käytä rivittyvää vieritystä +scroll_wrapped_label=Rivittyvä vieritys + +spread_none.title=Älä yhdistä sivuja aukeamiksi +spread_none_label=Ei aukeamia +spread_odd.title=Yhdistä sivut aukeamiksi alkaen parittomalta sivulta +spread_odd_label=Parittomalta alkavat aukeamat +spread_even.title=Yhdistä sivut aukeamiksi alkaen parilliselta sivulta +spread_even_label=Parilliselta alkavat aukeamat + +# Document properties dialog box +document_properties.title=Dokumentin ominaisuudet… +document_properties_label=Dokumentin ominaisuudet… +document_properties_file_name=Tiedoston nimi: +document_properties_file_size=Tiedoston koko: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kt ({{size_b}} tavua) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} Mt ({{size_b}} tavua) +document_properties_title=Otsikko: +document_properties_author=Tekijä: +document_properties_subject=Aihe: +document_properties_keywords=Avainsanat: +document_properties_creation_date=Luomispäivämäärä: +document_properties_modification_date=Muokkauspäivämäärä: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Luoja: +document_properties_producer=PDF-tuottaja: +document_properties_version=PDF-versio: +document_properties_page_count=Sivujen määrä: +document_properties_page_size=Sivun koko: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=pysty +document_properties_page_size_orientation_landscape=vaaka +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Nopea web-katselu: +document_properties_linearized_yes=Kyllä +document_properties_linearized_no=Ei +document_properties_close=Sulje + +print_progress_message=Valmistellaan dokumenttia tulostamista varten… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Peruuta + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Näytä/piilota sivupaneeli +toggle_sidebar_notification2.title=Näytä/piilota sivupaneeli (dokumentissa on sisällys/liitteitä/tasoja) +toggle_sidebar_label=Näytä/piilota sivupaneeli +document_outline.title=Näytä dokumentin sisällys (laajenna tai kutista kohdat kaksoisnapsauttamalla) +document_outline_label=Dokumentin sisällys +attachments.title=Näytä liitteet +attachments_label=Liitteet +layers.title=Näytä tasot (kaksoisnapsauta palauttaaksesi kaikki tasot oletustilaan) +layers_label=Tasot +thumbs.title=Näytä pienoiskuvat +thumbs_label=Pienoiskuvat +current_outline_item.title=Etsi nykyinen sisällyksen kohta +current_outline_item_label=Nykyinen sisällyksen kohta +findbar.title=Etsi dokumentista +findbar_label=Etsi + +additional_layers=Lisätasot +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Sivu {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Sivu {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Pienoiskuva sivusta {{page}} + +# Find panel button title and messages +find_input.title=Etsi +find_input.placeholder=Etsi dokumentista… +find_previous.title=Etsi hakusanan edellinen osuma +find_previous_label=Edellinen +find_next.title=Etsi hakusanan seuraava osuma +find_next_label=Seuraava +find_highlight=Korosta kaikki +find_match_case_label=Huomioi kirjainkoko +find_match_diacritics_label=Erota tarkkeet +find_entire_word_label=Kokonaiset sanat +find_reached_top=Päästiin dokumentin alkuun, jatketaan lopusta +find_reached_bottom=Päästiin dokumentin loppuun, jatketaan alusta +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} / {{total}} osuma +find_match_count[two]={{current}} / {{total}} osumaa +find_match_count[few]={{current}} / {{total}} osumaa +find_match_count[many]={{current}} / {{total}} osumaa +find_match_count[other]={{current}} / {{total}} osumaa +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Enemmän kuin {{limit}} osumaa +find_match_count_limit[one]=Enemmän kuin {{limit}} osuma +find_match_count_limit[two]=Enemmän kuin {{limit}} osumaa +find_match_count_limit[few]=Enemmän kuin {{limit}} osumaa +find_match_count_limit[many]=Enemmän kuin {{limit}} osumaa +find_match_count_limit[other]=Enemmän kuin {{limit}} osumaa +find_not_found=Hakusanaa ei löytynyt + +# Predefined zoom values +page_scale_width=Sivun leveys +page_scale_fit=Koko sivu +page_scale_auto=Automaattinen suurennus +page_scale_actual=Todellinen koko +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=Tapahtui virhe ladattaessa PDF-tiedostoa. +invalid_file_error=Virheellinen tai vioittunut PDF-tiedosto. +missing_file_error=Puuttuva PDF-tiedosto. +unexpected_response_error=Odottamaton vastaus palvelimelta. +rendering_error=Tapahtui virhe piirrettäessä sivua. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}-merkintä] +password_label=Kirjoita PDF-tiedoston salasana. +password_invalid=Virheellinen salasana. Yritä uudestaan. +password_ok=OK +password_cancel=Peruuta + +printing_not_supported=Varoitus: Selain ei tue kaikkia tulostustapoja. +printing_not_ready=Varoitus: PDF-tiedosto ei ole vielä latautunut kokonaan, eikä sitä voi vielä tulostaa. +web_fonts_disabled=Verkkosivujen omat kirjasinlajit on estetty: ei voida käyttää upotettuja PDF-kirjasinlajeja. + +# Editor +editor_free_text2.title=Teksti +editor_free_text2_label=Teksti +editor_ink2.title=Piirros +editor_ink2_label=Piirros + +editor_stamp.title=Lisää kuva +editor_stamp_label=Lisää kuva + +editor_stamp1.title=Lisää tai muokkaa kuvia +editor_stamp1_label=Lisää tai muokkaa kuvia + +free_text2_default_content=Aloita kirjoittaminen… + +# Editor Parameters +editor_free_text_color=Väri +editor_free_text_size=Koko +editor_ink_color=Väri +editor_ink_thickness=Paksuus +editor_ink_opacity=Peittävyys + +editor_stamp_add_image_label=Lisää kuva +editor_stamp_add_image.title=Lisää kuva + +# Editor aria +editor_free_text2_aria_label=Tekstimuokkain +editor_ink2_aria_label=Piirrustusmuokkain +editor_ink_canvas_aria_label=Käyttäjän luoma kuva diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/fr/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fr/viewer.properties new file mode 100644 index 00000000..70146b92 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fr/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Page précédente +previous_label=Précédent +next.title=Page suivante +next_label=Suivant + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Page +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=sur {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} sur {{pagesCount}}) + +zoom_out.title=Zoom arrière +zoom_out_label=Zoom arrière +zoom_in.title=Zoom avant +zoom_in_label=Zoom avant +zoom.title=Zoom +presentation_mode.title=Basculer en mode présentation +presentation_mode_label=Mode présentation +open_file.title=Ouvrir le fichier +open_file_label=Ouvrir le fichier +print.title=Imprimer +print_label=Imprimer +save.title=Enregistrer +save_label=Enregistrer +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Télécharger +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Télécharger +bookmark1.title=Page courante (montrer l’adresse de la page courante) +bookmark1_label=Page courante +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Ouvrir dans une application +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Ouvrir dans une application + +# Secondary toolbar and context menu +tools.title=Outils +tools_label=Outils +first_page.title=Aller à la première page +first_page_label=Aller à la première page +last_page.title=Aller à la dernière page +last_page_label=Aller à la dernière page +page_rotate_cw.title=Rotation horaire +page_rotate_cw_label=Rotation horaire +page_rotate_ccw.title=Rotation antihoraire +page_rotate_ccw_label=Rotation antihoraire + +cursor_text_select_tool.title=Activer l’outil de sélection de texte +cursor_text_select_tool_label=Outil de sélection de texte +cursor_hand_tool.title=Activer l’outil main +cursor_hand_tool_label=Outil main + +scroll_page.title=Utiliser le défilement par page +scroll_page_label=Défilement par page +scroll_vertical.title=Utiliser le défilement vertical +scroll_vertical_label=Défilement vertical +scroll_horizontal.title=Utiliser le défilement horizontal +scroll_horizontal_label=Défilement horizontal +scroll_wrapped.title=Utiliser le défilement par bloc +scroll_wrapped_label=Défilement par bloc + +spread_none.title=Ne pas afficher les pages deux à deux +spread_none_label=Pas de double affichage +spread_odd.title=Afficher les pages par deux, impaires à gauche +spread_odd_label=Doubles pages, impaires à gauche +spread_even.title=Afficher les pages par deux, paires à gauche +spread_even_label=Doubles pages, paires à gauche + +# Document properties dialog box +document_properties.title=Propriétés du document… +document_properties_label=Propriétés du document… +document_properties_file_name=Nom du fichier : +document_properties_file_size=Taille du fichier : +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} Ko ({{size_b}} octets) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} Mo ({{size_b}} octets) +document_properties_title=Titre : +document_properties_author=Auteur : +document_properties_subject=Sujet : +document_properties_keywords=Mots-clés : +document_properties_creation_date=Date de création : +document_properties_modification_date=Modifié le : +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}} à {{time}} +document_properties_creator=Créé par : +document_properties_producer=Outil de conversion PDF : +document_properties_version=Version PDF : +document_properties_page_count=Nombre de pages : +document_properties_page_size=Taille de la page : +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portrait +document_properties_page_size_orientation_landscape=paysage +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=lettre +document_properties_page_size_name_legal=document juridique +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Affichage rapide des pages web : +document_properties_linearized_yes=Oui +document_properties_linearized_no=Non +document_properties_close=Fermer + +print_progress_message=Préparation du document pour l’impression… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Annuler + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Afficher/Masquer le panneau latéral +toggle_sidebar_notification2.title=Afficher/Masquer le panneau latéral (le document contient des signets/pièces jointes/calques) +toggle_sidebar_label=Afficher/Masquer le panneau latéral +document_outline.title=Afficher les signets du document (double-cliquer pour développer/réduire tous les éléments) +document_outline_label=Signets du document +attachments.title=Afficher les pièces jointes +attachments_label=Pièces jointes +layers.title=Afficher les calques (double-cliquer pour réinitialiser tous les calques à l’état par défaut) +layers_label=Calques +thumbs.title=Afficher les vignettes +thumbs_label=Vignettes +current_outline_item.title=Trouver l’élément de plan actuel +current_outline_item_label=Élément de plan actuel +findbar.title=Rechercher dans le document +findbar_label=Rechercher + +additional_layers=Calques additionnels +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Page {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Page {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Vignette de la page {{page}} + +# Find panel button title and messages +find_input.title=Rechercher +find_input.placeholder=Rechercher dans le document… +find_previous.title=Trouver l’occurrence précédente de l’expression +find_previous_label=Précédent +find_next.title=Trouver la prochaine occurrence de l’expression +find_next_label=Suivant +find_highlight=Tout surligner +find_match_case_label=Respecter la casse +find_match_diacritics_label=Respecter les accents et diacritiques +find_entire_word_label=Mots entiers +find_reached_top=Haut de la page atteint, poursuite depuis la fin +find_reached_bottom=Bas de la page atteint, poursuite au début +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=Occurrence {{current}} sur {{total}} +find_match_count[two]=Occurrence {{current}} sur {{total}} +find_match_count[few]=Occurrence {{current}} sur {{total}} +find_match_count[many]=Occurrence {{current}} sur {{total}} +find_match_count[other]=Occurrence {{current}} sur {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Plus de {{limit}} correspondances +find_match_count_limit[one]=Plus de {{limit}} correspondance +find_match_count_limit[two]=Plus de {{limit}} correspondances +find_match_count_limit[few]=Plus de {{limit}} correspondances +find_match_count_limit[many]=Plus de {{limit}} correspondances +find_match_count_limit[other]=Plus de {{limit}} correspondances +find_not_found=Expression non trouvée + +# Predefined zoom values +page_scale_width=Pleine largeur +page_scale_fit=Page entière +page_scale_auto=Zoom automatique +page_scale_actual=Taille réelle +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=Une erreur s’est produite lors du chargement du fichier PDF. +invalid_file_error=Fichier PDF invalide ou corrompu. +missing_file_error=Fichier PDF manquant. +unexpected_response_error=Réponse inattendue du serveur. +rendering_error=Une erreur s’est produite lors de l’affichage de la page. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} à {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Annotation {{type}}] +password_label=Veuillez saisir le mot de passe pour ouvrir ce fichier PDF. +password_invalid=Mot de passe incorrect. Veuillez réessayer. +password_ok=OK +password_cancel=Annuler + +printing_not_supported=Attention : l’impression n’est pas totalement prise en charge par ce navigateur. +printing_not_ready=Attention : le PDF n’est pas entièrement chargé pour pouvoir l’imprimer. +web_fonts_disabled=Les polices web sont désactivées : impossible d’utiliser les polices intégrées au PDF. + +# Editor +editor_free_text2.title=Texte +editor_free_text2_label=Texte +editor_ink2.title=Dessiner +editor_ink2_label=Dessiner + +editor_stamp.title=Ajouter une image +editor_stamp_label=Ajouter une image + +editor_stamp1.title=Ajouter ou modifier des images +editor_stamp1_label=Ajouter ou modifier des images + +free_text2_default_content=Commencer à écrire… + +# Editor Parameters +editor_free_text_color=Couleur +editor_free_text_size=Taille +editor_ink_color=Couleur +editor_ink_thickness=Épaisseur +editor_ink_opacity=Opacité + +editor_stamp_add_image_label=Ajouter une image +editor_stamp_add_image.title=Ajouter une image + +# Editor aria +editor_free_text2_aria_label=Éditeur de texte +editor_ink2_aria_label=Éditeur de dessin +editor_ink_canvas_aria_label=Image créée par l’utilisateur·trice diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/fur/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fur/viewer.properties new file mode 100644 index 00000000..9bc87cd5 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fur/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagjine precedente +previous_label=Indaûr +next.title=Prossime pagjine +next_label=Indevant + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagjine +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=di {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} di {{pagesCount}}) + +zoom_out.title=Impiçulìs +zoom_out_label=Impiçulìs +zoom_in.title=Ingrandìs +zoom_in_label=Ingrandìs +zoom.title=Ingrandiment +presentation_mode.title=Passe ae modalitât presentazion +presentation_mode_label=Modalitât presentazion +open_file.title=Vierç un file +open_file_label=Vierç +print.title=Stampe +print_label=Stampe +save.title=Salve +save_label=Salve +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Discjame +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Discjame +bookmark1.title=Pagjine corinte (mostre URL de pagjine atuâl) +bookmark1_label=Pagjine corinte +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Vierç te aplicazion +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Vierç te aplicazion + +# Secondary toolbar and context menu +tools.title=Struments +tools_label=Struments +first_page.title=Va ae prime pagjine +first_page_label=Va ae prime pagjine +last_page.title=Va ae ultime pagjine +last_page_label=Va ae ultime pagjine +page_rotate_cw.title=Zire in sens orari +page_rotate_cw_label=Zire in sens orari +page_rotate_ccw.title=Zire in sens antiorari +page_rotate_ccw_label=Zire in sens antiorari + +cursor_text_select_tool.title=Ative il strument di selezion dal test +cursor_text_select_tool_label=Strument di selezion dal test +cursor_hand_tool.title=Ative il strument manute +cursor_hand_tool_label=Strument manute + +scroll_page.title=Dopre il scoriment des pagjinis +scroll_page_label=Scoriment pagjinis +scroll_vertical.title=Dopre scoriment verticâl +scroll_vertical_label=Scoriment verticâl +scroll_horizontal.title=Dopre scoriment orizontâl +scroll_horizontal_label=Scoriment orizontâl +scroll_wrapped.title=Dopre scoriment par blocs +scroll_wrapped_label=Scoriment par blocs + +spread_none.title=No sta meti dongje pagjinis in cubie +spread_none_label=No cubiis di pagjinis +spread_odd.title=Met dongje cubiis di pagjinis scomençant des pagjinis dispar +spread_odd_label=Cubiis di pagjinis, dispar a çampe +spread_even.title=Met dongje cubiis di pagjinis scomençant des pagjinis pâr +spread_even_label=Cubiis di pagjinis, pâr a çampe + +# Document properties dialog box +document_properties.title=Proprietâts dal document… +document_properties_label=Proprietâts dal document… +document_properties_file_name=Non dal file: +document_properties_file_size=Dimension dal file: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titul: +document_properties_author=Autôr: +document_properties_subject=Ogjet: +document_properties_keywords=Peraulis clâf: +document_properties_creation_date=Date di creazion: +document_properties_modification_date=Date di modifiche: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creatôr +document_properties_producer=Gjeneradôr PDF: +document_properties_version=Version PDF: +document_properties_page_count=Numar di pagjinis: +document_properties_page_size=Dimension de pagjine: +document_properties_page_size_unit_inches=oncis +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=verticâl +document_properties_page_size_orientation_landscape=orizontâl +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letare +document_properties_page_size_name_legal=Legâl +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Visualizazion web svelte: +document_properties_linearized_yes=Sì +document_properties_linearized_no=No +document_properties_close=Siere + +print_progress_message=Daûr a prontâ il document pe stampe… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Anule + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Ative/Disative sbare laterâl +toggle_sidebar_notification2.title=Ative/Disative sbare laterâl (il document al conten struture/zontis/strâts) +toggle_sidebar_label=Ative/Disative sbare laterâl +document_outline.title=Mostre la struture dal document (dopli clic par slargjâ/strenzi ducj i elements) +document_outline_label=Struture dal document +attachments.title=Mostre lis zontis +attachments_label=Zontis +layers.title=Mostre i strâts (dopli clic par ristabilî ducj i strâts al stât predefinît) +layers_label=Strâts +thumbs.title=Mostre miniaturis +thumbs_label=Miniaturis +current_outline_item.title=Cjate l'element de struture atuâl +current_outline_item_label=Element de struture atuâl +findbar.title=Cjate tal document +findbar_label=Cjate + +additional_layers=Strâts adizionâi +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pagjine {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagjine {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniature de pagjine {{page}} + +# Find panel button title and messages +find_input.title=Cjate +find_input.placeholder=Cjate tal document… +find_previous.title=Cjate il câs precedent dal test +find_previous_label=Precedent +find_next.title=Cjate il câs sucessîf dal test +find_next_label=Sucessîf +find_highlight=Evidenzie dut +find_match_case_label=Fâs distinzion tra maiusculis e minusculis +find_match_diacritics_label=Corispondence diacritiche +find_entire_word_label=Peraulis interiis +find_reached_top=Si è rivâts al inizi dal document e si à continuât de fin +find_reached_bottom=Si è rivât ae fin dal document e si à continuât dal inizi +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} di {{total}} corispondence +find_match_count[two]={{current}} di {{total}} corispondencis +find_match_count[few]={{current}} di {{total}} corispondencis +find_match_count[many]={{current}} di {{total}} corispondencis +find_match_count[other]={{current}} di {{total}} corispondencis +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Plui di {{limit}} corispondencis +find_match_count_limit[one]=Plui di {{limit}} corispondence +find_match_count_limit[two]=Plui di {{limit}} corispondencis +find_match_count_limit[few]=Plui di {{limit}} corispondencis +find_match_count_limit[many]=Plui di {{limit}} corispondencis +find_match_count_limit[other]=Plui di {{limit}} corispondencis +find_not_found=Test no cjatât + +# Predefined zoom values +page_scale_width=Largjece de pagjine +page_scale_fit=Pagjine interie +page_scale_auto=Ingrandiment automatic +page_scale_actual=Dimension reâl +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Al è vignût fûr un erôr intant che si cjariave il PDF. +invalid_file_error=File PDF no valit o ruvinât. +missing_file_error=Al mancje il file PDF. +unexpected_response_error=Rispueste dal servidôr inspietade. +rendering_error=Al è vignût fûr un erôr tal realizâ la visualizazion de pagjine. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotazion {{type}}] +password_label=Inserìs la password par vierzi chest file PDF. +password_invalid=Password no valide. Par plasê torne prove. +password_ok=Va ben +password_cancel=Anule + +printing_not_supported=Atenzion: la stampe no je supuartade ad implen di chest navigadôr. +printing_not_ready=Atenzion: il PDF nol è stât cjamât dal dut pe stampe. +web_fonts_disabled=I caratars dal Web a son disativâts: Impussibil doprâ i caratars PDF incorporâts. + +# Editor +editor_free_text2.title=Test +editor_free_text2_label=Test +editor_ink2.title=Dissen +editor_ink2_label=Dissen + +editor_stamp.title=Zonte une imagjin +editor_stamp_label=Zonte une imagjin + +editor_stamp1.title=Zonte o modifiche imagjins +editor_stamp1_label=Zonte o modifiche imagjins + +free_text2_default_content=Scomence a scrivi… + +# Editor Parameters +editor_free_text_color=Colôr +editor_free_text_size=Dimension +editor_ink_color=Colôr +editor_ink_thickness=Spessôr +editor_ink_opacity=Opacitât + +editor_stamp_add_image_label=Zonte imagjin +editor_stamp_add_image.title=Zonte imagjin + +# Editor aria +editor_free_text2_aria_label=Editôr di test +editor_ink2_aria_label=Editôr dissens +editor_ink_canvas_aria_label=Imagjin creade dal utent diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/fy-NL/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fy-NL/viewer.properties new file mode 100644 index 00000000..003102ba --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/fy-NL/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Foarige side +previous_label=Foarige +next.title=Folgjende side +next_label=Folgjende + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Side +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=fan {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} fan {{pagesCount}}) + +zoom_out.title=Utzoome +zoom_out_label=Utzoome +zoom_in.title=Ynzoome +zoom_in_label=Ynzoome +zoom.title=Zoome +presentation_mode.title=Wikselje nei presintaasjemodus +presentation_mode_label=Presintaasjemodus +open_file.title=Bestân iepenje +open_file_label=Iepenje +print.title=Ofdrukke +print_label=Ofdrukke +save.title=Bewarje +save_label=Bewarje +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Downloade +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Downloade +bookmark1.title=Aktuele side (URL fan aktuele side besjen) +bookmark1_label=Aktuele side +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Iepenje yn app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Iepenje yn app + +# Secondary toolbar and context menu +tools.title=Ark +tools_label=Ark +first_page.title=Gean nei earste side +first_page_label=Gean nei earste side +last_page.title=Gean nei lêste side +last_page_label=Gean nei lêste side +page_rotate_cw.title=Rjochtsom draaie +page_rotate_cw_label=Rjochtsom draaie +page_rotate_ccw.title=Linksom draaie +page_rotate_ccw_label=Linksom draaie + +cursor_text_select_tool.title=Tekstseleksjehelpmiddel ynskeakelje +cursor_text_select_tool_label=Tekstseleksjehelpmiddel +cursor_hand_tool.title=Hânhelpmiddel ynskeakelje +cursor_hand_tool_label=Hânhelpmiddel + +scroll_page.title=Sideskowen brûke +scroll_page_label=Sideskowen +scroll_vertical.title=Fertikaal skowe brûke +scroll_vertical_label=Fertikaal skowe +scroll_horizontal.title=Horizontaal skowe brûke +scroll_horizontal_label=Horizontaal skowe +scroll_wrapped.title=Skowe mei oersjoch brûke +scroll_wrapped_label=Skowe mei oersjoch + +spread_none.title=Sidesprieding net gearfetsje +spread_none_label=Gjin sprieding +spread_odd.title=Sidesprieding gearfetsje te starten mei ûneven nûmers +spread_odd_label=Uneven sprieding +spread_even.title=Sidesprieding gearfetsje te starten mei even nûmers +spread_even_label=Even sprieding + +# Document properties dialog box +document_properties.title=Dokuminteigenskippen… +document_properties_label=Dokuminteigenskippen… +document_properties_file_name=Bestânsnamme: +document_properties_file_size=Bestânsgrutte: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titel: +document_properties_author=Auteur: +document_properties_subject=Underwerp: +document_properties_keywords=Kaaiwurden: +document_properties_creation_date=Oanmaakdatum: +document_properties_modification_date=Bewurkingsdatum: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Makker: +document_properties_producer=PDF-makker: +document_properties_version=PDF-ferzje: +document_properties_page_count=Siden: +document_properties_page_size=Sideformaat: +document_properties_page_size_unit_inches=yn +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=steand +document_properties_page_size_orientation_landscape=lizzend +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Juridysk +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Flugge webwerjefte: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nee +document_properties_close=Slute + +print_progress_message=Dokumint tariede oar ôfdrukken… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Annulearje + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Sidebalke yn-/útskeakelje +toggle_sidebar_notification2.title=Sidebalke yn-/útskeakelje (dokumint befettet oersjoch/bylagen/lagen) +toggle_sidebar_label=Sidebalke yn-/útskeakelje +document_outline.title=Dokumintoersjoch toane (dûbelklik om alle items út/yn te klappen) +document_outline_label=Dokumintoersjoch +attachments.title=Bylagen toane +attachments_label=Bylagen +layers.title=Lagen toane (dûbelklik om alle lagen nei de standertsteat werom te setten) +layers_label=Lagen +thumbs.title=Foarbylden toane +thumbs_label=Foarbylden +current_outline_item.title=Aktueel item yn ynhâldsopjefte sykje +current_outline_item_label=Aktueel item yn ynhâldsopjefte +findbar.title=Sykje yn dokumint +findbar_label=Sykje + +additional_layers=Oanfoljende lagen +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Side {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Side {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Foarbyld fan side {{page}} + +# Find panel button title and messages +find_input.title=Sykje +find_input.placeholder=Sykje yn dokumint… +find_previous.title=It foarige foarkommen fan de tekst sykje +find_previous_label=Foarige +find_next.title=It folgjende foarkommen fan de tekst sykje +find_next_label=Folgjende +find_highlight=Alles markearje +find_match_case_label=Haadlettergefoelich +find_match_diacritics_label=Diakrityske tekens brûke +find_entire_word_label=Hiele wurden +find_reached_top=Boppekant fan dokumint berikt, trochgien fan ûnder ôf +find_reached_bottom=Ein fan dokumint berikt, trochgien fan boppe ôf +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} fan {{total}} oerienkomst +find_match_count[two]={{current}} fan {{total}} oerienkomsten +find_match_count[few]={{current}} fan {{total}} oerienkomsten +find_match_count[many]={{current}} fan {{total}} oerienkomsten +find_match_count[other]={{current}} fan {{total}} oerienkomsten +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mear as {{limit}} oerienkomsten +find_match_count_limit[one]=Mear as {{limit}} oerienkomst +find_match_count_limit[two]=Mear as {{limit}} oerienkomsten +find_match_count_limit[few]=Mear as {{limit}} oerienkomsten +find_match_count_limit[many]=Mear as {{limit}} oerienkomsten +find_match_count_limit[other]=Mear as {{limit}} oerienkomsten +find_not_found=Tekst net fûn + +# Predefined zoom values +page_scale_width=Sidebreedte +page_scale_fit=Hiele side +page_scale_auto=Automatysk zoome +page_scale_actual=Werklike grutte +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Der is in flater bard by it laden fan de PDF. +invalid_file_error=Ynfalide of korruptearre PDF-bestân. +missing_file_error=PDF-bestân ûntbrekt. +unexpected_response_error=Unferwacht serverantwurd. +rendering_error=Der is in flater bard by it renderjen fan de side. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}-annotaasje] +password_label=Jou it wachtwurd om dit PDF-bestân te iepenjen. +password_invalid=Ferkeard wachtwurd. Probearje opnij. +password_ok=OK +password_cancel=Annulearje + +printing_not_supported=Warning: Printen is net folslein stipe troch dizze browser. +printing_not_ready=Warning: PDF is net folslein laden om ôf te drukken. +web_fonts_disabled=Weblettertypen binne útskeakele: gebrûk fan ynsluten PDF-lettertypen is net mooglik. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Tekenje +editor_ink2_label=Tekenje + +editor_stamp.title=Ofbylding tafoegje +editor_stamp_label=Ofbylding tafoegje + +editor_stamp1.title=Ofbyldingen tafoegje of bewurkje +editor_stamp1_label=Ofbyldingen tafoegje of bewurkje + +free_text2_default_content=Begjin mei typen… + +# Editor Parameters +editor_free_text_color=Kleur +editor_free_text_size=Grutte +editor_ink_color=Kleur +editor_ink_thickness=Tsjokte +editor_ink_opacity=Transparânsje + +editor_stamp_add_image_label=Ofbylding tafoegje +editor_stamp_add_image.title=Ofbylding tafoegje + +# Editor aria +editor_free_text2_aria_label=Tekstbewurker +editor_ink2_aria_label=Tekeningbewurker +editor_ink_canvas_aria_label=Troch brûker makke ôfbylding diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ga-IE/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ga-IE/viewer.properties new file mode 100644 index 00000000..8a1dc4de --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ga-IE/viewer.properties @@ -0,0 +1,181 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=An Leathanach Roimhe Seo +previous_label=Roimhe Seo +next.title=An Chéad Leathanach Eile +next_label=Ar Aghaidh + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Leathanach +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=as {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} as {{pagesCount}}) + +zoom_out.title=Súmáil Amach +zoom_out_label=Súmáil Amach +zoom_in.title=Súmáil Isteach +zoom_in_label=Súmáil Isteach +zoom.title=Súmáil +presentation_mode.title=Úsáid an Mód Láithreoireachta +presentation_mode_label=Mód Láithreoireachta +open_file.title=Oscail Comhad +open_file_label=Oscail +print.title=Priontáil +print_label=Priontáil + +# Secondary toolbar and context menu +tools.title=Uirlisí +tools_label=Uirlisí +first_page.title=Go dtí an chéad leathanach +first_page_label=Go dtí an chéad leathanach +last_page.title=Go dtí an leathanach deiridh +last_page_label=Go dtí an leathanach deiridh +page_rotate_cw.title=Rothlaigh ar deiseal +page_rotate_cw_label=Rothlaigh ar deiseal +page_rotate_ccw.title=Rothlaigh ar tuathal +page_rotate_ccw_label=Rothlaigh ar tuathal + +cursor_text_select_tool.title=Cumasaigh an Uirlis Roghnaithe Téacs +cursor_text_select_tool_label=Uirlis Roghnaithe Téacs +cursor_hand_tool.title=Cumasaigh an Uirlis Láimhe +cursor_hand_tool_label=Uirlis Láimhe + + + +# Document properties dialog box +document_properties.title=Airíonna na Cáipéise… +document_properties_label=Airíonna na Cáipéise… +document_properties_file_name=Ainm an chomhaid: +document_properties_file_size=Méid an chomhaid: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} beart) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} beart) +document_properties_title=Teideal: +document_properties_author=Údar: +document_properties_subject=Ábhar: +document_properties_keywords=Eochairfhocail: +document_properties_creation_date=Dáta Cruthaithe: +document_properties_modification_date=Dáta Athraithe: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Cruthaitheoir: +document_properties_producer=Cruthaitheoir an PDF: +document_properties_version=Leagan PDF: +document_properties_page_count=Líon Leathanach: +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_close=Dún + +print_progress_message=Cáipéis á hullmhú le priontáil… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cealaigh + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Scoránaigh an Barra Taoibh +toggle_sidebar_label=Scoránaigh an Barra Taoibh +document_outline.title=Taispeáin Imlíne na Cáipéise (déchliceáil chun chuile rud a leathnú nó a laghdú) +document_outline_label=Creatlach na Cáipéise +attachments.title=Taispeáin Iatáin +attachments_label=Iatáin +thumbs.title=Taispeáin Mionsamhlacha +thumbs_label=Mionsamhlacha +findbar.title=Aimsigh sa Cháipéis +findbar_label=Aimsigh + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Leathanach {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Mionsamhail Leathanaigh {{page}} + +# Find panel button title and messages +find_input.title=Aimsigh +find_input.placeholder=Aimsigh sa cháipéis… +find_previous.title=Aimsigh an sampla roimhe seo den nath seo +find_previous_label=Roimhe seo +find_next.title=Aimsigh an chéad sampla eile den nath sin +find_next_label=Ar aghaidh +find_highlight=Aibhsigh uile +find_match_case_label=Cásíogair +find_entire_word_label=Focail iomlána +find_reached_top=Ag barr na cáipéise, ag leanúint ón mbun +find_reached_bottom=Ag bun na cáipéise, ag leanúint ón mbarr +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_not_found=Frása gan aimsiú + +# Predefined zoom values +page_scale_width=Leithead Leathanaigh +page_scale_fit=Laghdaigh go dtí an Leathanach +page_scale_auto=Súmáil Uathoibríoch +page_scale_actual=Fíormhéid +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Tharla earráid agus an cháipéis PDF á lódáil. +invalid_file_error=Comhad neamhbhailí nó truaillithe PDF. +missing_file_error=Comhad PDF ar iarraidh. +unexpected_response_error=Freagra ón bhfreastalaí nach rabhthas ag súil leis. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +rendering_error=Tharla earráid agus an leathanach á leagan amach. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anótáil {{type}}] +password_label=Cuir an focal faire isteach chun an comhad PDF seo a oscailt. +password_invalid=Focal faire mícheart. Déan iarracht eile. +password_ok=OK +password_cancel=Cealaigh + +printing_not_supported=Rabhadh: Ní thacaíonn an brabhsálaí le priontáil go hiomlán. +printing_not_ready=Rabhadh: Ní féidir an PDF a phriontáil go dtí go mbeidh an cháipéis iomlán lódáilte. +web_fonts_disabled=Tá clófhoirne Gréasáin díchumasaithe: ní féidir clófhoirne leabaithe PDF a úsáid. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/gd/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gd/viewer.properties new file mode 100644 index 00000000..231d927a --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gd/viewer.properties @@ -0,0 +1,257 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=An duilleag roimhe +previous_label=Air ais +next.title=An ath-dhuilleag +next_label=Air adhart + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Duilleag +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=à {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} à {{pagesCount}}) + +zoom_out.title=Sùm a-mach +zoom_out_label=Sùm a-mach +zoom_in.title=Sùm a-steach +zoom_in_label=Sùm a-steach +zoom.title=Sùm +presentation_mode.title=Gearr leum dhan mhodh taisbeanaidh +presentation_mode_label=Am modh taisbeanaidh +open_file.title=Fosgail faidhle +open_file_label=Fosgail +print.title=Clò-bhuail +print_label=Clò-bhuail + +save.title=Sàbhail +save_label=Sàbhail +bookmark1.title=An duilleag làithreach (Seall an URL on duilleag làithreach) +bookmark1_label=An duilleag làithreach + +open_in_app.title=Fosgail san aplacaid +open_in_app_label=Fosgail san aplacaid + +# Secondary toolbar and context menu +tools.title=Innealan +tools_label=Innealan +first_page.title=Rach gun chiad duilleag +first_page_label=Rach gun chiad duilleag +last_page.title=Rach gun duilleag mu dheireadh +last_page_label=Rach gun duilleag mu dheireadh +page_rotate_cw.title=Cuairtich gu deiseil +page_rotate_cw_label=Cuairtich gu deiseil +page_rotate_ccw.title=Cuairtich gu tuathail +page_rotate_ccw_label=Cuairtich gu tuathail + +cursor_text_select_tool.title=Cuir an comas inneal taghadh an teacsa +cursor_text_select_tool_label=Inneal taghadh an teacsa +cursor_hand_tool.title=Cuir inneal na làimhe an comas +cursor_hand_tool_label=Inneal na làimhe + +scroll_page.title=Cleachd sgroladh duilleige +scroll_page_label=Sgroladh duilleige +scroll_vertical.title=Cleachd sgroladh inghearach +scroll_vertical_label=Sgroladh inghearach +scroll_horizontal.title=Cleachd sgroladh còmhnard +scroll_horizontal_label=Sgroladh còmhnard +scroll_wrapped.title=Cleachd sgroladh paisgte +scroll_wrapped_label=Sgroladh paisgte + +spread_none.title=Na cuir còmhla sgoileadh dhuilleagan +spread_none_label=Gun sgaoileadh dhuilleagan +spread_odd.title=Cuir còmhla duilleagan sgaoilte a thòisicheas le duilleagan aig a bheil àireamh chorr +spread_odd_label=Sgaoileadh dhuilleagan corra +spread_even.title=Cuir còmhla duilleagan sgaoilte a thòisicheas le duilleagan aig a bheil àireamh chothrom +spread_even_label=Sgaoileadh dhuilleagan cothrom + +# Document properties dialog box +document_properties.title=Roghainnean na sgrìobhainne… +document_properties_label=Roghainnean na sgrìobhainne… +document_properties_file_name=Ainm an fhaidhle: +document_properties_file_size=Meud an fhaidhle: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Tiotal: +document_properties_author=Ùghdar: +document_properties_subject=Cuspair: +document_properties_keywords=Faclan-luirg: +document_properties_creation_date=Latha a chruthachaidh: +document_properties_modification_date=Latha atharrachaidh: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Cruthadair: +document_properties_producer=Saothraiche a' PDF: +document_properties_version=Tionndadh a' PDF: +document_properties_page_count=Àireamh de dhuilleagan: +document_properties_page_size=Meud na duilleige: +document_properties_page_size_unit_inches=ann an +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portraid +document_properties_page_size_orientation_landscape=dreach-tìre +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Litir +document_properties_page_size_name_legal=Laghail +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Grad shealladh-lìn: +document_properties_linearized_yes=Tha +document_properties_linearized_no=Chan eil +document_properties_close=Dùin + +print_progress_message=Ag ullachadh na sgrìobhainn airson clò-bhualadh… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Sguir dheth + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toglaich am bàr-taoibh +toggle_sidebar_notification2.title=Toglaich am bàr-taoibh (tha oir-loidhne/ceanglachain/breathan aig an sgrìobhainn) +toggle_sidebar_label=Toglaich am bàr-taoibh +document_outline.title=Seall oir-loidhne na sgrìobhainn (dèan briogadh dùbailte airson a h-uile nì a leudachadh/a cho-theannadh) +document_outline_label=Oir-loidhne na sgrìobhainne +attachments.title=Seall na ceanglachain +attachments_label=Ceanglachain +layers.title=Seall na breathan (dèan briogadh dùbailte airson a h-uile breath ath-shuidheachadh dhan staid bhunaiteach) +layers_label=Breathan +thumbs.title=Seall na dealbhagan +thumbs_label=Dealbhagan +current_outline_item.title=Lorg nì làithreach na h-oir-loidhne +current_outline_item_label=Nì làithreach na h-oir-loidhne +findbar.title=Lorg san sgrìobhainn +findbar_label=Lorg + +additional_layers=Barrachd breathan +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Duilleag {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Duilleag a {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Dealbhag duilleag a {{page}} + +# Find panel button title and messages +find_input.title=Lorg +find_input.placeholder=Lorg san sgrìobhainn... +find_previous.title=Lorg làthair roimhe na h-abairt seo +find_previous_label=Air ais +find_next.title=Lorg ath-làthair na h-abairt seo +find_next_label=Air adhart +find_highlight=Soillsich a h-uile +find_match_case_label=Aire do litrichean mòra is beaga +find_match_diacritics_label=Aire do stràcan +find_entire_word_label=Faclan-slàna +find_reached_top=Ràinig sinn barr na duilleige, a' leantainn air adhart o bhonn na duilleige +find_reached_bottom=Ràinig sinn bonn na duilleige, a' leantainn air adhart o bharr na duilleige +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} à {{total}} mhaids +find_match_count[two]={{current}} à {{total}} mhaids +find_match_count[few]={{current}} à {{total}} maidsichean +find_match_count[many]={{current}} à {{total}} maids +find_match_count[other]={{current}} à {{total}} maids +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Barrachd air {{limit}} maids +find_match_count_limit[one]=Barrachd air {{limit}} mhaids +find_match_count_limit[two]=Barrachd air {{limit}} mhaids +find_match_count_limit[few]=Barrachd air {{limit}} maidsichean +find_match_count_limit[many]=Barrachd air {{limit}} maids +find_match_count_limit[other]=Barrachd air {{limit}} maids +find_not_found=Cha deach an abairt a lorg + +# Predefined zoom values +page_scale_width=Leud na duilleige +page_scale_fit=Freagair ri meud na duilleige +page_scale_auto=Sùm fèin-obrachail +page_scale_actual=Am fìor-mheud +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Thachair mearachd rè luchdadh a' PDF. +invalid_file_error=Faidhle PDF a tha mì-dhligheach no coirbte. +missing_file_error=Faidhle PDF a tha a dhìth. +unexpected_response_error=Freagairt on fhrithealaiche ris nach robh dùil. + +rendering_error=Thachair mearachd rè reandaradh na duilleige. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Nòtachadh {{type}}] +password_label=Cuir a-steach am facal-faire gus am faidhle PDF seo fhosgladh. +password_invalid=Tha am facal-faire cearr. Nach fheuch thu ris a-rithist? +password_ok=Ceart ma-thà +password_cancel=Sguir dheth + +printing_not_supported=Rabhadh: Chan eil am brabhsair seo a' cur làn-taic ri clò-bhualadh. +printing_not_ready=Rabhadh: Cha deach am PDF a luchdadh gu tur airson clò-bhualadh. +web_fonts_disabled=Tha cruthan-clò lìn à comas: Chan urrainn dhuinn cruthan-clò PDF leabaichte a chleachdadh. + +# Editor +editor_free_text2.title=Teacsa +editor_free_text2_label=Teacsa +editor_ink2.title=Tarraing +editor_ink2_label=Tarraing + +free_text2_default_content=Tòisich air sgrìobhadh… + +# Editor Parameters +editor_free_text_color=Dath +editor_free_text_size=Meud +editor_ink_color=Dath +editor_ink_thickness=Tighead +editor_ink_opacity=Trìd-dhoilleireachd + +# Editor aria +editor_free_text2_aria_label=An deasaiche teacsa +editor_ink2_aria_label=An deasaiche tharraingean +editor_ink_canvas_aria_label=Dealbh a chruthaich cleachdaiche diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/gl/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gl/viewer.properties new file mode 100644 index 00000000..508ea5e4 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gl/viewer.properties @@ -0,0 +1,267 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Páxina anterior +previous_label=Anterior +next.title=Seguinte páxina +next_label=Seguinte + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Páxina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Reducir +zoom_out_label=Reducir +zoom_in.title=Ampliar +zoom_in_label=Ampliar +zoom.title=Zoom +presentation_mode.title=Cambiar ao modo presentación +presentation_mode_label=Modo presentación +open_file.title=Abrir ficheiro +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir +save.title=Gardar +save_label=Gardar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Descargar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Descargar +bookmark1.title=Páxina actual (ver o URL da páxina actual) +bookmark1_label=Páxina actual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Abrir cunha aplicación +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Abrir cunha aplicación + +# Secondary toolbar and context menu +tools.title=Ferramentas +tools_label=Ferramentas +first_page.title=Ir á primeira páxina +first_page_label=Ir á primeira páxina +last_page.title=Ir á última páxina +last_page_label=Ir á última páxina +page_rotate_cw.title=Rotar no sentido das agullas do reloxo +page_rotate_cw_label=Rotar no sentido das agullas do reloxo +page_rotate_ccw.title=Rotar no sentido contrario ás agullas do reloxo +page_rotate_ccw_label=Rotar no sentido contrario ás agullas do reloxo + +cursor_text_select_tool.title=Activar a ferramenta de selección de texto +cursor_text_select_tool_label=Ferramenta de selección de texto +cursor_hand_tool.title=Activar a ferramenta de man +cursor_hand_tool_label=Ferramenta de man + +scroll_page.title=Usar o desprazamento da páxina +scroll_page_label=Desprazamento da páxina +scroll_vertical.title=Usar o desprazamento vertical +scroll_vertical_label=Desprazamento vertical +scroll_horizontal.title=Usar o desprazamento horizontal +scroll_horizontal_label=Desprazamento horizontal +scroll_wrapped.title=Usar o desprazamento en bloque +scroll_wrapped_label=Desprazamento por bloque + +spread_none.title=Non agrupar páxinas +spread_none_label=Ningún agrupamento +spread_odd.title=Crea grupo de páxinas que comezan con números de páxina impares +spread_odd_label=Agrupamento impar +spread_even.title=Crea grupo de páxinas que comezan con números de páxina pares +spread_even_label=Agrupamento par + +# Document properties dialog box +document_properties.title=Propiedades do documento… +document_properties_label=Propiedades do documento… +document_properties_file_name=Nome do ficheiro: +document_properties_file_size=Tamaño do ficheiro: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Asunto: +document_properties_keywords=Palabras clave: +document_properties_creation_date=Data de creación: +document_properties_modification_date=Data de modificación: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creado por: +document_properties_producer=Xenerador do PDF: +document_properties_version=Versión de PDF: +document_properties_page_count=Número de páxinas: +document_properties_page_size=Tamaño da páxina: +document_properties_page_size_unit_inches=pol +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Visualización rápida das páxinas web: +document_properties_linearized_yes=Si +document_properties_linearized_no=Non +document_properties_close=Pechar + +print_progress_message=Preparando o documento para imprimir… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Amosar/agochar a barra lateral +toggle_sidebar_notification2.title=Alternar barra lateral (o documento contén esquema/anexos/capas) +toggle_sidebar_label=Amosar/agochar a barra lateral +document_outline.title=Amosar a estrutura do documento (dobre clic para expandir/contraer todos os elementos) +document_outline_label=Estrutura do documento +attachments.title=Amosar anexos +attachments_label=Anexos +layers.title=Mostrar capas (prema dúas veces para restaurar todas as capas o estado predeterminado) +layers_label=Capas +thumbs.title=Amosar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Atopar o elemento delimitado actualmente +current_outline_item_label=Elemento delimitado actualmente +findbar.title=Atopar no documento +findbar_label=Atopar + +additional_layers=Capas adicionais +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Páxina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Páxina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura da páxina {{page}} + +# Find panel button title and messages +find_input.title=Atopar +find_input.placeholder=Atopar no documento… +find_previous.title=Atopar a anterior aparición da frase +find_previous_label=Anterior +find_next.title=Atopar a seguinte aparición da frase +find_next_label=Seguinte +find_highlight=Realzar todo +find_match_case_label=Diferenciar maiúsculas de minúsculas +find_match_diacritics_label=Distinguir os diacríticos +find_entire_word_label=Palabras completas +find_reached_top=Chegouse ao inicio do documento, continuar desde o final +find_reached_bottom=Chegouse ao final do documento, continuar desde o inicio +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} coincidencia +find_match_count[two]={{current}} de {{total}} coincidencias +find_match_count[few]={{current}} de {{total}} coincidencias +find_match_count[many]={{current}} de {{total}} coincidencias +find_match_count[other]={{current}} de {{total}} coincidencias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Máis de {{limit}} coincidencias +find_match_count_limit[one]=Máis de {{limit}} coincidencia +find_match_count_limit[two]=Máis de {{limit}} coincidencias +find_match_count_limit[few]=Máis de {{limit}} coincidencias +find_match_count_limit[many]=Máis de {{limit}} coincidencias +find_match_count_limit[other]=Máis de {{limit}} coincidencias +find_not_found=Non se atopou a frase + +# Predefined zoom values +page_scale_width=Largura da páxina +page_scale_fit=Axuste de páxina +page_scale_auto=Zoom automático +page_scale_actual=Tamaño actual +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Produciuse un erro ao cargar o PDF. +invalid_file_error=Ficheiro PDF danado ou non válido. +missing_file_error=Falta o ficheiro PDF. +unexpected_response_error=Resposta inesperada do servidor. +rendering_error=Produciuse un erro ao representar a páxina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotación {{type}}] +password_label=Escriba o contrasinal para abrir este ficheiro PDF. +password_invalid=Contrasinal incorrecto. Tente de novo. +password_ok=Aceptar +password_cancel=Cancelar + +printing_not_supported=Aviso: A impresión non é compatíbel de todo con este navegador. +printing_not_ready=Aviso: O PDF non se cargou completamente para imprimirse. +web_fonts_disabled=Desactiváronse as fontes web: foi imposíbel usar as fontes incrustadas no PDF. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Debuxo +editor_ink2_label=Debuxo + +editor_stamp1.title=Engadir ou editar imaxes +editor_stamp1_label=Engadir ou editar imaxes + +free_text2_default_content=Comezar a teclear… + +# Editor Parameters +editor_free_text_color=Cor +editor_free_text_size=Tamaño +editor_ink_color=Cor +editor_ink_thickness=Grosor +editor_ink_opacity=Opacidade + +editor_stamp_add_image_label=Engadir imaxe +editor_stamp_add_image.title=Engadir imaxe + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de debuxos +editor_ink_canvas_aria_label=Imaxe creada por unha usuaria diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/gn/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gn/viewer.properties new file mode 100644 index 00000000..0ba9d36c --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gn/viewer.properties @@ -0,0 +1,278 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Kuatiarogue mboyvegua +previous_label=Mboyvegua +next.title=Kuatiarogue upeigua +next_label=Upeigua + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Kuatiarogue +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} gui +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Momichĩ +zoom_out_label=Momichĩ +zoom_in.title=Mbotuicha +zoom_in_label=Mbotuicha +zoom.title=Tuichakue +presentation_mode.title=Jehechauka reko moambue +presentation_mode_label=Jehechauka reko +open_file.title=Marandurendápe jeike +open_file_label=Jeike +print.title=Monguatia +print_label=Monguatia +save.title=Ñongatu +save_label=Ñongatu +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Mboguejy +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Mboguejy +bookmark1.title=Kuatiarogue ag̃agua (Ehecha URL kuatiarogue ag̃agua) +bookmark1_label=Kuatiarogue Ag̃agua +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Embojuruja tembiporu’ípe +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Embojuruja tembiporu’ípe + +# Secondary toolbar and context menu +tools.title=Tembiporu +tools_label=Tembiporu +first_page.title=Kuatiarogue ñepyrũme jeho +first_page_label=Kuatiarogue ñepyrũme jeho +last_page.title=Kuatiarogue pahápe jeho +last_page_label=Kuatiarogue pahápe jeho +page_rotate_cw.title=Aravóicha mbojere +page_rotate_cw_label=Aravóicha mbojere +page_rotate_ccw.title=Aravo rapykue gotyo mbojere +page_rotate_ccw_label=Aravo rapykue gotyo mbojere + +cursor_text_select_tool.title=Emyandy moñe’ẽrã jeporavo rembiporu +cursor_text_select_tool_label=Moñe’ẽrã jeporavo rembiporu +cursor_hand_tool.title=Tembiporu po pegua myandy +cursor_hand_tool_label=Tembiporu po pegua + +scroll_page.title=Eiporu kuatiarogue jeku’e +scroll_page_label=Kuatiarogue jeku’e +scroll_vertical.title=Eiporu jeku’e ykeguáva +scroll_vertical_label=Jeku’e ykeguáva +scroll_horizontal.title=Eiporu jeku’e yvate gotyo +scroll_horizontal_label=Jeku’e yvate gotyo +scroll_wrapped.title=Eiporu jeku’e mbohyrupyre +scroll_wrapped_label=Jeku’e mbohyrupyre + +spread_none.title=Ani ejuaju spreads kuatiarogue ndive +spread_none_label=Spreads ỹre +spread_odd.title=Embojuaju kuatiarogue jepysokue eñepyrũvo kuatiarogue impar-vagui +spread_odd_label=Spreads impar +spread_even.title=Embojuaju kuatiarogue jepysokue eñepyrũvo kuatiarogue par-vagui +spread_even_label=Ipukuve uvei + +# Document properties dialog box +document_properties.title=Kuatia mba’etee… +document_properties_label=Kuatia mba’etee… +document_properties_file_name=Marandurenda réra: +document_properties_file_size=Marandurenda tuichakue: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Teratee: +document_properties_author=Apohára: +document_properties_subject=Mba’egua: +document_properties_keywords=Jehero: +document_properties_creation_date=Teñoihague arange: +document_properties_modification_date=Iñambue hague arange: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Apo’ypyha: +document_properties_producer=PDF mbosako’iha: +document_properties_version=PDF mbojuehegua: +document_properties_page_count=Kuatiarogue papapy: +document_properties_page_size=Kuatiarogue tuichakue: +document_properties_page_size_unit_inches=Amo +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=Oĩháicha +document_properties_page_size_orientation_landscape=apaisado +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Kuatiañe’ẽ +document_properties_page_size_name_legal=Tee +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Ñanduti jahecha pya’e: +document_properties_linearized_yes=Añete +document_properties_linearized_no=Ahániri +document_properties_close=Mboty + +print_progress_message=Embosako’i kuatia emonguatia hag̃ua… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Heja + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Tenda yke moambue +toggle_sidebar_notification2.title=Embojopyru tenda ykegua (kuatia oguereko kuaakaha/moirũha/ñuãha) +toggle_sidebar_label=Tenda yke moambue +document_outline.title=Ehechauka kuatia rape (eikutu mokõi jey embotuicha/emomichĩ hag̃ua opavavete mba’eporu) +document_outline_label=Kuatia apopyre +attachments.title=Moirũha jehechauka +attachments_label=Moirũha +layers.title=Ehechauka ñuãha (eikutu jo’a emomba’apo hag̃ua opaite ñuãha tekoypýpe) +layers_label=Ñuãha +thumbs.title=Mba’emirĩ jehechauka +thumbs_label=Mba’emirĩ +current_outline_item.title=Eheka mba’eporu ag̃aguaitéva +current_outline_item_label=Mba’eporu ag̃aguaitéva +findbar.title=Kuatiápe jeheka +findbar_label=Juhu + +additional_layers=Ñuãha moirũguáva +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Kuatiarogue {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Kuatiarogue {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Kuatiarogue mba’emirĩ {{page}} + +# Find panel button title and messages +find_input.title=Juhu +find_input.placeholder=Kuatiápe jejuhu… +find_previous.title=Ejuhu ñe’ẽrysýi osẽ’ypy hague +find_previous_label=Mboyvegua +find_next.title=Eho ñe’ẽ juhupyre upeiguávape +find_next_label=Upeigua +find_highlight=Embojekuaavepa +find_match_case_label=Ejesareko taiguasu/taimichĩre +find_match_diacritics_label=Diacrítico moñondive +find_entire_word_label=Ñe’ẽ oĩmbáva +find_reached_top=Ojehupyty kuatia ñepyrũ, oku’ejeýta kuatia paha guive +find_reached_bottom=Ojehupyty kuatia paha, oku’ejeýta kuatia ñepyrũ guive +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} {{total}} ojojoguáva +find_match_count[two]={{current}} {{total}} ojojoguáva +find_match_count[few]={{current}} {{total}} ojojoguáva +find_match_count[many]={{current}} {{total}} ojojoguáva +find_match_count[other]={{current}} {{total}} ojojoguáva +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Hetave {{limit}} ojojoguáva +find_match_count_limit[one]=Hetave {{limit}} ojojogua +find_match_count_limit[two]=Hetave {{limit}} ojojoguáva +find_match_count_limit[few]=Hetave {{limit}} ojojoguáva +find_match_count_limit[many]=Hetave {{limit}} ojojoguáva +find_match_count_limit[other]=Hetave {{limit}} ojojoguáva +find_not_found=Ñe’ẽrysýi ojejuhu’ỹva + +# Predefined zoom values +page_scale_width=Kuatiarogue pekue +page_scale_fit=Kuatiarogue ñemoĩporã +page_scale_auto=Tuichakue ijeheguíva +page_scale_actual=Tuichakue ag̃agua +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Oiko jejavy PDF oñemyeñyhẽnguévo. +invalid_file_error=PDF marandurenda ndoikóiva térã ivaipyréva. +missing_file_error=Ndaipóri PDF marandurenda +unexpected_response_error=Mohendahavusu mbohovái ñeha’arõ’ỹva. +rendering_error=Oiko jejavy ehechaukasévo kuatiarogue. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Jehaipy {{type}}] +password_label=Emoinge ñe’ẽñemi eipe’a hag̃ua ko marandurenda PDF. +password_invalid=Ñe’ẽñemi ndoikóiva. Eha’ã jey. +password_ok=MONEĨ +password_cancel=Heja + +printing_not_supported=Kyhyjerã: Ñembokuatia ndojokupytypái ko kundahára ndive. +printing_not_ready=Kyhyjerã: Ko PDF nahenyhẽmbái oñembokuatia hag̃uáicha. +web_fonts_disabled=Ñanduti taity oñemongéma: ndaikatumo’ãi eiporu PDF jehai’íva taity. + +# Editor +editor_free_text2.title=Moñe’ẽrã +editor_free_text2_label=Moñe’ẽrã +editor_ink2.title=Moha’ãnga +editor_ink2_label=Moha’ãnga + +editor_stamp1.title=Embojuaju térã embosako’i ta’ãnga +editor_stamp1_label=Embojuaju térã embosako’i ta’ãnga + +free_text2_default_content=Ehai ñepyrũ… + +# Editor Parameters +editor_free_text_color=Sa’y +editor_free_text_size=Tuichakue +editor_ink_color=Sa’y +editor_ink_thickness=Anambusu +editor_ink_opacity=Pytũngy + +editor_stamp_add_image_label=Embojuaju ta’ãnga +editor_stamp_add_image.title=Embojuaju ta’ãnga + +# Editor aria +editor_free_text2_aria_label=Moñe’ẽrã moheñoiha +editor_ink2_aria_label=Ta’ãnga moheñoiha +editor_ink_canvas_aria_label=Ta’ãnga omoheñóiva poruhára + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Moñe’ẽrã mokõiháva +editor_alt_text_edit_button_label=Embojuruja moñe’ẽrã mokõiháva +editor_alt_text_dialog_label=Eiporavo poravorã +editor_alt_text_add_description_label=Embojuaju ñemoha’anga +editor_alt_text_cancel_button=Heja +editor_alt_text_save_button=Ñongatu +# This is a placeholder for the alt text input area diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/gu-IN/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gu-IN/viewer.properties new file mode 100644 index 00000000..ebb75808 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/gu-IN/viewer.properties @@ -0,0 +1,214 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=પહેલાનુ પાનું +previous_label=પહેલાનુ +next.title=આગળનુ પાનું +next_label=આગળનું + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=પાનું +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=નો {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} નો {{pagesCount}}) + +zoom_out.title=મોટુ કરો +zoom_out_label=મોટુ કરો +zoom_in.title=નાનું કરો +zoom_in_label=નાનું કરો +zoom.title=નાનું મોટુ કરો +presentation_mode.title=રજૂઆત સ્થિતિમાં જાવ +presentation_mode_label=રજૂઆત સ્થિતિ +open_file.title=ફાઇલ ખોલો +open_file_label=ખોલો +print.title=છાપો +print_label=છારો + +# Secondary toolbar and context menu +tools.title=સાધનો +tools_label=સાધનો +first_page.title=પહેલાં પાનામાં જાવ +first_page_label=પ્રથમ પાનાં પર જાવ +last_page.title=છેલ્લા પાનાં પર જાવ +last_page_label=છેલ્લા પાનાં પર જાવ +page_rotate_cw.title=ઘડિયાળનાં કાંટા તરફ ફેરવો +page_rotate_cw_label=ઘડિયાળનાં કાંટા તરફ ફેરવો +page_rotate_ccw.title=ઘડિયાળનાં કાંટાની ઉલટી દિશામાં ફેરવો +page_rotate_ccw_label=ઘડિયાળનાં કાંટાની વિરુદ્દ ફેરવો + +cursor_text_select_tool.title=ટેક્સ્ટ પસંદગી ટૂલ સક્ષમ કરો +cursor_text_select_tool_label=ટેક્સ્ટ પસંદગી ટૂલ +cursor_hand_tool.title=હાથનાં સાધનને સક્રિય કરો +cursor_hand_tool_label=હેન્ડ ટૂલ + +scroll_vertical.title=ઊભી સ્ક્રોલિંગનો ઉપયોગ કરો +scroll_vertical_label=ઊભી સ્ક્રોલિંગ +scroll_horizontal.title=આડી સ્ક્રોલિંગનો ઉપયોગ કરો +scroll_horizontal_label=આડી સ્ક્રોલિંગ +scroll_wrapped.title=આવરિત સ્ક્રોલિંગનો ઉપયોગ કરો +scroll_wrapped_label=આવરિત સ્ક્રોલિંગ + +spread_none.title=પૃષ્ઠ સ્પ્રેડમાં જોડાવશો નહીં +spread_none_label=કોઈ સ્પ્રેડ નથી +spread_odd.title=એકી-ક્રમાંકિત પૃષ્ઠો સાથે પ્રારંભ થતાં પૃષ્ઠ સ્પ્રેડમાં જોડાઓ +spread_odd_label=એકી સ્પ્રેડ્સ +spread_even.title=નંબર-ક્રમાંકિત પૃષ્ઠોથી શરૂ થતાં પૃષ્ઠ સ્પ્રેડમાં જોડાઓ +spread_even_label=સરખું ફેલાવવું + +# Document properties dialog box +document_properties.title=દસ્તાવેજ ગુણધર્મો… +document_properties_label=દસ્તાવેજ ગુણધર્મો… +document_properties_file_name=ફાઇલ નામ: +document_properties_file_size=ફાઇલ માપ: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} બાઇટ) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} બાઇટ) +document_properties_title=શીર્ષક: +document_properties_author=લેખક: +document_properties_subject=વિષય: +document_properties_keywords=કિવર્ડ: +document_properties_creation_date=નિર્માણ તારીખ: +document_properties_modification_date=ફેરફાર તારીખ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=નિર્માતા: +document_properties_producer=PDF નિર્માતા: +document_properties_version=PDF આવૃત્તિ: +document_properties_page_count=પાનાં ગણતરી: +document_properties_page_size=પૃષ્ઠનું કદ: +document_properties_page_size_unit_inches=ઇંચ +document_properties_page_size_unit_millimeters=મીમી +document_properties_page_size_orientation_portrait=ઉભું +document_properties_page_size_orientation_landscape=આડુ +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=પત્ર +document_properties_page_size_name_legal=કાયદાકીય +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=ઝડપી વૅબ દૃશ્ય: +document_properties_linearized_yes=હા +document_properties_linearized_no=ના +document_properties_close=બંધ કરો + +print_progress_message=છાપકામ માટે દસ્તાવેજ તૈયાર કરી રહ્યા છે… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=રદ કરો + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=ટૉગલ બાજુપટ્ટી +toggle_sidebar_label=ટૉગલ બાજુપટ્ટી +document_outline.title=દસ્તાવેજની રૂપરેખા બતાવો(બધી આઇટમ્સને વિસ્તૃત/સંકુચિત કરવા માટે ડબલ-ક્લિક કરો) +document_outline_label=દસ્તાવેજ રૂપરેખા +attachments.title=જોડાણોને બતાવો +attachments_label=જોડાણો +thumbs.title=થંબનેલ્સ બતાવો +thumbs_label=થંબનેલ્સ +findbar.title=દસ્તાવેજમાં શોધો +findbar_label=શોધો + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=પાનું {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=પાનાં {{page}} નું થંબનેલ્સ + +# Find panel button title and messages +find_input.title=શોધો +find_input.placeholder=દસ્તાવેજમાં શોધો… +find_previous.title=શબ્દસમૂહની પાછલી ઘટનાને શોધો +find_previous_label=પહેલાંનુ +find_next.title=શબ્દસમૂહની આગળની ઘટનાને શોધો +find_next_label=આગળનું +find_highlight=બધુ પ્રકાશિત કરો +find_match_case_label=કેસ બંધબેસાડો +find_entire_word_label=સંપૂર્ણ શબ્દો +find_reached_top=દસ્તાવેજનાં ટોચે પહોંચી ગયા, તળિયેથી ચાલુ કરેલ હતુ +find_reached_bottom=દસ્તાવેજનાં અંતે પહોંચી ગયા, ઉપરથી ચાલુ કરેલ હતુ +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} માંથી {{current}} સરખું મળ્યું +find_match_count[two]={{total}} માંથી {{current}} સરખા મળ્યાં +find_match_count[few]={{total}} માંથી {{current}} સરખા મળ્યાં +find_match_count[many]={{total}} માંથી {{current}} સરખા મળ્યાં +find_match_count[other]={{total}} માંથી {{current}} સરખા મળ્યાં +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} કરતાં વધુ સરખા મળ્યાં +find_match_count_limit[one]={{limit}} કરતાં વધુ સરખું મળ્યું +find_match_count_limit[two]={{limit}} કરતાં વધુ સરખા મળ્યાં +find_match_count_limit[few]={{limit}} કરતાં વધુ સરખા મળ્યાં +find_match_count_limit[many]={{limit}} કરતાં વધુ સરખા મળ્યાં +find_match_count_limit[other]={{limit}} કરતાં વધુ સરખા મળ્યાં +find_not_found=શબ્દસમૂહ મળ્યુ નથી + +# Predefined zoom values +page_scale_width=પાનાની પહોળાઇ +page_scale_fit=પાનું બંધબેસતુ +page_scale_auto=આપમેળે નાનુંમોટુ કરો +page_scale_actual=ચોક્કસ માપ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=ભૂલ ઉદ્ભવી જ્યારે PDF ને લાવી રહ્યા હોય. +invalid_file_error=અયોગ્ય અથવા ભાંગેલ PDF ફાઇલ. +missing_file_error=ગુમ થયેલ PDF ફાઇલ. +unexpected_response_error=અનપેક્ષિત સર્વર પ્રતિસાદ. + +rendering_error=ભૂલ ઉદ્ભવી જ્યારે પાનાંનુ રેન્ડ કરી રહ્યા હોય. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=આ PDF ફાઇલને ખોલવા પાસવર્ડને દાખલ કરો. +password_invalid=અયોગ્ય પાસવર્ડ. મહેરબાની કરીને ફરી પ્રયત્ન કરો. +password_ok=બરાબર +password_cancel=રદ કરો + +printing_not_supported=ચેતવણી: છાપવાનું આ બ્રાઉઝર દ્દારા સંપૂર્ણપણે આધારભૂત નથી. +printing_not_ready=Warning: PDF એ છાપવા માટે સંપૂર્ણપણે લાવેલ છે. +web_fonts_disabled=વેબ ફોન્ટ નિષ્ક્રિય થયેલ છે: ઍમ્બેડ થયેલ PDF ફોન્ટને વાપરવાનું અસમર્થ. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/he/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/he/viewer.properties new file mode 100644 index 00000000..306ff703 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/he/viewer.properties @@ -0,0 +1,283 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=דף קודם +previous_label=קודם +next.title=דף הבא +next_label=הבא + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=דף +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=מתוך {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} מתוך {{pagesCount}}) + +zoom_out.title=התרחקות +zoom_out_label=התרחקות +zoom_in.title=התקרבות +zoom_in_label=התקרבות +zoom.title=מרחק מתצוגה +presentation_mode.title=מעבר למצב מצגת +presentation_mode_label=מצב מצגת +open_file.title=פתיחת קובץ +open_file_label=פתיחה +print.title=הדפסה +print_label=הדפסה +save.title=שמירה +save_label=שמירה +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=הורדה +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=הורדה +bookmark1_label=עמוד נוכחי +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=פתיחה ביישום +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=פתיחה ביישום + +# Secondary toolbar and context menu +tools.title=כלים +tools_label=כלים +first_page.title=מעבר לעמוד הראשון +first_page_label=מעבר לעמוד הראשון +last_page.title=מעבר לעמוד האחרון +last_page_label=מעבר לעמוד האחרון +page_rotate_cw.title=הטיה עם כיוון השעון +page_rotate_cw_label=הטיה עם כיוון השעון +page_rotate_ccw.title=הטיה כנגד כיוון השעון +page_rotate_ccw_label=הטיה כנגד כיוון השעון + +cursor_text_select_tool.title=הפעלת כלי בחירת טקסט +cursor_text_select_tool_label=כלי בחירת טקסט +cursor_hand_tool.title=הפעלת כלי היד +cursor_hand_tool_label=כלי יד + +scroll_page.title=שימוש בגלילת עמוד +scroll_page_label=גלילת עמוד +scroll_vertical.title=שימוש בגלילה אנכית +scroll_vertical_label=גלילה אנכית +scroll_horizontal.title=שימוש בגלילה אופקית +scroll_horizontal_label=גלילה אופקית +scroll_wrapped.title=שימוש בגלילה רציפה +scroll_wrapped_label=גלילה רציפה + +spread_none.title=לא לצרף מפתחי עמודים +spread_none_label=ללא מפתחים +spread_odd.title=צירוף מפתחי עמודים שמתחילים בדפים עם מספרים אי־זוגיים +spread_odd_label=מפתחים אי־זוגיים +spread_even.title=צירוף מפתחי עמודים שמתחילים בדפים עם מספרים זוגיים +spread_even_label=מפתחים זוגיים + +# Document properties dialog box +document_properties.title=מאפייני מסמך… +document_properties_label=מאפייני מסמך… +document_properties_file_name=שם קובץ: +document_properties_file_size=גודל הקובץ: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} ק״ב ({{size_b}} בתים) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} מ״ב ({{size_b}} בתים) +document_properties_title=כותרת: +document_properties_author=מחבר: +document_properties_subject=נושא: +document_properties_keywords=מילות מפתח: +document_properties_creation_date=תאריך יצירה: +document_properties_modification_date=תאריך שינוי: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=יוצר: +document_properties_producer=יצרן PDF: +document_properties_version=גרסת PDF: +document_properties_page_count=מספר דפים: +document_properties_page_size=גודל העמוד: +document_properties_page_size_unit_inches=אינ׳ +document_properties_page_size_unit_millimeters=מ״מ +document_properties_page_size_orientation_portrait=לאורך +document_properties_page_size_orientation_landscape=לרוחב +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=מכתב +document_properties_page_size_name_legal=דף משפטי +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=תצוגת דף מהירה: +document_properties_linearized_yes=כן +document_properties_linearized_no=לא +document_properties_close=סגירה + +print_progress_message=מסמך בהכנה להדפסה… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ביטול + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=הצגה/הסתרה של סרגל הצד +toggle_sidebar_notification2.title=החלפת תצוגת סרגל צד (מסמך שמכיל תוכן עניינים/קבצים מצורפים/שכבות) +toggle_sidebar_label=הצגה/הסתרה של סרגל הצד +document_outline.title=הצגת תוכן העניינים של המסמך (לחיצה כפולה כדי להרחיב או לצמצם את כל הפריטים) +document_outline_label=תוכן העניינים של המסמך +attachments.title=הצגת צרופות +attachments_label=צרופות +layers.title=הצגת שכבות (יש ללחוץ לחיצה כפולה כדי לאפס את כל השכבות למצב ברירת המחדל) +layers_label=שכבות +thumbs.title=הצגת תצוגה מקדימה +thumbs_label=תצוגה מקדימה +current_outline_item.title=מציאת פריט תוכן העניינים הנוכחי +current_outline_item_label=פריט תוכן העניינים הנוכחי +findbar.title=חיפוש במסמך +findbar_label=חיפוש + +additional_layers=שכבות נוספות +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=עמוד {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=עמוד {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=תצוגה מקדימה של עמוד {{page}} + +# Find panel button title and messages +find_input.title=חיפוש +find_input.placeholder=חיפוש במסמך… +find_previous.title=מציאת המופע הקודם של הביטוי +find_previous_label=קודם +find_next.title=מציאת המופע הבא של הביטוי +find_next_label=הבא +find_highlight=הדגשת הכול +find_match_case_label=התאמת אותיות +find_match_diacritics_label=התאמה דיאקריטית +find_entire_word_label=מילים שלמות +find_reached_top=הגיע לראש הדף, ממשיך מלמטה +find_reached_bottom=הגיע לסוף הדף, ממשיך מלמעלה +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=תוצאה {{current}} מתוך {{total}} +find_match_count[two]={{current}} מתוך {{total}} תוצאות +find_match_count[few]={{current}} מתוך {{total}} תוצאות +find_match_count[many]={{current}} מתוך {{total}} תוצאות +find_match_count[other]={{current}} מתוך {{total}} תוצאות +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=יותר מ־{{limit}} תוצאות +find_match_count_limit[one]=יותר מתוצאה אחת +find_match_count_limit[two]=יותר מ־{{limit}} תוצאות +find_match_count_limit[few]=יותר מ־{{limit}} תוצאות +find_match_count_limit[many]=יותר מ־{{limit}} תוצאות +find_match_count_limit[other]=יותר מ־{{limit}} תוצאות +find_not_found=הביטוי לא נמצא + +# Predefined zoom values +page_scale_width=רוחב העמוד +page_scale_fit=התאמה לעמוד +page_scale_auto=מרחק מתצוגה אוטומטי +page_scale_actual=גודל אמיתי +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=אירעה שגיאה בעת טעינת ה־PDF. +invalid_file_error=קובץ PDF פגום או לא תקין. +missing_file_error=קובץ PDF חסר. +unexpected_response_error=תגובת שרת לא צפויה. +rendering_error=אירעה שגיאה בעת עיבוד הדף. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[הערת {{type}}] +password_label=נא להכניס את הססמה לפתיחת קובץ PDF זה. +password_invalid=ססמה שגויה. נא לנסות שנית. +password_ok=אישור +password_cancel=ביטול + +printing_not_supported=אזהרה: הדפסה אינה נתמכת במלואה בדפדפן זה. +printing_not_ready=אזהרה: מסמך ה־PDF לא נטען לחלוטין עד מצב שמאפשר הדפסה. +web_fonts_disabled=גופני רשת מנוטרלים: לא ניתן להשתמש בגופני PDF מוטבעים. + +# Editor +editor_free_text2.title=טקסט +editor_free_text2_label=טקסט +editor_ink2.title=ציור +editor_ink2_label=ציור + +editor_stamp1.title=הוספה או עריכת תמונות +editor_stamp1_label=הוספה או עריכת תמונות + +free_text2_default_content=להתחיל להקליד… + +# Editor Parameters +editor_free_text_color=צבע +editor_free_text_size=גודל +editor_ink_color=צבע +editor_ink_thickness=עובי +editor_ink_opacity=אטימות + +editor_stamp_add_image_label=הוספת תמונה +editor_stamp_add_image.title=הוספת תמונה + +# Editor aria +editor_free_text2_aria_label=עורך טקסט +editor_ink2_aria_label=עורך ציור +editor_ink_canvas_aria_label=תמונה שנוצרה על־ידי משתמש + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=טקסט חלופי +editor_alt_text_edit_button_label=עריכת טקסט חלופי +editor_alt_text_dialog_label=בחירת אפשרות +editor_alt_text_dialog_description=טקסט חלופי עוזר כשאנשים לא יכולים לראות את התמונה או כשהיא לא נטענת. +editor_alt_text_add_description_label=הוספת תיאור +editor_alt_text_add_description_description=כדאי לתאר במשפט אחד או שניים את הנושא, התפאורה או הפעולות. +editor_alt_text_mark_decorative_label=סימון כדקורטיבי +editor_alt_text_mark_decorative_description=זה משמש לתמונות נוי, כמו גבולות או סימני מים. +editor_alt_text_cancel_button=ביטול +editor_alt_text_save_button=שמירה +editor_alt_text_decorative_tooltip=מסומן כדקורטיבי +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=לדוגמה, ״גבר צעיר מתיישב ליד שולחן לאכול ארוחה״ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/hi-IN/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hi-IN/viewer.properties new file mode 100644 index 00000000..97f1da17 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hi-IN/viewer.properties @@ -0,0 +1,227 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=पिछला पृष्ठ +previous_label=पिछला +next.title=अगला पृष्ठ +next_label=आगे + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=पृष्ठ: +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} का +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=\u0020छोटा करें +zoom_out_label=\u0020छोटा करें +zoom_in.title=बड़ा करें +zoom_in_label=बड़ा करें +zoom.title=बड़ा-छोटा करें +presentation_mode.title=प्रस्तुति अवस्था में जाएँ +presentation_mode_label=\u0020प्रस्तुति अवस्था +open_file.title=फ़ाइल खोलें +open_file_label=\u0020खोलें +print.title=छापें +print_label=\u0020छापें +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=ऐप में खोलें +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=ऐप में खोलें + +# Secondary toolbar and context menu +tools.title=औज़ार +tools_label=औज़ार +first_page.title=प्रथम पृष्ठ पर जाएँ +first_page_label=प्रथम पृष्ठ पर जाएँ +last_page.title=अंतिम पृष्ठ पर जाएँ +last_page_label=\u0020अंतिम पृष्ठ पर जाएँ +page_rotate_cw.title=घड़ी की दिशा में घुमाएँ +page_rotate_cw_label=घड़ी की दिशा में घुमाएँ +page_rotate_ccw.title=घड़ी की दिशा से उल्टा घुमाएँ +page_rotate_ccw_label=\u0020घड़ी की दिशा से उल्टा घुमाएँ + +cursor_text_select_tool.title=पाठ चयन उपकरण सक्षम करें +cursor_text_select_tool_label=पाठ चयन उपकरण +cursor_hand_tool.title=हस्त उपकरण सक्षम करें +cursor_hand_tool_label=हस्त उपकरण + +scroll_vertical.title=लंबवत स्क्रॉलिंग का उपयोग करें +scroll_vertical_label=लंबवत स्क्रॉलिंग +scroll_horizontal.title=क्षितिजिय स्क्रॉलिंग का उपयोग करें +scroll_horizontal_label=क्षितिजिय स्क्रॉलिंग +scroll_wrapped.title=व्राप्पेड स्क्रॉलिंग का उपयोग करें + +spread_none_label=कोई स्प्रेड उपलब्ध नहीं +spread_odd.title=विषम-क्रमांकित पृष्ठों से प्रारंभ होने वाले पृष्ठ स्प्रेड में शामिल हों +spread_odd_label=विषम फैलाव + +# Document properties dialog box +document_properties.title=दस्तावेज़ विशेषता... +document_properties_label=दस्तावेज़ विशेषता... +document_properties_file_name=फ़ाइल नाम: +document_properties_file_size=फाइल आकारः +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=शीर्षक: +document_properties_author=लेखकः +document_properties_subject=विषय: +document_properties_keywords=कुंजी-शब्द: +document_properties_creation_date=निर्माण दिनांक: +document_properties_modification_date=संशोधन दिनांक: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=निर्माता: +document_properties_producer=PDF उत्पादक: +document_properties_version=PDF संस्करण: +document_properties_page_count=पृष्ठ गिनती: +document_properties_page_size=पृष्ठ आकार: +document_properties_page_size_unit_inches=इंच +document_properties_page_size_unit_millimeters=मिमी +document_properties_page_size_orientation_portrait=पोर्ट्रेट +document_properties_page_size_orientation_landscape=लैंडस्केप +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=पत्र +document_properties_page_size_name_legal=क़ानूनी +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=तीव्र वेब व्यू: +document_properties_linearized_yes=हाँ +document_properties_linearized_no=नहीं +document_properties_close=बंद करें + +print_progress_message=छपाई के लिए दस्तावेज़ को तैयार किया जा रहा है... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=रद्द करें + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=\u0020स्लाइडर टॉगल करें +toggle_sidebar_label=स्लाइडर टॉगल करें +document_outline.title=दस्तावेज़ की रूपरेखा दिखाइए (सारी वस्तुओं को फलने अथवा समेटने के लिए दो बार क्लिक करें) +document_outline_label=दस्तावेज़ आउटलाइन +attachments.title=संलग्नक दिखायें +attachments_label=संलग्नक +thumbs.title=लघुछवियाँ दिखाएँ +thumbs_label=लघु छवि +findbar.title=\u0020दस्तावेज़ में ढूँढ़ें +findbar_label=ढूँढें + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=पृष्ठ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=पृष्ठ {{page}} की लघु-छवि + +# Find panel button title and messages +find_input.title=ढूँढें +find_input.placeholder=दस्तावेज़ में खोजें... +find_previous.title=वाक्यांश की पिछली उपस्थिति ढूँढ़ें +find_previous_label=पिछला +find_next.title=वाक्यांश की अगली उपस्थिति ढूँढ़ें +find_next_label=अगला +find_highlight=\u0020सभी आलोकित करें +find_match_case_label=मिलान स्थिति +find_entire_word_label=संपूर्ण शब्द +find_reached_top=पृष्ठ के ऊपर पहुंच गया, नीचे से जारी रखें +find_reached_bottom=पृष्ठ के नीचे में जा पहुँचा, ऊपर से जारी +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} में {{current}} मेल +find_match_count[two]={{total}} में {{current}} मेल +find_match_count[few]={{total}} में {{current}} मेल +find_match_count[many]={{total}} में {{current}} मेल +find_match_count[other]={{total}} में {{current}} मेल +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} से अधिक मेल +find_match_count_limit[one]={{limit}} से अधिक मेल +find_match_count_limit[two]={{limit}} से अधिक मेल +find_match_count_limit[few]={{limit}} से अधिक मेल +find_match_count_limit[many]={{limit}} से अधिक मेल +find_match_count_limit[other]={{limit}} से अधिक मेल +find_not_found=वाक्यांश नहीं मिला + +# Predefined zoom values +page_scale_width=\u0020पृष्ठ चौड़ाई +page_scale_fit=पृष्ठ फिट +page_scale_auto=स्वचालित जूम +page_scale_actual=वास्तविक आकार +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF लोड करते समय एक त्रुटि हुई. +invalid_file_error=अमान्य या भ्रष्ट PDF फ़ाइल. +missing_file_error=\u0020अनुपस्थित PDF फ़ाइल. +unexpected_response_error=अप्रत्याशित सर्वर प्रतिक्रिया. +rendering_error=पृष्ठ रेंडरिंग के दौरान त्रुटि आई. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=\u0020[{{type}} Annotation] +password_label=इस PDF फ़ाइल को खोलने के लिए कृपया कूटशब्द भरें. +password_invalid=अवैध कूटशब्द, कृपया फिर कोशिश करें. +password_ok=OK +password_cancel=रद्द करें + +printing_not_supported=चेतावनी: इस ब्राउज़र पर छपाई पूरी तरह से समर्थित नहीं है. +printing_not_ready=चेतावनी: PDF छपाई के लिए पूरी तरह से लोड नहीं है. +web_fonts_disabled=वेब फॉन्ट्स निष्क्रिय हैं: अंतःस्थापित PDF फॉन्टस के उपयोग में असमर्थ. + +# Editor + + + +# Editor Parameters +editor_free_text_color=रंग + +# Editor aria diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/hr/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hr/viewer.properties new file mode 100644 index 00000000..05b54ffc --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hr/viewer.properties @@ -0,0 +1,243 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Prethodna stranica +previous_label=Prethodna +next.title=Sljedeća stranica +next_label=Sljedeća + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Stranica +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=od {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} od {{pagesCount}}) + +zoom_out.title=Umanji +zoom_out_label=Umanji +zoom_in.title=Uvećaj +zoom_in_label=Uvećaj +zoom.title=Zumiranje +presentation_mode.title=Prebaci u prezentacijski način rada +presentation_mode_label=Prezentacijski način rada +open_file.title=Otvori datoteku +open_file_label=Otvori +print.title=Ispiši +print_label=Ispiši +save.title=Spremi +save_label=Spremi + +# Secondary toolbar and context menu +tools.title=Alati +tools_label=Alati +first_page.title=Idi na prvu stranicu +first_page_label=Idi na prvu stranicu +last_page.title=Idi na posljednju stranicu +last_page_label=Idi na posljednju stranicu +page_rotate_cw.title=Rotiraj u smjeru kazaljke na satu +page_rotate_cw_label=Rotiraj u smjeru kazaljke na satu +page_rotate_ccw.title=Rotiraj obrnutno od smjera kazaljke na satu +page_rotate_ccw_label=Rotiraj obrnutno od smjera kazaljke na satu + +cursor_text_select_tool.title=Omogući alat za označavanje teksta +cursor_text_select_tool_label=Alat za označavanje teksta +cursor_hand_tool.title=Omogući ručni alat +cursor_hand_tool_label=Ručni alat + +scroll_vertical.title=Koristi okomito pomicanje +scroll_vertical_label=Okomito pomicanje +scroll_horizontal.title=Koristi vodoravno pomicanje +scroll_horizontal_label=Vodoravno pomicanje +scroll_wrapped.title=Koristi kontinuirani raspored stranica +scroll_wrapped_label=Kontinuirani raspored stranica + +spread_none.title=Ne izrađuj duplerice +spread_none_label=Pojedinačne stranice +spread_odd.title=Izradi duplerice koje počinju s neparnim stranicama +spread_odd_label=Neparne duplerice +spread_even.title=Izradi duplerice koje počinju s parnim stranicama +spread_even_label=Parne duplerice + +# Document properties dialog box +document_properties.title=Svojstva dokumenta … +document_properties_label=Svojstva dokumenta … +document_properties_file_name=Naziv datoteke: +document_properties_file_size=Veličina datoteke: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajtova) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajtova) +document_properties_title=Naslov: +document_properties_author=Autor: +document_properties_subject=Predmet: +document_properties_keywords=Ključne riječi: +document_properties_creation_date=Datum stvaranja: +document_properties_modification_date=Datum promjene: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Stvaratelj: +document_properties_producer=PDF stvaratelj: +document_properties_version=PDF verzija: +document_properties_page_count=Broj stranica: +document_properties_page_size=Dimenzije stranice: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=uspravno +document_properties_page_size_orientation_landscape=položeno +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Brzi web pregled: +document_properties_linearized_yes=Da +document_properties_linearized_no=Ne +document_properties_close=Zatvori + +print_progress_message=Pripremanje dokumenta za ispis… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Odustani + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Prikaži/sakrij bočnu traku +toggle_sidebar_notification2.title=Prikazivanje i sklanjanje bočne trake (dokument sadrži strukturu/privitke/slojeve) +toggle_sidebar_label=Prikaži/sakrij bočnu traku +document_outline.title=Prikaži strukturu dokumenta (dvostruki klik za rasklapanje/sklapanje svih stavki) +document_outline_label=Struktura dokumenta +attachments.title=Prikaži privitke +attachments_label=Privitci +layers.title=Prikaži slojeve (dvoklik za vraćanje svih slojeva u zadano stanje) +layers_label=Slojevi +thumbs.title=Prikaži minijature +thumbs_label=Minijature +current_outline_item.title=Pronađi trenutačni element strukture +current_outline_item_label=Trenutačni element strukture +findbar.title=Pronađi u dokumentu +findbar_label=Pronađi + +additional_layers=Dodatni slojevi +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Stranica {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Stranica {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Minijatura stranice {{page}} + +# Find panel button title and messages +find_input.title=Pronađi +find_input.placeholder=Pronađi u dokumentu … +find_previous.title=Pronađi prethodno pojavljivanje ovog izraza +find_previous_label=Prethodno +find_next.title=Pronađi sljedeće pojavljivanje ovog izraza +find_next_label=Sljedeće +find_highlight=Istankni sve +find_match_case_label=Razlikovanje velikih i malih slova +find_entire_word_label=Cijele riječi +find_reached_top=Dosegnut početak dokumenta, nastavak s kraja +find_reached_bottom=Dosegnut kraj dokumenta, nastavak s početka +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} od {{total}} se podudara +find_match_count[two]={{current}} od {{total}} se podudara +find_match_count[few]={{current}} od {{total}} se podudara +find_match_count[many]={{current}} od {{total}} se podudara +find_match_count[other]={{current}} od {{total}} se podudara +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Više od {{limit}} podudaranja +find_match_count_limit[one]=Više od {{limit}} podudaranja +find_match_count_limit[two]=Više od {{limit}} podudaranja +find_match_count_limit[few]=Više od {{limit}} podudaranja +find_match_count_limit[many]=Više od {{limit}} podudaranja +find_match_count_limit[other]=Više od {{limit}} podudaranja +find_not_found=Izraz nije pronađen + +# Predefined zoom values +page_scale_width=Prilagodi širini prozora +page_scale_fit=Prilagodi veličini prozora +page_scale_auto=Automatsko zumiranje +page_scale_actual=Stvarna veličina +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +loading_error=Došlo je do greške pri učitavanju PDF-a. +invalid_file_error=Neispravna ili oštećena PDF datoteka. +missing_file_error=Nedostaje PDF datoteka. +unexpected_response_error=Neočekivani odgovor poslužitelja. + +rendering_error=Došlo je do greške prilikom iscrtavanja stranice. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Bilješka] +password_label=Za otvoranje ove PDF datoteku upiši lozinku. +password_invalid=Neispravna lozinka. Pokušaj ponovo. +password_ok=U redu +password_cancel=Odustani + +printing_not_supported=Upozorenje: Ovaj preglednik ne podržava u potpunosti ispisivanje. +printing_not_ready=Upozorenje: PDF nije u potpunosti učitan za ispis. +web_fonts_disabled=Web fontovi su deaktivirani: nije moguće koristiti ugrađene PDF fontove. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst + +free_text2_default_content=Počni tipkati … + +# Editor Parameters +editor_free_text_color=Boja +editor_free_text_size=Veličina +editor_ink_color=Boja +editor_ink_thickness=Debljina +editor_ink_opacity=Neprozirnost + +# Editor aria +editor_free_text2_aria_label=Uređivač teksta diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/hsb/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hsb/viewer.properties new file mode 100644 index 00000000..d96940d4 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hsb/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Předchadna strona +previous_label=Wróćo +next.title=Přichodna strona +next_label=Dale + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Strona +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=z {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} z {{pagesCount}}) + +zoom_out.title=Pomjeńšić +zoom_out_label=Pomjeńšić +zoom_in.title=Powjetšić +zoom_in_label=Powjetšić +zoom.title=Skalowanje +presentation_mode.title=Do prezentaciskeho modusa přeńć +presentation_mode_label=Prezentaciski modus +open_file.title=Dataju wočinić +open_file_label=Wočinić +print.title=Ćišćeć +print_label=Ćišćeć +save.title=Składować +save_label=Składować +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Sćahnyć +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Sćahnyć +bookmark1.title=Aktualna strona (URL z aktualneje strony pokazać) +bookmark1_label=Aktualna strona +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=W nałoženju wočinić +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=W nałoženju wočinić + +# Secondary toolbar and context menu +tools.title=Nastroje +tools_label=Nastroje +first_page.title=K prěnjej stronje +first_page_label=K prěnjej stronje +last_page.title=K poslednjej stronje +last_page_label=K poslednjej stronje +page_rotate_cw.title=K směrej časnika wjerćeć +page_rotate_cw_label=K směrej časnika wjerćeć +page_rotate_ccw.title=Přećiwo směrej časnika wjerćeć +page_rotate_ccw_label=Přećiwo směrej časnika wjerćeć + +cursor_text_select_tool.title=Nastroj za wuběranje teksta zmóžnić +cursor_text_select_tool_label=Nastroj za wuběranje teksta +cursor_hand_tool.title=Ručny nastroj zmóžnić +cursor_hand_tool_label=Ručny nastroj + +scroll_page.title=Kulenje strony wužiwać +scroll_page_label=Kulenje strony +scroll_vertical.title=Wertikalne suwanje wužiwać +scroll_vertical_label=Wertikalne suwanje +scroll_horizontal.title=Horicontalne suwanje wužiwać +scroll_horizontal_label=Horicontalne suwanje +scroll_wrapped.title=Postupne suwanje wužiwać +scroll_wrapped_label=Postupne suwanje + +spread_none.title=Strony njezwjazać +spread_none_label=Žana dwójna strona +spread_odd.title=Strony započinajo z njerunymi stronami zwjazać +spread_odd_label=Njerune strony +spread_even.title=Strony započinajo z runymi stronami zwjazać +spread_even_label=Rune strony + +# Document properties dialog box +document_properties.title=Dokumentowe kajkosće… +document_properties_label=Dokumentowe kajkosće… +document_properties_file_name=Mjeno dataje: +document_properties_file_size=Wulkosć dataje: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajtow) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajtow) +document_properties_title=Titul: +document_properties_author=Awtor: +document_properties_subject=Předmjet: +document_properties_keywords=Klučowe słowa: +document_properties_creation_date=Datum wutworjenja: +document_properties_modification_date=Datum změny: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Awtor: +document_properties_producer=PDF-zhotowjer: +document_properties_version=PDF-wersija: +document_properties_page_count=Ličba stronow: +document_properties_page_size=Wulkosć strony: +document_properties_page_size_unit_inches=cól +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=wysoki format +document_properties_page_size_orientation_landscape=prěčny format +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Haj +document_properties_linearized_no=Ně +document_properties_close=Začinić + +print_progress_message=Dokument so za ćišćenje přihotuje… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Přetorhnyć + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Bóčnicu pokazać/schować +toggle_sidebar_notification2.title=Bóčnicu přepinać (dokument rozrjad/přiwěški/woršty wobsahuje) +toggle_sidebar_label=Bóčnicu pokazać/schować +document_outline.title=Dokumentowy naćisk pokazać (dwójne kliknjenje, zo bychu so wšě zapiski pokazali/schowali) +document_outline_label=Dokumentowa struktura +attachments.title=Přiwěški pokazać +attachments_label=Přiwěški +layers.title=Woršty pokazać (klikńće dwójce, zo byšće wšě woršty na standardny staw wróćo stajił) +layers_label=Woršty +thumbs.title=Miniatury pokazać +thumbs_label=Miniatury +current_outline_item.title=Aktualny rozrjadowy zapisk pytać +current_outline_item_label=Aktualny rozrjadowy zapisk +findbar.title=W dokumenće pytać +findbar_label=Pytać + +additional_layers=Dalše woršty +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Strona {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Strona {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura strony {{page}} + +# Find panel button title and messages +find_input.title=Pytać +find_input.placeholder=W dokumenće pytać… +find_previous.title=Předchadne wustupowanje pytanskeho wuraza pytać +find_previous_label=Wróćo +find_next.title=Přichodne wustupowanje pytanskeho wuraza pytać +find_next_label=Dale +find_highlight=Wšě wuzběhnyć +find_match_case_label=Wulkopisanje wobkedźbować +find_match_diacritics_label=Diakritiske znamješka wužiwać +find_entire_word_label=Cyłe słowa +find_reached_top=Spočatk dokumenta docpěty, pokročuje so z kóncom +find_reached_bottom=Kónc dokument docpěty, pokročuje so ze spočatkom +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} z {{total}} wotpowědnika +find_match_count[two]={{current}} z {{total}} wotpowědnikow +find_match_count[few]={{current}} z {{total}} wotpowědnikow +find_match_count[many]={{current}} z {{total}} wotpowědnikow +find_match_count[other]={{current}} z {{total}} wotpowědnikow +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Wjace hač {{limit}} wotpowědnikow +find_match_count_limit[one]=Wjace hač {{limit}} wotpowědnik +find_match_count_limit[two]=Wjace hač {{limit}} wotpowědnikaj +find_match_count_limit[few]=Wjace hač {{limit}} wotpowědniki +find_match_count_limit[many]=Wjace hač {{limit}} wotpowědnikow +find_match_count_limit[other]=Wjace hač {{limit}} wotpowědnikow +find_not_found=Pytanski wuraz njeje so namakał + +# Predefined zoom values +page_scale_width=Šěrokosć strony +page_scale_fit=Wulkosć strony +page_scale_auto=Awtomatiske skalowanje +page_scale_actual=Aktualna wulkosć +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Při začitowanju PDF je zmylk wustupił. +invalid_file_error=Njepłaćiwa abo wobškodźena PDF-dataja. +missing_file_error=Falowaca PDF-dataja. +unexpected_response_error=Njewočakowana serwerowa wotmołwa. +rendering_error=Při zwobraznjenju strony je zmylk wustupił. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Typ přispomnjenki: {{type}}] +password_label=Zapodajće hesło, zo byšće PDF-dataju wočinił. +password_invalid=Njepłaćiwe hesło. Prošu spytajće hišće raz. +password_ok=W porjadku +password_cancel=Přetorhnyć + +printing_not_supported=Warnowanje: Ćišćenje so přez tutón wobhladowak połnje njepodpěruje. +printing_not_ready=Warnowanje: PDF njeje so za ćišćenje dospołnje začitał. +web_fonts_disabled=Webpisma su znjemóžnjene: njeje móžno, zasadźene PDF-pisma wužiwać. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Rysować +editor_ink2_label=Rysować + +editor_stamp1.title=Wobrazy přidać abo wobdźěłać +editor_stamp1_label=Wobrazy přidać abo wobdźěłać + +free_text2_default_content=Započńće pisać… + +# Editor Parameters +editor_free_text_color=Barba +editor_free_text_size=Wulkosć +editor_ink_color=Barba +editor_ink_thickness=Tołstosć +editor_ink_opacity=Opacita + +editor_stamp_add_image_label=Wobraz přidać +editor_stamp_add_image.title=Wobraz přidać + +# Editor aria +editor_free_text2_aria_label=Tekstowy editor +editor_ink2_aria_label=Rysowanski editor +editor_ink_canvas_aria_label=Wobraz wutworjeny wot wužiwarja + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alternatiwny tekst +editor_alt_text_edit_button_label=Alternatiwny tekst wobdźěłać +editor_alt_text_dialog_label=Nastajenje wubrać +editor_alt_text_dialog_description=Alternatiwny tekst pomha, hdyž ludźo njemóža wobraz widźeć abo hdyž so wobraz njezačita. +editor_alt_text_add_description_label=Wopisanje přidać +editor_alt_text_add_description_description=Pisajće 1 sadu abo 2 sadźe, kotrejž temu, nastajenje abo akcije wopisujetej. +editor_alt_text_mark_decorative_label=Jako dekoratiwny markěrować +editor_alt_text_mark_decorative_description=To so za pyšace wobrazy wužiwa, na přikład ramiki abo wodowe znamjenja. +editor_alt_text_cancel_button=Přetorhnyć +editor_alt_text_save_button=Składować +editor_alt_text_decorative_tooltip=Jako dekoratiwny markěrowany +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Na přikład, „Młody muž za blidom sedźi, zo by jědź jědł“ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/hu/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hu/viewer.properties new file mode 100644 index 00000000..028aa058 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hu/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Előző oldal +previous_label=Előző +next.title=Következő oldal +next_label=Tovább + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Oldal +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=összesen: {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=Kicsinyítés +zoom_out_label=Kicsinyítés +zoom_in.title=Nagyítás +zoom_in_label=Nagyítás +zoom.title=Nagyítás +presentation_mode.title=Váltás bemutató módba +presentation_mode_label=Bemutató mód +open_file.title=Fájl megnyitása +open_file_label=Megnyitás +print.title=Nyomtatás +print_label=Nyomtatás +save.title=Mentés +save_label=Mentés +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Letöltés +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Letöltés +bookmark1.title=Jelenlegi oldal (webcím megtekintése a jelenlegi oldalról) +bookmark1_label=Jelenlegi oldal +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Megnyitás alkalmazásban +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Megnyitás alkalmazásban + +# Secondary toolbar and context menu +tools.title=Eszközök +tools_label=Eszközök +first_page.title=Ugrás az első oldalra +first_page_label=Ugrás az első oldalra +last_page.title=Ugrás az utolsó oldalra +last_page_label=Ugrás az utolsó oldalra +page_rotate_cw.title=Forgatás az óramutató járásával egyezően +page_rotate_cw_label=Forgatás az óramutató járásával egyezően +page_rotate_ccw.title=Forgatás az óramutató járásával ellentétesen +page_rotate_ccw_label=Forgatás az óramutató járásával ellentétesen + +cursor_text_select_tool.title=Szövegkijelölő eszköz bekapcsolása +cursor_text_select_tool_label=Szövegkijelölő eszköz +cursor_hand_tool.title=Kéz eszköz bekapcsolása +cursor_hand_tool_label=Kéz eszköz + +scroll_page.title=Oldalgörgetés használata +scroll_page_label=Oldalgörgetés +scroll_vertical.title=Függőleges görgetés használata +scroll_vertical_label=Függőleges görgetés +scroll_horizontal.title=Vízszintes görgetés használata +scroll_horizontal_label=Vízszintes görgetés +scroll_wrapped.title=Rácsos elrendezés használata +scroll_wrapped_label=Rácsos elrendezés + +spread_none.title=Ne tapassza össze az oldalakat +spread_none_label=Nincs összetapasztás +spread_odd.title=Lapok összetapasztása, a páratlan számú oldalakkal kezdve +spread_odd_label=Összetapasztás: páratlan +spread_even.title=Lapok összetapasztása, a páros számú oldalakkal kezdve +spread_even_label=Összetapasztás: páros + +# Document properties dialog box +document_properties.title=Dokumentum tulajdonságai… +document_properties_label=Dokumentum tulajdonságai… +document_properties_file_name=Fájlnév: +document_properties_file_size=Fájlméret: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bájt) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bájt) +document_properties_title=Cím: +document_properties_author=Szerző: +document_properties_subject=Tárgy: +document_properties_keywords=Kulcsszavak: +document_properties_creation_date=Létrehozás dátuma: +document_properties_modification_date=Módosítás dátuma: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Létrehozta: +document_properties_producer=PDF előállító: +document_properties_version=PDF verzió: +document_properties_page_count=Oldalszám: +document_properties_page_size=Lapméret: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=álló +document_properties_page_size_orientation_landscape=fekvő +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Jogi információk +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Gyors webes nézet: +document_properties_linearized_yes=Igen +document_properties_linearized_no=Nem +document_properties_close=Bezárás + +print_progress_message=Dokumentum előkészítése nyomtatáshoz… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Mégse + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Oldalsáv be/ki +toggle_sidebar_notification2.title=Oldalsáv be/ki (a dokumentum vázlatot/mellékleteket/rétegeket tartalmaz) +toggle_sidebar_label=Oldalsáv be/ki +document_outline.title=Dokumentum megjelenítése online (dupla kattintás minden elem kinyitásához/összecsukásához) +document_outline_label=Dokumentumvázlat +attachments.title=Mellékletek megjelenítése +attachments_label=Van melléklet +layers.title=Rétegek megjelenítése (dupla kattintás az összes réteg alapértelmezett állapotra visszaállításához) +layers_label=Rétegek +thumbs.title=Bélyegképek megjelenítése +thumbs_label=Bélyegképek +current_outline_item.title=Jelenlegi vázlatelem megkeresése +current_outline_item_label=Jelenlegi vázlatelem +findbar.title=Keresés a dokumentumban +findbar_label=Keresés + +additional_layers=További rétegek +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}}. oldal +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}}. oldal +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}}. oldal bélyegképe + +# Find panel button title and messages +find_input.title=Keresés +find_input.placeholder=Keresés a dokumentumban… +find_previous.title=A kifejezés előző előfordulásának keresése +find_previous_label=Előző +find_next.title=A kifejezés következő előfordulásának keresése +find_next_label=Tovább +find_highlight=Összes kiemelése +find_match_case_label=Kis- és nagybetűk megkülönböztetése +find_match_diacritics_label=Diakritikus jelek +find_entire_word_label=Teljes szavak +find_reached_top=A dokumentum eleje elérve, folytatás a végétől +find_reached_bottom=A dokumentum vége elérve, folytatás az elejétől +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} / {{total}} találat +find_match_count[two]={{current}} / {{total}} találat +find_match_count[few]={{current}} / {{total}} találat +find_match_count[many]={{current}} / {{total}} találat +find_match_count[other]={{current}} / {{total}} találat +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Több mint {{limit}} találat +find_match_count_limit[one]=Több mint {{limit}} találat +find_match_count_limit[two]=Több mint {{limit}} találat +find_match_count_limit[few]=Több mint {{limit}} találat +find_match_count_limit[many]=Több mint {{limit}} találat +find_match_count_limit[other]=Több mint {{limit}} találat +find_not_found=A kifejezés nem található + +# Predefined zoom values +page_scale_width=Oldalszélesség +page_scale_fit=Teljes oldal +page_scale_auto=Automatikus nagyítás +page_scale_actual=Valódi méret +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Hiba történt a PDF betöltésekor. +invalid_file_error=Érvénytelen vagy sérült PDF fájl. +missing_file_error=Hiányzó PDF fájl. +unexpected_response_error=Váratlan kiszolgálóválasz. +rendering_error=Hiba történt az oldal feldolgozása közben. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} megjegyzés] +password_label=Adja meg a jelszót a PDF fájl megnyitásához. +password_invalid=Helytelen jelszó. Próbálja újra. +password_ok=OK +password_cancel=Mégse + +printing_not_supported=Figyelmeztetés: Ez a böngésző nem teljesen támogatja a nyomtatást. +printing_not_ready=Figyelmeztetés: A PDF nincs teljesen betöltve a nyomtatáshoz. +web_fonts_disabled=Webes betűkészletek letiltva: nem használhatók a beágyazott PDF betűkészletek. + +# Editor +editor_free_text2.title=Szöveg +editor_free_text2_label=Szöveg +editor_ink2.title=Rajzolás +editor_ink2_label=Rajzolás + +editor_stamp1.title=Képek hozzáadása vagy szerkesztése +editor_stamp1_label=Képek hozzáadása vagy szerkesztése + +free_text2_default_content=Kezdjen el gépelni… + +# Editor Parameters +editor_free_text_color=Szín +editor_free_text_size=Méret +editor_ink_color=Szín +editor_ink_thickness=Vastagság +editor_ink_opacity=Átlátszatlanság + +editor_stamp_add_image_label=Kép hozzáadása +editor_stamp_add_image.title=Kép hozzáadása + +# Editor aria +editor_free_text2_aria_label=Szövegszerkesztő +editor_ink2_aria_label=Rajzszerkesztő +editor_ink_canvas_aria_label=Felhasználó által készített kép + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alternatív szöveg +editor_alt_text_edit_button_label=Alternatív szöveg szerkesztése +editor_alt_text_dialog_label=Válasszon egy lehetőséget +editor_alt_text_dialog_description=Az alternatív szöveg segít, ha az emberek nem látják a képet, vagy ha az nem töltődik be. +editor_alt_text_add_description_label=Leírás hozzáadása +editor_alt_text_add_description_description=Törekedjen 1-2 mondatra, amely jellemzi a témát, környezetet vagy cselekvést. +editor_alt_text_mark_decorative_label=Megjelölés dekoratívként +editor_alt_text_mark_decorative_description=Ez a díszítőképeknél használatos, mint a szegélyek vagy a vízjelek. +editor_alt_text_cancel_button=Mégse +editor_alt_text_save_button=Mentés +editor_alt_text_decorative_tooltip=Megjelölve dekoratívként +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Például: „Egy fiatal férfi leül enni egy asztalhoz” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/hy-AM/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hy-AM/viewer.properties new file mode 100644 index 00000000..a2de23bc --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hy-AM/viewer.properties @@ -0,0 +1,232 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Նախորդ էջը +previous_label=Նախորդը +next.title=Հաջորդ էջը +next_label=Հաջորդը + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Էջ. +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=-ը՝ {{pagesCount}}-ից +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}}-ը {{pagesCount}})-ից + +zoom_out.title=Փոքրացնել +zoom_out_label=Փոքրացնել +zoom_in.title=Խոշորացնել +zoom_in_label=Խոշորացնել +zoom.title=Մասշտաբ +presentation_mode.title=Անցնել Ներկայացման եղանակին +presentation_mode_label=Ներկայացման եղանակ +open_file.title=Բացել նիշք +open_file_label=Բացել +print.title=Տպել +print_label=Տպել + +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. + +# Secondary toolbar and context menu +tools.title=Գործիքներ +tools_label=Գործիքներ +first_page.title=Անցնել առաջին էջին +first_page_label=Անցնել առաջին էջին +last_page.title=Անցնել վերջին էջին +last_page_label=Անցնել վերջին էջին +page_rotate_cw.title=Պտտել ըստ ժամացույցի սլաքի +page_rotate_cw_label=Պտտել ըստ ժամացույցի սլաքի +page_rotate_ccw.title=Պտտել հակառակ ժամացույցի սլաքի +page_rotate_ccw_label=Պտտել հակառակ ժամացույցի սլաքի + +cursor_text_select_tool.title=Միացնել գրույթ ընտրելու գործիքը +cursor_text_select_tool_label=Գրույթը ընտրելու գործիք +cursor_hand_tool.title=Միացնել Ձեռքի գործիքը +cursor_hand_tool_label=Ձեռքի գործիք + +scroll_vertical.title=Օգտագործել ուղղահայաց ոլորում +scroll_vertical_label=Ուղղահայաց ոլորում +scroll_horizontal.title=Օգտագործել հորիզոնական ոլորում +scroll_horizontal_label=Հորիզոնական ոլորում +scroll_wrapped.title=Օգտագործել փաթաթված ոլորում +scroll_wrapped_label=Փաթաթված ոլորում + +spread_none.title=Մի միացեք էջի վերածածկերին +spread_none_label=Չկա վերածածկեր +spread_odd.title=Միացեք էջի վերածածկերին սկսելով՝ կենտ համարակալված էջերով +spread_odd_label=Կենտ վերածածկեր +spread_even.title=Միացեք էջի վերածածկերին սկսելով՝ զույգ համարակալված էջերով +spread_even_label=Զույգ վերածածկեր + +# Document properties dialog box +document_properties.title=Փաստաթղթի հատկությունները… +document_properties_label=Փաստաթղթի հատկությունները… +document_properties_file_name=Նիշքի անունը. +document_properties_file_size=Նիշք չափը. +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} ԿԲ ({{size_b}} բայթ) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} ՄԲ ({{size_b}} բայթ) +document_properties_title=Վերնագիր. +document_properties_author=Հեղինակ․ +document_properties_subject=Վերնագիր. +document_properties_keywords=Հիմնաբառ. +document_properties_creation_date=Ստեղծելու ամսաթիվը. +document_properties_modification_date=Փոփոխելու ամսաթիվը. +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Ստեղծող. +document_properties_producer=PDF-ի հեղինակը. +document_properties_version=PDF-ի տարբերակը. +document_properties_page_count=Էջերի քանակը. +document_properties_page_size=Էջի չափը. +document_properties_page_size_unit_inches=ում +document_properties_page_size_unit_millimeters=մմ +document_properties_page_size_orientation_portrait=ուղղաձիգ +document_properties_page_size_orientation_landscape=հորիզոնական +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Նամակ +document_properties_page_size_name_legal=Օրինական +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Արագ վեբ դիտում․ +document_properties_linearized_yes=Այո +document_properties_linearized_no=Ոչ +document_properties_close=Փակել + +print_progress_message=Նախապատրաստում է փաստաթուղթը տպելուն... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Չեղարկել + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Բացել/Փակել Կողային վահանակը +toggle_sidebar_label=Բացել/Փակել Կողային վահանակը +document_outline.title=Ցուցադրել փաստաթղթի ուրվագիծը (կրկնակի սեղմեք՝ միավորները ընդարձակելու/կոծկելու համար) +document_outline_label=Փաստաթղթի բովանդակությունը +attachments.title=Ցուցադրել կցորդները +attachments_label=Կցորդներ +thumbs.title=Ցուցադրել Մանրապատկերը +thumbs_label=Մանրապատկերը +findbar.title=Գտնել փաստաթղթում +findbar_label=Որոնում + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Էջը {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Էջի մանրապատկերը {{page}} + +# Find panel button title and messages +find_input.title=Որոնում +find_input.placeholder=Գտնել փաստաթղթում... +find_previous.title=Գտնել անրահայտության նախորդ հանդիպումը +find_previous_label=Նախորդը +find_next.title=Գտիր արտահայտության հաջորդ հանդիպումը +find_next_label=Հաջորդը +find_highlight=Գունանշել բոլորը +find_match_case_label=Մեծ(փոքր)ատառ հաշվի առնել +find_entire_word_label=Ամբողջ բառերը +find_reached_top=Հասել եք փաստաթղթի վերևին, կշարունակվի ներքևից +find_reached_bottom=Հասել եք փաստաթղթի վերջին, կշարունակվի վերևից +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ հոգնակի(ընդհանուր) ]} +find_match_count[one]={{current}} {{total}}-ի համընկնումից +find_match_count[two]={{current}} {{total}}-ի համընկնումներից +find_match_count[few]={{current}} {{total}}-ի համընկնումներից +find_match_count[many]={{current}} {{total}}-ի համընկնումներից +find_match_count[other]={{current}} {{total}}-ի համընկնումներից +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ հոգնակի (սահմանը) ]} +find_match_count_limit[zero]=Ավելին քան {{limit}} համընկնումները +find_match_count_limit[one]=Ավելին քան {{limit}} համընկնումը +find_match_count_limit[two]=Ավելին քան {{limit}} համընկնումներներ +find_match_count_limit[few]=Ավելին քան {{limit}} համընկնումներներ +find_match_count_limit[many]=Ավելին քան {{limit}} համընկնումներներ +find_match_count_limit[other]=Ավելին քան {{limit}} համընկնումներներ +find_not_found=Արտահայտությունը չգտնվեց + +# Predefined zoom values +page_scale_width=Էջի լայնքը +page_scale_fit=Ձգել էջը +page_scale_auto=Ինքնաշխատ +page_scale_actual=Իրական չափը +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages + +# Loading indicator messages +loading_error=Սխալ՝ PDF ֆայլը բացելիս։ +invalid_file_error=Սխալ կամ վնասված PDF ֆայլ: +missing_file_error=PDF ֆայլը բացակայում է: +unexpected_response_error=Սպասարկիչի անսպասելի պատասխան: + +rendering_error=Սխալ՝ էջը ստեղծելիս: + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Ծանոթություն] +password_label=Մուտքագրեք PDF-ի գաղտնաբառը: +password_invalid=Գաղտնաբառը սխալ է: Կրկին փորձեք: +password_ok=Լավ +password_cancel=Չեղարկել + +printing_not_supported=Զգուշացում. Տպելը ամբողջությամբ չի աջակցվում դիտարկիչի կողմից։ +printing_not_ready=Զգուշացում. PDF-ը ամբողջությամբ չի բեռնավորվել տպելու համար: +web_fonts_disabled=Վեբ-տառատեսակները անջատված են. հնարավոր չէ օգտագործել ներկառուցված PDF տառատեսակները: + +# Editor + + +# Editor Parameters + +# Editor aria + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/hye/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hye/viewer.properties new file mode 100644 index 00000000..2e289516 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/hye/viewer.properties @@ -0,0 +1,229 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Նախորդ էջ +previous_label=Նախորդը +next.title=Յաջորդ էջ +next_label=Յաջորդը + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=էջ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}}-ից\u0020 +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}}-ը {{pagesCount}})-ից + +zoom_out.title=Փոքրացնել +zoom_out_label=Փոքրացնել +zoom_in.title=Խոշորացնել +zoom_in_label=Խոշորացնել +zoom.title=Խոշորացում +presentation_mode.title=Անցնել ներկայացման եղանակին +presentation_mode_label=Ներկայացման եղանակ +open_file.title=Բացել նիշքը +open_file_label=Բացել +print.title=Տպել +print_label=Տպել + +# Secondary toolbar and context menu +tools.title=Գործիքներ +tools_label=Գործիքներ +first_page.title=Գնալ դէպի առաջին էջ +first_page_label=Գնալ դէպի առաջին էջ +last_page.title=Գնալ դէպի վերջին էջ +last_page_label=Գնալ դէպի վերջին էջ +page_rotate_cw.title=Պտտել ժամացոյցի սլաքի ուղղութեամբ +page_rotate_cw_label=Պտտել ժամացոյցի սլաքի ուղղութեամբ +page_rotate_ccw.title=Պտտել ժամացոյցի սլաքի հակառակ ուղղութեամբ +page_rotate_ccw_label=Պտտել ժամացոյցի սլաքի հակառակ ուղղութեամբ + +cursor_text_select_tool.title=Միացնել գրոյթ ընտրելու գործիքը +cursor_text_select_tool_label=Գրուածք ընտրելու գործիք +cursor_hand_tool.title=Միացնել ձեռքի գործիքը +cursor_hand_tool_label=Ձեռքի գործիք + +scroll_page.title=Աւգտագործել էջի ոլորում +scroll_page_label=Էջի ոլորում +scroll_vertical.title=Աւգտագործել ուղղահայեաց ոլորում +scroll_vertical_label=Ուղղահայեաց ոլորում +scroll_horizontal.title=Աւգտագործել հորիզոնական ոլորում +scroll_horizontal_label=Հորիզոնական ոլորում +scroll_wrapped.title=Աւգտագործել փաթաթուած ոլորում +scroll_wrapped_label=Փաթաթուած ոլորում + +spread_none.title=Մի միացէք էջի կոնտեքստում +spread_none_label=Չկայ կոնտեքստ +spread_odd.title=Միացէք էջի կոնտեքստին սկսելով՝ կենտ համարակալուած էջերով +spread_odd_label=Տարաւրինակ կոնտեքստ +spread_even.title=Միացէք էջի կոնտեքստին սկսելով՝ զոյգ համարակալուած էջերով +spread_even_label=Հաւասար վերածածկեր + +# Document properties dialog box +document_properties.title=Փաստաթղթի հատկութիւնները… +document_properties_label=Փաստաթղթի յատկութիւնները… +document_properties_file_name=Նիշքի անունը․ +document_properties_file_size=Նիշք չափը. +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} ԿԲ ({{size_b}} բայթ) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} ՄԲ ({{size_b}} բայթ) +document_properties_title=Վերնագիր +document_properties_author=Հեղինակ․ +document_properties_subject=առարկայ +document_properties_keywords=Հիմնաբառեր +document_properties_creation_date=Ստեղծման ամսաթիւ +document_properties_modification_date=Փոփոխութեան ամսաթիւ. +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Ստեղծող +document_properties_producer=PDF-ի Արտադրողը. +document_properties_version=PDF-ի տարբերակը. +document_properties_page_count=Էջերի քանակը. +document_properties_page_size=Էջի չափը. +document_properties_page_size_unit_inches=ում +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=ուղղաձիգ +document_properties_page_size_orientation_landscape=հորիզոնական +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Նամակ +document_properties_page_size_name_legal=Աւրինական +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Արագ վեբ դիտում․ +document_properties_linearized_yes=Այո +document_properties_linearized_no=Ոչ +document_properties_close=Փակել + +print_progress_message=Նախապատրաստում է փաստաթուղթը տպելուն… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Չեղարկել + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Փոխարկել կողային վահանակը +toggle_sidebar_notification2.title=Փոխանջատել կողմնասիւնը (փաստաթուղթը պարունակում է ուրուագիծ/կցորդներ/շերտեր) +toggle_sidebar_label=Փոխարկել կողային վահանակը +document_outline.title=Ցուցադրել փաստաթղթի ուրուագիծը (կրկնակի սեղմէք՝ միաւորները ընդարձակելու/կոծկելու համար) +document_outline_label=Փաստաթղթի ուրուագիծ +attachments.title=Ցուցադրել կցորդները +attachments_label=Կցորդներ +layers.title=Ցուցադրել շերտերը (կրկնահպել վերակայելու բոլոր շերտերը սկզբնադիր վիճակի) +layers_label=Շերտեր +thumbs.title=Ցուցադրել մանրապատկերը +thumbs_label=Մանրապատկեր +current_outline_item.title=Գտէք ընթացիկ գծագրման տարրը +current_outline_item_label=Ընթացիկ գծագրման տարր +findbar.title=Գտնել փաստաթղթում +findbar_label=Որոնում + +additional_layers=Լրացուցիչ շերտեր +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Էջ {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Էջը {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Էջի մանրապատկերը {{page}} + +# Find panel button title and messages +find_input.title=Որոնում +find_input.placeholder=Գտնել փաստաթղթում… +find_previous.title=Գտնել արտայայտութեան նախորդ արտայայտութիւնը +find_previous_label=Նախորդը +find_next.title=Գտիր արտայայտութեան յաջորդ արտայայտութիւնը +find_next_label=Հաջորդը +find_highlight=Գունանշել բոլորը +find_match_case_label=Հաշուի առնել հանգամանքը +find_match_diacritics_label=Հնչիւնատարբերիչ նշանների համապատասխանեցում +find_entire_word_label=Ամբողջ բառերը +find_reached_top=Հասել եք փաստաթղթի վերեւին,շարունակել ներքեւից +find_reached_bottom=Հասել էք փաստաթղթի վերջին, շարունակել վերեւից +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} {{total}}-ի համընկնումից +find_match_count[two]={{current}} {{total}}-ի համընկնումներից +find_match_count[few]={{current}} {{total}}-ի համընկնումներից +find_match_count[many]={{current}} {{total}}-ի համընկնումներից +find_match_count[other]={{current}} {{total}}-ի համընկնումներից +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Աւելին քան {{limit}} համընկնումները +find_match_count_limit[one]=Աւելին քան {{limit}} համընկնումը +find_match_count_limit[two]=Աւելին քան {{limit}} համընկնումները +find_match_count_limit[few]=Աւելին քան {{limit}} համընկնումները +find_match_count_limit[many]=Աւելին քան {{limit}} համընկնումները +find_match_count_limit[other]=Աւելին քան {{limit}} համընկնումները +find_not_found=Արտայայտութիւնը չգտնուեց + +# Predefined zoom values +page_scale_width=Էջի լայնութիւն +page_scale_fit=Հարմարեցնել էջը +page_scale_auto=Ինքնաշխատ խոշորացում +page_scale_actual=Իրական չափը +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF նիշքը բացելիս սխալ է տեղի ունեցել։ +invalid_file_error=Սխալ կամ վնասուած PDF նիշք։ +missing_file_error=PDF նիշքը բացակաիւմ է։ +unexpected_response_error=Սպասարկիչի անսպասելի պատասխան։ + +rendering_error=Սխալ է տեղի ունեցել էջի մեկնաբանման ժամանակ + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Ծանոթութիւն] +password_label=Մուտքագրէք գաղտնաբառը այս PDF նիշքը բացելու համար +password_invalid=Գաղտնաբառը սխալ է: Կրկին փորձէք: +password_ok=Լաւ +password_cancel=Չեղարկել + +printing_not_supported=Զգուշացում. Տպելը ամբողջութեամբ չի աջակցուում զննարկիչի կողմից։ +printing_not_ready=Զգուշացում. PDF֊ը ամբողջութեամբ չի բեռնաւորուել տպելու համար։ +web_fonts_disabled=Վեբ-տառատեսակները անջատուած են. հնարաւոր չէ աւգտագործել ներկառուցուած PDF տառատեսակները։ + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ia/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ia/viewer.properties new file mode 100644 index 00000000..a0e296e7 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ia/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagina previe +previous_label=Previe +next.title=Pagina sequente +next_label=Sequente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Distantiar +zoom_out_label=Distantiar +zoom_in.title=Approximar +zoom_in_label=Approximar +zoom.title=Zoom +presentation_mode.title=Excambiar a modo presentation +presentation_mode_label=Modo presentation +open_file.title=Aperir le file +open_file_label=Aperir +print.title=Imprimer +print_label=Imprimer +save.title=Salvar +save_label=Salvar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Discargar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Discargar +bookmark1.title=Pagina actual (vide le URL del pagina actual) +bookmark1_label=Pagina actual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Aperir in app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Aperir in app + +# Secondary toolbar and context menu +tools.title=Instrumentos +tools_label=Instrumentos +first_page.title=Ir al prime pagina +first_page_label=Ir al prime pagina +last_page.title=Ir al prime pagina +last_page_label=Ir al prime pagina +page_rotate_cw.title=Rotar in senso horari +page_rotate_cw_label=Rotar in senso horari +page_rotate_ccw.title=Rotar in senso antihorari +page_rotate_ccw_label=Rotar in senso antihorari + +cursor_text_select_tool.title=Activar le instrumento de selection de texto +cursor_text_select_tool_label=Instrumento de selection de texto +cursor_hand_tool.title=Activar le instrumento mano +cursor_hand_tool_label=Instrumento mano + +scroll_page.title=Usar rolamento de pagina +scroll_page_label=Rolamento de pagina +scroll_vertical.title=Usar rolamento vertical +scroll_vertical_label=Rolamento vertical +scroll_horizontal.title=Usar rolamento horizontal +scroll_horizontal_label=Rolamento horizontal +scroll_wrapped.title=Usar rolamento incapsulate +scroll_wrapped_label=Rolamento incapsulate + +spread_none.title=Non junger paginas dual +spread_none_label=Sin paginas dual +spread_odd.title=Junger paginas dual a partir de paginas con numeros impar +spread_odd_label=Paginas dual impar +spread_even.title=Junger paginas dual a partir de paginas con numeros par +spread_even_label=Paginas dual par + +# Document properties dialog box +document_properties.title=Proprietates del documento… +document_properties_label=Proprietates del documento… +document_properties_file_name=Nomine del file: +document_properties_file_size=Dimension de file: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titulo: +document_properties_author=Autor: +document_properties_subject=Subjecto: +document_properties_keywords=Parolas clave: +document_properties_creation_date=Data de creation: +document_properties_modification_date=Data de modification: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creator: +document_properties_producer=Productor PDF: +document_properties_version=Version PDF: +document_properties_page_count=Numero de paginas: +document_properties_page_size=Dimension del pagina: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=horizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Littera +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista web rapide: +document_properties_linearized_yes=Si +document_properties_linearized_no=No +document_properties_close=Clauder + +print_progress_message=Preparation del documento pro le impression… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancellar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Monstrar/celar le barra lateral +toggle_sidebar_notification2.title=Monstrar/celar le barra lateral (le documento contine structura/attachamentos/stratos) +toggle_sidebar_label=Monstrar/celar le barra lateral +document_outline.title=Monstrar le schema del documento (clic duple pro expander/contraher tote le elementos) +document_outline_label=Schema del documento +attachments.title=Monstrar le annexos +attachments_label=Annexos +layers.title=Monstrar stratos (clicca duple pro remontar tote le stratos al stato predefinite) +layers_label=Stratos +thumbs.title=Monstrar le vignettes +thumbs_label=Vignettes +current_outline_item.title=Trovar le elemento de structura actual +current_outline_item_label=Elemento de structura actual +findbar.title=Cercar in le documento +findbar_label=Cercar + +additional_layers=Altere stratos +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pagina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Vignette del pagina {{page}} + +# Find panel button title and messages +find_input.title=Cercar +find_input.placeholder=Cercar in le documento… +find_previous.title=Trovar le previe occurrentia del phrase +find_previous_label=Previe +find_next.title=Trovar le successive occurrentia del phrase +find_next_label=Sequente +find_highlight=Evidentiar toto +find_match_case_label=Distinguer majusculas/minusculas +find_match_diacritics_label=Differentiar diacriticos +find_entire_word_label=Parolas integre +find_reached_top=Initio del documento attingite, continuation ab fin +find_reached_bottom=Fin del documento attingite, continuation ab initio +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} concordantia +find_match_count[two]={{current}} de {{total}} concordantias +find_match_count[few]={{current}} de {{total}} concordantias +find_match_count[many]={{current}} de {{total}} concordantias +find_match_count[other]={{current}} de {{total}} concordantias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Plus de {{limit}} concordantias +find_match_count_limit[one]=Plus de {{limit}} concordantia +find_match_count_limit[two]=Plus de {{limit}} concordantias +find_match_count_limit[few]=Plus de {{limit}} concordantias +find_match_count_limit[many]=Plus de {{limit}} correspondentias +find_match_count_limit[other]=Plus de {{limit}} concordantias +find_not_found=Phrase non trovate + +# Predefined zoom values +page_scale_width=Plen largor del pagina +page_scale_fit=Pagina integre +page_scale_auto=Zoom automatic +page_scale_actual=Dimension real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Un error occurreva durante que on cargava le file PDF. +invalid_file_error=File PDF corrumpite o non valide. +missing_file_error=File PDF mancante. +unexpected_response_error=Responsa del servitor inexpectate. +rendering_error=Un error occurreva durante que on processava le pagina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Insere le contrasigno pro aperir iste file PDF. +password_invalid=Contrasigno invalide. Per favor retenta. +password_ok=OK +password_cancel=Cancellar + +printing_not_supported=Attention : le impression non es totalmente supportate per ce navigator. +printing_not_ready=Attention: le file PDF non es integremente cargate pro lo poter imprimer. +web_fonts_disabled=Le typos de litteras web es disactivate: impossibile usar le typos de litteras PDF incorporate. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Designar +editor_ink2_label=Designar + +editor_stamp1.title=Adder o rediger imagines +editor_stamp1_label=Adder o rediger imagines + +free_text2_default_content=Comenciar a scriber… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Dimension +editor_ink_color=Color +editor_ink_thickness=Spissor +editor_ink_opacity=Opacitate + +editor_stamp_add_image_label=Adder imagine +editor_stamp_add_image.title=Adder imagine + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de designos +editor_ink_canvas_aria_label=Imagine create per le usator + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Texto alternative +editor_alt_text_edit_button_label=Rediger texto alternative +editor_alt_text_dialog_label=Elige un option +editor_alt_text_dialog_description=Le texto alternative (alt text) adjuta quando le personas non pote vider le imagine o quando illo non carga. +editor_alt_text_add_description_label=Adder un description +editor_alt_text_add_description_description=Mira a 1-2 phrases que describe le subjecto, parametro, o actiones. +editor_alt_text_mark_decorative_label=Marcar como decorative +editor_alt_text_mark_decorative_description=Isto es usate pro imagines ornamental, como bordaturas o filigranas. +editor_alt_text_cancel_button=Cancellar +editor_alt_text_save_button=Salvar +editor_alt_text_decorative_tooltip=Marcate como decorative +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Per exemplo, “Un juvene sede a un tabula pro mangiar un repasto” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/id/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/id/viewer.properties new file mode 100644 index 00000000..6d82e979 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/id/viewer.properties @@ -0,0 +1,253 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Laman Sebelumnya +previous_label=Sebelumnya +next.title=Laman Selanjutnya +next_label=Selanjutnya + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Halaman +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=dari {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} dari {{pagesCount}}) + +zoom_out.title=Perkecil +zoom_out_label=Perkecil +zoom_in.title=Perbesar +zoom_in_label=Perbesar +zoom.title=Perbesaran +presentation_mode.title=Ganti ke Mode Presentasi +presentation_mode_label=Mode Presentasi +open_file.title=Buka Berkas +open_file_label=Buka +print.title=Cetak +print_label=Cetak +save.title=Simpan +save_label=Simpan + +bookmark1.title=Laman Saat Ini (Lihat URL dari Laman Sekarang) +bookmark1_label=Laman Saat Ini + +# Secondary toolbar and context menu +tools.title=Alat +tools_label=Alat +first_page.title=Buka Halaman Pertama +first_page_label=Buka Halaman Pertama +last_page.title=Buka Halaman Terakhir +last_page_label=Buka Halaman Terakhir +page_rotate_cw.title=Putar Searah Jarum Jam +page_rotate_cw_label=Putar Searah Jarum Jam +page_rotate_ccw.title=Putar Berlawanan Arah Jarum Jam +page_rotate_ccw_label=Putar Berlawanan Arah Jarum Jam + +cursor_text_select_tool.title=Aktifkan Alat Seleksi Teks +cursor_text_select_tool_label=Alat Seleksi Teks +cursor_hand_tool.title=Aktifkan Alat Tangan +cursor_hand_tool_label=Alat Tangan + +scroll_page.title=Gunakan Pengguliran Laman +scroll_page_label=Pengguliran Laman +scroll_vertical.title=Gunakan Penggeseran Vertikal +scroll_vertical_label=Penggeseran Vertikal +scroll_horizontal.title=Gunakan Penggeseran Horizontal +scroll_horizontal_label=Penggeseran Horizontal +scroll_wrapped.title=Gunakan Penggeseran Terapit +scroll_wrapped_label=Penggeseran Terapit + +spread_none.title=Jangan gabungkan lembar halaman +spread_none_label=Tidak Ada Lembaran +spread_odd.title=Gabungkan lembar lamanan mulai dengan halaman ganjil +spread_odd_label=Lembaran Ganjil +spread_even.title=Gabungkan lembar halaman dimulai dengan halaman genap +spread_even_label=Lembaran Genap + +# Document properties dialog box +document_properties.title=Properti Dokumen… +document_properties_label=Properti Dokumen… +document_properties_file_name=Nama berkas: +document_properties_file_size=Ukuran berkas: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} byte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byte) +document_properties_title=Judul: +document_properties_author=Penyusun: +document_properties_subject=Subjek: +document_properties_keywords=Kata Kunci: +document_properties_creation_date=Tanggal Dibuat: +document_properties_modification_date=Tanggal Dimodifikasi: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Pembuat: +document_properties_producer=Pemroduksi PDF: +document_properties_version=Versi PDF: +document_properties_page_count=Jumlah Halaman: +document_properties_page_size=Ukuran Laman: +document_properties_page_size_unit_inches=inci +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=tegak +document_properties_page_size_orientation_landscape=mendatar +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Tampilan Web Kilat: +document_properties_linearized_yes=Ya +document_properties_linearized_no=Tidak +document_properties_close=Tutup + +print_progress_message=Menyiapkan dokumen untuk pencetakan… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Batalkan + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Aktif/Nonaktifkan Bilah Samping +toggle_sidebar_notification2.title=Aktif/Nonaktifkan Bilah Samping (dokumen berisi kerangka/lampiran/lapisan) +toggle_sidebar_label=Aktif/Nonaktifkan Bilah Samping +document_outline.title=Tampilkan Kerangka Dokumen (klik ganda untuk membentangkan/menciutkan semua item) +document_outline_label=Kerangka Dokumen +attachments.title=Tampilkan Lampiran +attachments_label=Lampiran +layers.title=Tampilkan Lapisan (klik ganda untuk mengatur ulang semua lapisan ke keadaan baku) +layers_label=Lapisan +thumbs.title=Tampilkan Miniatur +thumbs_label=Miniatur +current_outline_item.title=Cari Butir Ikhtisar Saat Ini +current_outline_item_label=Butir Ikhtisar Saat Ini +findbar.title=Temukan di Dokumen +findbar_label=Temukan + +additional_layers=Lapisan Tambahan +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Halaman {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Laman {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatur Laman {{page}} + +# Find panel button title and messages +find_input.title=Temukan +find_input.placeholder=Temukan di dokumen… +find_previous.title=Temukan kata sebelumnya +find_previous_label=Sebelumnya +find_next.title=Temukan lebih lanjut +find_next_label=Selanjutnya +find_highlight=Sorot semuanya +find_match_case_label=Cocokkan BESAR/kecil +find_match_diacritics_label=Pencocokan Diakritik +find_entire_word_label=Seluruh teks +find_reached_top=Sampai di awal dokumen, dilanjutkan dari bawah +find_reached_bottom=Sampai di akhir dokumen, dilanjutkan dari atas +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} dari {{total}} hasil +find_match_count[two]={{current}} dari {{total}} hasil +find_match_count[few]={{current}} dari {{total}} hasil +find_match_count[many]={{current}} dari {{total}} hasil +find_match_count[other]={{current}} dari {{total}} hasil +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Ditemukan lebih dari {{limit}} +find_match_count_limit[one]=Ditemukan lebih dari {{limit}} +find_match_count_limit[two]=Ditemukan lebih dari {{limit}} +find_match_count_limit[few]=Ditemukan lebih dari {{limit}} +find_match_count_limit[many]=Ditemukan lebih dari {{limit}} +find_match_count_limit[other]=Ditemukan lebih dari {{limit}} +find_not_found=Frasa tidak ditemukan + +# Predefined zoom values +page_scale_width=Lebar Laman +page_scale_fit=Muat Laman +page_scale_auto=Perbesaran Otomatis +page_scale_actual=Ukuran Asli +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Galat terjadi saat memuat PDF. +invalid_file_error=Berkas PDF tidak valid atau rusak. +missing_file_error=Berkas PDF tidak ada. +unexpected_response_error=Balasan server yang tidak diharapkan. + +rendering_error=Galat terjadi saat merender laman. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotasi {{type}}] +password_label=Masukkan sandi untuk membuka berkas PDF ini. +password_invalid=Sandi tidak valid. Silakan coba lagi. +password_ok=Oke +password_cancel=Batal + +printing_not_supported=Peringatan: Pencetakan tidak didukung secara lengkap pada peramban ini. +printing_not_ready=Peringatan: Berkas PDF masih belum dimuat secara lengkap untuk dapat dicetak. +web_fonts_disabled=Font web dinonaktifkan: tidak dapat menggunakan font PDF yang tersemat. + +# Editor +editor_free_text2.title=Teks +editor_free_text2_label=Teks +editor_ink2.title=Gambar +editor_ink2_label=Gambar + +free_text2_default_content=Mulai mengetik… + +# Editor Parameters +editor_free_text_color=Warna +editor_free_text_size=Ukuran +editor_ink_color=Warna +editor_ink_thickness=Ketebalan +editor_ink_opacity=Opasitas + +# Editor aria +editor_free_text2_aria_label=Editor Teks +editor_ink2_aria_label=Editor Gambar +editor_ink_canvas_aria_label=Gambar yang dibuat pengguna diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/is/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/is/viewer.properties new file mode 100644 index 00000000..4b40c1b6 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/is/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Fyrri síða +previous_label=Fyrri +next.title=Næsta síða +next_label=Næsti + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Síða +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=af {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} af {{pagesCount}}) + +zoom_out.title=Minnka aðdrátt +zoom_out_label=Minnka aðdrátt +zoom_in.title=Auka aðdrátt +zoom_in_label=Auka aðdrátt +zoom.title=Aðdráttur +presentation_mode.title=Skipta yfir á kynningarham +presentation_mode_label=Kynningarhamur +open_file.title=Opna skrá +open_file_label=Opna +print.title=Prenta +print_label=Prenta +save.title=Vista +save_label=Vista +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Sækja +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Sækja +bookmark1.title=Núverandi síða (Skoða vefslóð frá núverandi síðu) +bookmark1_label=Núverandi síða +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Opna í smáforriti +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Opna í smáforriti + +# Secondary toolbar and context menu +tools.title=Verkfæri +tools_label=Verkfæri +first_page.title=Fara á fyrstu síðu +first_page_label=Fara á fyrstu síðu +last_page.title=Fara á síðustu síðu +last_page_label=Fara á síðustu síðu +page_rotate_cw.title=Snúa réttsælis +page_rotate_cw_label=Snúa réttsælis +page_rotate_ccw.title=Snúa rangsælis +page_rotate_ccw_label=Snúa rangsælis + +cursor_text_select_tool.title=Virkja textavalsáhald +cursor_text_select_tool_label=Textavalsáhald +cursor_hand_tool.title=Virkja handarverkfæri +cursor_hand_tool_label=Handarverkfæri + +scroll_page.title=Nota síðuskrun +scroll_page_label=Síðuskrun +scroll_vertical.title=Nota lóðrétt skrun +scroll_vertical_label=Lóðrétt skrun +scroll_horizontal.title=Nota lárétt skrun +scroll_horizontal_label=Lárétt skrun +scroll_wrapped.title=Nota línuskipt síðuskrun +scroll_wrapped_label=Línuskipt síðuskrun + +spread_none.title=Ekki taka þátt í dreifingu síðna +spread_none_label=Engin dreifing +spread_odd.title=Taka þátt í dreifingu síðna með oddatölum +spread_odd_label=Oddatöludreifing +spread_even.title=Taktu þátt í dreifingu síðna með jöfnuntölum +spread_even_label=Jafnatöludreifing + +# Document properties dialog box +document_properties.title=Eiginleikar skjals… +document_properties_label=Eiginleikar skjals… +document_properties_file_name=Skráarnafn: +document_properties_file_size=Skrárstærð: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titill: +document_properties_author=Hönnuður: +document_properties_subject=Efni: +document_properties_keywords=Stikkorð: +document_properties_creation_date=Búið til: +document_properties_modification_date=Dags breytingar: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Höfundur: +document_properties_producer=PDF framleiðandi: +document_properties_version=PDF útgáfa: +document_properties_page_count=Blaðsíðufjöldi: +document_properties_page_size=Stærð síðu: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=skammsnið +document_properties_page_size_orientation_landscape=langsnið +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fljótleg vefskoðun: +document_properties_linearized_yes=Já +document_properties_linearized_no=Nei +document_properties_close=Loka + +print_progress_message=Undirbý skjal fyrir prentun… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Hætta við + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Víxla hliðarspjaldi af/á +toggle_sidebar_notification2.title=Víxla hliðarslá (skjal inniheldur yfirlit/viðhengi/lög) +toggle_sidebar_label=Víxla hliðarspjaldi af/á +document_outline.title=Sýna yfirlit skjals (tvísmelltu til að opna/loka öllum hlutum) +document_outline_label=Efnisskipan skjals +attachments.title=Sýna viðhengi +attachments_label=Viðhengi +layers.title=Birta lög (tvísmelltu til að endurstilla öll lög í sjálfgefna stöðu) +layers_label=Lög +thumbs.title=Sýna smámyndir +thumbs_label=Smámyndir +current_outline_item.title=Finna núverandi atriði efnisskipunar +current_outline_item_label=Núverandi atriði efnisskipunar +findbar.title=Leita í skjali +findbar_label=Leita + +additional_layers=Viðbótarlög +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Síða {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Síða {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Smámynd af síðu {{page}} + +# Find panel button title and messages +find_input.title=Leita +find_input.placeholder=Leita í skjali… +find_previous.title=Leita að fyrra tilfelli þessara orða +find_previous_label=Fyrri +find_next.title=Leita að næsta tilfelli þessara orða +find_next_label=Næsti +find_highlight=Lita allt +find_match_case_label=Passa við stafstöðu +find_match_diacritics_label=Passa við broddstafi +find_entire_word_label=Heil orð +find_reached_top=Náði efst í skjal, held áfram neðst +find_reached_bottom=Náði enda skjals, held áfram efst +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} af {{total}} niðurstöðu +find_match_count[two]={{current}} af {{total}} niðurstöðum +find_match_count[few]={{current}} af {{total}} niðurstöðum +find_match_count[many]={{current}} af {{total}} niðurstöðum +find_match_count[other]={{current}} af {{total}} niðurstöðum +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Fleiri en {{limit}} niðurstöður +find_match_count_limit[one]=Fleiri en {{limit}} niðurstaða +find_match_count_limit[two]=Fleiri en {{limit}} niðurstöður +find_match_count_limit[few]=Fleiri en {{limit}} niðurstöður +find_match_count_limit[many]=Fleiri en {{limit}} niðurstöður +find_match_count_limit[other]=Fleiri en {{limit}} niðurstöður +find_not_found=Fann ekki orðið + +# Predefined zoom values +page_scale_width=Síðubreidd +page_scale_fit=Passa á síðu +page_scale_auto=Sjálfvirkur aðdráttur +page_scale_actual=Raunstærð +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Villa kom upp við að hlaða inn PDF. +invalid_file_error=Ógild eða skemmd PDF skrá. +missing_file_error=Vantar PDF skrá. +unexpected_response_error=Óvænt svar frá netþjóni. +rendering_error=Upp kom villa við að birta síðuna. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Skýring] +password_label=Sláðu inn lykilorð til að opna þessa PDF skrá. +password_invalid=Ógilt lykilorð. Reyndu aftur. +password_ok=Í lagi +password_cancel=Hætta við + +printing_not_supported=Aðvörun: Prentun er ekki með fyllilegan stuðning á þessum vafra. +printing_not_ready=Aðvörun: Ekki er búið að hlaða inn allri PDF skránni fyrir prentun. +web_fonts_disabled=Vef leturgerðir eru óvirkar: get ekki notað innbyggðar PDF leturgerðir. + +# Editor +editor_free_text2.title=Texti +editor_free_text2_label=Texti +editor_ink2.title=Teikna +editor_ink2_label=Teikna + +editor_stamp1.title=Bæta við eða breyta myndum +editor_stamp1_label=Bæta við eða breyta myndum + +free_text2_default_content=Byrjaðu að skrifa… + +# Editor Parameters +editor_free_text_color=Litur +editor_free_text_size=Stærð +editor_ink_color=Litur +editor_ink_thickness=Þykkt +editor_ink_opacity=Ógegnsæi + +editor_stamp_add_image_label=Bæta við mynd +editor_stamp_add_image.title=Bæta við mynd + +# Editor aria +editor_free_text2_aria_label=Textaritill +editor_ink2_aria_label=Teikniritill +editor_ink_canvas_aria_label=Mynd gerð af notanda + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alt-varatexti +editor_alt_text_edit_button_label=Breyta alt-varatexta +editor_alt_text_dialog_label=Veldu valkost +editor_alt_text_dialog_description=Alt-varatexti (auka-myndatexti) hjálpar þegar fólk getur ekki séð myndina eða þegar hún hleðst ekki inn. +editor_alt_text_add_description_label=Bættu við lýsingu +editor_alt_text_add_description_description=Reyndu að takmarka þetta við 1-2 setningar sem lýsa efninu, umhverfi eða aðgerðum. +editor_alt_text_mark_decorative_label=Merkja sem skraut +editor_alt_text_mark_decorative_description=Þetta er notað fyrir skrautmyndir, eins og borða eða vatnsmerki. +editor_alt_text_cancel_button=Hætta við +editor_alt_text_save_button=Vista +editor_alt_text_decorative_tooltip=Merkt sem skraut +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Til dæmis: „Ungur maður sest við borð til að snæða máltíð“ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/it/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/it/viewer.properties new file mode 100644 index 00000000..99064248 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/it/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagina precedente +previous_label=Precedente +next.title=Pagina successiva +next_label=Successiva + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=di {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} di {{pagesCount}}) + +zoom_out.title=Riduci zoom +zoom_out_label=Riduci zoom +zoom_in.title=Aumenta zoom +zoom_in_label=Aumenta zoom +zoom.title=Zoom +presentation_mode.title=Passa alla modalità presentazione +presentation_mode_label=Modalità presentazione +open_file.title=Apri file +open_file_label=Apri +print.title=Stampa +print_label=Stampa +save.title=Salva +save_label=Salva +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Scarica +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Scarica +bookmark1.title=Pagina corrente (mostra URL della pagina corrente) +bookmark1_label=Pagina corrente +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Apri in app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Apri in app + +# Secondary toolbar and context menu +tools.title=Strumenti +tools_label=Strumenti +first_page.title=Vai alla prima pagina +first_page_label=Vai alla prima pagina +last_page.title=Vai all’ultima pagina +last_page_label=Vai all’ultima pagina +page_rotate_cw.title=Ruota in senso orario +page_rotate_cw_label=Ruota in senso orario +page_rotate_ccw.title=Ruota in senso antiorario +page_rotate_ccw_label=Ruota in senso antiorario + +cursor_text_select_tool.title=Attiva strumento di selezione testo +cursor_text_select_tool_label=Strumento di selezione testo +cursor_hand_tool.title=Attiva strumento mano +cursor_hand_tool_label=Strumento mano + +scroll_page.title=Utilizza scorrimento pagine +scroll_page_label=Scorrimento pagine +scroll_vertical.title=Scorri le pagine in verticale +scroll_vertical_label=Scorrimento verticale +scroll_horizontal.title=Scorri le pagine in orizzontale +scroll_horizontal_label=Scorrimento orizzontale +scroll_wrapped.title=Scorri le pagine in verticale, disponendole da sinistra a destra e andando a capo automaticamente +scroll_wrapped_label=Scorrimento con a capo automatico + +spread_none.title=Non raggruppare pagine +spread_none_label=Nessun raggruppamento +spread_odd.title=Crea gruppi di pagine che iniziano con numeri di pagina dispari +spread_odd_label=Raggruppamento dispari +spread_even.title=Crea gruppi di pagine che iniziano con numeri di pagina pari +spread_even_label=Raggruppamento pari + +# Document properties dialog box +document_properties.title=Proprietà del documento… +document_properties_label=Proprietà del documento… +document_properties_file_name=Nome file: +document_properties_file_size=Dimensione file: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} byte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byte) +document_properties_title=Titolo: +document_properties_author=Autore: +document_properties_subject=Oggetto: +document_properties_keywords=Parole chiave: +document_properties_creation_date=Data creazione: +document_properties_modification_date=Data modifica: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Autore originale: +document_properties_producer=Produttore PDF: +document_properties_version=Versione PDF: +document_properties_page_count=Conteggio pagine: +document_properties_page_size=Dimensioni pagina: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=verticale +document_properties_page_size_orientation_landscape=orizzontale +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Lettera +document_properties_page_size_name_legal=Legale +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Visualizzazione web veloce: +document_properties_linearized_yes=Sì +document_properties_linearized_no=No +document_properties_close=Chiudi + +print_progress_message=Preparazione documento per la stampa… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Annulla + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Attiva/disattiva barra laterale +toggle_sidebar_notification2.title=Attiva/disattiva barra laterale (il documento contiene struttura/allegati/livelli) +toggle_sidebar_label=Attiva/disattiva barra laterale +document_outline.title=Visualizza la struttura del documento (doppio clic per visualizzare/comprimere tutti gli elementi) +document_outline_label=Struttura documento +attachments.title=Visualizza allegati +attachments_label=Allegati +layers.title=Visualizza livelli (doppio clic per ripristinare tutti i livelli allo stato predefinito) +layers_label=Livelli +thumbs.title=Mostra le miniature +thumbs_label=Miniature +current_outline_item.title=Trova elemento struttura corrente +current_outline_item_label=Elemento struttura corrente +findbar.title=Trova nel documento +findbar_label=Trova + +additional_layers=Livelli aggiuntivi +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pagina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura della pagina {{page}} + +# Find panel button title and messages +find_input.title=Trova +find_input.placeholder=Trova nel documento… +find_previous.title=Trova l’occorrenza precedente del testo da cercare +find_previous_label=Precedente +find_next.title=Trova l’occorrenza successiva del testo da cercare +find_next_label=Successivo +find_highlight=Evidenzia +find_match_case_label=Maiuscole/minuscole +find_match_diacritics_label=Segni diacritici +find_entire_word_label=Parole intere +find_reached_top=Raggiunto l’inizio della pagina, continua dalla fine +find_reached_bottom=Raggiunta la fine della pagina, continua dall’inizio +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} di {{total}} corrispondenza +find_match_count[two]={{current}} di {{total}} corrispondenze +find_match_count[few]={{current}} di {{total}} corrispondenze +find_match_count[many]={{current}} di {{total}} corrispondenze +find_match_count[other]={{current}} di {{total}} corrispondenze +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Più di {{limit}} corrispondenze +find_match_count_limit[one]=Più di {{limit}} corrispondenza +find_match_count_limit[two]=Più di {{limit}} corrispondenze +find_match_count_limit[few]=Più di {{limit}} corrispondenze +find_match_count_limit[many]=Più di {{limit}} corrispondenze +find_match_count_limit[other]=Più di {{limit}} corrispondenze +find_not_found=Testo non trovato + +# Predefined zoom values +page_scale_width=Larghezza pagina +page_scale_fit=Adatta a una pagina +page_scale_auto=Zoom automatico +page_scale_actual=Dimensioni effettive +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Si è verificato un errore durante il caricamento del PDF. +invalid_file_error=File PDF non valido o danneggiato. +missing_file_error=File PDF non disponibile. +unexpected_response_error=Risposta imprevista del server +rendering_error=Si è verificato un errore durante il rendering della pagina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Annotazione: {{type}}] +password_label=Inserire la password per aprire questo file PDF. +password_invalid=Password non corretta. Riprovare. +password_ok=OK +password_cancel=Annulla + +printing_not_supported=Attenzione: la stampa non è completamente supportata da questo browser. +printing_not_ready=Attenzione: il PDF non è ancora stato caricato completamente per la stampa. +web_fonts_disabled=I web font risultano disattivati: impossibile utilizzare i caratteri incorporati nel PDF. + +# Editor +editor_free_text2.title=Testo +editor_free_text2_label=Testo +editor_ink2.title=Disegno +editor_ink2_label=Disegno + +editor_stamp1.title=Aggiungi o rimuovi immagine +editor_stamp1_label=Aggiungi o rimuovi immagine + +free_text2_default_content=Inizia a digitare… + +# Editor Parameters +editor_free_text_color=Colore +editor_free_text_size=Dimensione +editor_ink_color=Colore +editor_ink_thickness=Spessore +editor_ink_opacity=Opacità + +editor_stamp_add_image_label=Aggiungi immagine +editor_stamp_add_image.title=Aggiungi immagine + +# Editor aria +editor_free_text2_aria_label=Editor di testo +editor_ink2_aria_label=Editor disegni +editor_ink_canvas_aria_label=Immagine creata dall’utente + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Testo alternativo +editor_alt_text_edit_button_label=Modifica testo alternativo +editor_alt_text_dialog_label=Scegli un’opzione +editor_alt_text_dialog_description=Il testo alternativo (“alt text”) aiuta quando le persone non possono vedere l’immagine o quando l’immagine non viene caricata. +editor_alt_text_add_description_label=Aggiungi una descrizione +editor_alt_text_add_description_description=Punta a una o due frasi che descrivono l’argomento, l’ambientazione o le azioni. +editor_alt_text_mark_decorative_label=Contrassegna come decorativa +editor_alt_text_mark_decorative_description=Viene utilizzato per immagini ornamentali, come bordi o filigrane. +editor_alt_text_cancel_button=Annulla +editor_alt_text_save_button=Salva +editor_alt_text_decorative_tooltip=Contrassegnata come decorativa +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Ad esempio, “Un giovane si siede a tavola per mangiare” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ja/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ja/viewer.properties new file mode 100644 index 00000000..797e6e6e --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ja/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=前のページへ戻ります +previous_label=前へ +next.title=次のページへ進みます +next_label=次へ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ページ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=表示を縮小します +zoom_out_label=縮小 +zoom_in.title=表示を拡大します +zoom_in_label=拡大 +zoom.title=拡大/縮小 +presentation_mode.title=プレゼンテーションモードに切り替えます +presentation_mode_label=プレゼンテーションモード +open_file.title=ファイルを開きます +open_file_label=開く +print.title=印刷します +print_label=印刷 +save.title=保存します +save_label=保存 +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=ダウンロードします +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=ダウンロード +bookmark1.title=現在のページの URL です (現在のページを表示する URL) +bookmark1_label=現在のページ +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=アプリで開く +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=アプリで開く + +# Secondary toolbar and context menu +tools.title=ツール +tools_label=ツール +first_page.title=最初のページへ移動します +first_page_label=最初のページへ移動 +last_page.title=最後のページへ移動します +last_page_label=最後のページへ移動 +page_rotate_cw.title=ページを右へ回転します +page_rotate_cw_label=右回転 +page_rotate_ccw.title=ページを左へ回転します +page_rotate_ccw_label=左回転 + +cursor_text_select_tool.title=テキスト選択ツールを有効にします +cursor_text_select_tool_label=テキスト選択ツール +cursor_hand_tool.title=手のひらツールを有効にします +cursor_hand_tool_label=手のひらツール + +scroll_page.title=ページ単位でスクロールします +scroll_page_label=ページ単位でスクロール +scroll_vertical.title=縦スクロールにします +scroll_vertical_label=縦スクロール +scroll_horizontal.title=横スクロールにします +scroll_horizontal_label=横スクロール +scroll_wrapped.title=折り返しスクロールにします +scroll_wrapped_label=折り返しスクロール + +spread_none.title=見開きにしません +spread_none_label=見開きにしない +spread_odd.title=奇数ページ開始で見開きにします +spread_odd_label=奇数ページ見開き +spread_even.title=偶数ページ開始で見開きにします +spread_even_label=偶数ページ見開き + +# Document properties dialog box +document_properties.title=文書のプロパティ... +document_properties_label=文書のプロパティ... +document_properties_file_name=ファイル名: +document_properties_file_size=ファイルサイズ: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} バイト) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} バイト) +document_properties_title=タイトル: +document_properties_author=作成者: +document_properties_subject=件名: +document_properties_keywords=キーワード: +document_properties_creation_date=作成日: +document_properties_modification_date=更新日: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=アプリケーション: +document_properties_producer=PDF 作成: +document_properties_version=PDF のバージョン: +document_properties_page_count=ページ数: +document_properties_page_size=ページサイズ: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=縦 +document_properties_page_size_orientation_landscape=横 +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=レター +document_properties_page_size_name_legal=リーガル +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=ウェブ表示用に最適化: +document_properties_linearized_yes=はい +document_properties_linearized_no=いいえ +document_properties_close=閉じる + +print_progress_message=文書の印刷を準備しています... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=キャンセル + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=サイドバー表示を切り替えます +toggle_sidebar_notification2.title=サイドバー表示を切り替えます (文書に含まれるアウトライン / 添付 / レイヤー) +toggle_sidebar_label=サイドバーの切り替え +document_outline.title=文書の目次を表示します (ダブルクリックで項目を開閉します) +document_outline_label=文書の目次 +attachments.title=添付ファイルを表示します +attachments_label=添付ファイル +layers.title=レイヤーを表示します (ダブルクリックですべてのレイヤーが初期状態に戻ります) +layers_label=レイヤー +thumbs.title=縮小版を表示します +thumbs_label=縮小版 +current_outline_item.title=現在のアウトライン項目を検索 +current_outline_item_label=現在のアウトライン項目 +findbar.title=文書内を検索します +findbar_label=検索 + +additional_layers=追加レイヤー +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}} ページ +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} ページ +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} ページの縮小版 + +# Find panel button title and messages +find_input.title=検索 +find_input.placeholder=文書内を検索... +find_previous.title=現在より前の位置で指定文字列が現れる部分を検索します +find_previous_label=前へ +find_next.title=現在より後の位置で指定文字列が現れる部分を検索します +find_next_label=次へ +find_highlight=すべて強調表示 +find_match_case_label=大文字/小文字を区別 +find_match_diacritics_label=発音区別符号を区別 +find_entire_word_label=単語一致 +find_reached_top=文書先頭に到達したので末尾から続けて検索します +find_reached_bottom=文書末尾に到達したので先頭から続けて検索します +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} 件中 {{current}} 件目 +find_match_count[two]={{total}} 件中 {{current}} 件目 +find_match_count[few]={{total}} 件中 {{current}} 件目 +find_match_count[many]={{total}} 件中 {{current}} 件目 +find_match_count[other]={{total}} 件中 {{current}} 件目 +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} 件以上一致 +find_match_count_limit[one]={{limit}} 件以上一致 +find_match_count_limit[two]={{limit}} 件以上一致 +find_match_count_limit[few]={{limit}} 件以上一致 +find_match_count_limit[many]={{limit}} 件以上一致 +find_match_count_limit[other]={{limit}} 件以上一致 +find_not_found=見つかりませんでした + +# Predefined zoom values +page_scale_width=幅に合わせる +page_scale_fit=ページのサイズに合わせる +page_scale_auto=自動ズーム +page_scale_actual=実際のサイズ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF の読み込み中にエラーが発生しました。 +invalid_file_error=無効または破損した PDF ファイル。 +missing_file_error=PDF ファイルが見つかりません。 +unexpected_response_error=サーバーから予期せぬ応答がありました。 +rendering_error=ページのレンダリング中にエラーが発生しました。 + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} 注釈] +password_label=この PDF ファイルを開くためのパスワードを入力してください。 +password_invalid=無効なパスワードです。もう一度やり直してください。 +password_ok=OK +password_cancel=キャンセル + +printing_not_supported=警告: このブラウザーでは印刷が完全にサポートされていません。 +printing_not_ready=警告: PDF を印刷するための読み込みが終了していません。 +web_fonts_disabled=ウェブフォントが無効になっています: 埋め込まれた PDF のフォントを使用できません。 + +# Editor +editor_free_text2.title=フリーテキスト注釈 +editor_free_text2_label=フリーテキスト注釈 +editor_ink2.title=インク注釈 +editor_ink2_label=インク注釈 + +editor_stamp.title=画像を追加します +editor_stamp_label=画像を追加 + +editor_stamp1.title=画像を追加または編集します +editor_stamp1_label=画像を追加または編集 + +free_text2_default_content=テキストを入力してください... + +# Editor Parameters +editor_free_text_color=色 +editor_free_text_size=サイズ +editor_ink_color=色 +editor_ink_thickness=太さ +editor_ink_opacity=不透明度 + +editor_stamp_add_image_label=画像を追加 +editor_stamp_add_image.title=画像を追加します + +# Editor aria +editor_free_text2_aria_label=フリーテキスト注釈エディター +editor_ink2_aria_label=インク注釈エディター +editor_ink_canvas_aria_label=ユーザー作成画像 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ka/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ka/viewer.properties new file mode 100644 index 00000000..9ea7a963 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ka/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=წინა გვერდი +previous_label=წინა +next.title=შემდეგი გვერდი +next_label=შემდეგი + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=გვერდი +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}}-დან +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} {{pagesCount}}-დან) + +zoom_out.title=ზომის შემცირება +zoom_out_label=დაშორება +zoom_in.title=ზომის გაზრდა +zoom_in_label=მოახლოება +zoom.title=ზომა +presentation_mode.title=ჩვენების რეჟიმზე გადართვა +presentation_mode_label=ჩვენების რეჟიმი +open_file.title=ფაილის გახსნა +open_file_label=გახსნა +print.title=ამობეჭდვა +print_label=ამობეჭდვა +save.title=შენახვა +save_label=შენახვა +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=ჩამოტვირთვა +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=ჩამოტვირთვა +bookmark1.title=მიმდინარე გვერდი (ბმული ამ გვერდისთვის) +bookmark1_label=მიმდინარე გვერდი +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=გახსნა პროგრამით +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=გახსნა პროგრამით + +# Secondary toolbar and context menu +tools.title=ხელსაწყოები +tools_label=ხელსაწყოები +first_page.title=პირველ გვერდზე გადასვლა +first_page_label=პირველ გვერდზე გადასვლა +last_page.title=ბოლო გვერდზე გადასვლა +last_page_label=ბოლო გვერდზე გადასვლა +page_rotate_cw.title=საათის ისრის მიმართულებით შებრუნება +page_rotate_cw_label=მარჯვნივ გადაბრუნება +page_rotate_ccw.title=საათის ისრის საპირისპიროდ შებრუნება +page_rotate_ccw_label=მარცხნივ გადაბრუნება + +cursor_text_select_tool.title=მოსანიშნი მაჩვენებლის გამოყენება +cursor_text_select_tool_label=მოსანიშნი მაჩვენებელი +cursor_hand_tool.title=გადასაადგილებელი მაჩვენებლის გამოყენება +cursor_hand_tool_label=გადასაადგილებელი + +scroll_page.title=გვერდზე გადაადგილების გამოყენება +scroll_page_label=გვერდზე გადაადგილება +scroll_vertical.title=გვერდების შვეულად ჩვენება +scroll_vertical_label=შვეული გადაადგილება +scroll_horizontal.title=გვერდების თარაზულად ჩვენება +scroll_horizontal_label=განივი გადაადგილება +scroll_wrapped.title=გვერდების ცხრილურად ჩვენება +scroll_wrapped_label=ცხრილური გადაადგილება + +spread_none.title=ორ გვერდზე გაშლის გარეშე +spread_none_label=ცალგვერდიანი ჩვენება +spread_odd.title=ორ გვერდზე გაშლა, კენტი გვერდიდან დაწყებული +spread_odd_label=ორ გვერდზე კენტიდან +spread_even.title=ორ გვერდზე გაშლა, ლუწი გვერდიდან დაწყებული +spread_even_label=ორ გვერდზე ლუწიდან + +# Document properties dialog box +document_properties.title=დოკუმენტის შესახებ… +document_properties_label=დოკუმენტის შესახებ… +document_properties_file_name=ფაილის სახელი: +document_properties_file_size=ფაილის მოცულობა: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} კბ ({{size_b}} ბაიტი) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} მბ ({{size_b}} ბაიტი) +document_properties_title=სათაური: +document_properties_author=შემქმნელი: +document_properties_subject=თემა: +document_properties_keywords=საკვანძო სიტყვები: +document_properties_creation_date=შექმნის დრო: +document_properties_modification_date=ჩასწორების დრო: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=გამომცემი: +document_properties_producer=PDF-შემდგენელი: +document_properties_version=PDF-ვერსია: +document_properties_page_count=გვერდები: +document_properties_page_size=გვერდის ზომა: +document_properties_page_size_unit_inches=დუიმი +document_properties_page_size_unit_millimeters=მმ +document_properties_page_size_orientation_portrait=შვეულად +document_properties_page_size_orientation_landscape=თარაზულად +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=მსუბუქი ვებჩვენება: +document_properties_linearized_yes=დიახ +document_properties_linearized_no=არა +document_properties_close=დახურვა + +print_progress_message=დოკუმენტი მზადდება ამოსაბეჭდად… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=გაუქმება + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=გვერდითა ზოლის გამოჩენა/დამალვა +toggle_sidebar_notification2.title=გვერდითი ზოლის გამოჩენა (შეიცავს სარჩევს/დანართს/ფენებს) +toggle_sidebar_label=გვერდითა ზოლის გამოჩენა/დამალვა +document_outline.title=დოკუმენტის სარჩევის ჩვენება (ორმაგი წკაპით თითოეულის ჩამოშლა/აკეცვა) +document_outline_label=დოკუმენტის სარჩევი +attachments.title=დანართების ჩვენება +attachments_label=დანართები +layers.title=ფენების გამოჩენა (ორმაგი წკაპით ყველა ფენის ნაგულისხმევზე დაბრუნება) +layers_label=ფენები +thumbs.title=შეთვალიერება +thumbs_label=ესკიზები +current_outline_item.title=მიმდინარე გვერდის მონახვა სარჩევში +current_outline_item_label=მიმდინარე გვერდი სარჩევში +findbar.title=პოვნა დოკუმენტში +findbar_label=ძიება + +additional_layers=დამატებითი ფენები +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=გვერდი {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=გვერდი {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=გვერდის შეთვალიერება {{page}} + +# Find panel button title and messages +find_input.title=ძიება +find_input.placeholder=პოვნა დოკუმენტში… +find_previous.title=ფრაზის წინა კონტექსტის პოვნა +find_previous_label=წინა +find_next.title=ფრაზის შემდეგი კონტექსტის პოვნა +find_next_label=შემდეგი +find_highlight=ყველას მონიშვნა +find_match_case_label=მთავრულით +find_match_diacritics_label=ნიშნებით +find_entire_word_label=მთლიანი სიტყვები +find_reached_top=მიღწეულია დოკუმენტის დასაწყისი, გრძელდება ბოლოდან +find_reached_bottom=მიღწეულია დოკუმენტის ბოლო, გრძელდება დასაწყისიდან +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} / {{total}} თანხვედრიდან +find_match_count[two]={{current}} / {{total}} თანხვედრიდან +find_match_count[few]={{current}} / {{total}} თანხვედრიდან +find_match_count[many]={{current}} / {{total}} თანხვედრიდან +find_match_count[other]={{current}} / {{total}} თანხვედრიდან +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=არანაკლებ {{limit}} თანხვედრა +find_match_count_limit[one]=არანაკლებ {{limit}} თანხვედრა +find_match_count_limit[two]=არანაკლებ {{limit}} თანხვედრა +find_match_count_limit[few]=არანაკლებ {{limit}} თანხვედრა +find_match_count_limit[many]=არანაკლებ {{limit}} თანხვედრა +find_match_count_limit[other]=არანაკლებ {{limit}} თანხვედრა +find_not_found=ფრაზა ვერ მოიძებნა + +# Predefined zoom values +page_scale_width=გვერდის სიგანეზე +page_scale_fit=მთლიანი გვერდი +page_scale_auto=ავტომატური +page_scale_actual=საწყისი ზომა +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=შეცდომა, PDF-ფაილის ჩატვირთვისას. +invalid_file_error=არამართებული ან დაზიანებული PDF-ფაილი. +missing_file_error=ნაკლული PDF-ფაილი. +unexpected_response_error=სერვერის მოულოდნელი პასუხი. +rendering_error=შეცდომა, გვერდის ჩვენებისას. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} შენიშვნა] +password_label=შეიყვანეთ პაროლი PDF-ფაილის გასახსნელად. +password_invalid=არასწორი პაროლი. გთხოვთ, სცადოთ ხელახლა. +password_ok=კარგი +password_cancel=გაუქმება + +printing_not_supported=გაფრთხილება: ამობეჭდვა ამ ბრაუზერში არაა სრულად მხარდაჭერილი. +printing_not_ready=გაფრთხილება: PDF სრულად ჩატვირთული არაა, ამობეჭდვის დასაწყებად. +web_fonts_disabled=ვებშრიფტები გამორთულია: ჩაშენებული PDF-შრიფტების გამოყენება ვერ ხერხდება. + +# Editor +editor_free_text2.title=წარწერა +editor_free_text2_label=ტექსტი +editor_ink2.title=დახატვა +editor_ink2_label=დახატვა + +editor_stamp1.title=სურათების დამატება ან ჩასწორება +editor_stamp1_label=სურათების დამატება ან ჩასწორება + +free_text2_default_content=აკრიფეთ… + +# Editor Parameters +editor_free_text_color=ფერი +editor_free_text_size=ზომა +editor_ink_color=ფერი +editor_ink_thickness=სისქე +editor_ink_opacity=გაუმჭვირვალობა + +editor_stamp_add_image_label=სურათის დამატება +editor_stamp_add_image.title=სურათის დამატება + +# Editor aria +editor_free_text2_aria_label=ნაწერის ჩასწორება +editor_ink2_aria_label=ნახატის ჩასწორება +editor_ink_canvas_aria_label=მომხმარებლის შექმნილი სურათი + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=დართული წარწერა +editor_alt_text_edit_button_label=დართული წარწერის ჩასწორება +editor_alt_text_dialog_label=არჩევა +editor_alt_text_dialog_description=დართული წარწერა (შემნაცვლებელი ტექსტი) გამოსადეგია მათთვის, ვინც ვერ ხედავს სურათებს ან როცა სურათი ვერ იტვირთება. +editor_alt_text_add_description_label=აღწერილობის დამატება +editor_alt_text_add_description_description=განკუთვნილია 1-2 წინადადებით საგნის, მახასიათებლის ან მოქმედების აღსაწერად. +editor_alt_text_mark_decorative_label=მოინიშნოს მოსართავად +editor_alt_text_mark_decorative_description=გამოიყენება შესამკობი სურათებისთვის, გარსშემოსავლები ჩარჩოებისა და ჭვირნიშნებისთვის. +editor_alt_text_cancel_button=გაუქმება +editor_alt_text_save_button=შენახვა +editor_alt_text_decorative_tooltip=მოინიშნოს მოსართავად +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=მაგალითად, „ახალგაზრდა მამაკაცი მაგიდასთან ზის და სადილობს“ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/kab/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/kab/viewer.properties new file mode 100644 index 00000000..8802ba82 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/kab/viewer.properties @@ -0,0 +1,264 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Asebter azewwar +previous_label=Azewwar +next.title=Asebter d-iteddun +next_label=Ddu ɣer zdat + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Asebter +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=ɣef {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} n {{pagesCount}}) + +zoom_out.title=Semẓi +zoom_out_label=Semẓi +zoom_in.title=Semɣeṛ +zoom_in_label=Semɣeṛ +zoom.title=Semɣeṛ/Semẓi +presentation_mode.title=Uɣal ɣer Uskar Tihawt +presentation_mode_label=Askar Tihawt +open_file.title=Ldi Afaylu +open_file_label=Ldi +print.title=Siggez +print_label=Siggez +save.title=Sekles +save_label=Sekles +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Sader +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Sader +bookmark1.title=Asebter amiran (Sken-d tansa URL seg usebter amiran) +bookmark1_label=Asebter amiran +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Ldi deg usnas +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Ldi deg usnas + +# Secondary toolbar and context menu +tools.title=Ifecka +tools_label=Ifecka +first_page.title=Ddu ɣer usebter amezwaru +first_page_label=Ddu ɣer usebter amezwaru +last_page.title=Ddu ɣer usebter aneggaru +last_page_label=Ddu ɣer usebter aneggaru +page_rotate_cw.title=Tuzzya tusrigt +page_rotate_cw_label=Tuzzya tusrigt +page_rotate_ccw.title=Tuzzya amgal-usrig +page_rotate_ccw_label=Tuzzya amgal-usrig + +cursor_text_select_tool.title=Rmed afecku n tefrant n uḍris +cursor_text_select_tool_label=Afecku n tefrant n uḍris +cursor_hand_tool.title=Rmed afecku afus +cursor_hand_tool_label=Afecku afus + +scroll_page.title=Seqdec adrurem n usebter +scroll_page_label=Adrurem n usebter +scroll_vertical.title=Seqdec adrurem ubdid +scroll_vertical_label=Adrurem ubdid +scroll_horizontal.title=Seqdec adrurem aglawan +scroll_horizontal_label=Adrurem aglawan +scroll_wrapped.title=Seqdec adrurem yuẓen +scroll_wrapped_label=Adrurem yuẓen + +spread_none.title=Ur sedday ara isiɣzaf n usebter +spread_none_label=Ulac isiɣzaf +spread_odd.title=Seddu isiɣzaf n usebter ibeddun s yisebtar irayuganen +spread_odd_label=Isiɣzaf irayuganen +spread_even.title=Seddu isiɣzaf n usebter ibeddun s yisebtar iyuganen +spread_even_label=Isiɣzaf iyuganen + +# Document properties dialog box +document_properties.title=Taɣaṛa n isemli… +document_properties_label=Taɣaṛa n isemli… +document_properties_file_name=Isem n ufaylu: +document_properties_file_size=Teɣzi n ufaylu: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KAṬ ({{size_b}} ibiten) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MAṬ ({{size_b}} iṭamḍanen) +document_properties_title=Azwel: +document_properties_author=Ameskar: +document_properties_subject=Amgay: +document_properties_keywords=Awalen n tsaruţ +document_properties_creation_date=Azemz n tmerna: +document_properties_modification_date=Azemz n usnifel: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Yerna-t: +document_properties_producer=Afecku n uselket PDF: +document_properties_version=Lqem PDF: +document_properties_page_count=Amḍan n yisebtar: +document_properties_page_size=Tuγzi n usebter: +document_properties_page_size_unit_inches=deg +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=s teɣzi +document_properties_page_size_orientation_landscape=s tehri +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Asekkil +document_properties_page_size_name_legal=Usḍif +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Taskant Web taruradt: +document_properties_linearized_yes=Ih +document_properties_linearized_no=Ala +document_properties_close=Mdel + +print_progress_message=Aheggi i usiggez n isemli… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Sefsex + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Sken/Fer agalis adisan +toggle_sidebar_notification2.title=Ffer/Sekn agalis adisan (isemli yegber aɣawas/ticeqqufin yeddan/tissiwin) +toggle_sidebar_label=Sken/Fer agalis adisan +document_outline.title=Sken isemli (Senned snat tikal i wesemɣer/Afneẓ n iferdisen meṛṛa) +document_outline_label=Isɣalen n isebtar +attachments.title=Sken ticeqqufin yeddan +attachments_label=Ticeqqufin yeddan +layers.title=Skeen tissiwin (sit sin yiberdan i uwennez n meṛṛa tissiwin ɣer waddad amezwer) +layers_label=Tissiwin +thumbs.title=Sken tanfult. +thumbs_label=Tinfulin +current_outline_item.title=Af-d aferdis n uɣawas amiran +current_outline_item_label=Aferdis n uɣawas amiran +findbar.title=Nadi deg isemli +findbar_label=Nadi + +additional_layers=Tissiwin-nniḍen +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Asebter {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Asebter {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Tanfult n usebter {{page}} + +# Find panel button title and messages +find_input.title=Nadi +find_input.placeholder=Nadi deg isemli… +find_previous.title=Aff-d tamseḍriwt n twinest n deffir +find_previous_label=Azewwar +find_next.title=Aff-d timseḍriwt n twinest d-iteddun +find_next_label=Ddu ɣer zdat +find_highlight=Err izirig imaṛṛa +find_match_case_label=Qadeṛ amasal n isekkilen +find_match_diacritics_label=Qadeṛ ifeskilen +find_entire_word_label=Awalen iččuranen +find_reached_top=Yabbeḍ s afella n usebter, tuɣalin s wadda +find_reached_bottom=Tebḍeḍ s adda n usebter, tuɣalin s afella +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} seg {{total}} n tmeɣṛuḍin +find_match_count[two]={{current}} seg {{total}} n tmeɣṛuḍin +find_match_count[few]={{current}} seg {{total}} n tmeɣṛuḍin +find_match_count[many]={{current}} seg {{total}} n tmeɣṛuḍin +find_match_count[other]={{current}} seg {{total}} n tmeɣṛuḍin +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Ugar n {{limit}} n tmeɣṛuḍin +find_match_count_limit[one]=Ugar n {{limit}} n tmeɣṛuḍin +find_match_count_limit[two]=Ugar n {{limit}} n tmeɣṛuḍin +find_match_count_limit[few]=Ugar n {{limit}} n tmeɣṛuḍin +find_match_count_limit[many]=Ugar n {{limit}} n tmeɣṛuḍin +find_match_count_limit[other]=Ugar n {{limit}} n tmeɣṛuḍin +find_not_found=Ulac tawinest + +# Predefined zoom values +page_scale_width=Tehri n usebter +page_scale_fit=Asebter imaṛṛa +page_scale_auto=Asemɣeṛ/Asemẓi awurman +page_scale_actual=Teɣzi tilawt +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Teḍra-d tuccḍa deg alluy n PDF: +invalid_file_error=Afaylu PDF arameɣtu neɣ yexṣeṛ. +missing_file_error=Ulac afaylu PDF. +unexpected_response_error=Aqeddac yerra-d yir tiririt ur nettwaṛǧi ara. +rendering_error=Teḍra-d tuccḍa deg uskan n usebter. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Tabzimt {{type}}] +password_label=Sekcem awal uffir akken ad ldiḍ afaylu-yagi PDF +password_invalid=Awal uffir mačči d ameɣtu, Ɛreḍ tikelt-nniḍen. +password_ok=IH +password_cancel=Sefsex + +printing_not_supported=Ɣuṛ-k: Asiggez ur ittusefrak ara yakan imaṛṛa deg iminig-a. +printing_not_ready=Ɣuṛ-k: Afaylu PDF ur d-yuli ara imeṛṛa akken ad ittusiggez. +web_fonts_disabled=Tisefsiyin web ttwassensent; D awezɣi useqdec n tsefsiyin yettwarnan ɣer PDF. + +# Editor +editor_free_text2.title=Aḍris +editor_free_text2_label=Aḍris +editor_ink2.title=Suneɣ +editor_ink2_label=Suneɣ + + + +free_text2_default_content=Bdu tira... + +# Editor Parameters +editor_free_text_color=Initen +editor_free_text_size=Teɣzi +editor_ink_color=Ini +editor_ink_thickness=Tuzert +editor_ink_opacity=Tebrek + + +# Editor aria +editor_free_text2_aria_label=Amaẓrag n uḍris +editor_ink2_aria_label=Amaẓrag n usuneɣ +editor_ink_canvas_aria_label=Tugna yettwarnan sɣur useqdac diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/kk/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/kk/viewer.properties new file mode 100644 index 00000000..920f0a3b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/kk/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Алдыңғы парақ +previous_label=Алдыңғысы +next.title=Келесі парақ +next_label=Келесі + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Парақ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} ішінен +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=(парақ {{pageNumber}}, {{pagesCount}} ішінен) + +zoom_out.title=Кішірейту +zoom_out_label=Кішірейту +zoom_in.title=Үлкейту +zoom_in_label=Үлкейту +zoom.title=Масштаб +presentation_mode.title=Презентация режиміне ауысу +presentation_mode_label=Презентация режимі +open_file.title=Файлды ашу +open_file_label=Ашу +print.title=Баспаға шығару +print_label=Баспаға шығару +save.title=Сақтау +save_label=Сақтау +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Жүктеп алу +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Жүктеп алу +bookmark1.title=Ағымдағы бет (Ағымдағы беттен URL адресін көру) +bookmark1_label=Ағымдағы бет +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Қолданбада ашу +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Қолданбада ашу + +# Secondary toolbar and context menu +tools.title=Құралдар +tools_label=Құралдар +first_page.title=Алғашқы параққа өту +first_page_label=Алғашқы параққа өту +last_page.title=Соңғы параққа өту +last_page_label=Соңғы параққа өту +page_rotate_cw.title=Сағат тілі бағытымен айналдыру +page_rotate_cw_label=Сағат тілі бағытымен бұру +page_rotate_ccw.title=Сағат тілі бағытына қарсы бұру +page_rotate_ccw_label=Сағат тілі бағытына қарсы бұру + +cursor_text_select_tool.title=Мәтінді таңдау құралын іске қосу +cursor_text_select_tool_label=Мәтінді таңдау құралы +cursor_hand_tool.title=Қол құралын іске қосу +cursor_hand_tool_label=Қол құралы + +scroll_page.title=Беттерді айналдыруды пайдалану +scroll_page_label=Беттерді айналдыру +scroll_vertical.title=Вертикалды айналдыруды қолдану +scroll_vertical_label=Вертикалды айналдыру +scroll_horizontal.title=Горизонталды айналдыруды қолдану +scroll_horizontal_label=Горизонталды айналдыру +scroll_wrapped.title=Масштабталатын айналдыруды қолдану +scroll_wrapped_label=Масштабталатын айналдыру + +spread_none.title=Жазық беттер режимін қолданбау +spread_none_label=Жазық беттер режимсіз +spread_odd.title=Жазық беттер тақ нөмірлі беттерден басталады +spread_odd_label=Тақ нөмірлі беттер сол жақтан +spread_even.title=Жазық беттер жұп нөмірлі беттерден басталады +spread_even_label=Жұп нөмірлі беттер сол жақтан + +# Document properties dialog box +document_properties.title=Құжат қасиеттері… +document_properties_label=Құжат қасиеттері… +document_properties_file_name=Файл аты: +document_properties_file_size=Файл өлшемі: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} байт) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} байт) +document_properties_title=Тақырыбы: +document_properties_author=Авторы: +document_properties_subject=Тақырыбы: +document_properties_keywords=Кілт сөздер: +document_properties_creation_date=Жасалған күні: +document_properties_modification_date=Түзету күні: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Жасаған: +document_properties_producer=PDF өндірген: +document_properties_version=PDF нұсқасы: +document_properties_page_count=Беттер саны: +document_properties_page_size=Бет өлшемі: +document_properties_page_size_unit_inches=дюйм +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=тік +document_properties_page_size_orientation_landscape=жатық +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Жылдам Web көрінісі: +document_properties_linearized_yes=Иә +document_properties_linearized_no=Жоқ +document_properties_close=Жабу + +print_progress_message=Құжатты баспаға шығару үшін дайындау… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Бас тарту + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Бүйір панелін көрсету/жасыру +toggle_sidebar_notification2.title=Бүйір панелін көрсету/жасыру (құжатта құрылымы/салынымдар/қабаттар бар) +toggle_sidebar_label=Бүйір панелін көрсету/жасыру +document_outline.title=Құжат құрылымын көрсету (барлық нәрселерді жазық қылу/жинау үшін қос шерту керек) +document_outline_label=Құжат құрамасы +attachments.title=Салынымдарды көрсету +attachments_label=Салынымдар +layers.title=Қабаттарды көрсету (барлық қабаттарды бастапқы күйге келтіру үшін екі рет шертіңіз) +layers_label=Қабаттар +thumbs.title=Кіші көріністерді көрсету +thumbs_label=Кіші көріністер +current_outline_item.title=Құрылымның ағымдағы элементін табу +current_outline_item_label=Құрылымның ағымдағы элементі +findbar.title=Құжаттан табу +findbar_label=Табу + +additional_layers=Қосымша қабаттар +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Бет {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} парағы +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} парағы үшін кіші көрінісі + +# Find panel button title and messages +find_input.title=Табу +find_input.placeholder=Құжаттан табу… +find_previous.title=Осы сөздердің мәтіннен алдыңғы кездесуін табу +find_previous_label=Алдыңғысы +find_next.title=Осы сөздердің мәтіннен келесі кездесуін табу +find_next_label=Келесі +find_highlight=Барлығын түспен ерекшелеу +find_match_case_label=Регистрді ескеру +find_match_diacritics_label=Диакритиканы ескеру +find_entire_word_label=Сөздер толығымен +find_reached_top=Құжаттың басына жеттік, соңынан бастап жалғастырамыз +find_reached_bottom=Құжаттың соңына жеттік, басынан бастап жалғастырамыз +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} / {{total}} сәйкестік +find_match_count[two]={{current}} / {{total}} сәйкестік +find_match_count[few]={{current}} / {{total}} сәйкестік +find_match_count[many]={{current}} / {{total}} сәйкестік +find_match_count[other]={{current}} / {{total}} сәйкестік +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} сәйкестіктен көп +find_match_count_limit[one]={{limit}} сәйкестіктен көп +find_match_count_limit[two]={{limit}} сәйкестіктен көп +find_match_count_limit[few]={{limit}} сәйкестіктен көп +find_match_count_limit[many]={{limit}} сәйкестіктен көп +find_match_count_limit[other]={{limit}} сәйкестіктен көп +find_not_found=Сөз(дер) табылмады + +# Predefined zoom values +page_scale_width=Парақ ені +page_scale_fit=Парақты сыйдыру +page_scale_auto=Автомасштабтау +page_scale_actual=Нақты өлшемі +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF жүктеу кезінде қате кетті. +invalid_file_error=Зақымдалған немесе қате PDF файл. +missing_file_error=PDF файлы жоқ. +unexpected_response_error=Сервердің күтпеген жауабы. +rendering_error=Парақты өңдеу кезінде қате кетті. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} аңдатпасы] +password_label=Бұл PDF файлын ашу үшін парольді енгізіңіз. +password_invalid=Пароль дұрыс емес. Қайталап көріңіз. +password_ok=ОК +password_cancel=Бас тарту + +printing_not_supported=Ескерту: Баспаға шығаруды бұл браузер толығымен қолдамайды. +printing_not_ready=Ескерту: Баспаға шығару үшін, бұл PDF толығымен жүктеліп алынбады. +web_fonts_disabled=Веб қаріптері сөндірілген: құрамына енгізілген PDF қаріптерін қолдану мүмкін емес. + +# Editor +editor_free_text2.title=Мәтін +editor_free_text2_label=Мәтін +editor_ink2.title=Сурет салу +editor_ink2_label=Сурет салу + +editor_stamp1.title=Суреттерді қосу немесе түзету +editor_stamp1_label=Суреттерді қосу немесе түзету + +free_text2_default_content=Теруді бастау… + +# Editor Parameters +editor_free_text_color=Түс +editor_free_text_size=Өлшемі +editor_ink_color=Түс +editor_ink_thickness=Қалыңдығы +editor_ink_opacity=Мөлдірсіздігі + +editor_stamp_add_image_label=Суретті қосу +editor_stamp_add_image.title=Суретті қосу + +# Editor aria +editor_free_text2_aria_label=Мәтін түзеткіші +editor_ink2_aria_label=Сурет түзеткіші +editor_ink_canvas_aria_label=Пайдаланушы жасаған сурет + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Балама мәтін +editor_alt_text_edit_button_label=Балама мәтінді өңдеу +editor_alt_text_dialog_label=Опцияны таңдау +editor_alt_text_dialog_description=Балама мәтін адамдар суретті көре алмағанда немесе ол жүктелмегенде көмектеседі. +editor_alt_text_add_description_label=Сипаттаманы қосу +editor_alt_text_add_description_description=Тақырыпты, баптауды немесе әрекетті сипаттайтын 1-2 сөйлемді қолдануға тырысыңыз. +editor_alt_text_mark_decorative_label=Декоративті деп белгілеу +editor_alt_text_mark_decorative_description=Бұл жиектер немесе су белгілері сияқты оюлық суреттер үшін пайдаланылады. +editor_alt_text_cancel_button=Бас тарту +editor_alt_text_save_button=Сақтау +editor_alt_text_decorative_tooltip=Декоративті деп белгіленген +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Мысалы, "Жас жігіт тамақ ішу үшін үстел басына отырады" diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/km/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/km/viewer.properties new file mode 100644 index 00000000..68a8f55f --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/km/viewer.properties @@ -0,0 +1,189 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=ទំព័រ​មុន +previous_label=មុន +next.title=ទំព័រ​បន្ទាប់ +next_label=បន្ទាប់ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ទំព័រ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=នៃ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} នៃ {{pagesCount}}) + +zoom_out.title=​បង្រួម +zoom_out_label=​បង្រួម +zoom_in.title=​ពង្រីក +zoom_in_label=​ពង្រីក +zoom.title=ពង្រីក +presentation_mode.title=ប្ដូរ​ទៅ​របៀប​បទ​បង្ហាញ +presentation_mode_label=របៀប​បទ​បង្ហាញ +open_file.title=បើក​ឯកសារ +open_file_label=បើក +print.title=បោះពុម្ព +print_label=បោះពុម្ព + +# Secondary toolbar and context menu +tools.title=ឧបករណ៍ +tools_label=ឧបករណ៍ +first_page.title=ទៅកាន់​ទំព័រ​ដំបូង​ +first_page_label=ទៅកាន់​ទំព័រ​ដំបូង​ +last_page.title=ទៅកាន់​ទំព័រ​ចុងក្រោយ​ +last_page_label=ទៅកាន់​ទំព័រ​ចុងក្រោយ +page_rotate_cw.title=បង្វិល​ស្រប​ទ្រនិច​នាឡិកា +page_rotate_cw_label=បង្វិល​ស្រប​ទ្រនិច​នាឡិកា +page_rotate_ccw.title=បង្វិល​ច្រាស​ទ្រនិច​នាឡិកា​​ +page_rotate_ccw_label=បង្វិល​ច្រាស​ទ្រនិច​នាឡិកា​​ + +cursor_text_select_tool.title=បើក​ឧបករណ៍​ជ្រើស​អត្ថបទ +cursor_text_select_tool_label=ឧបករណ៍​ជ្រើស​អត្ថបទ +cursor_hand_tool.title=បើក​ឧបករណ៍​ដៃ +cursor_hand_tool_label=ឧបករណ៍​ដៃ + + + +# Document properties dialog box +document_properties.title=លក្ខណ​សម្បត្តិ​ឯកសារ… +document_properties_label=លក្ខណ​សម្បត្តិ​ឯកសារ… +document_properties_file_name=ឈ្មោះ​ឯកសារ៖ +document_properties_file_size=ទំហំ​ឯកសារ៖ +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} បៃ) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} បៃ) +document_properties_title=ចំណងជើង៖ +document_properties_author=អ្នក​និពន្ធ៖ +document_properties_subject=ប្រធានបទ៖ +document_properties_keywords=ពាក្យ​គន្លឹះ៖ +document_properties_creation_date=កាលបរិច្ឆេទ​បង្កើត៖ +document_properties_modification_date=កាលបរិច្ឆេទ​កែប្រែ៖ +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=អ្នក​បង្កើត៖ +document_properties_producer=កម្មវិធី​បង្កើត PDF ៖ +document_properties_version=កំណែ PDF ៖ +document_properties_page_count=ចំនួន​ទំព័រ៖ +document_properties_page_size_unit_inches=អ៊ីញ +document_properties_page_size_unit_millimeters=មម +document_properties_page_size_orientation_portrait=បញ្ឈរ +document_properties_page_size_orientation_landscape=ផ្តេក +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=សំបុត្រ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=បាទ/ចាស +document_properties_linearized_no=ទេ +document_properties_close=បិទ + +print_progress_message=កំពុង​រៀបចំ​ឯកសារ​សម្រាប់​បោះពុម្ព… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=បោះបង់ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=បិទ/បើក​គ្រាប់​រំកិល +toggle_sidebar_label=បិទ/បើក​គ្រាប់​រំកិល +document_outline.title=បង្ហាញ​គ្រោង​ឯកសារ (ចុច​ទ្វេ​ដង​ដើម្បី​ពង្រីក/បង្រួម​ធាតុ​ទាំងអស់) +document_outline_label=គ្រោង​ឯកសារ +attachments.title=បង្ហាញ​ឯកសារ​ភ្ជាប់ +attachments_label=ឯកសារ​ភ្ជាប់ +thumbs.title=បង្ហាញ​រូបភាព​តូចៗ +thumbs_label=រួបភាព​តូចៗ +findbar.title=រក​នៅ​ក្នុង​ឯកសារ +findbar_label=រក + +# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=ទំព័រ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=រូបភាព​តូច​របស់​ទំព័រ {{page}} + +# Find panel button title and messages +find_input.title=រក +find_input.placeholder=រក​នៅ​ក្នុង​ឯកសារ... +find_previous.title=រក​ពាក្យ ឬ​ឃ្លា​ដែល​បាន​ជួប​មុន +find_previous_label=មុន +find_next.title=រក​ពាក្យ ឬ​ឃ្លា​ដែល​បាន​ជួប​បន្ទាប់ +find_next_label=បន្ទាប់ +find_highlight=បន្លិច​ទាំងអស់ +find_match_case_label=ករណី​ដំណូច +find_reached_top=បាន​បន្ត​ពី​ខាង​ក្រោម ទៅ​ដល់​ខាង​​លើ​នៃ​ឯកសារ +find_reached_bottom=បាន​បន្ត​ពី​ខាងលើ ទៅដល់​ចុង​​នៃ​ឯកសារ +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_not_found=រក​មិន​ឃើញ​ពាក្យ ឬ​ឃ្លា + +# Predefined zoom values +page_scale_width=ទទឹង​ទំព័រ +page_scale_fit=សម​ទំព័រ +page_scale_auto=ពង្រីក​ស្វ័យប្រវត្តិ +page_scale_actual=ទំហំ​ជាក់ស្ដែង +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=មាន​កំហុស​បាន​កើតឡើង​ពេល​កំពុង​ផ្ទុក PDF ។ +invalid_file_error=ឯកសារ PDF ខូច ឬ​មិន​ត្រឹមត្រូវ ។ +missing_file_error=បាត់​ឯកសារ PDF +unexpected_response_error=ការ​ឆ្លើយ​តម​ម៉ាស៊ីន​មេ​ដែល​មិន​បាន​រំពឹង។ + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +rendering_error=មាន​កំហុស​បាន​កើតឡើង​ពេល​បង្ហាញ​ទំព័រ ។ + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} ចំណារ​ពន្យល់] +password_label=បញ្ចូល​ពាក្យសម្ងាត់​ដើម្បី​បើក​ឯកសារ PDF នេះ។ +password_invalid=ពាក្យសម្ងាត់​មិន​ត្រឹមត្រូវ។ សូម​ព្យាយាម​ម្ដងទៀត។ +password_ok=យល់​ព្រម +password_cancel=បោះបង់ + +printing_not_supported=ការ​ព្រមាន ៖ កា​រ​បោះពុម្ព​មិន​ត្រូវ​បាន​គាំទ្រ​ពេញលេញ​ដោយ​កម្មវិធី​រុករក​នេះ​ទេ ។ +printing_not_ready=ព្រមាន៖ PDF មិន​ត្រូវ​បាន​ផ្ទុក​ទាំងស្រុង​ដើម្បី​បោះពុម្ព​ទេ។ +web_fonts_disabled=បាន​បិទ​ពុម្ពអក្សរ​បណ្ដាញ ៖ មិន​អាច​ប្រើ​ពុម្ពអក្សរ PDF ដែល​បាន​បង្កប់​បាន​ទេ ។ + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/kn/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/kn/viewer.properties new file mode 100644 index 00000000..aa458435 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/kn/viewer.properties @@ -0,0 +1,166 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=ಹಿಂದಿನ ಪುಟ +previous_label=ಹಿಂದಿನ +next.title=ಮುಂದಿನ ಪುಟ +next_label=ಮುಂದಿನ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ಪುಟ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} ರಲ್ಲಿ +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pagesCount}} ರಲ್ಲಿ {{pageNumber}}) + +zoom_out.title=ಕಿರಿದಾಗಿಸು +zoom_out_label=ಕಿರಿದಾಗಿಸಿ +zoom_in.title=ಹಿರಿದಾಗಿಸು +zoom_in_label=ಹಿರಿದಾಗಿಸಿ +zoom.title=ಗಾತ್ರಬದಲಿಸು +presentation_mode.title=ಪ್ರಸ್ತುತಿ (ಪ್ರಸೆಂಟೇಶನ್) ಕ್ರಮಕ್ಕೆ ಬದಲಾಯಿಸು +presentation_mode_label=ಪ್ರಸ್ತುತಿ (ಪ್ರಸೆಂಟೇಶನ್) ಕ್ರಮ +open_file.title=ಕಡತವನ್ನು ತೆರೆ +open_file_label=ತೆರೆಯಿರಿ +print.title=ಮುದ್ರಿಸು +print_label=ಮುದ್ರಿಸಿ + +# Secondary toolbar and context menu +tools.title=ಉಪಕರಣಗಳು +tools_label=ಉಪಕರಣಗಳು +first_page.title=ಮೊದಲ ಪುಟಕ್ಕೆ ತೆರಳು +first_page_label=ಮೊದಲ ಪುಟಕ್ಕೆ ತೆರಳು +last_page.title=ಕೊನೆಯ ಪುಟಕ್ಕೆ ತೆರಳು +last_page_label=ಕೊನೆಯ ಪುಟಕ್ಕೆ ತೆರಳು +page_rotate_cw.title=ಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು +page_rotate_cw_label=ಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು +page_rotate_ccw.title=ಅಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು +page_rotate_ccw_label=ಅಪ್ರದಕ್ಷಿಣೆಯಲ್ಲಿ ತಿರುಗಿಸು + +cursor_text_select_tool.title=ಪಠ್ಯ ಆಯ್ಕೆ ಉಪಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ +cursor_text_select_tool_label=ಪಠ್ಯ ಆಯ್ಕೆಯ ಉಪಕರಣ +cursor_hand_tool.title=ಕೈ ಉಪಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ +cursor_hand_tool_label=ಕೈ ಉಪಕರಣ + + + +# Document properties dialog box +document_properties.title=ಡಾಕ್ಯುಮೆಂಟ್‌ ಗುಣಗಳು... +document_properties_label=ಡಾಕ್ಯುಮೆಂಟ್‌ ಗುಣಗಳು... +document_properties_file_name=ಕಡತದ ಹೆಸರು: +document_properties_file_size=ಕಡತದ ಗಾತ್ರ: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} ಬೈಟ್‍ಗಳು) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} ಬೈಟ್‍ಗಳು) +document_properties_title=ಶೀರ್ಷಿಕೆ: +document_properties_author=ಕರ್ತೃ: +document_properties_subject=ವಿಷಯ: +document_properties_keywords=ಮುಖ್ಯಪದಗಳು: +document_properties_creation_date=ರಚಿಸಿದ ದಿನಾಂಕ: +document_properties_modification_date=ಮಾರ್ಪಡಿಸಲಾದ ದಿನಾಂಕ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=ರಚಿಸಿದವರು: +document_properties_producer=PDF ಉತ್ಪಾದಕ: +document_properties_version=PDF ಆವೃತ್ತಿ: +document_properties_page_count=ಪುಟದ ಎಣಿಕೆ: +document_properties_page_size_unit_inches=ಇದರಲ್ಲಿ +document_properties_page_size_orientation_portrait=ಭಾವಚಿತ್ರ +document_properties_page_size_orientation_landscape=ಪ್ರಕೃತಿ ಚಿತ್ರ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_close=ಮುಚ್ಚು + +print_progress_message=ಮುದ್ರಿಸುವುದಕ್ಕಾಗಿ ದಸ್ತಾವೇಜನ್ನು ಸಿದ್ಧಗೊಳಿಸಲಾಗುತ್ತಿದೆ… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ರದ್ದು ಮಾಡು + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=ಬದಿಪಟ್ಟಿಯನ್ನು ಹೊರಳಿಸು +toggle_sidebar_label=ಬದಿಪಟ್ಟಿಯನ್ನು ಹೊರಳಿಸು +document_outline_label=ದಸ್ತಾವೇಜಿನ ಹೊರರೇಖೆ +attachments.title=ಲಗತ್ತುಗಳನ್ನು ತೋರಿಸು +attachments_label=ಲಗತ್ತುಗಳು +thumbs.title=ಚಿಕ್ಕಚಿತ್ರದಂತೆ ತೋರಿಸು +thumbs_label=ಚಿಕ್ಕಚಿತ್ರಗಳು +findbar.title=ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಹುಡುಕು +findbar_label=ಹುಡುಕು + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=ಪುಟ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=ಪುಟವನ್ನು ಚಿಕ್ಕಚಿತ್ರದಂತೆ ತೋರಿಸು {{page}} + +# Find panel button title and messages +find_input.title=ಹುಡುಕು +find_input.placeholder=ದಸ್ತಾವೇಜಿನಲ್ಲಿ ಹುಡುಕು… +find_previous.title=ವಾಕ್ಯದ ಹಿಂದಿನ ಇರುವಿಕೆಯನ್ನು ಹುಡುಕು +find_previous_label=ಹಿಂದಿನ +find_next.title=ವಾಕ್ಯದ ಮುಂದಿನ ಇರುವಿಕೆಯನ್ನು ಹುಡುಕು +find_next_label=ಮುಂದಿನ +find_highlight=ಎಲ್ಲವನ್ನು ಹೈಲೈಟ್ ಮಾಡು +find_match_case_label=ಕೇಸನ್ನು ಹೊಂದಿಸು +find_reached_top=ದಸ್ತಾವೇಜಿನ ಮೇಲ್ಭಾಗವನ್ನು ತಲುಪಿದೆ, ಕೆಳಗಿನಿಂದ ಆರಂಭಿಸು +find_reached_bottom=ದಸ್ತಾವೇಜಿನ ಕೊನೆಯನ್ನು ತಲುಪಿದೆ, ಮೇಲಿನಿಂದ ಆರಂಭಿಸು +find_not_found=ವಾಕ್ಯವು ಕಂಡು ಬಂದಿಲ್ಲ + +# Predefined zoom values +page_scale_width=ಪುಟದ ಅಗಲ +page_scale_fit=ಪುಟದ ಸರಿಹೊಂದಿಕೆ +page_scale_auto=ಸ್ವಯಂಚಾಲಿತ ಗಾತ್ರಬದಲಾವಣೆ +page_scale_actual=ನಿಜವಾದ ಗಾತ್ರ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF ಅನ್ನು ಲೋಡ್ ಮಾಡುವಾಗ ಒಂದು ದೋಷ ಎದುರಾಗಿದೆ. +invalid_file_error=ಅಮಾನ್ಯವಾದ ಅಥವ ಹಾಳಾದ PDF ಕಡತ. +missing_file_error=PDF ಕಡತ ಇಲ್ಲ. +unexpected_response_error=ಅನಿರೀಕ್ಷಿತವಾದ ಪೂರೈಕೆಗಣಕದ ಪ್ರತಿಕ್ರಿಯೆ. + +rendering_error=ಪುಟವನ್ನು ನಿರೂಪಿಸುವಾಗ ಒಂದು ದೋಷ ಎದುರಾಗಿದೆ. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} ಟಿಪ್ಪಣಿ] +password_label=PDF ಅನ್ನು ತೆರೆಯಲು ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ. +password_invalid=ಅಮಾನ್ಯವಾದ ಗುಪ್ತಪದ, ದಯವಿಟ್ಟು ಇನ್ನೊಮ್ಮೆ ಪ್ರಯತ್ನಿಸಿ. +password_ok=OK +password_cancel=ರದ್ದು ಮಾಡು + +printing_not_supported=ಎಚ್ಚರಿಕೆ: ಈ ಜಾಲವೀಕ್ಷಕದಲ್ಲಿ ಮುದ್ರಣಕ್ಕೆ ಸಂಪೂರ್ಣ ಬೆಂಬಲವಿಲ್ಲ. +printing_not_ready=ಎಚ್ಚರಿಕೆ: PDF ಕಡತವು ಮುದ್ರಿಸಲು ಸಂಪೂರ್ಣವಾಗಿ ಲೋಡ್ ಆಗಿಲ್ಲ. +web_fonts_disabled=ಜಾಲ ಅಕ್ಷರಶೈಲಿಯನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ: ಅಡಕಗೊಳಿಸಿದ PDF ಅಕ್ಷರಶೈಲಿಗಳನ್ನು ಬಳಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ko/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ko/viewer.properties new file mode 100644 index 00000000..da4b0239 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ko/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=이전 페이지 +previous_label=이전 +next.title=다음 페이지 +next_label=다음 + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=페이지 +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=축소 +zoom_out_label=축소 +zoom_in.title=확대 +zoom_in_label=확대 +zoom.title=확대/축소 +presentation_mode.title=프레젠테이션 모드로 전환 +presentation_mode_label=프레젠테이션 모드 +open_file.title=파일 열기 +open_file_label=열기 +print.title=인쇄 +print_label=인쇄 +save.title=저장 +save_label=저장 +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=다운로드 +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=다운로드 +bookmark1.title=현재 페이지 (현재 페이지에서 URL 보기) +bookmark1_label=현재 페이지 +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=앱에서 열기 +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=앱에서 열기 + +# Secondary toolbar and context menu +tools.title=도구 +tools_label=도구 +first_page.title=첫 페이지로 이동 +first_page_label=첫 페이지로 이동 +last_page.title=마지막 페이지로 이동 +last_page_label=마지막 페이지로 이동 +page_rotate_cw.title=시계방향으로 회전 +page_rotate_cw_label=시계방향으로 회전 +page_rotate_ccw.title=시계 반대방향으로 회전 +page_rotate_ccw_label=시계 반대방향으로 회전 + +cursor_text_select_tool.title=텍스트 선택 도구 활성화 +cursor_text_select_tool_label=텍스트 선택 도구 +cursor_hand_tool.title=손 도구 활성화 +cursor_hand_tool_label=손 도구 + +scroll_page.title=페이지 스크롤 사용 +scroll_page_label=페이지 스크롤 +scroll_vertical.title=세로 스크롤 사용 +scroll_vertical_label=세로 스크롤 +scroll_horizontal.title=가로 스크롤 사용 +scroll_horizontal_label=가로 스크롤 +scroll_wrapped.title=래핑(자동 줄 바꿈) 스크롤 사용 +scroll_wrapped_label=래핑 스크롤 + +spread_none.title=한 페이지 보기 +spread_none_label=펼침 없음 +spread_odd.title=홀수 페이지로 시작하는 두 페이지 보기 +spread_odd_label=홀수 펼침 +spread_even.title=짝수 페이지로 시작하는 두 페이지 보기 +spread_even_label=짝수 펼침 + +# Document properties dialog box +document_properties.title=문서 속성… +document_properties_label=문서 속성… +document_properties_file_name=파일 이름: +document_properties_file_size=파일 크기: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}}바이트) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}}바이트) +document_properties_title=제목: +document_properties_author=작성자: +document_properties_subject=주제: +document_properties_keywords=키워드: +document_properties_creation_date=작성 날짜: +document_properties_modification_date=수정 날짜: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=작성 프로그램: +document_properties_producer=PDF 변환 소프트웨어: +document_properties_version=PDF 버전: +document_properties_page_count=페이지 수: +document_properties_page_size=페이지 크기: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=세로 방향 +document_properties_page_size_orientation_landscape=가로 방향 +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=레터 +document_properties_page_size_name_legal=리걸 +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=빠른 웹 보기: +document_properties_linearized_yes=예 +document_properties_linearized_no=아니요 +document_properties_close=닫기 + +print_progress_message=인쇄 문서 준비 중… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=취소 + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=사이드바 표시/숨기기 +toggle_sidebar_notification2.title=사이드바 표시/숨기기 (문서에 아웃라인/첨부파일/레이어 포함됨) +toggle_sidebar_label=사이드바 표시/숨기기 +document_outline.title=문서 아웃라인 보기 (더블 클릭해서 모든 항목 펼치기/접기) +document_outline_label=문서 아웃라인 +attachments.title=첨부파일 보기 +attachments_label=첨부파일 +layers.title=레이어 보기 (더블 클릭해서 모든 레이어를 기본 상태로 재설정) +layers_label=레이어 +thumbs.title=미리보기 +thumbs_label=미리보기 +current_outline_item.title=현재 아웃라인 항목 찾기 +current_outline_item_label=현재 아웃라인 항목 +findbar.title=검색 +findbar_label=검색 + +additional_layers=추가 레이어 +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}} 페이지 +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} 페이지 +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} 페이지 미리보기 + +# Find panel button title and messages +find_input.title=찾기 +find_input.placeholder=문서에서 찾기… +find_previous.title=지정 문자열에 일치하는 1개 부분을 검색 +find_previous_label=이전 +find_next.title=지정 문자열에 일치하는 다음 부분을 검색 +find_next_label=다음 +find_highlight=모두 강조 표시 +find_match_case_label=대/소문자 구분 +find_match_diacritics_label=분음 부호 일치 +find_entire_word_label=단어 단위로 +find_reached_top=문서 처음까지 검색하고 끝으로 돌아와 검색했습니다. +find_reached_bottom=문서 끝까지 검색하고 앞으로 돌아와 검색했습니다. +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} 중 {{current}} 일치 +find_match_count[two]={{total}} 중 {{current}} 일치 +find_match_count[few]={{total}} 중 {{current}} 일치 +find_match_count[many]={{total}} 중 {{current}} 일치 +find_match_count[other]={{total}} 중 {{current}} 일치 +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} 이상 일치 +find_match_count_limit[one]={{limit}} 이상 일치 +find_match_count_limit[two]={{limit}} 이상 일치 +find_match_count_limit[few]={{limit}} 이상 일치 +find_match_count_limit[many]={{limit}} 이상 일치 +find_match_count_limit[other]={{limit}} 이상 일치 +find_not_found=검색 결과 없음 + +# Predefined zoom values +page_scale_width=페이지 너비에 맞추기 +page_scale_fit=페이지에 맞추기 +page_scale_auto=자동 +page_scale_actual=실제 크기 +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF를 로드하는 동안 오류가 발생했습니다. +invalid_file_error=잘못되었거나 손상된 PDF 파일. +missing_file_error=PDF 파일 없음. +unexpected_response_error=예기치 않은 서버 응답입니다. +rendering_error=페이지를 렌더링하는 동안 오류가 발생했습니다. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} 주석] +password_label=이 PDF 파일을 열 수 있는 비밀번호를 입력하세요. +password_invalid=잘못된 비밀번호입니다. 다시 시도하세요. +password_ok=확인 +password_cancel=취소 + +printing_not_supported=경고: 이 브라우저는 인쇄를 완전히 지원하지 않습니다. +printing_not_ready=경고: 이 PDF를 인쇄를 할 수 있을 정도로 읽어들이지 못했습니다. +web_fonts_disabled=웹 폰트가 비활성화됨: 내장된 PDF 글꼴을 사용할 수 없습니다. + +# Editor +editor_free_text2.title=텍스트 +editor_free_text2_label=텍스트 +editor_ink2.title=그리기 +editor_ink2_label=그리기 + +editor_stamp1.title=이미지 추가 또는 편집 +editor_stamp1_label=이미지 추가 또는 편집 + +free_text2_default_content=입력하세요… + +# Editor Parameters +editor_free_text_color=색상 +editor_free_text_size=크기 +editor_ink_color=색상 +editor_ink_thickness=두께 +editor_ink_opacity=불투명도 + +editor_stamp_add_image_label=이미지 추가 +editor_stamp_add_image.title=이미지 추가 + +# Editor aria +editor_free_text2_aria_label=텍스트 편집기 +editor_ink2_aria_label=그리기 편집기 +editor_ink_canvas_aria_label=사용자 생성 이미지 + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=대체 텍스트 +editor_alt_text_edit_button_label=대체 텍스트 편집 +editor_alt_text_dialog_label=옵션을 선택하세요 +editor_alt_text_dialog_description=대체 텍스트는 사람들이 이미지를 볼 수 없거나 이미지가 로드되지 않을 때 도움이 됩니다. +editor_alt_text_add_description_label=설명 추가 +editor_alt_text_add_description_description=주제, 설정, 동작을 설명하는 1~2개의 문장을 목표로 하세요. +editor_alt_text_mark_decorative_label=장식용으로 표시 +editor_alt_text_mark_decorative_description=테두리나 워터마크와 같은 장식적인 이미지에 사용됩니다. +editor_alt_text_cancel_button=취소 +editor_alt_text_save_button=저장 +editor_alt_text_decorative_tooltip=장식용으로 표시됨 +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=예를 들어, “한 청년이 식탁에 앉아 식사를 하고 있습니다.” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/lij/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lij/viewer.properties new file mode 100644 index 00000000..754a3938 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lij/viewer.properties @@ -0,0 +1,214 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagina primma +previous_label=Precedente +next.title=Pagina dòppo +next_label=Pròscima + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Diminoisci zoom +zoom_out_label=Diminoisci zoom +zoom_in.title=Aomenta zoom +zoom_in_label=Aomenta zoom +zoom.title=Zoom +presentation_mode.title=Vanni into mòddo de prezentaçion +presentation_mode_label=Mòddo de prezentaçion +open_file.title=Arvi file +open_file_label=Arvi +print.title=Stanpa +print_label=Stanpa + +# Secondary toolbar and context menu +tools.title=Atressi +tools_label=Atressi +first_page.title=Vanni a-a primma pagina +first_page_label=Vanni a-a primma pagina +last_page.title=Vanni a l'urtima pagina +last_page_label=Vanni a l'urtima pagina +page_rotate_cw.title=Gia into verso oraio +page_rotate_cw_label=Gia into verso oraio +page_rotate_ccw.title=Gia into verso antioraio +page_rotate_ccw_label=Gia into verso antioraio + +cursor_text_select_tool.title=Abilita strumento de seleçion do testo +cursor_text_select_tool_label=Strumento de seleçion do testo +cursor_hand_tool.title=Abilita strumento man +cursor_hand_tool_label=Strumento man + +scroll_vertical.title=Deuvia rebelamento verticale +scroll_vertical_label=Rebelamento verticale +scroll_horizontal.title=Deuvia rebelamento orizontâ +scroll_horizontal_label=Rebelamento orizontâ +scroll_wrapped.title=Deuvia rebelamento incapsolou +scroll_wrapped_label=Rebelamento incapsolou + +spread_none.title=No unite a-a difuxon de pagina +spread_none_label=No difuxon +spread_odd.title=Uniscite a-a difuxon de pagina co-o numero dèspa +spread_odd_label=Difuxon dèspa +spread_even.title=Uniscite a-a difuxon de pagina co-o numero pari +spread_even_label=Difuxon pari + +# Document properties dialog box +document_properties.title=Propietæ do documento… +document_properties_label=Propietæ do documento… +document_properties_file_name=Nomme schedaio: +document_properties_file_size=Dimenscion schedaio: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} byte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byte) +document_properties_title=Titolo: +document_properties_author=Aoto: +document_properties_subject=Ogetto: +document_properties_keywords=Paròlle ciave: +document_properties_creation_date=Dæta creaçion: +document_properties_modification_date=Dæta cangiamento: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Aotô originale: +document_properties_producer=Produtô PDF: +document_properties_version=Verscion PDF: +document_properties_page_count=Contezzo pagine: +document_properties_page_size=Dimenscion da pagina: +document_properties_page_size_unit_inches=dii gròsci +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=drito +document_properties_page_size_orientation_landscape=desteizo +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letia +document_properties_page_size_name_legal=Lezze +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista veloce do Web: +document_properties_linearized_yes=Sci +document_properties_linearized_no=No +document_properties_close=Særa + +print_progress_message=Praparo o documento pe-a stanpa… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Anulla + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Ativa/dizativa bara de scianco +toggle_sidebar_label=Ativa/dizativa bara de scianco +document_outline.title=Fanni vedde o contorno do documento (scicca doggio pe espande/ridue tutti i elementi) +document_outline_label=Contorno do documento +attachments.title=Fanni vedde alegæ +attachments_label=Alegæ +thumbs.title=Mostra miniatue +thumbs_label=Miniatue +findbar.title=Treuva into documento +findbar_label=Treuva + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatua da pagina {{page}} + +# Find panel button title and messages +find_input.title=Treuva +find_input.placeholder=Treuva into documento… +find_previous.title=Treuva a ripetiçion precedente do testo da çercâ +find_previous_label=Precedente +find_next.title=Treuva a ripetiçion dòppo do testo da çercâ +find_next_label=Segoente +find_highlight=Evidençia +find_match_case_label=Maioscole/minoscole +find_entire_word_label=Poula intrega +find_reached_top=Razonto a fin da pagina, continoa da l'iniçio +find_reached_bottom=Razonto l'iniçio da pagina, continoa da-a fin +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} corispondensa +find_match_count[two]={{current}} de {{total}} corispondense +find_match_count[few]={{current}} de {{total}} corispondense +find_match_count[many]={{current}} de {{total}} corispondense +find_match_count[other]={{current}} de {{total}} corispondense +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Ciù de {{limit}} corispondense +find_match_count_limit[one]=Ciù de {{limit}} corispondensa +find_match_count_limit[two]=Ciù de {{limit}} corispondense +find_match_count_limit[few]=Ciù de {{limit}} corispondense +find_match_count_limit[many]=Ciù de {{limit}} corispondense +find_match_count_limit[other]=Ciù de {{limit}} corispondense +find_not_found=Testo no trovou + +# Predefined zoom values +page_scale_width=Larghessa pagina +page_scale_fit=Adatta a una pagina +page_scale_auto=Zoom aotomatico +page_scale_actual=Dimenscioin efetive +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=S'é verificou 'n'erô itno caregamento do PDF. +invalid_file_error=O schedaio PDF o l'é no valido ò aroinou. +missing_file_error=O schedaio PDF o no gh'é. +unexpected_response_error=Risposta inprevista do-u server + +rendering_error=Gh'é stæto 'n'erô itno rendering da pagina. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotaçion: {{type}}] +password_label=Dimme a paròlla segreta pe arvî sto schedaio PDF. +password_invalid=Paròlla segreta sbalia. Preuva torna. +password_ok=Va ben +password_cancel=Anulla + +printing_not_supported=Atençion: a stanpa a no l'é conpletamente soportâ da sto navegatô. +printing_not_ready=Atençion: o PDF o no l'é ancon caregou conpletamente pe-a stanpa. +web_fonts_disabled=I font do web en dizativæ: inposcibile adeuviâ i carateri do PDF. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/lo/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lo/viewer.properties new file mode 100644 index 00000000..d0adc709 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lo/viewer.properties @@ -0,0 +1,257 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=ຫນ້າກ່ອນຫນ້າ +previous_label=ກ່ອນຫນ້າ +next.title=ຫນ້າຖັດໄປ +next_label=ຖັດໄປ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ຫນ້າ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=ຈາກ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} ຈາກ {{pagesCount}}) + +zoom_out.title=ຂະຫຍາຍອອກ +zoom_out_label=ຂະຫຍາຍອອກ +zoom_in.title=ຂະຫຍາຍເຂົ້າ +zoom_in_label=ຂະຫຍາຍເຂົ້າ +zoom.title=ຂະຫຍາຍ +presentation_mode.title=ສັບປ່ຽນເປັນໂຫມດການນຳສະເຫນີ +presentation_mode_label=ໂຫມດການນຳສະເຫນີ +open_file.title=ເປີດໄຟລ໌ +open_file_label=ເປີດ +print.title=ພິມ +print_label=ພິມ + +save.title=ບັນທຶກ +save_label=ບັນທຶກ +bookmark1.title=ໜ້າປັດຈຸບັນ (ເບິ່ງ URL ຈາກໜ້າປັດຈຸບັນ) +bookmark1_label=ຫນ້າ​ປັດ​ຈຸ​ບັນ + +open_in_app.title=ເປີດໃນ App +open_in_app_label=ເປີດໃນ App + +# Secondary toolbar and context menu +tools.title=ເຄື່ອງມື +tools_label=ເຄື່ອງມື +first_page.title=ໄປທີ່ຫນ້າທຳອິດ +first_page_label=ໄປທີ່ຫນ້າທຳອິດ +last_page.title=ໄປທີ່ຫນ້າສຸດທ້າຍ +last_page_label=ໄປທີ່ຫນ້າສຸດທ້າຍ +page_rotate_cw.title=ຫມູນຕາມເຂັມໂມງ +page_rotate_cw_label=ຫມູນຕາມເຂັມໂມງ +page_rotate_ccw.title=ຫມູນທວນເຂັມໂມງ +page_rotate_ccw_label=ຫມູນທວນເຂັມໂມງ + +cursor_text_select_tool.title=ເປີດໃຊ້ເຄື່ອງມືການເລືອກຂໍ້ຄວາມ +cursor_text_select_tool_label=ເຄື່ອງມືເລືອກຂໍ້ຄວາມ +cursor_hand_tool.title=ເປີດໃຊ້ເຄື່ອງມືມື +cursor_hand_tool_label=ເຄື່ອງມືມື + +scroll_page.title=ໃຊ້ການເລື່ອນໜ້າ +scroll_page_label=ເລື່ອນໜ້າ +scroll_vertical.title=ໃຊ້ການເລື່ອນແນວຕັ້ງ +scroll_vertical_label=ເລື່ອນແນວຕັ້ງ +scroll_horizontal.title=ໃຊ້ການເລື່ອນແນວນອນ +scroll_horizontal_label=ເລື່ອນແນວນອນ +scroll_wrapped.title=ໃຊ້ Wrapped Scrolling +scroll_wrapped_label=Wrapped Scrolling + +spread_none.title=ບໍ່ຕ້ອງຮ່ວມການແຜ່ກະຈາຍຫນ້າ +spread_none_label=ບໍ່ມີການແຜ່ກະຈາຍ +spread_odd.title=ເຂົ້າຮ່ວມການແຜ່ກະຈາຍຫນ້າເລີ່ມຕົ້ນດ້ວຍຫນ້າເລກຄີກ +spread_odd_label=ການແຜ່ກະຈາຍຄີກ +spread_even.title=ເຂົ້າຮ່ວມການແຜ່ກະຈາຍຂອງຫນ້າເລີ່ມຕົ້ນດ້ວຍຫນ້າເລກຄູ່ +spread_even_label=ການແຜ່ກະຈາຍຄູ່ + +# Document properties dialog box +document_properties.title=ຄຸນສົມບັດເອກະສານ... +document_properties_label=ຄຸນສົມບັດເອກະສານ... +document_properties_file_name=ຊື່ໄຟລ໌: +document_properties_file_size=ຂະຫນາດໄຟລ໌: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} ໄບຕ໌) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} ໄບຕ໌) +document_properties_title=ຫົວຂໍ້: +document_properties_author=ຜູ້ຂຽນ: +document_properties_subject=ຫົວຂໍ້: +document_properties_keywords=ຄໍາທີ່ຕ້ອງການຄົ້ນຫາ: +document_properties_creation_date=ວັນທີສ້າງ: +document_properties_modification_date=ວັນທີແກ້ໄຂ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=ຜູ້ສ້າງ: +document_properties_producer=ຜູ້ຜະລິດ PDF: +document_properties_version=ເວີຊັ່ນ PDF: +document_properties_page_count=ຈຳນວນໜ້າ: +document_properties_page_size=ຂະໜາດໜ້າ: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=ລວງຕັ້ງ +document_properties_page_size_orientation_landscape=ລວງນອນ +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=ຈົດໝາຍ +document_properties_page_size_name_legal=ຂໍ້ກົດຫມາຍ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=ມຸມມອງເວັບທີ່ໄວ: +document_properties_linearized_yes=ແມ່ນ +document_properties_linearized_no=ບໍ່ +document_properties_close=ປິດ + +print_progress_message=ກຳລັງກະກຽມເອກະສານສຳລັບການພິມ... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ຍົກເລີກ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=ເປີດ/ປິດແຖບຂ້າງ +toggle_sidebar_notification2.title=ສະຫຼັບແຖບດ້ານຂ້າງ (ເອກະສານປະກອບມີໂຄງຮ່າງ/ໄຟລ໌ແນບ/ຊັ້ນຂໍ້ມູນ) +toggle_sidebar_label=ເປີດ/ປິດແຖບຂ້າງ +document_outline.title=ສະ​ແດງ​ໂຄງ​ຮ່າງ​ເອ​ກະ​ສານ (ກົດ​ສອງ​ຄັ້ງ​ເພື່ອ​ຂະ​ຫຍາຍ / ຫຍໍ້​ລາຍ​ການ​ທັງ​ຫມົດ​) +document_outline_label=ເຄົ້າຮ່າງເອກະສານ +attachments.title=ສະແດງໄຟລ໌ແນບ +attachments_label=ໄຟລ໌ແນບ +layers.title=ສະແດງຊັ້ນຂໍ້ມູນ (ຄລິກສອງເທື່ອເພື່ອຣີເຊັດຊັ້ນຂໍ້ມູນທັງໝົດໃຫ້ເປັນສະຖານະເລີ່ມຕົ້ນ) +layers_label=ຊັ້ນ +thumbs.title=ສະແດງຮູບຫຍໍ້ +thumbs_label=ຮູບຕົວຢ່າງ +current_outline_item.title=ຊອກຫາລາຍການໂຄງຮ່າງປະຈຸບັນ +current_outline_item_label=ລາຍການໂຄງຮ່າງປະຈຸບັນ +findbar.title=ຊອກຫາໃນເອກະສານ +findbar_label=ຄົ້ນຫາ + +additional_layers=ຊັ້ນຂໍ້ມູນເພີ່ມເຕີມ +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=ໜ້າ {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=ໜ້າ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=ຮູບຕົວຢ່າງຂອງໜ້າ {{page}} + +# Find panel button title and messages +find_input.title=ຄົ້ນຫາ +find_input.placeholder=ຊອກຫາໃນເອກະສານ... +find_previous.title=ຊອກຫາການປະກົດຕົວທີ່ຜ່ານມາຂອງປະໂຫຍກ +find_previous_label=ກ່ອນຫນ້ານີ້ +find_next.title=ຊອກຫາຕຳແຫນ່ງຖັດໄປຂອງວະລີ +find_next_label=ຕໍ່ໄປ +find_highlight=ໄຮໄລທ໌ທັງຫມົດ +find_match_case_label=ກໍລະນີທີ່ກົງກັນ +find_match_diacritics_label=ເຄື່ອງໝາຍກຳກັບການອອກສຽງກົງກັນ +find_entire_word_label=ກົງກັນທຸກຄຳ +find_reached_top=ມາຮອດເທິງຂອງເອກະສານ, ສືບຕໍ່ຈາກລຸ່ມ +find_reached_bottom=ຮອດຕອນທ້າຍຂອງເອກະສານ, ສືບຕໍ່ຈາກເທິງ +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} ຂອງ {{total}} ກົງກັນ +find_match_count[two]={{current}} ຂອງ {{total}} ກົງກັນ +find_match_count[few]={{current}} ຂອງ {{total}} ກົງກັນ +find_match_count[many]={{current}} ຂອງ {{total}} ກົງກັນ +find_match_count[other]={{current}} ຂອງ {{total}} ກົງກັນ +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=ຫຼາຍກວ່າ {{limit}} ກົງກັນ +find_match_count_limit[one]=ກົງກັນຫຼາຍກວ່າ {{limit}} +find_match_count_limit[two]=ຫຼາຍກວ່າ {{limit}} ກົງກັນ +find_match_count_limit[few]=ຫຼາຍກວ່າ {{limit}} ກົງກັນ +find_match_count_limit[many]=ຫຼາຍກວ່າ {{limit}} ກົງກັນ +find_match_count_limit[other]=ຫຼາຍກວ່າ {{limit}} ກົງກັນ +find_not_found=ບໍ່ພົບວະລີທີ່ຕ້ອງການ + +# Predefined zoom values +page_scale_width=ຄວາມກວ້າງໜ້າ +page_scale_fit=ໜ້າພໍດີ +page_scale_auto=ຊູມອັດຕະໂນມັດ +page_scale_actual=ຂະໜາດຕົວຈິງ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=ມີຂໍ້ຜິດພາດເກີດຂື້ນຂະນະທີ່ກຳລັງໂຫລດ PDF. +invalid_file_error=ໄຟລ໌ PDF ບໍ່ຖືກຕ້ອງຫລືເສຍຫາຍ. +missing_file_error=ບໍ່ມີໄຟລ໌ PDF. +unexpected_response_error=ການຕອບສະໜອງຂອງເຊີບເວີທີ່ບໍ່ຄາດຄິດ. + +rendering_error=ມີຂໍ້ຜິດພາດເກີດຂື້ນຂະນະທີ່ກຳລັງເຣັນເດີຫນ້າ. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} ຄຳບັນຍາຍ] +password_label=ໃສ່ລະຫັດຜ່ານເພື່ອເປີດໄຟລ໌ PDF ນີ້. +password_invalid=ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ. ກະລຸນາລອງອີກຄັ້ງ. +password_ok=ຕົກລົງ +password_cancel=ຍົກເລີກ + +printing_not_supported=ຄຳເຕືອນ: ບຼາວເຊີນີ້ບໍ່ຮອງຮັບການພິມຢ່າງເຕັມທີ່. +printing_not_ready=ຄໍາ​ເຕືອນ​: PDF ບໍ່​ໄດ້​ຖືກ​ໂຫຼດ​ຢ່າງ​ເຕັມ​ທີ່​ສໍາ​ລັບ​ການ​ພິມ​. +web_fonts_disabled=ຟອນເວັບຖືກປິດໃຊ້ງານ: ບໍ່ສາມາດໃຊ້ຟອນ PDF ທີ່ຝັງໄວ້ໄດ້. + +# Editor +editor_free_text2.title=ຂໍ້ຄວາມ +editor_free_text2_label=ຂໍ້ຄວາມ +editor_ink2.title=ແຕ້ມ +editor_ink2_label=ແຕ້ມ + +free_text2_default_content=ເລີ່ມພິມ... + +# Editor Parameters +editor_free_text_color=ສີ +editor_free_text_size=ຂະຫນາດ +editor_ink_color=ສີ +editor_ink_thickness=ຄວາມຫນາ +editor_ink_opacity=ຄວາມໂປ່ງໃສ + +# Editor aria +editor_free_text2_aria_label=ຕົວແກ້ໄຂຂໍ້ຄວາມ +editor_ink2_aria_label=ຕົວແກ້ໄຂຮູບແຕ້ມ +editor_ink_canvas_aria_label=ຮູບພາບທີ່ຜູ້ໃຊ້ສ້າງ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/locale.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/locale.properties new file mode 100644 index 00000000..38680157 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/locale.properties @@ -0,0 +1,333 @@ +[ach] +@import url(ach/viewer.properties) + +[af] +@import url(af/viewer.properties) + +[an] +@import url(an/viewer.properties) + +[ar] +@import url(ar/viewer.properties) + +[ast] +@import url(ast/viewer.properties) + +[az] +@import url(az/viewer.properties) + +[be] +@import url(be/viewer.properties) + +[bg] +@import url(bg/viewer.properties) + +[bn] +@import url(bn/viewer.properties) + +[bo] +@import url(bo/viewer.properties) + +[br] +@import url(br/viewer.properties) + +[brx] +@import url(brx/viewer.properties) + +[bs] +@import url(bs/viewer.properties) + +[ca] +@import url(ca/viewer.properties) + +[cak] +@import url(cak/viewer.properties) + +[ckb] +@import url(ckb/viewer.properties) + +[cs] +@import url(cs/viewer.properties) + +[cy] +@import url(cy/viewer.properties) + +[da] +@import url(da/viewer.properties) + +[de] +@import url(de/viewer.properties) + +[dsb] +@import url(dsb/viewer.properties) + +[el] +@import url(el/viewer.properties) + +[en-CA] +@import url(en-CA/viewer.properties) + +[en-GB] +@import url(en-GB/viewer.properties) + +[en-US] +@import url(en-US/viewer.properties) + +[eo] +@import url(eo/viewer.properties) + +[es-AR] +@import url(es-AR/viewer.properties) + +[es-CL] +@import url(es-CL/viewer.properties) + +[es-ES] +@import url(es-ES/viewer.properties) + +[es-MX] +@import url(es-MX/viewer.properties) + +[et] +@import url(et/viewer.properties) + +[eu] +@import url(eu/viewer.properties) + +[fa] +@import url(fa/viewer.properties) + +[ff] +@import url(ff/viewer.properties) + +[fi] +@import url(fi/viewer.properties) + +[fr] +@import url(fr/viewer.properties) + +[fur] +@import url(fur/viewer.properties) + +[fy-NL] +@import url(fy-NL/viewer.properties) + +[ga-IE] +@import url(ga-IE/viewer.properties) + +[gd] +@import url(gd/viewer.properties) + +[gl] +@import url(gl/viewer.properties) + +[gn] +@import url(gn/viewer.properties) + +[gu-IN] +@import url(gu-IN/viewer.properties) + +[he] +@import url(he/viewer.properties) + +[hi-IN] +@import url(hi-IN/viewer.properties) + +[hr] +@import url(hr/viewer.properties) + +[hsb] +@import url(hsb/viewer.properties) + +[hu] +@import url(hu/viewer.properties) + +[hy-AM] +@import url(hy-AM/viewer.properties) + +[hye] +@import url(hye/viewer.properties) + +[ia] +@import url(ia/viewer.properties) + +[id] +@import url(id/viewer.properties) + +[is] +@import url(is/viewer.properties) + +[it] +@import url(it/viewer.properties) + +[ja] +@import url(ja/viewer.properties) + +[ka] +@import url(ka/viewer.properties) + +[kab] +@import url(kab/viewer.properties) + +[kk] +@import url(kk/viewer.properties) + +[km] +@import url(km/viewer.properties) + +[kn] +@import url(kn/viewer.properties) + +[ko] +@import url(ko/viewer.properties) + +[lij] +@import url(lij/viewer.properties) + +[lo] +@import url(lo/viewer.properties) + +[lt] +@import url(lt/viewer.properties) + +[ltg] +@import url(ltg/viewer.properties) + +[lv] +@import url(lv/viewer.properties) + +[meh] +@import url(meh/viewer.properties) + +[mk] +@import url(mk/viewer.properties) + +[mr] +@import url(mr/viewer.properties) + +[ms] +@import url(ms/viewer.properties) + +[my] +@import url(my/viewer.properties) + +[nb-NO] +@import url(nb-NO/viewer.properties) + +[ne-NP] +@import url(ne-NP/viewer.properties) + +[nl] +@import url(nl/viewer.properties) + +[nn-NO] +@import url(nn-NO/viewer.properties) + +[oc] +@import url(oc/viewer.properties) + +[pa-IN] +@import url(pa-IN/viewer.properties) + +[pl] +@import url(pl/viewer.properties) + +[pt-BR] +@import url(pt-BR/viewer.properties) + +[pt-PT] +@import url(pt-PT/viewer.properties) + +[rm] +@import url(rm/viewer.properties) + +[ro] +@import url(ro/viewer.properties) + +[ru] +@import url(ru/viewer.properties) + +[sat] +@import url(sat/viewer.properties) + +[sc] +@import url(sc/viewer.properties) + +[scn] +@import url(scn/viewer.properties) + +[sco] +@import url(sco/viewer.properties) + +[si] +@import url(si/viewer.properties) + +[sk] +@import url(sk/viewer.properties) + +[skr] +@import url(skr/viewer.properties) + +[sl] +@import url(sl/viewer.properties) + +[son] +@import url(son/viewer.properties) + +[sq] +@import url(sq/viewer.properties) + +[sr] +@import url(sr/viewer.properties) + +[sv-SE] +@import url(sv-SE/viewer.properties) + +[szl] +@import url(szl/viewer.properties) + +[ta] +@import url(ta/viewer.properties) + +[te] +@import url(te/viewer.properties) + +[tg] +@import url(tg/viewer.properties) + +[th] +@import url(th/viewer.properties) + +[tl] +@import url(tl/viewer.properties) + +[tr] +@import url(tr/viewer.properties) + +[trs] +@import url(trs/viewer.properties) + +[uk] +@import url(uk/viewer.properties) + +[ur] +@import url(ur/viewer.properties) + +[uz] +@import url(uz/viewer.properties) + +[vi] +@import url(vi/viewer.properties) + +[wo] +@import url(wo/viewer.properties) + +[xh] +@import url(xh/viewer.properties) + +[zh-CN] +@import url(zh-CN/viewer.properties) + +[zh-TW] +@import url(zh-TW/viewer.properties) + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/lt/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lt/viewer.properties new file mode 100644 index 00000000..6d83b07e --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lt/viewer.properties @@ -0,0 +1,229 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Ankstesnis puslapis +previous_label=Ankstesnis +next.title=Kitas puslapis +next_label=Kitas + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Puslapis +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=iš {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} iš {{pagesCount}}) + +zoom_out.title=Sumažinti +zoom_out_label=Sumažinti +zoom_in.title=Padidinti +zoom_in_label=Padidinti +zoom.title=Mastelis +presentation_mode.title=Pereiti į pateikties veikseną +presentation_mode_label=Pateikties veiksena +open_file.title=Atverti failą +open_file_label=Atverti +print.title=Spausdinti +print_label=Spausdinti + +# Secondary toolbar and context menu +tools.title=Priemonės +tools_label=Priemonės +first_page.title=Eiti į pirmą puslapį +first_page_label=Eiti į pirmą puslapį +last_page.title=Eiti į paskutinį puslapį +last_page_label=Eiti į paskutinį puslapį +page_rotate_cw.title=Pasukti pagal laikrodžio rodyklę +page_rotate_cw_label=Pasukti pagal laikrodžio rodyklę +page_rotate_ccw.title=Pasukti prieš laikrodžio rodyklę +page_rotate_ccw_label=Pasukti prieš laikrodžio rodyklę + +cursor_text_select_tool.title=Įjungti teksto žymėjimo įrankį +cursor_text_select_tool_label=Teksto žymėjimo įrankis +cursor_hand_tool.title=Įjungti vilkimo įrankį +cursor_hand_tool_label=Vilkimo įrankis + +scroll_page.title=Naudoti puslapio slinkimą +scroll_page_label=Puslapio slinkimas +scroll_vertical.title=Naudoti vertikalų slinkimą +scroll_vertical_label=Vertikalus slinkimas +scroll_horizontal.title=Naudoti horizontalų slinkimą +scroll_horizontal_label=Horizontalus slinkimas +scroll_wrapped.title=Naudoti išklotą slinkimą +scroll_wrapped_label=Išklotas slinkimas + +spread_none.title=Nejungti puslapių į dvilapius +spread_none_label=Be dvilapių +spread_odd.title=Sujungti į dvilapius pradedant nelyginiais puslapiais +spread_odd_label=Nelyginiai dvilapiai +spread_even.title=Sujungti į dvilapius pradedant lyginiais puslapiais +spread_even_label=Lyginiai dvilapiai + +# Document properties dialog box +document_properties.title=Dokumento savybės… +document_properties_label=Dokumento savybės… +document_properties_file_name=Failo vardas: +document_properties_file_size=Failo dydis: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} B) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} B) +document_properties_title=Antraštė: +document_properties_author=Autorius: +document_properties_subject=Tema: +document_properties_keywords=Reikšminiai žodžiai: +document_properties_creation_date=Sukūrimo data: +document_properties_modification_date=Modifikavimo data: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Kūrėjas: +document_properties_producer=PDF generatorius: +document_properties_version=PDF versija: +document_properties_page_count=Puslapių skaičius: +document_properties_page_size=Puslapio dydis: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=stačias +document_properties_page_size_orientation_landscape=gulsčias +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Laiškas +document_properties_page_size_name_legal=Dokumentas +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Spartus žiniatinklio rodinys: +document_properties_linearized_yes=Taip +document_properties_linearized_no=Ne +document_properties_close=Užverti + +print_progress_message=Dokumentas ruošiamas spausdinimui… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Atsisakyti + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Rodyti / slėpti šoninį polangį +toggle_sidebar_notification2.title=Parankinė (dokumentas turi struktūrą / priedų / sluoksnių) +toggle_sidebar_label=Šoninis polangis +document_outline.title=Rodyti dokumento struktūrą (spustelėkite dukart norėdami išplėsti/suskleisti visus elementus) +document_outline_label=Dokumento struktūra +attachments.title=Rodyti priedus +attachments_label=Priedai +layers.title=Rodyti sluoksnius (spustelėkite dukart, norėdami atstatyti visus sluoksnius į numatytąją būseną) +layers_label=Sluoksniai +thumbs.title=Rodyti puslapių miniatiūras +thumbs_label=Miniatiūros +current_outline_item.title=Rasti dabartinį struktūros elementą +current_outline_item_label=Dabartinis struktūros elementas +findbar.title=Ieškoti dokumente +findbar_label=Rasti + +additional_layers=Papildomi sluoksniai +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}} puslapis +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} puslapis +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} puslapio miniatiūra + +# Find panel button title and messages +find_input.title=Rasti +find_input.placeholder=Rasti dokumente… +find_previous.title=Ieškoti ankstesnio frazės egzemplioriaus +find_previous_label=Ankstesnis +find_next.title=Ieškoti tolesnio frazės egzemplioriaus +find_next_label=Tolesnis +find_highlight=Viską paryškinti +find_match_case_label=Skirti didžiąsias ir mažąsias raides +find_match_diacritics_label=Skirti diakritinius ženklus +find_entire_word_label=Ištisi žodžiai +find_reached_top=Pasiekus dokumento pradžią, paieška pratęsta nuo pabaigos +find_reached_bottom=Pasiekus dokumento pabaigą, paieška pratęsta nuo pradžios +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} iš {{total}} atitikmens +find_match_count[two]={{current}} iš {{total}} atitikmenų +find_match_count[few]={{current}} iš {{total}} atitikmenų +find_match_count[many]={{current}} iš {{total}} atitikmenų +find_match_count[other]={{current}} iš {{total}} atitikmens +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Daugiau nei {{limit}} atitikmenų +find_match_count_limit[one]=Daugiau nei {{limit}} atitikmuo +find_match_count_limit[two]=Daugiau nei {{limit}} atitikmenys +find_match_count_limit[few]=Daugiau nei {{limit}} atitikmenys +find_match_count_limit[many]=Daugiau nei {{limit}} atitikmenų +find_match_count_limit[other]=Daugiau nei {{limit}} atitikmuo +find_not_found=Ieškoma frazė nerasta + +# Predefined zoom values +page_scale_width=Priderinti prie lapo pločio +page_scale_fit=Pritaikyti prie lapo dydžio +page_scale_auto=Automatinis mastelis +page_scale_actual=Tikras dydis +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Įkeliant PDF failą įvyko klaida. +invalid_file_error=Tai nėra PDF failas arba jis yra sugadintas. +missing_file_error=PDF failas nerastas. +unexpected_response_error=Netikėtas serverio atsakas. + +rendering_error=Atvaizduojant puslapį įvyko klaida. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[„{{type}}“ tipo anotacija] +password_label=Įveskite slaptažodį šiam PDF failui atverti. +password_invalid=Slaptažodis neteisingas. Bandykite dar kartą. +password_ok=Gerai +password_cancel=Atsisakyti + +printing_not_supported=Dėmesio! Spausdinimas šioje naršyklėje nėra pilnai realizuotas. +printing_not_ready=Dėmesio! PDF failas dar nėra pilnai įkeltas spausdinimui. +web_fonts_disabled=Saityno šriftai išjungti – PDF faile esančių šriftų naudoti negalima. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ltg/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ltg/viewer.properties new file mode 100644 index 00000000..26ee0696 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ltg/viewer.properties @@ -0,0 +1,192 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Īprīkšejā lopa +previous_label=Īprīkšejā +next.title=Nuokomuo lopa +next_label=Nuokomuo + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Lopa +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=nu {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} nu {{pagesCount}}) + +zoom_out.title=Attuolynuot +zoom_out_label=Attuolynuot +zoom_in.title=Pītuvynuot +zoom_in_label=Pītuvynuot +zoom.title=Palelynuojums +presentation_mode.title=Puorslēgtīs iz Prezentacejis režymu +presentation_mode_label=Prezentacejis režyms +open_file.title=Attaiseit failu +open_file_label=Attaiseit +print.title=Drukuošona +print_label=Drukōt + +# Secondary toolbar and context menu +tools.title=Reiki +tools_label=Reiki +first_page.title=Īt iz pyrmū lopu +first_page_label=Īt iz pyrmū lopu +last_page.title=Īt iz piedejū lopu +last_page_label=Īt iz piedejū lopu +page_rotate_cw.title=Pagrīzt pa pulksteni +page_rotate_cw_label=Pagrīzt pa pulksteni +page_rotate_ccw.title=Pagrīzt pret pulksteni +page_rotate_ccw_label=Pagrīzt pret pulksteni + +cursor_text_select_tool.title=Aktivizēt teksta izvieles reiku +cursor_text_select_tool_label=Teksta izvieles reiks +cursor_hand_tool.title=Aktivēt rūkys reiku +cursor_hand_tool_label=Rūkys reiks + +scroll_vertical.title=Izmontōt vertikalū ritinōšonu +scroll_vertical_label=Vertikalō ritinōšona +scroll_horizontal.title=Izmontōt horizontalū ritinōšonu +scroll_horizontal_label=Horizontalō ritinōšona +scroll_wrapped.title=Izmontōt mārūgojamū ritinōšonu +scroll_wrapped_label=Mārūgojamō ritinōšona + +spread_none.title=Naizmontōt lopu atvāruma režimu +spread_none_label=Bez atvārumim +spread_odd.title=Izmontōt lopu atvārumus sōkut nu napōra numeru lopom +spread_odd_label=Napōra lopys pa kreisi +spread_even.title=Izmontōt lopu atvārumus sōkut nu pōra numeru lopom +spread_even_label=Pōra lopys pa kreisi + +# Document properties dialog box +document_properties.title=Dokumenta īstatiejumi… +document_properties_label=Dokumenta īstatiejumi… +document_properties_file_name=Faila nūsaukums: +document_properties_file_size=Faila izmārs: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} biti) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} biti) +document_properties_title=Nūsaukums: +document_properties_author=Autors: +document_properties_subject=Tema: +document_properties_keywords=Atslāgi vuordi: +document_properties_creation_date=Izveides datums: +document_properties_modification_date=lobuošonys datums: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Radeituojs: +document_properties_producer=PDF producents: +document_properties_version=PDF verseja: +document_properties_page_count=Lopu skaits: +document_properties_page_size=Lopas izmārs: +document_properties_page_size_unit_inches=collas +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portreta orientaceja +document_properties_page_size_orientation_landscape=ainovys orientaceja +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Jā +document_properties_linearized_no=Nā +document_properties_close=Aiztaiseit + +print_progress_message=Preparing document for printing… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Atceļt + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Puorslēgt suonu jūslu +toggle_sidebar_label=Puorslēgt suonu jūslu +document_outline.title=Show Document Outline (double-click to expand/collapse all items) +document_outline_label=Dokumenta saturs +attachments.title=Show Attachments +attachments_label=Attachments +thumbs.title=Paruodeit seiktālus +thumbs_label=Seiktāli +findbar.title=Mekleit dokumentā +findbar_label=Mekleit + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Lopa {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Lopys {{page}} seiktāls + +# Find panel button title and messages +find_input.title=Mekleit +find_input.placeholder=Mekleit dokumentā… +find_previous.title=Atrast īprīkšejū +find_previous_label=Īprīkšejā +find_next.title=Atrast nuokamū +find_next_label=Nuokomuo +find_highlight=Īkruosuot vysys +find_match_case_label=Lelū, mozū burtu jiuteigs +find_reached_top=Sasnīgts dokumenta suokums, turpynojom nu beigom +find_reached_bottom=Sasnīgtys dokumenta beigys, turpynojom nu suokuma +find_not_found=Frāze nav atrosta + +# Predefined zoom values +page_scale_width=Lopys plotumā +page_scale_fit=Ītylpynūt lopu +page_scale_auto=Automatiskais izmārs +page_scale_actual=Patīsais izmārs +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Īluodejūt PDF nūtyka klaida. +invalid_file_error=Nadereigs voi būjuots PDF fails. +missing_file_error=PDF fails nav atrosts. +unexpected_response_error=Unexpected server response. + +rendering_error=Attālojūt lopu rodās klaida + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Īvodit paroli, kab attaiseitu PDF failu. +password_invalid=Napareiza parole, raugit vēļreiz. +password_ok=Labi +password_cancel=Atceļt + +printing_not_supported=Uzmaneibu: Drukuošona nu itei puorlūka dorbojās tikai daleji. +printing_not_ready=Uzmaneibu: PDF nav pilneibā īluodeits drukuošonai. +web_fonts_disabled=Šķārsteikla fonti nav aktivizāti: Navar īgult PDF fontus. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/lv/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lv/viewer.properties new file mode 100644 index 00000000..70e258dd --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/lv/viewer.properties @@ -0,0 +1,214 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Iepriekšējā lapa +previous_label=Iepriekšējā +next.title=Nākamā lapa +next_label=Nākamā + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Lapa +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=no {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} no {{pagesCount}}) + +zoom_out.title=Attālināt\u0020 +zoom_out_label=Attālināt +zoom_in.title=Pietuvināt +zoom_in_label=Pietuvināt +zoom.title=Palielinājums +presentation_mode.title=Pārslēgties uz Prezentācijas režīmu +presentation_mode_label=Prezentācijas režīms +open_file.title=Atvērt failu +open_file_label=Atvērt +print.title=Drukāšana +print_label=Drukāt + +# Secondary toolbar and context menu +tools.title=Rīki +tools_label=Rīki +first_page.title=Iet uz pirmo lapu +first_page_label=Iet uz pirmo lapu +last_page.title=Iet uz pēdējo lapu +last_page_label=Iet uz pēdējo lapu +page_rotate_cw.title=Pagriezt pa pulksteni +page_rotate_cw_label=Pagriezt pa pulksteni +page_rotate_ccw.title=Pagriezt pret pulksteni +page_rotate_ccw_label=Pagriezt pret pulksteni + +cursor_text_select_tool.title=Aktivizēt teksta izvēles rīku +cursor_text_select_tool_label=Teksta izvēles rīks +cursor_hand_tool.title=Aktivēt rokas rīku +cursor_hand_tool_label=Rokas rīks + +scroll_vertical.title=Izmantot vertikālo ritināšanu +scroll_vertical_label=Vertikālā ritināšana +scroll_horizontal.title=Izmantot horizontālo ritināšanu +scroll_horizontal_label=Horizontālā ritināšana +scroll_wrapped.title=Izmantot apkļauto ritināšanu +scroll_wrapped_label=Apkļautā ritināšana + +spread_none.title=Nepievienoties lapu izpletumiem +spread_none_label=Neizmantot izpletumus +spread_odd.title=Izmantot lapu izpletumus sākot ar nepāra numuru lapām +spread_odd_label=Nepāra izpletumi +spread_even.title=Izmantot lapu izpletumus sākot ar pāra numuru lapām +spread_even_label=Pāra izpletumi + +# Document properties dialog box +document_properties.title=Dokumenta iestatījumi… +document_properties_label=Dokumenta iestatījumi… +document_properties_file_name=Faila nosaukums: +document_properties_file_size=Faila izmērs: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} biti) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} biti) +document_properties_title=Nosaukums: +document_properties_author=Autors: +document_properties_subject=Tēma: +document_properties_keywords=Atslēgas vārdi: +document_properties_creation_date=Izveides datums: +document_properties_modification_date=LAbošanas datums: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Radītājs: +document_properties_producer=PDF producents: +document_properties_version=PDF versija: +document_properties_page_count=Lapu skaits: +document_properties_page_size=Papīra izmērs: +document_properties_page_size_unit_inches=collas +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portretorientācija +document_properties_page_size_orientation_landscape=ainavorientācija +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Vēstule +document_properties_page_size_name_legal=Juridiskie teksti +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Ātrā tīmekļa skats: +document_properties_linearized_yes=Jā +document_properties_linearized_no=Nē +document_properties_close=Aizvērt + +print_progress_message=Gatavo dokumentu drukāšanai... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Atcelt + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Pārslēgt sānu joslu +toggle_sidebar_label=Pārslēgt sānu joslu +document_outline.title=Rādīt dokumenta struktūru (veiciet dubultklikšķi lai izvērstu/sakļautu visus vienumus) +document_outline_label=Dokumenta saturs +attachments.title=Rādīt pielikumus +attachments_label=Pielikumi +thumbs.title=Parādīt sīktēlus +thumbs_label=Sīktēli +findbar.title=Meklēt dokumentā +findbar_label=Meklēt + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Lapa {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Lapas {{page}} sīktēls + +# Find panel button title and messages +find_input.title=Meklēt +find_input.placeholder=Meklēt dokumentā… +find_previous.title=Atrast iepriekšējo +find_previous_label=Iepriekšējā +find_next.title=Atrast nākamo +find_next_label=Nākamā +find_highlight=Iekrāsot visas +find_match_case_label=Lielo, mazo burtu jutīgs +find_entire_word_label=Veselus vārdus +find_reached_top=Sasniegts dokumenta sākums, turpinām no beigām +find_reached_bottom=Sasniegtas dokumenta beigas, turpinām no sākuma +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} no {{total}} rezultāta +find_match_count[two]={{current}} no {{total}} rezultātiem +find_match_count[few]={{current}} no {{total}} rezultātiem +find_match_count[many]={{current}} no {{total}} rezultātiem +find_match_count[other]={{current}} no {{total}} rezultātiem +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Vairāk nekā {{limit}} rezultāti +find_match_count_limit[one]=Vairāk nekā {{limit}} rezultāti +find_match_count_limit[two]=Vairāk nekā {{limit}} rezultāti +find_match_count_limit[few]=Vairāk nekā {{limit}} rezultāti +find_match_count_limit[many]=Vairāk nekā {{limit}} rezultāti +find_match_count_limit[other]=Vairāk nekā {{limit}} rezultāti +find_not_found=Frāze nav atrasta + +# Predefined zoom values +page_scale_width=Lapas platumā +page_scale_fit=Ietilpinot lapu +page_scale_auto=Automātiskais izmērs +page_scale_actual=Patiesais izmērs +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Ielādējot PDF notika kļūda. +invalid_file_error=Nederīgs vai bojāts PDF fails. +missing_file_error=PDF fails nav atrasts. +unexpected_response_error=Negaidīa servera atbilde. + +rendering_error=Attēlojot lapu radās kļūda + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} anotācija] +password_label=Ievadiet paroli, lai atvērtu PDF failu. +password_invalid=Nepareiza parole, mēģiniet vēlreiz. +password_ok=Labi +password_cancel=Atcelt + +printing_not_supported=Uzmanību: Drukāšana no šī pārlūka darbojas tikai daļēji. +printing_not_ready=Uzmanību: PDF nav pilnībā ielādēts drukāšanai. +web_fonts_disabled=Tīmekļa fonti nav aktivizēti: Nevar iegult PDF fontus. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/meh/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/meh/viewer.properties new file mode 100644 index 00000000..6ba24cd0 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/meh/viewer.properties @@ -0,0 +1,106 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página yata + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. + +zoom.title=Nasa´a ka´nu/Nasa´a luli +open_file_label=Síne + +# Secondary toolbar and context menu + + + + +# Document properties dialog box +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=Kuvi +document_properties_close=Nakasɨ + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Nkuvi-ka + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +findbar_label=Nánuku + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. + +# Find panel button title and messages +find_input.title=Nánuku +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} + +# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an +# english string describing the error. +# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack +# trace. +# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename +# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number + +# Predefined zoom values +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_cancel=Nkuvi-ka + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/mk/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/mk/viewer.properties new file mode 100644 index 00000000..13cc47bd --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/mk/viewer.properties @@ -0,0 +1,211 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Претходна страница +previous_label=Претходна +next.title=Следна страница +next_label=Следна + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Страница +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=од {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} од {{pagesCount}}) + +zoom_out.title=Намалување +zoom_out_label=Намали +zoom_in.title=Зголемување +zoom_in_label=Зголеми +zoom.title=Променување на големина +presentation_mode.title=Премини во презентациски режим +presentation_mode_label=Презентациски режим +open_file.title=Отворање датотека +open_file_label=Отвори +print.title=Печатење +print_label=Печати +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. + +# Secondary toolbar and context menu +tools.title=Алатки +tools_label=Алатки +first_page.title=Оди до првата страница +first_page_label=Оди до првата страница +last_page.title=Оди до последната страница +last_page_label=Оди до последната страница +page_rotate_cw.title=Ротирај по стрелките на часовникот +page_rotate_cw_label=Ротирај по стрелките на часовникот +page_rotate_ccw.title=Ротирај спротивно од стрелките на часовникот +page_rotate_ccw_label=Ротирај спротивно од стрелките на часовникот + +cursor_text_select_tool.title=Овозможи алатка за избор на текст +cursor_text_select_tool_label=Алатка за избор на текст + + + +# Document properties dialog box +document_properties.title=Својства на документот… +document_properties_label=Својства на документот… +document_properties_file_name=Име на датотека: +document_properties_file_size=Големина на датотеката: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} бајти) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} бајти) +document_properties_title=Наслов: +document_properties_author=Автор: +document_properties_subject=Тема: +document_properties_keywords=Клучни зборови: +document_properties_creation_date=Датум на создавање: +document_properties_modification_date=Датум на промена: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Креатор: +document_properties_version=Верзија на PDF: +document_properties_page_count=Број на страници: +document_properties_page_size=Големина на страница: +document_properties_page_size_unit_inches=инч +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=портрет +document_properties_page_size_orientation_landscape=пејзаж +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Писмо +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=Да +document_properties_linearized_no=Не +document_properties_close=Затвори + +print_progress_message=Документ се подготвува за печатење… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Откажи + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Вклучи странична лента +toggle_sidebar_label=Вклучи странична лента +document_outline_label=Содржина на документот +attachments.title=Прикажи додатоци +thumbs.title=Прикажување на икони +thumbs_label=Икони +findbar.title=Најди во документот +findbar_label=Најди + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Страница {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Икона од страница {{page}} + +# Find panel button title and messages +find_input.title=Пронајди +find_input.placeholder=Пронајди во документот… +find_previous.title=Најди ја предходната појава на фразата +find_previous_label=Претходно +find_next.title=Најди ја следната појава на фразата +find_next_label=Следно +find_highlight=Означи сѐ +find_match_case_label=Токму така +find_entire_word_label=Цели зборови +find_reached_top=Барањето стигна до почетокот на документот и почнува од крајот +find_reached_bottom=Барањето стигна до крајот на документот и почнува од почеток +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} од {{total}} совпаѓања +find_match_count[two]={{current}} од {{total}} совпаѓања +find_match_count[few]={{current}} од {{total}} совпаѓања +find_match_count[many]={{current}} од {{total}} совпаѓања +find_match_count[other]={{current}} од {{total}} совпаѓања +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Повеќе од {{limit}} совпаѓања +find_match_count_limit[one]=Повеќе од {{limit}} совпаѓање +find_match_count_limit[two]=Повеќе од {{limit}} совпаѓања +find_match_count_limit[few]=Повеќе од {{limit}} совпаѓања +find_match_count_limit[many]=Повеќе од {{limit}} совпаѓања +find_match_count_limit[other]=Повеќе од {{limit}} совпаѓања +find_not_found=Фразата не е пронајдена + +# Predefined zoom values +page_scale_width=Ширина на страница +page_scale_fit=Цела страница +page_scale_auto=Автоматска големина +page_scale_actual=Вистинска големина +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Настана грешка при вчитувањето на PDF-от. +invalid_file_error=Невалидна или корумпирана PDF датотека. +missing_file_error=Недостасува PDF документ. +unexpected_response_error=Неочекуван одговор од серверот. +rendering_error=Настана грешка при прикажувањето на страницата. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_label=Внесете ја лозинката за да ја отворите оваа датотека. +password_invalid=Невалидна лозинка. Обидете се повторно. +password_ok=Во ред +password_cancel=Откажи + +printing_not_supported=Предупредување: Печатењето не е целосно поддржано во овој прелистувач. +printing_not_ready=Предупредување: PDF документот не е целосно вчитан за печатење. +web_fonts_disabled=Интернет фонтовите се оневозможени: не може да се користат вградените PDF фонтови. + +# Editor + + + +# Editor Parameters + +# Editor aria diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/mr/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/mr/viewer.properties new file mode 100644 index 00000000..9f261051 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/mr/viewer.properties @@ -0,0 +1,210 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=मागील पृष्ठ +previous_label=मागील +next.title=पुढील पृष्ठ +next_label=पुढील + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=पृष्ठ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}}पैकी +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pagesCount}} पैकी {{pageNumber}}) + +zoom_out.title=छोटे करा +zoom_out_label=छोटे करा +zoom_in.title=मोठे करा +zoom_in_label=मोठे करा +zoom.title=लहान किंवा मोठे करा +presentation_mode.title=प्रस्तुतिकरण मोडचा वापर करा +presentation_mode_label=प्रस्तुतिकरण मोड +open_file.title=फाइल उघडा +open_file_label=उघडा +print.title=छपाई करा +print_label=छपाई करा + +# Secondary toolbar and context menu +tools.title=साधने +tools_label=साधने +first_page.title=पहिल्या पृष्ठावर जा +first_page_label=पहिल्या पृष्ठावर जा +last_page.title=शेवटच्या पृष्ठावर जा +last_page_label=शेवटच्या पृष्ठावर जा +page_rotate_cw.title=घड्याळाच्या काट्याच्या दिशेने फिरवा +page_rotate_cw_label=घड्याळाच्या काट्याच्या दिशेने फिरवा +page_rotate_ccw.title=घड्याळाच्या काट्याच्या उलट दिशेने फिरवा +page_rotate_ccw_label=घड्याळाच्या काट्याच्या उलट दिशेने फिरवा + +cursor_text_select_tool.title=मजकूर निवड साधन कार्यान्वयीत करा +cursor_text_select_tool_label=मजकूर निवड साधन +cursor_hand_tool.title=हात साधन कार्यान्वित करा +cursor_hand_tool_label=हस्त साधन + +scroll_vertical.title=अनुलंब स्क्रोलिंग वापरा +scroll_vertical_label=अनुलंब स्क्रोलिंग +scroll_horizontal.title=क्षैतिज स्क्रोलिंग वापरा +scroll_horizontal_label=क्षैतिज स्क्रोलिंग + + +# Document properties dialog box +document_properties.title=दस्तऐवज गुणधर्म… +document_properties_label=दस्तऐवज गुणधर्म… +document_properties_file_name=फाइलचे नाव: +document_properties_file_size=फाइल आकार: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} बाइट्स) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} बाइट्स) +document_properties_title=शिर्षक: +document_properties_author=लेखक: +document_properties_subject=विषय: +document_properties_keywords=मुख्यशब्द: +document_properties_creation_date=निर्माण दिनांक: +document_properties_modification_date=दुरूस्ती दिनांक: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=निर्माता: +document_properties_producer=PDF निर्माता: +document_properties_version=PDF आवृत्ती: +document_properties_page_count=पृष्ठ संख्या: +document_properties_page_size=पृष्ठ आकार: +document_properties_page_size_unit_inches=इंच +document_properties_page_size_unit_millimeters=मीमी +document_properties_page_size_orientation_portrait=उभी मांडणी +document_properties_page_size_orientation_landscape=आडवे +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=जलद वेब दृष्य: +document_properties_linearized_yes=हो +document_properties_linearized_no=नाही +document_properties_close=बंद करा + +print_progress_message=छपाई करीता पृष्ठ तयार करीत आहे… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=रद्द करा + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=बाजूचीपट्टी टॉगल करा +toggle_sidebar_label=बाजूचीपट्टी टॉगल करा +document_outline.title=दस्तऐवज बाह्यरेखा दर्शवा (विस्तृत करण्यासाठी दोनवेळा क्लिक करा /सर्व घटक दाखवा) +document_outline_label=दस्तऐवज रूपरेषा +attachments.title=जोडपत्र दाखवा +attachments_label=जोडपत्र +thumbs.title=थंबनेल्स् दाखवा +thumbs_label=थंबनेल्स् +findbar.title=दस्तऐवजात शोधा +findbar_label=शोधा + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=पृष्ठ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=पृष्ठाचे थंबनेल {{page}} + +# Find panel button title and messages +find_input.title=शोधा +find_input.placeholder=दस्तऐवजात शोधा… +find_previous.title=वाकप्रयोगची मागील घटना शोधा +find_previous_label=मागील +find_next.title=वाकप्रयोगची पुढील घटना शोधा +find_next_label=पुढील +find_highlight=सर्व ठळक करा +find_match_case_label=आकार जुळवा +find_entire_word_label=संपूर्ण शब्द +find_reached_top=दस्तऐवजाच्या शीर्षकास पोहचले, तळपासून पुढे +find_reached_bottom=दस्तऐवजाच्या तळाला पोहचले, शीर्षकापासून पुढे +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} पैकी {{current}} सुसंगत +find_match_count[two]={{total}} पैकी {{current}} सुसंगत +find_match_count[few]={{total}} पैकी {{current}} सुसंगत +find_match_count[many]={{total}} पैकी {{current}} सुसंगत +find_match_count[other]={{total}} पैकी {{current}} सुसंगत +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} पेक्षा अधिक जुळण्या +find_match_count_limit[one]={{limit}} पेक्षा अधिक जुळण्या +find_match_count_limit[two]={{limit}} पेक्षा अधिक जुळण्या +find_match_count_limit[few]={{limit}} पेक्षा अधिक जुळण्या +find_match_count_limit[many]={{limit}} पेक्षा अधिक जुळण्या +find_match_count_limit[other]={{limit}} पेक्षा अधिक जुळण्या +find_not_found=वाकप्रयोग आढळले नाही + +# Predefined zoom values +page_scale_width=पृष्ठाची रूंदी +page_scale_fit=पृष्ठ बसवा +page_scale_auto=स्वयं लाहन किंवा मोठे करणे +page_scale_actual=प्रत्यक्ष आकार +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF लोड करतेवेळी त्रुटी आढळली. +invalid_file_error=अवैध किंवा दोषीत PDF फाइल. +missing_file_error=न आढळणारी PDF फाइल. +unexpected_response_error=अनपेक्षित सर्व्हर प्रतिसाद. + +rendering_error=पृष्ठ दाखवतेवेळी त्रुटी आढळली. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} टिपण्णी] +password_label=ही PDF फाइल उघडण्याकरिता पासवर्ड द्या. +password_invalid=अवैध पासवर्ड. कृपया पुन्हा प्रयत्न करा. +password_ok=ठीक आहे +password_cancel=रद्द करा + +printing_not_supported=सावधानता: या ब्राउझरतर्फे छपाइ पूर्णपणे समर्थीत नाही. +printing_not_ready=सावधानता: छपाईकरिता PDF पूर्णतया लोड झाले नाही. +web_fonts_disabled=वेब टंक असमर्थीत आहेत: एम्बेडेड PDF टंक वापर अशक्य. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ms/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ms/viewer.properties new file mode 100644 index 00000000..8edd79ba --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ms/viewer.properties @@ -0,0 +1,214 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Halaman Dahulu +previous_label=Dahulu +next.title=Halaman Berikut +next_label=Berikut + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Halaman +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=daripada {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} daripada {{pagesCount}}) + +zoom_out.title=Zum Keluar +zoom_out_label=Zum Keluar +zoom_in.title=Zum Masuk +zoom_in_label=Zum Masuk +zoom.title=Zum +presentation_mode.title=Tukar ke Mod Persembahan +presentation_mode_label=Mod Persembahan +open_file.title=Buka Fail +open_file_label=Buka +print.title=Cetak +print_label=Cetak + +# Secondary toolbar and context menu +tools.title=Alatan +tools_label=Alatan +first_page.title=Pergi ke Halaman Pertama +first_page_label=Pergi ke Halaman Pertama +last_page.title=Pergi ke Halaman Terakhir +last_page_label=Pergi ke Halaman Terakhir +page_rotate_cw.title=Berputar ikut arah Jam +page_rotate_cw_label=Berputar ikut arah Jam +page_rotate_ccw.title=Pusing berlawan arah jam +page_rotate_ccw_label=Pusing berlawan arah jam + +cursor_text_select_tool.title=Dayakan Alatan Pilihan Teks +cursor_text_select_tool_label=Alatan Pilihan Teks +cursor_hand_tool.title=Dayakan Alatan Tangan +cursor_hand_tool_label=Alatan Tangan + +scroll_vertical.title=Guna Skrol Menegak +scroll_vertical_label=Skrol Menegak +scroll_horizontal.title=Guna Skrol Mengufuk +scroll_horizontal_label=Skrol Mengufuk +scroll_wrapped.title=Guna Skrol Berbalut +scroll_wrapped_label=Skrol Berbalut + +spread_none.title=Jangan hubungkan hamparan halaman +spread_none_label=Tanpa Hamparan +spread_odd.title=Hubungkan hamparan halaman dengan halaman nombor ganjil +spread_odd_label=Hamparan Ganjil +spread_even.title=Hubungkan hamparan halaman dengan halaman nombor genap +spread_even_label=Hamparan Seimbang + +# Document properties dialog box +document_properties.title=Sifat Dokumen… +document_properties_label=Sifat Dokumen… +document_properties_file_name=Nama fail: +document_properties_file_size=Saiz fail: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bait) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bait) +document_properties_title=Tajuk: +document_properties_author=Pengarang: +document_properties_subject=Subjek: +document_properties_keywords=Kata kunci: +document_properties_creation_date=Masa Dicipta: +document_properties_modification_date=Tarikh Ubahsuai: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Pencipta: +document_properties_producer=Pengeluar PDF: +document_properties_version=Versi PDF: +document_properties_page_count=Kiraan Laman: +document_properties_page_size=Saiz Halaman: +document_properties_page_size_unit_inches=dalam +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=potret +document_properties_page_size_orientation_landscape=landskap +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Paparan Web Pantas: +document_properties_linearized_yes=Ya +document_properties_linearized_no=Tidak +document_properties_close=Tutup + +print_progress_message=Menyediakan dokumen untuk dicetak… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Batal + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Togol Bar Sisi +toggle_sidebar_label=Togol Bar Sisi +document_outline.title=Papar Rangka Dokumen (klik-dua-kali untuk kembangkan/kolaps semua item) +document_outline_label=Rangka Dokumen +attachments.title=Papar Lampiran +attachments_label=Lampiran +thumbs.title=Papar Thumbnails +thumbs_label=Imej kecil +findbar.title=Cari didalam Dokumen +findbar_label=Cari + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Halaman {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Halaman Imej kecil {{page}} + +# Find panel button title and messages +find_input.title=Cari +find_input.placeholder=Cari dalam dokumen… +find_previous.title=Cari teks frasa berkenaan yang terdahulu +find_previous_label=Dahulu +find_next.title=Cari teks frasa berkenaan yang berikut +find_next_label=Berikut +find_highlight=Serlahkan semua +find_match_case_label=Huruf sepadan +find_entire_word_label=Seluruh perkataan +find_reached_top=Mencapai teratas daripada dokumen, sambungan daripada bawah +find_reached_bottom=Mencapai terakhir daripada dokumen, sambungan daripada atas +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} daripada {{total}} padanan +find_match_count[two]={{current}} daripada {{total}} padanan +find_match_count[few]={{current}} daripada {{total}} padanan +find_match_count[many]={{current}} daripada {{total}} padanan +find_match_count[other]={{current}} daripada {{total}} padanan +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Lebih daripada {{limit}} padanan +find_match_count_limit[one]=Lebih daripada {{limit}} padanan +find_match_count_limit[two]=Lebih daripada {{limit}} padanan +find_match_count_limit[few]=Lebih daripada {{limit}} padanan +find_match_count_limit[many]=Lebih daripada {{limit}} padanan +find_match_count_limit[other]=Lebih daripada {{limit}} padanan +find_not_found=Frasa tidak ditemui + +# Predefined zoom values +page_scale_width=Lebar Halaman +page_scale_fit=Muat Halaman +page_scale_auto=Zoom Automatik +page_scale_actual=Saiz Sebenar +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Masalah berlaku semasa menuatkan sebuah PDF. +invalid_file_error=Tidak sah atau fail PDF rosak. +missing_file_error=Fail PDF Hilang. +unexpected_response_error=Respon pelayan yang tidak dijangka. + +rendering_error=Ralat berlaku ketika memberikan halaman. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Anotasi] +password_label=Masukan kata kunci untuk membuka fail PDF ini. +password_invalid=Kata laluan salah. Cuba lagi. +password_ok=OK +password_cancel=Batal + +printing_not_supported=Amaran: Cetakan ini tidak sepenuhnya disokong oleh pelayar ini. +printing_not_ready=Amaran: PDF tidak sepenuhnya dimuatkan untuk dicetak. +web_fonts_disabled=Fon web dinyahdayakan: tidak dapat menggunakan fon terbenam PDF. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/my/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/my/viewer.properties new file mode 100644 index 00000000..5a255a71 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/my/viewer.properties @@ -0,0 +1,170 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=အရင် စာမျက်နှာ +previous_label=အရင်နေရာ +next.title=ရှေ့ စာမျက်နှာ +next_label=နောက်တခု + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=စာမျက်နှာ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} ၏ +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pagesCount}} ၏ {{pageNumber}}) + +zoom_out.title=ချုံ့ပါ +zoom_out_label=ချုံ့ပါ +zoom_in.title=ချဲ့ပါ +zoom_in_label=ချဲ့ပါ +zoom.title=ချုံ့/ချဲ့ပါ +presentation_mode.title=ဆွေးနွေးတင်ပြစနစ်သို့ ကူးပြောင်းပါ +presentation_mode_label=ဆွေးနွေးတင်ပြစနစ် +open_file.title=ဖိုင်အားဖွင့်ပါ။ +open_file_label=ဖွင့်ပါ +print.title=ပုံနှိုပ်ပါ +print_label=ပုံနှိုပ်ပါ + +# Secondary toolbar and context menu +tools.title=ကိရိယာများ +tools_label=ကိရိယာများ +first_page.title=ပထမ စာမျက်နှာသို့ +first_page_label=ပထမ စာမျက်နှာသို့ +last_page.title=နောက်ဆုံး စာမျက်နှာသို့ +last_page_label=နောက်ဆုံး စာမျက်နှာသို့ +page_rotate_cw.title=နာရီလက်တံ အတိုင်း +page_rotate_cw_label=နာရီလက်တံ အတိုင်း +page_rotate_ccw.title=နာရီလက်တံ ပြောင်းပြန် +page_rotate_ccw_label=နာရီလက်တံ ပြောင်းပြန် + + + + +# Document properties dialog box +document_properties.title=မှတ်တမ်းမှတ်ရာ ဂုဏ်သတ္တိများ +document_properties_label=မှတ်တမ်းမှတ်ရာ ဂုဏ်သတ္တိများ +document_properties_file_name=ဖိုင် : +document_properties_file_size=ဖိုင်ဆိုဒ် : +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} ကီလိုဘိုတ် ({{size_b}}ဘိုတ်) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=ခေါင်းစဉ်‌ - +document_properties_author=ရေးသားသူ: +document_properties_subject=အကြောင်းအရာ:\u0020 +document_properties_keywords=သော့ချက် စာလုံး: +document_properties_creation_date=ထုတ်လုပ်ရက်စွဲ: +document_properties_modification_date=ပြင်ဆင်ရက်စွဲ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=ဖန်တီးသူ: +document_properties_producer=PDF ထုတ်လုပ်သူ: +document_properties_version=PDF ဗားရှင်း: +document_properties_page_count=စာမျက်နှာအရေအတွက်: +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_close=ပိတ် + +print_progress_message=Preparing document for printing… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ပယ်​ဖျက်ပါ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=ဘေးတန်းဖွင့်ပိတ် +toggle_sidebar_label=ဖွင့်ပိတ် ဆလိုက်ဒါ +document_outline.title=စာတမ်းအကျဉ်းချုပ်ကို ပြပါ (စာရင်းအားလုံးကို ချုံ့/ချဲ့ရန် ကလစ်နှစ်ချက်နှိပ်ပါ) +document_outline_label=စာတမ်းအကျဉ်းချုပ် +attachments.title=တွဲချက်များ ပြပါ +attachments_label=တွဲထားချက်များ +thumbs.title=ပုံရိပ်ငယ်များကို ပြပါ +thumbs_label=ပုံရိပ်ငယ်များ +findbar.title=Find in Document +findbar_label=ရှာဖွေပါ + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=စာမျက်နှာ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=စာမျက်နှာရဲ့ ပုံရိပ်ငယ် {{page}} + +# Find panel button title and messages +find_input.title=ရှာဖွေပါ +find_input.placeholder=စာတမ်းထဲတွင် ရှာဖွေရန်… +find_previous.title=စကားစုရဲ့ အရင် ​ဖြစ်ပွားမှုကို ရှာဖွေပါ +find_previous_label=နောက်သို့ +find_next.title=စကားစုရဲ့ နောက်ထပ် ​ဖြစ်ပွားမှုကို ရှာဖွေပါ +find_next_label=ရှေ့သို့ +find_highlight=အားလုံးကို မျဉ်းသားပါ +find_match_case_label=စာလုံး တိုက်ဆိုင်ပါ +find_reached_top=စာမျက်နှာထိပ် ရောက်နေပြီ၊ အဆုံးကနေ ပြန်စပါ +find_reached_bottom=စာမျက်နှာအဆုံး ရောက်နေပြီ၊ ထိပ်ကနေ ပြန်စပါ +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_not_found=စကားစု မတွေ့ရဘူး + +# Predefined zoom values +page_scale_width=စာမျက်နှာ အကျယ် +page_scale_fit=စာမျက်နှာ ကွက်တိ +page_scale_auto=အလိုအလျောက် ချုံ့ချဲ့ +page_scale_actual=အမှန်တကယ်ရှိတဲ့ အရွယ် +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF ဖိုင် ကိုဆွဲတင်နေချိန်မှာ အမှားတစ်ခုတွေ့ရပါတယ်။ +invalid_file_error=မရသော သို့ ပျက်နေသော PDF ဖိုင် +missing_file_error=PDF ပျောက်ဆုံး +unexpected_response_error=မမျှော်လင့်ထားသော ဆာဗာမှ ပြန်ကြားချက် + +rendering_error=စာမျက်နှာကို ပုံဖော်နေချိန်မှာ အမှားတစ်ခုတွေ့ရပါတယ်။ + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} အဓိပ္ပာယ်ဖွင့်ဆိုချက်] +password_label=ယခု PDF ကို ဖွင့်ရန် စကားဝှက်ကို ရိုက်ပါ။ +password_invalid=စာဝှက် မှားသည်။ ထပ်ကြိုးစားကြည့်ပါ။ +password_ok=OK +password_cancel=ပယ်​ဖျက်ပါ + +printing_not_supported=သတိပေးချက်၊ပရင့်ထုတ်ခြင်းကိုဤဘယောက်ဆာသည် ပြည့်ဝစွာထောက်ပံ့မထားပါ ။ +printing_not_ready=သတိပေးချက်: ယခု PDF ဖိုင်သည် ပုံနှိပ်ရန် မပြည့်စုံပါ +web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/nb-NO/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/nb-NO/viewer.properties new file mode 100644 index 00000000..81045315 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/nb-NO/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Forrige side +previous_label=Forrige +next.title=Neste side +next_label=Neste + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Side +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=av {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} av {{pagesCount}}) + +zoom_out.title=Zoom ut +zoom_out_label=Zoom ut +zoom_in.title=Zoom inn +zoom_in_label=Zoom inn +zoom.title=Zoom +presentation_mode.title=Bytt til presentasjonsmodus +presentation_mode_label=Presentasjonsmodus +open_file.title=Åpne fil +open_file_label=Åpne +print.title=Skriv ut +print_label=Skriv ut +save.title=Lagre +save_label=Lagre +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Last ned +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Last ned +bookmark1.title=Gjeldende side (se URL fra gjeldende side) +bookmark1_label=Gjeldende side +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Åpne i app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Åpne i app + +# Secondary toolbar and context menu +tools.title=Verktøy +tools_label=Verktøy +first_page.title=Gå til første side +first_page_label=Gå til første side +last_page.title=Gå til siste side +last_page_label=Gå til siste side +page_rotate_cw.title=Roter med klokken +page_rotate_cw_label=Roter med klokken +page_rotate_ccw.title=Roter mot klokken +page_rotate_ccw_label=Roter mot klokken + +cursor_text_select_tool.title=Aktiver tekstmarkeringsverktøy +cursor_text_select_tool_label=Tekstmarkeringsverktøy +cursor_hand_tool.title=Aktiver handverktøy +cursor_hand_tool_label=Handverktøy + +scroll_page.title=Bruk siderulling +scroll_page_label=Siderulling +scroll_vertical.title=Bruk vertikal rulling +scroll_vertical_label=Vertikal rulling +scroll_horizontal.title=Bruk horisontal rulling +scroll_horizontal_label=Horisontal rulling +scroll_wrapped.title=Bruk flersiderulling +scroll_wrapped_label=Flersiderulling + +spread_none.title=Vis enkeltsider +spread_none_label=Enkeltsider +spread_odd.title=Vis oppslag med ulike sidenumre til venstre +spread_odd_label=Oppslag med forside +spread_even.title=Vis oppslag med like sidenumre til venstre +spread_even_label=Oppslag uten forside + +# Document properties dialog box +document_properties.title=Dokumentegenskaper … +document_properties_label=Dokumentegenskaper … +document_properties_file_name=Filnavn: +document_properties_file_size=Filstørrelse: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Dokumentegenskaper … +document_properties_author=Forfatter: +document_properties_subject=Emne: +document_properties_keywords=Nøkkelord: +document_properties_creation_date=Opprettet dato: +document_properties_modification_date=Endret dato: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Opprettet av: +document_properties_producer=PDF-verktøy: +document_properties_version=PDF-versjon: +document_properties_page_count=Sideantall: +document_properties_page_size=Sidestørrelse: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=stående +document_properties_page_size_orientation_landscape=liggende +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Hurtig nettvisning: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nei +document_properties_close=Lukk + +print_progress_message=Forbereder dokument for utskrift … +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Avbryt + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Slå av/på sidestolpe +toggle_sidebar_notification2.title=Vis/gjem sidestolpe (dokumentet inneholder oversikt/vedlegg/lag) +toggle_sidebar_label=Slå av/på sidestolpe +document_outline.title=Vis dokumentdisposisjonen (dobbeltklikk for å utvide/skjule alle elementer) +document_outline_label=Dokumentdisposisjon +attachments.title=Vis vedlegg +attachments_label=Vedlegg +layers.title=Vis lag (dobbeltklikk for å tilbakestille alle lag til standardtilstand) +layers_label=Lag +thumbs.title=Vis miniatyrbilde +thumbs_label=Miniatyrbilde +current_outline_item.title=Finn gjeldende disposisjonselement +current_outline_item_label=Gjeldende disposisjonselement +findbar.title=Finn i dokumentet +findbar_label=Finn + +additional_layers=Ytterligere lag +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Side {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Side {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatyrbilde av side {{page}} + +# Find panel button title and messages +find_input.title=Søk +find_input.placeholder=Søk i dokument… +find_previous.title=Finn forrige forekomst av frasen +find_previous_label=Forrige +find_next.title=Finn neste forekomst av frasen +find_next_label=Neste +find_highlight=Uthev alle +find_match_case_label=Skill store/små bokstaver +find_match_diacritics_label=Samsvar diakritiske tegn +find_entire_word_label=Hele ord +find_reached_top=Nådde toppen av dokumentet, fortsetter fra bunnen +find_reached_bottom=Nådde bunnen av dokumentet, fortsetter fra toppen +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} av {{total}} treff +find_match_count[two]={{current}} av {{total}} treff +find_match_count[few]={{current}} av {{total}} treff +find_match_count[many]={{current}} av {{total}} treff +find_match_count[other]={{current}} av {{total}} treff +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mer enn {{limit}} treff +find_match_count_limit[one]=Mer enn {{limit}} treff +find_match_count_limit[two]=Mer enn {{limit}} treff +find_match_count_limit[few]=Mer enn {{limit}} treff +find_match_count_limit[many]=Mer enn {{limit}} treff +find_match_count_limit[other]=Mer enn {{limit}} treff +find_not_found=Fant ikke teksten + +# Predefined zoom values +page_scale_width=Sidebredde +page_scale_fit=Tilpass til siden +page_scale_auto=Automatisk zoom +page_scale_actual=Virkelig størrelse +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=En feil oppstod ved lasting av PDF. +invalid_file_error=Ugyldig eller skadet PDF-fil. +missing_file_error=Manglende PDF-fil. +unexpected_response_error=Uventet serverrespons. +rendering_error=En feil oppstod ved opptegning av siden. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} annotasjon] +password_label=Skriv inn passordet for å åpne denne PDF-filen. +password_invalid=Ugyldig passord. Prøv igjen. +password_ok=OK +password_cancel=Avbryt + +printing_not_supported=Advarsel: Utskrift er ikke fullstendig støttet av denne nettleseren. +printing_not_ready=Advarsel: PDF er ikke fullstendig innlastet for utskrift. +web_fonts_disabled=Web-fonter er avslått: Kan ikke bruke innbundne PDF-fonter. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Tegn +editor_ink2_label=Tegn + +editor_stamp1.title=Legg til eller rediger bilder +editor_stamp1_label=Legg til eller rediger bilder + +free_text2_default_content=Begynn å skrive… + +# Editor Parameters +editor_free_text_color=Farge +editor_free_text_size=Størrelse +editor_ink_color=Farge +editor_ink_thickness=Tykkelse +editor_ink_opacity=Ugjennomsiktighet + +editor_stamp_add_image_label=Legg til bilde +editor_stamp_add_image.title=Legg til bilde + +# Editor aria +editor_free_text2_aria_label=Tekstredigering +editor_ink2_aria_label=Tegneredigering +editor_ink_canvas_aria_label=Brukerskapt bilde + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alt-tekst +editor_alt_text_edit_button_label=Rediger alt-tekst tekst +editor_alt_text_dialog_label=Velg et alternativ +editor_alt_text_dialog_description=Alt-tekst (alternativ tekst) hjelper når folk ikke kan se bildet eller når det ikke lastes inn. +editor_alt_text_add_description_label=Legg til en beskrivelse +editor_alt_text_add_description_description=Gå etter 1-2 setninger som beskriver emnet, settingen eller handlingene. +editor_alt_text_mark_decorative_label=Merk som dekorativt +editor_alt_text_mark_decorative_description=Dette brukes til dekorative bilder, som kantlinjer eller vannmerker. +editor_alt_text_cancel_button=Avbryt +editor_alt_text_save_button=Lagre +editor_alt_text_decorative_tooltip=Merket som dekorativ +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=For eksempel, «En ung mann setter seg ved et bord for å spise et måltid» diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ne-NP/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ne-NP/viewer.properties new file mode 100644 index 00000000..97ebe1f0 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ne-NP/viewer.properties @@ -0,0 +1,197 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=अघिल्लो पृष्ठ +previous_label=अघिल्लो +next.title=पछिल्लो पृष्ठ +next_label=पछिल्लो + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=पृष्ठ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} मध्ये +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pagesCount}} को {{pageNumber}}) + +zoom_out.title=जुम घटाउनुहोस् +zoom_out_label=जुम घटाउनुहोस् +zoom_in.title=जुम बढाउनुहोस् +zoom_in_label=जुम बढाउनुहोस् +zoom.title=जुम गर्नुहोस् +presentation_mode.title=प्रस्तुति मोडमा जानुहोस् +presentation_mode_label=प्रस्तुति मोड +open_file.title=फाइल खोल्नुहोस् +open_file_label=खोल्नुहोस् +print.title=मुद्रण गर्नुहोस् +print_label=मुद्रण गर्नुहोस् + +# Secondary toolbar and context menu +tools.title=औजारहरू +tools_label=औजारहरू +first_page.title=पहिलो पृष्ठमा जानुहोस् +first_page_label=पहिलो पृष्ठमा जानुहोस् +last_page.title=पछिल्लो पृष्ठमा जानुहोस् +last_page_label=पछिल्लो पृष्ठमा जानुहोस् +page_rotate_cw.title=घडीको दिशामा घुमाउनुहोस् +page_rotate_cw_label=घडीको दिशामा घुमाउनुहोस् +page_rotate_ccw.title=घडीको विपरित दिशामा घुमाउनुहोस् +page_rotate_ccw_label=घडीको विपरित दिशामा घुमाउनुहोस् + +cursor_text_select_tool.title=पाठ चयन उपकरण सक्षम गर्नुहोस् +cursor_text_select_tool_label=पाठ चयन उपकरण +cursor_hand_tool.title=हाते उपकरण सक्षम गर्नुहोस् +cursor_hand_tool_label=हाते उपकरण + +scroll_vertical.title=ठाडो स्क्रोलिङ्ग प्रयोग गर्नुहोस् +scroll_vertical_label=ठाडो स्क्र्रोलिङ्ग +scroll_horizontal.title=तेर्सो स्क्रोलिङ्ग प्रयोग गर्नुहोस् +scroll_horizontal_label=तेर्सो स्क्रोलिङ्ग +scroll_wrapped.title=लिपि स्क्रोलिङ्ग प्रयोग गर्नुहोस् +scroll_wrapped_label=लिपि स्क्रोलिङ्ग + +spread_none.title=पृष्ठ स्प्रेडमा सामेल हुनुहुन्न +spread_none_label=स्प्रेड छैन + +# Document properties dialog box +document_properties.title=कागजात विशेषताहरू... +document_properties_label=कागजात विशेषताहरू... +document_properties_file_name=फाइल नाम: +document_properties_file_size=फाइल आकार: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=शीर्षक: +document_properties_author=लेखक: +document_properties_subject=विषयः +document_properties_keywords=शब्दकुञ्जीः +document_properties_creation_date=सिर्जना गरिएको मिति: +document_properties_modification_date=परिमार्जित मिति: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=सर्जक: +document_properties_producer=PDF निर्माता: +document_properties_version=PDF संस्करण +document_properties_page_count=पृष्ठ गणना: +document_properties_page_size=पृष्ठ आकार: +document_properties_page_size_unit_inches=इन्च +document_properties_page_size_unit_millimeters=मि.मि. +document_properties_page_size_orientation_portrait=पोट्रेट +document_properties_page_size_orientation_landscape=परिदृश्य +document_properties_page_size_name_letter=अक्षर +document_properties_page_size_name_legal=कानूनी +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=हो +document_properties_linearized_no=होइन +document_properties_close=बन्द गर्नुहोस् + +print_progress_message=मुद्रणका लागि कागजात तयारी गरिदै… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=रद्द गर्नुहोस् + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=टगल साइडबार +toggle_sidebar_label=टगल साइडबार +document_outline.title=कागजातको रूपरेखा देखाउनुहोस् (सबै वस्तुहरू विस्तार/पतन गर्न डबल-क्लिक गर्नुहोस्) +document_outline_label=दस्तावेजको रूपरेखा +attachments.title=संलग्नहरू देखाउनुहोस् +attachments_label=संलग्नकहरू +thumbs.title=थम्बनेलहरू देखाउनुहोस् +thumbs_label=थम्बनेलहरू +findbar.title=कागजातमा फेला पार्नुहोस् +findbar_label=फेला पार्नुहोस् + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=पृष्ठ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} पृष्ठको थम्बनेल + +# Find panel button title and messages +find_input.title=फेला पार्नुहोस् +find_input.placeholder=कागजातमा फेला पार्नुहोस्… +find_previous.title=यस वाक्यांशको अघिल्लो घटना फेला पार्नुहोस् +find_previous_label=अघिल्लो +find_next.title=यस वाक्यांशको पछिल्लो घटना फेला पार्नुहोस् +find_next_label=अर्को +find_highlight=सबै हाइलाइट गर्ने +find_match_case_label=केस जोडा मिलाउनुहोस् +find_entire_word_label=पुरा शब्दहरु +find_reached_top=पृष्ठको शिर्षमा पुगीयो, तलबाट जारी गरिएको थियो +find_reached_bottom=पृष्ठको अन्त्यमा पुगीयो, शिर्षबाट जारी गरिएको थियो +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_not_found=वाक्यांश फेला परेन + +# Predefined zoom values +page_scale_width=पृष्ठ चौडाइ +page_scale_fit=पृष्ठ ठिक्क मिल्ने +page_scale_auto=स्वचालित जुम +page_scale_actual=वास्तविक आकार +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=यो PDF लोड गर्दा एउटा त्रुटि देखापर्‍यो। +invalid_file_error=अवैध वा दुषित PDF फाइल। +missing_file_error=हराईरहेको PDF फाइल। +unexpected_response_error=अप्रत्याशित सर्भर प्रतिक्रिया। + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +rendering_error=पृष्ठ प्रतिपादन गर्दा एउटा त्रुटि देखापर्‍यो। + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=यस PDF फाइललाई खोल्न गोप्यशब्द प्रविष्ट गर्नुहोस्। +password_invalid=अवैध गोप्यशब्द। पुनः प्रयास गर्नुहोस्। +password_ok=ठिक छ +password_cancel=रद्द गर्नुहोस् + +printing_not_supported=चेतावनी: यो ब्राउजरमा मुद्रण पूर्णतया समर्थित छैन। +printing_not_ready=चेतावनी: PDF मुद्रणका लागि पूर्णतया लोड भएको छैन। +web_fonts_disabled=वेब फन्ट असक्षम छन्: एम्बेडेड PDF फन्ट प्रयोग गर्न असमर्थ। + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/nl/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/nl/viewer.properties new file mode 100644 index 00000000..c428dac5 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/nl/viewer.properties @@ -0,0 +1,274 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Vorige pagina +previous_label=Vorige +next.title=Volgende pagina +next_label=Volgende + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=van {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} van {{pagesCount}}) + +zoom_out.title=Uitzoomen +zoom_out_label=Uitzoomen +zoom_in.title=Inzoomen +zoom_in_label=Inzoomen +zoom.title=Zoomen +presentation_mode.title=Wisselen naar presentatiemodus +presentation_mode_label=Presentatiemodus +open_file.title=Bestand openen +open_file_label=Openen +print.title=Afdrukken +print_label=Afdrukken +save.title=Opslaan +save_label=Opslaan +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Downloaden +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Downloaden +bookmark1.title=Huidige pagina (URL van huidige pagina bekijken) +bookmark1_label=Huidige pagina +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Openen in app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Openen in app + +# Secondary toolbar and context menu +tools.title=Hulpmiddelen +tools_label=Hulpmiddelen +first_page.title=Naar eerste pagina gaan +first_page_label=Naar eerste pagina gaan +last_page.title=Naar laatste pagina gaan +last_page_label=Naar laatste pagina gaan +page_rotate_cw.title=Rechtsom draaien +page_rotate_cw_label=Rechtsom draaien +page_rotate_ccw.title=Linksom draaien +page_rotate_ccw_label=Linksom draaien + +cursor_text_select_tool.title=Tekstselectiehulpmiddel inschakelen +cursor_text_select_tool_label=Tekstselectiehulpmiddel +cursor_hand_tool.title=Handhulpmiddel inschakelen +cursor_hand_tool_label=Handhulpmiddel + +scroll_page.title=Paginascrollen gebruiken +scroll_page_label=Paginascrollen +scroll_vertical.title=Verticaal scrollen gebruiken +scroll_vertical_label=Verticaal scrollen +scroll_horizontal.title=Horizontaal scrollen gebruiken +scroll_horizontal_label=Horizontaal scrollen +scroll_wrapped.title=Scrollen met terugloop gebruiken +scroll_wrapped_label=Scrollen met terugloop + +spread_none.title=Dubbele pagina’s niet samenvoegen +spread_none_label=Geen dubbele pagina’s +spread_odd.title=Dubbele pagina’s samenvoegen vanaf oneven pagina’s +spread_odd_label=Oneven dubbele pagina’s +spread_even.title=Dubbele pagina’s samenvoegen vanaf even pagina’s +spread_even_label=Even dubbele pagina’s + +# Document properties dialog box +document_properties.title=Documenteigenschappen… +document_properties_label=Documenteigenschappen… +document_properties_file_name=Bestandsnaam: +document_properties_file_size=Bestandsgrootte: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titel: +document_properties_author=Auteur: +document_properties_subject=Onderwerp: +document_properties_keywords=Sleutelwoorden: +document_properties_creation_date=Aanmaakdatum: +document_properties_modification_date=Wijzigingsdatum: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Maker: +document_properties_producer=PDF-producent: +document_properties_version=PDF-versie: +document_properties_page_count=Aantal pagina’s: +document_properties_page_size=Paginagrootte: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=staand +document_properties_page_size_orientation_landscape=liggend +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Snelle webweergave: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nee +document_properties_close=Sluiten + +print_progress_message=Document voorbereiden voor afdrukken… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Annuleren + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Zijbalk in-/uitschakelen +toggle_sidebar_notification2.title=Zijbalk in-/uitschakelen (document bevat overzicht/bijlagen/lagen) +toggle_sidebar_label=Zijbalk in-/uitschakelen +document_outline.title=Documentoverzicht tonen (dubbelklik om alle items uit/samen te vouwen) +document_outline_label=Documentoverzicht +attachments.title=Bijlagen tonen +attachments_label=Bijlagen +layers.title=Lagen tonen (dubbelklik om alle lagen naar de standaardstatus terug te zetten) +layers_label=Lagen +thumbs.title=Miniaturen tonen +thumbs_label=Miniaturen +current_outline_item.title=Huidig item in inhoudsopgave zoeken +current_outline_item_label=Huidig item in inhoudsopgave +findbar.title=Zoeken in document +findbar_label=Zoeken + +additional_layers=Aanvullende lagen +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pagina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatuur van pagina {{page}} + +# Find panel button title and messages +find_input.title=Zoeken +find_input.placeholder=Zoeken in document… +find_previous.title=De vorige overeenkomst van de tekst zoeken +find_previous_label=Vorige +find_next.title=De volgende overeenkomst van de tekst zoeken +find_next_label=Volgende +find_highlight=Alles markeren +find_match_case_label=Hoofdlettergevoelig +find_match_diacritics_label=Diakritische tekens gebruiken +find_entire_word_label=Hele woorden +find_reached_top=Bovenkant van document bereikt, doorgegaan vanaf onderkant +find_reached_bottom=Onderkant van document bereikt, doorgegaan vanaf bovenkant +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} van {{total}} overeenkomst +find_match_count[two]={{current}} van {{total}} overeenkomsten +find_match_count[few]={{current}} van {{total}} overeenkomsten +find_match_count[many]={{current}} van {{total}} overeenkomsten +find_match_count[other]={{current}} van {{total}} overeenkomsten +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Meer dan {{limit}} overeenkomsten +find_match_count_limit[one]=Meer dan {{limit}} overeenkomst +find_match_count_limit[two]=Meer dan {{limit}} overeenkomsten +find_match_count_limit[few]=Meer dan {{limit}} overeenkomsten +find_match_count_limit[many]=Meer dan {{limit}} overeenkomsten +find_match_count_limit[other]=Meer dan {{limit}} overeenkomsten +find_not_found=Tekst niet gevonden + +# Predefined zoom values +page_scale_width=Paginabreedte +page_scale_fit=Hele pagina +page_scale_auto=Automatisch zoomen +page_scale_actual=Werkelijke grootte +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Er is een fout opgetreden bij het laden van de PDF. +invalid_file_error=Ongeldig of beschadigd PDF-bestand. +missing_file_error=PDF-bestand ontbreekt. +unexpected_response_error=Onverwacht serverantwoord. +rendering_error=Er is een fout opgetreden bij het weergeven van de pagina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}-aantekening] +password_label=Voer het wachtwoord in om dit PDF-bestand te openen. +password_invalid=Ongeldig wachtwoord. Probeer het opnieuw. +password_ok=OK +password_cancel=Annuleren + +printing_not_supported=Waarschuwing: afdrukken wordt niet volledig ondersteund door deze browser. +printing_not_ready=Waarschuwing: de PDF is niet volledig geladen voor afdrukken. +web_fonts_disabled=Weblettertypen zijn uitgeschakeld: gebruik van ingebedde PDF-lettertypen is niet mogelijk. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Tekenen +editor_ink2_label=Tekenen + +editor_stamp1.title=Afbeeldingen toevoegen of bewerken +editor_stamp1_label=Afbeeldingen toevoegen of bewerken + +free_text2_default_content=Begin met typen… + +# Editor Parameters +editor_free_text_color=Kleur +editor_free_text_size=Grootte +editor_ink_color=Kleur +editor_ink_thickness=Dikte +editor_ink_opacity=Opaciteit + +editor_stamp_add_image_label=Afbeelding toevoegen +editor_stamp_add_image.title=Afbeelding toevoegen + +# Editor aria +editor_free_text2_aria_label=Tekstbewerker +editor_ink2_aria_label=Tekeningbewerker +editor_ink_canvas_aria_label=Door gebruiker gemaakte afbeelding + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_cancel_button=Annuleren +editor_alt_text_save_button=Opslaan +# This is a placeholder for the alt text input area diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/nn-NO/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/nn-NO/viewer.properties new file mode 100644 index 00000000..0c6a9abc --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/nn-NO/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Føregåande side +previous_label=Føregåande +next.title=Neste side +next_label=Neste + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Side +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=av {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} av {{pagesCount}}) + +zoom_out.title=Zoom ut +zoom_out_label=Zoom ut +zoom_in.title=Zoom inn +zoom_in_label=Zoom inn +zoom.title=Zoom +presentation_mode.title=Byt til presentasjonsmodus +presentation_mode_label=Presentasjonsmodus +open_file.title=Opne fil +open_file_label=Opne +print.title=Skriv ut +print_label=Skriv ut +save.title=Lagre +save_label=Lagre +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Last ned +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Last ned +bookmark1.title=Gjeldande side (sjå URL frå gjeldande side) +bookmark1_label=Gjeldande side +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Opne i app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Opne i app + +# Secondary toolbar and context menu +tools.title=Verktøy +tools_label=Verktøy +first_page.title=Gå til første side +first_page_label=Gå til første side +last_page.title=Gå til siste side +last_page_label=Gå til siste side +page_rotate_cw.title=Roter med klokka +page_rotate_cw_label=Roter med klokka +page_rotate_ccw.title=Roter mot klokka +page_rotate_ccw_label=Roter mot klokka + +cursor_text_select_tool.title=Aktiver tekstmarkeringsverktøy +cursor_text_select_tool_label=Tekstmarkeringsverktøy +cursor_hand_tool.title=Aktiver handverktøy +cursor_hand_tool_label=Handverktøy + +scroll_page.title=Bruk siderulling +scroll_page_label=Siderulling +scroll_vertical.title=Bruk vertikal rulling +scroll_vertical_label=Vertikal rulling +scroll_horizontal.title=Bruk horisontal rulling +scroll_horizontal_label=Horisontal rulling +scroll_wrapped.title=Bruk fleirsiderulling +scroll_wrapped_label=Fleirsiderulling + +spread_none.title=Vis enkeltsider +spread_none_label=Enkeltside +spread_odd.title=Vis oppslag med ulike sidenummer til venstre +spread_odd_label=Oppslag med framside +spread_even.title=Vis oppslag med like sidenummmer til venstre +spread_even_label=Oppslag utan framside + +# Document properties dialog box +document_properties.title=Dokumenteigenskapar… +document_properties_label=Dokumenteigenskapar… +document_properties_file_name=Filnamn: +document_properties_file_size=Filstorleik: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Tittel: +document_properties_author=Forfattar: +document_properties_subject=Emne: +document_properties_keywords=Stikkord: +document_properties_creation_date=Dato oppretta: +document_properties_modification_date=Dato endra: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Oppretta av: +document_properties_producer=PDF-verktøy: +document_properties_version=PDF-versjon: +document_properties_page_count=Sidetal: +document_properties_page_size=Sidestørrelse: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=ståande +document_properties_page_size_orientation_landscape=liggande +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Brev +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Rask nettvising: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nei +document_properties_close=Lat att + +print_progress_message=Førebur dokumentet for utskrift… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Avbryt + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Slå av/på sidestolpe +toggle_sidebar_notification2.title=Vis/gøym sidestolpe (dokumentet inneheld oversikt/vedlegg/lag) +toggle_sidebar_label=Slå av/på sidestolpe +document_outline.title=Vis dokumentdisposisjonen (dobbelklikk for å utvide/gøyme alle elementa) +document_outline_label=Dokumentdisposisjon +attachments.title=Vis vedlegg +attachments_label=Vedlegg +layers.title=Vis lag (dobbeltklikk for å tilbakestille alle lag til standardtilstand) +layers_label=Lag +thumbs.title=Vis miniatyrbilde +thumbs_label=Miniatyrbilde +current_outline_item.title=Finn gjeldande disposisjonselement +current_outline_item_label=Gjeldande disposisjonselement +findbar.title=Finn i dokumentet +findbar_label=Finn + +additional_layers=Ytterlegare lag +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Side {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Side {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatyrbilde av side {{page}} + +# Find panel button title and messages +find_input.title=Søk +find_input.placeholder=Søk i dokument… +find_previous.title=Finn førre førekomst av frasen +find_previous_label=Førre +find_next.title=Finn neste førekomst av frasen +find_next_label=Neste +find_highlight=Uthev alle +find_match_case_label=Skil store/små bokstavar +find_match_diacritics_label=Samsvar diakritiske teikn +find_entire_word_label=Heile ord +find_reached_top=Nådde toppen av dokumentet, fortset frå botnen +find_reached_bottom=Nådde botnen av dokumentet, fortset frå toppen +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} av {{total}} treff +find_match_count[two]={{current}} av {{total}} treff +find_match_count[few]={{current}} av {{total}} treff +find_match_count[many]={{current}} av {{total}} treff +find_match_count[other]={{current}} av {{total}} treff +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Meir enn {{limit}} treff +find_match_count_limit[one]=Meir enn {{limit}} treff +find_match_count_limit[two]=Meir enn {{limit}} treff +find_match_count_limit[few]=Meir enn {{limit}} treff +find_match_count_limit[many]=Meir enn {{limit}} treff +find_match_count_limit[other]=Meir enn {{limit}} treff +find_not_found=Fann ikkje teksten + +# Predefined zoom values +page_scale_width=Sidebreidde +page_scale_fit=Tilpass til sida +page_scale_auto=Automatisk skalering +page_scale_actual=Verkeleg storleik +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ein feil oppstod ved lasting av PDF. +invalid_file_error=Ugyldig eller korrupt PDF-fil. +missing_file_error=Manglande PDF-fil. +unexpected_response_error=Uventa tenarrespons. +rendering_error=Ein feil oppstod under vising av sida. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} annotasjon] +password_label=Skriv inn passordet for å opne denne PDF-fila. +password_invalid=Ugyldig passord. Prøv på nytt. +password_ok=OK +password_cancel=Avbryt + +printing_not_supported=Åtvaring: Utskrift er ikkje fullstendig støtta av denne nettlesaren. +printing_not_ready=Åtvaring: PDF ikkje fullstendig innlasta for utskrift. +web_fonts_disabled=Web-skrifter er slått av: Kan ikkje bruke innbundne PDF-skrifter. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Teikne +editor_ink2_label=Teikne + +editor_stamp.title=Legg til eit bilde +editor_stamp_label=Legg til eit bilde + +editor_stamp1.title=Legg til eller rediger bilde +editor_stamp1_label=Legg til eller rediger bilde + +free_text2_default_content=Byrje å skrive… + +# Editor Parameters +editor_free_text_color=Farge +editor_free_text_size=Storleik +editor_ink_color=Farge +editor_ink_thickness=Tjukkleik +editor_ink_opacity=Ugjennomskinleg + +editor_stamp_add_image_label=Legg til bilde +editor_stamp_add_image.title=Legg til bilde + +# Editor aria +editor_free_text2_aria_label=Tekstredigering +editor_ink2_aria_label=Teikneredigering +editor_ink_canvas_aria_label=Brukarskapt bilde diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/oc/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/oc/viewer.properties new file mode 100644 index 00000000..2afe8efd --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/oc/viewer.properties @@ -0,0 +1,278 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagina precedenta +previous_label=Precedent +next.title=Pagina seguenta +next_label=Seguent + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=sus {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Zoom arrièr +zoom_out_label=Zoom arrièr +zoom_in.title=Zoom avant +zoom_in_label=Zoom avant +zoom.title=Zoom +presentation_mode.title=Bascular en mòde presentacion +presentation_mode_label=Mòde Presentacion +open_file.title=Dobrir lo fichièr +open_file_label=Dobrir +print.title=Imprimir +print_label=Imprimir +save.title=Enregistrar +save_label=Enregistrar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Telecargar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Telecargar +bookmark1.title=Pagina actuala (mostrar l’adreça de la pagina actuala) +bookmark1_label=Pagina actuala +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Dobrir amb l’aplicacion +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Dobrir amb l’aplicacion + +# Secondary toolbar and context menu +tools.title=Aisinas +tools_label=Aisinas +first_page.title=Anar a la primièra pagina +first_page_label=Anar a la primièra pagina +last_page.title=Anar a la darrièra pagina +last_page_label=Anar a la darrièra pagina +page_rotate_cw.title=Rotacion orària +page_rotate_cw_label=Rotacion orària +page_rotate_ccw.title=Rotacion antiorària +page_rotate_ccw_label=Rotacion antiorària + +cursor_text_select_tool.title=Activar l'aisina de seleccion de tèxte +cursor_text_select_tool_label=Aisina de seleccion de tèxte +cursor_hand_tool.title=Activar l’aisina man +cursor_hand_tool_label=Aisina man + +scroll_page.title=Activar lo defilament per pagina +scroll_page_label=Defilament per pagina +scroll_vertical.title=Utilizar lo defilament vertical +scroll_vertical_label=Defilament vertical +scroll_horizontal.title=Utilizar lo defilament orizontal +scroll_horizontal_label=Defilament orizontal +scroll_wrapped.title=Activar lo defilament continú +scroll_wrapped_label=Defilament continú + +spread_none.title=Agropar pas las paginas doas a doas +spread_none_label=Una sola pagina +spread_odd.title=Mostrar doas paginas en començant per las paginas imparas a esquèrra +spread_odd_label=Dobla pagina, impara a drecha +spread_even.title=Mostrar doas paginas en començant per las paginas paras a esquèrra +spread_even_label=Dobla pagina, para a drecha + +# Document properties dialog box +document_properties.title=Proprietats del document… +document_properties_label=Proprietats del document… +document_properties_file_name=Nom del fichièr : +document_properties_file_size=Talha del fichièr : +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} Ko ({{size_b}} octets) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} Mo ({{size_b}} octets) +document_properties_title=Títol : +document_properties_author=Autor : +document_properties_subject=Subjècte : +document_properties_keywords=Mots claus : +document_properties_creation_date=Data de creacion : +document_properties_modification_date=Data de modificacion : +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, a {{time}} +document_properties_creator=Creator : +document_properties_producer=Aisina de conversion PDF : +document_properties_version=Version PDF : +document_properties_page_count=Nombre de paginas : +document_properties_page_size=Talha de la pagina : +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=retrach +document_properties_page_size_orientation_landscape=païsatge +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letra +document_properties_page_size_name_legal=Document juridic +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista web rapida : +document_properties_linearized_yes=Òc +document_properties_linearized_no=Non +document_properties_close=Tampar + +print_progress_message=Preparacion del document per l’impression… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Anullar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Afichar/amagar lo panèl lateral +toggle_sidebar_notification2.title=Afichar/amagar lo panèl lateral (lo document conten esquèmas/pèças juntas/calques) +toggle_sidebar_label=Afichar/amagar lo panèl lateral +document_outline.title=Mostrar los esquèmas del document (dobleclicar per espandre/reduire totes los elements) +document_outline_label=Marcapaginas del document +attachments.title=Visualizar las pèças juntas +attachments_label=Pèças juntas +layers.title=Afichar los calques (doble-clicar per reïnicializar totes los calques a l’estat per defaut) +layers_label=Calques +thumbs.title=Afichar las vinhetas +thumbs_label=Vinhetas +current_outline_item.title=Trobar l’element de plan actual +current_outline_item_label=Element de plan actual +findbar.title=Cercar dins lo document +findbar_label=Recercar + +additional_layers=Calques suplementaris +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pagina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Vinheta de la pagina {{page}} + +# Find panel button title and messages +find_input.title=Recercar +find_input.placeholder=Cercar dins lo document… +find_previous.title=Tròba l'ocurréncia precedenta de la frasa +find_previous_label=Precedent +find_next.title=Tròba l'ocurréncia venenta de la frasa +find_next_label=Seguent +find_highlight=Suslinhar tot +find_match_case_label=Respectar la cassa +find_match_diacritics_label=Respectar los diacritics +find_entire_word_label=Mots entièrs +find_reached_top=Naut de la pagina atenh, perseguida del bas +find_reached_bottom=Bas de la pagina atench, perseguida al començament +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=Ocuréncia {{current}} sus {{total}} +find_match_count[two]=Ocuréncia {{current}} sus {{total}} +find_match_count[few]=Ocuréncia {{current}} sus {{total}} +find_match_count[many]=Ocuréncia {{current}} sus {{total}} +find_match_count[other]=Ocuréncia {{current}} sus {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mai de {{limit}} ocuréncias +find_match_count_limit[one]=Mai de {{limit}} ocuréncia +find_match_count_limit[two]=Mai de {{limit}} ocuréncias +find_match_count_limit[few]=Mai de {{limit}} ocuréncias +find_match_count_limit[many]=Mai de {{limit}} ocuréncias +find_match_count_limit[other]=Mai de {{limit}} ocuréncias +find_not_found=Frasa pas trobada + +# Predefined zoom values +page_scale_width=Largor plena +page_scale_fit=Pagina entièra +page_scale_auto=Zoom automatic +page_scale_actual=Talha vertadièra +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Una error s'es producha pendent lo cargament del fichièr PDF. +invalid_file_error=Fichièr PDF invalid o corromput. +missing_file_error=Fichièr PDF mancant. +unexpected_response_error=Responsa de servidor imprevista. +rendering_error=Una error s'es producha pendent l'afichatge de la pagina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} a {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotacion {{type}}] +password_label=Picatz lo senhal per dobrir aqueste fichièr PDF. +password_invalid=Senhal incorrècte. Tornatz ensajar. +password_ok=D'acòrdi +password_cancel=Anullar + +printing_not_supported=Atencion : l'impression es pas complètament gerida per aqueste navegador. +printing_not_ready=Atencion : lo PDF es pas entièrament cargat per lo poder imprimir. +web_fonts_disabled=Las polissas web son desactivadas : impossible d'utilizar las polissas integradas al PDF. + +# Editor +editor_free_text2.title=Tèxte +editor_free_text2_label=Tèxte +editor_ink2.title=Dessenhar +editor_ink2_label=Dessenhar + +editor_stamp1.title=Apondre o modificar d’imatges +editor_stamp1_label=Apondre o modificar d’imatges + +free_text2_default_content=Començatz d’escriure… + +# Editor Parameters +editor_free_text_color=Color +editor_free_text_size=Talha +editor_ink_color=Color +editor_ink_thickness=Espessor +editor_ink_opacity=Opacitat + +editor_stamp_add_image_label=Apondre imatge +editor_stamp_add_image.title=Apondre imatge + +# Editor aria +editor_free_text2_aria_label=Editor de tèxte +editor_ink2_aria_label=Editor de dessenh +editor_ink_canvas_aria_label=Imatge creat per l’utilizaire + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Tèxt alternatiu +editor_alt_text_edit_button_label=Modificar lo tèxt alternatiu +editor_alt_text_dialog_label=Causir una opcion +editor_alt_text_add_description_label=Apondre una descripcion +editor_alt_text_cancel_button=Anullar +editor_alt_text_save_button=Enregistrar +# This is a placeholder for the alt text input area diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/pa-IN/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pa-IN/viewer.properties new file mode 100644 index 00000000..2cb316fb --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pa-IN/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=ਪਿਛਲਾ ਸਫ਼ਾ +previous_label=ਪਿੱਛੇ +next.title=ਅਗਲਾ ਸਫ਼ਾ +next_label=ਅੱਗੇ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ਸਫ਼ਾ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} ਵਿੱਚੋਂ +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages={{pagesCount}}) ਵਿੱਚੋਂ ({{pageNumber}} + +zoom_out.title=ਜ਼ੂਮ ਆਉਟ +zoom_out_label=ਜ਼ੂਮ ਆਉਟ +zoom_in.title=ਜ਼ੂਮ ਇਨ +zoom_in_label=ਜ਼ੂਮ ਇਨ +zoom.title=ਜ਼ੂਨ +presentation_mode.title=ਪਰਿਜੈਂਟੇਸ਼ਨ ਮੋਡ ਵਿੱਚ ਜਾਓ +presentation_mode_label=ਪਰਿਜੈਂਟੇਸ਼ਨ ਮੋਡ +open_file.title=ਫਾਈਲ ਨੂੰ ਖੋਲ੍ਹੋ +open_file_label=ਖੋਲ੍ਹੋ +print.title=ਪਰਿੰਟ +print_label=ਪਰਿੰਟ +save.title=ਸੰਭਾਲੋ +save_label=ਸੰਭਾਲੋ +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=ਡਾਊਨਲੋਡ +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=ਡਾਊਨਲੋਡ +bookmark1.title=ਮੌਜੂਦਾ ਸਫ਼਼ਾ (ਮੌਜੂਦਾ ਸਫ਼ੇ ਤੋਂ URL ਵੇਖੋ) +bookmark1_label=ਮੌਜੂਦਾ ਸਫ਼਼ਾ +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=ਐਪ ਵਿੱਚ ਖੋਲ੍ਹੋ +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=ਐਪ ਵਿੱਚ ਖੋਲ੍ਹੋ + +# Secondary toolbar and context menu +tools.title=ਟੂਲ +tools_label=ਟੂਲ +first_page.title=ਪਹਿਲੇ ਸਫ਼ੇ ਉੱਤੇ ਜਾਓ +first_page_label=ਪਹਿਲੇ ਸਫ਼ੇ ਉੱਤੇ ਜਾਓ +last_page.title=ਆਖਰੀ ਸਫ਼ੇ ਉੱਤੇ ਜਾਓ +last_page_label=ਆਖਰੀ ਸਫ਼ੇ ਉੱਤੇ ਜਾਓ +page_rotate_cw.title=ਸੱਜੇ ਦਾਅ ਘੁੰਮਾਓ +page_rotate_cw_label=ਸੱਜੇ ਦਾਅ ਘੁੰਮਾਓ +page_rotate_ccw.title=ਖੱਬੇ ਦਾਅ ਘੁੰਮਾਓ +page_rotate_ccw_label=ਖੱਬੇ ਦਾਅ ਘੁੰਮਾਓ + +cursor_text_select_tool.title=ਲਿਖਤ ਚੋਣ ਟੂਲ ਸਮਰੱਥ ਕਰੋ +cursor_text_select_tool_label=ਲਿਖਤ ਚੋਣ ਟੂਲ +cursor_hand_tool.title=ਹੱਥ ਟੂਲ ਸਮਰੱਥ ਕਰੋ +cursor_hand_tool_label=ਹੱਥ ਟੂਲ + +scroll_page.title=ਸਫ਼ਾ ਖਿਸਕਾਉਣ ਨੂੰ ਵਰਤੋਂ +scroll_page_label=ਸਫ਼ਾ ਖਿਸਕਾਉਣਾ +scroll_vertical.title=ਖੜ੍ਹਵੇਂ ਸਕਰਾਉਣ ਨੂੰ ਵਰਤੋਂ +scroll_vertical_label=ਖੜ੍ਹਵਾਂ ਸਰਕਾਉਣਾ +scroll_horizontal.title=ਲੇਟਵੇਂ ਸਰਕਾਉਣ ਨੂੰ ਵਰਤੋਂ +scroll_horizontal_label=ਲੇਟਵਾਂ ਸਰਕਾਉਣਾ +scroll_wrapped.title=ਸਮੇਟੇ ਸਰਕਾਉਣ ਨੂੰ ਵਰਤੋਂ +scroll_wrapped_label=ਸਮੇਟਿਆ ਸਰਕਾਉਣਾ + +spread_none.title=ਸਫ਼ਾ ਫੈਲਾਅ ਵਿੱਚ ਸ਼ਾਮਲ ਨਾ ਹੋਵੋ +spread_none_label=ਕੋਈ ਫੈਲਾਅ ਨਹੀਂ +spread_odd.title=ਟਾਂਕ ਅੰਕ ਵਾਲੇ ਸਫ਼ਿਆਂ ਨਾਲ ਸ਼ੁਰੂ ਹੋਣ ਵਾਲੇ ਸਫਿਆਂ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ +spread_odd_label=ਟਾਂਕ ਫੈਲਾਅ +spread_even.title=ਜਿਸਤ ਅੰਕ ਵਾਲੇ ਸਫ਼ਿਆਂ ਨਾਲ ਸ਼ੁਰੂ ਹੋਣ ਵਾਲੇ ਸਫਿਆਂ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ +spread_even_label=ਜਿਸਤ ਫੈਲਾਅ + +# Document properties dialog box +document_properties.title=…ਦਸਤਾਵੇਜ਼ ਦੀ ਵਿਸ਼ੇਸ਼ਤਾ +document_properties_label=…ਦਸਤਾਵੇਜ਼ ਦੀ ਵਿਸ਼ੇਸ਼ਤਾ +document_properties_file_name=ਫਾਈਲ ਦਾ ਨਾਂ: +document_properties_file_size=ਫਾਈਲ ਦਾ ਆਕਾਰ: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} ਬਾਈਟ) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} ਬਾਈਟ) +document_properties_title=ਟਾਈਟਲ: +document_properties_author=ਲੇਖਕ: +document_properties_subject=ਵਿਸ਼ਾ: +document_properties_keywords=ਸ਼ਬਦ: +document_properties_creation_date=ਬਣਾਉਣ ਦੀ ਮਿਤੀ: +document_properties_modification_date=ਸੋਧ ਦੀ ਮਿਤੀ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=ਨਿਰਮਾਤਾ: +document_properties_producer=PDF ਪ੍ਰੋਡਿਊਸਰ: +document_properties_version=PDF ਵਰਜਨ: +document_properties_page_count=ਸਫ਼ੇ ਦੀ ਗਿਣਤੀ: +document_properties_page_size=ਸਫ਼ਾ ਆਕਾਰ: +document_properties_page_size_unit_inches=ਇੰਚ +document_properties_page_size_unit_millimeters=ਮਿਮੀ +document_properties_page_size_orientation_portrait=ਪੋਰਟਰੇਟ +document_properties_page_size_orientation_landscape=ਲੈਂਡਸਕੇਪ +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=ਲੈਟਰ +document_properties_page_size_name_legal=ਕਨੂੰਨੀ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=ਤੇਜ਼ ਵੈੱਬ ਝਲਕ: +document_properties_linearized_yes=ਹਾਂ +document_properties_linearized_no=ਨਹੀਂ +document_properties_close=ਬੰਦ ਕਰੋ + +print_progress_message=…ਪਰਿੰਟ ਕਰਨ ਲਈ ਦਸਤਾਵੇਜ਼ ਨੂੰ ਤਿਆਰ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ਰੱਦ ਕਰੋ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=ਬਾਹੀ ਬਦਲੋ +toggle_sidebar_notification2.title=ਬਾਹੀ ਨੂੰ ਬਦਲੋ (ਦਸਤਾਵੇਜ਼ ਖਾਕਾ/ਅਟੈਚਮੈਂਟ/ਪਰਤਾਂ ਰੱਖਦਾ ਹੈ) +toggle_sidebar_label=ਬਾਹੀ ਬਦਲੋ +document_outline.title=ਦਸਤਾਵੇਜ਼ ਖਾਕਾ ਦਿਖਾਓ (ਸਾਰੀਆਂ ਆਈਟਮਾਂ ਨੂੰ ਫੈਲਾਉਣ/ਸਮੇਟਣ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ) +document_outline_label=ਦਸਤਾਵੇਜ਼ ਖਾਕਾ +attachments.title=ਅਟੈਚਮੈਂਟ ਵੇਖਾਓ +attachments_label=ਅਟੈਚਮੈਂਟਾਂ +layers.title=ਪਰਤਾਂ ਵੇਖਾਓ (ਸਾਰੀਆਂ ਪਰਤਾਂ ਨੂੰ ਮੂਲ ਹਾਲਤ ਉੱਤੇ ਮੁੜ-ਸੈੱਟ ਕਰਨ ਲਈ ਦੋ ਵਾਰ ਕਲਿੱਕ ਕਰੋ) +layers_label=ਪਰਤਾਂ +thumbs.title=ਥੰਮਨੇਲ ਨੂੰ ਵੇਖਾਓ +thumbs_label=ਥੰਮਨੇਲ +current_outline_item.title=ਮੌੌਜੂਦਾ ਖਾਕਾ ਚੀਜ਼ ਲੱਭੋ +current_outline_item_label=ਮੌਜੂਦਾ ਖਾਕਾ ਚੀਜ਼ +findbar.title=ਦਸਤਾਵੇਜ਼ ਵਿੱਚ ਲੱਭੋ +findbar_label=ਲੱਭੋ + +additional_layers=ਵਾਧੂ ਪਰਤਾਂ +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=ਸਫ਼ਾ {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=ਸਫ਼ਾ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} ਸਫ਼ੇ ਦਾ ਥੰਮਨੇਲ + +# Find panel button title and messages +find_input.title=ਲੱਭੋ +find_input.placeholder=…ਦਸਤਾਵੇਜ਼ 'ਚ ਲੱਭੋ +find_previous.title=ਵਾਕ ਦੀ ਪਿਛਲੀ ਮੌਜੂਦਗੀ ਲੱਭੋ +find_previous_label=ਪਿੱਛੇ +find_next.title=ਵਾਕ ਦੀ ਅਗਲੀ ਮੌਜੂਦਗੀ ਲੱਭੋ +find_next_label=ਅੱਗੇ +find_highlight=ਸਭ ਉਭਾਰੋ +find_match_case_label=ਅੱਖਰ ਆਕਾਰ ਨੂੰ ਮਿਲਾਉ +find_match_diacritics_label=ਭੇਦਸੂਚਕ ਮੇਲ +find_entire_word_label=ਪੂਰੇ ਸ਼ਬਦ +find_reached_top=ਦਸਤਾਵੇਜ਼ ਦੇ ਉੱਤੇ ਆ ਗਏ ਹਾਂ, ਥੱਲੇ ਤੋਂ ਜਾਰੀ ਰੱਖਿਆ ਹੈ +find_reached_bottom=ਦਸਤਾਵੇਜ਼ ਦੇ ਅੰਤ ਉੱਤੇ ਆ ਗਏ ਹਾਂ, ਉੱਤੇ ਤੋਂ ਜਾਰੀ ਰੱਖਿਆ ਹੈ +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} ਵਿੱਚੋਂ {{current}} ਮੇਲ +find_match_count[two]={{total}} ਵਿੱਚੋਂ {{current}} ਮੇਲ +find_match_count[few]={{total}} ਵਿੱਚੋਂ {{current}} ਮੇਲ +find_match_count[many]={{total}} ਵਿੱਚੋਂ {{current}} ਮੇਲ +find_match_count[other]={{total}} ਵਿੱਚੋਂ {{current}} ਮੇਲ +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} ਮੇਲਾਂ ਤੋਂ ਵੱਧ +find_match_count_limit[one]={{limit}} ਮੇਲ ਤੋਂ ਵੱਧ +find_match_count_limit[two]={{limit}} ਮੇਲਾਂ ਤੋਂ ਵੱਧ +find_match_count_limit[few]={{limit}} ਮੇਲਾਂ ਤੋਂ ਵੱਧ +find_match_count_limit[many]={{limit}} ਮੇਲਾਂ ਤੋਂ ਵੱਧ +find_match_count_limit[other]={{limit}} ਮੇਲਾਂ ਤੋਂ ਵੱਧ +find_not_found=ਵਾਕ ਨਹੀਂ ਲੱਭਿਆ + +# Predefined zoom values +page_scale_width=ਸਫ਼ੇ ਦੀ ਚੌੜਾਈ +page_scale_fit=ਸਫ਼ਾ ਫਿੱਟ +page_scale_auto=ਆਟੋਮੈਟਿਕ ਜ਼ੂਮ ਕਰੋ +page_scale_actual=ਆਟੋਮੈਟਿਕ ਆਕਾਰ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF ਲੋਡ ਕਰਨ ਦੇ ਦੌਰਾਨ ਗਲਤੀ ਆਈ ਹੈ। +invalid_file_error=ਗਲਤ ਜਾਂ ਨਿਕਾਰਾ PDF ਫਾਈਲ ਹੈ। +missing_file_error=ਨਾ-ਮੌਜੂਦ PDF ਫਾਈਲ। +unexpected_response_error=ਅਣਜਾਣ ਸਰਵਰ ਜਵਾਬ। +rendering_error=ਸਫ਼ਾ ਰੈਡਰ ਕਰਨ ਦੇ ਦੌਰਾਨ ਗਲਤੀ ਆਈ ਹੈ। + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} ਵਿਆਖਿਆ] +password_label=ਇਹ PDF ਫਾਈਲ ਨੂੰ ਖੋਲ੍ਹਣ ਲਈ ਪਾਸਵਰਡ ਦਿਉ। +password_invalid=ਗਲਤ ਪਾਸਵਰਡ। ਫੇਰ ਕੋਸ਼ਿਸ਼ ਕਰੋ ਜੀ। +password_ok=ਠੀਕ ਹੈ +password_cancel=ਰੱਦ ਕਰੋ + +printing_not_supported=ਸਾਵਧਾਨ: ਇਹ ਬਰਾਊਜ਼ਰ ਪਰਿੰਟ ਕਰਨ ਲਈ ਪੂਰੀ ਤਰ੍ਹਾਂ ਸਹਾਇਕ ਨਹੀਂ ਹੈ। +printing_not_ready=ਸਾਵਧਾਨ: PDF ਨੂੰ ਪਰਿੰਟ ਕਰਨ ਲਈ ਪੂਰੀ ਤਰ੍ਹਾਂ ਲੋਡ ਨਹੀਂ ਹੈ। +web_fonts_disabled=ਵੈਬ ਫੋਂਟ ਬੰਦ ਹਨ: ਇੰਬੈਡ PDF ਫੋਂਟ ਨੂੰ ਵਰਤਣ ਲਈ ਅਸਮਰੱਥ ਹੈ। + +# Editor +editor_free_text2.title=ਲਿਖਤ +editor_free_text2_label=ਲਿਖਤ +editor_ink2.title=ਵਾਹੋ +editor_ink2_label=ਵਾਹੋ + +editor_stamp.title=ਚਿੱਤਰ ਜੋੜੋ +editor_stamp_label=ਚਿੱਤਰ ਜੋੜੋ + +editor_stamp1.title=ਚਿੱਤਰ ਜੋੜੋ ਜਾਂ ਸੋਧੋ +editor_stamp1_label=ਚਿੱਤਰ ਜੋੜੋ ਜਾਂ ਸੋਧੋ + +free_text2_default_content=…ਲਿਖਣਾ ਸ਼ੁਰੂ ਕਰੋ + +# Editor Parameters +editor_free_text_color=ਰੰਗ +editor_free_text_size=ਆਕਾਰ +editor_ink_color=ਰੰਗ +editor_ink_thickness=ਮੋਟਾਈ +editor_ink_opacity=ਧੁੰਦਲਾਪਨ + +editor_stamp_add_image_label=ਚਿੱਤਰ ਜੋੜੋ +editor_stamp_add_image.title=ਚਿੱਤਰ ਜੋੜੋ + +# Editor aria +editor_free_text2_aria_label=ਲਿਖਤ ਐਡੀਟਰ +editor_ink2_aria_label=ਵਹਾਉਣ ਐਡੀਟਰ +editor_ink_canvas_aria_label=ਵਰਤੋਂਕਾਰ ਵਲੋਂ ਬਣਾਇਆ ਚਿੱਤਰ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/pl/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pl/viewer.properties new file mode 100644 index 00000000..40699fac --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pl/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Poprzednia strona +previous_label=Poprzednia +next.title=Następna strona +next_label=Następna + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Strona +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=z {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} z {{pagesCount}}) + +zoom_out.title=Pomniejsz +zoom_out_label=Pomniejsz +zoom_in.title=Powiększ +zoom_in_label=Powiększ +zoom.title=Skala +presentation_mode.title=Przełącz na tryb prezentacji +presentation_mode_label=Tryb prezentacji +open_file.title=Otwórz plik +open_file_label=Otwórz +print.title=Drukuj +print_label=Drukuj +save.title=Zapisz +save_label=Zapisz +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Pobierz +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Pobierz +bookmark1.title=Bieżąca strona (adres do otwarcia na bieżącej stronie) +bookmark1_label=Bieżąca strona +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Otwórz w aplikacji +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Otwórz w aplikacji + +# Secondary toolbar and context menu +tools.title=Narzędzia +tools_label=Narzędzia +first_page.title=Przejdź do pierwszej strony +first_page_label=Przejdź do pierwszej strony +last_page.title=Przejdź do ostatniej strony +last_page_label=Przejdź do ostatniej strony +page_rotate_cw.title=Obróć zgodnie z ruchem wskazówek zegara +page_rotate_cw_label=Obróć zgodnie z ruchem wskazówek zegara +page_rotate_ccw.title=Obróć przeciwnie do ruchu wskazówek zegara +page_rotate_ccw_label=Obróć przeciwnie do ruchu wskazówek zegara + +cursor_text_select_tool.title=Włącz narzędzie zaznaczania tekstu +cursor_text_select_tool_label=Narzędzie zaznaczania tekstu +cursor_hand_tool.title=Włącz narzędzie rączka +cursor_hand_tool_label=Narzędzie rączka + +scroll_page.title=Przewijaj strony +scroll_page_label=Przewijanie stron +scroll_vertical.title=Przewijaj dokument w pionie +scroll_vertical_label=Przewijanie pionowe +scroll_horizontal.title=Przewijaj dokument w poziomie +scroll_horizontal_label=Przewijanie poziome +scroll_wrapped.title=Strony dokumentu wyświetlaj i przewijaj w kolumnach +scroll_wrapped_label=Widok dwóch stron + +spread_none.title=Nie ustawiaj stron obok siebie +spread_none_label=Brak kolumn +spread_odd.title=Strony nieparzyste ustawiaj na lewo od parzystych +spread_odd_label=Nieparzyste po lewej +spread_even.title=Strony parzyste ustawiaj na lewo od nieparzystych +spread_even_label=Parzyste po lewej + +# Document properties dialog box +document_properties.title=Właściwości dokumentu… +document_properties_label=Właściwości dokumentu… +document_properties_file_name=Nazwa pliku: +document_properties_file_size=Rozmiar pliku: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} B) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} B) +document_properties_title=Tytuł: +document_properties_author=Autor: +document_properties_subject=Temat: +document_properties_keywords=Słowa kluczowe: +document_properties_creation_date=Data utworzenia: +document_properties_modification_date=Data modyfikacji: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Utworzony przez: +document_properties_producer=PDF wyprodukowany przez: +document_properties_version=Wersja PDF: +document_properties_page_count=Liczba stron: +document_properties_page_size=Wymiary strony: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=pionowa +document_properties_page_size_orientation_landscape=pozioma +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=US Letter +document_properties_page_size_name_legal=US Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}}×{{height}} {{unit}} (orientacja {{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}}×{{height}} {{unit}} ({{name}}, orientacja {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Szybki podgląd w Internecie: +document_properties_linearized_yes=tak +document_properties_linearized_no=nie +document_properties_close=Zamknij + +print_progress_message=Przygotowywanie dokumentu do druku… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Anuluj + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Przełącz panel boczny +toggle_sidebar_notification2.title=Przełącz panel boczny (dokument zawiera konspekt/załączniki/warstwy) +toggle_sidebar_label=Przełącz panel boczny +document_outline.title=Konspekt dokumentu (podwójne kliknięcie rozwija lub zwija wszystkie pozycje) +document_outline_label=Konspekt dokumentu +attachments.title=Załączniki +attachments_label=Załączniki +layers.title=Warstwy (podwójne kliknięcie przywraca wszystkie warstwy do stanu domyślnego) +layers_label=Warstwy +thumbs.title=Miniatury +thumbs_label=Miniatury +current_outline_item.title=Znajdź bieżący element konspektu +current_outline_item_label=Bieżący element konspektu +findbar.title=Znajdź w dokumencie +findbar_label=Znajdź + +additional_layers=Dodatkowe warstwy +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}}. strona +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}}. strona +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura {{page}}. strony + +# Find panel button title and messages +find_input.title=Znajdź +find_input.placeholder=Znajdź w dokumencie… +find_previous.title=Znajdź poprzednie wystąpienie tekstu +find_previous_label=Poprzednie +find_next.title=Znajdź następne wystąpienie tekstu +find_next_label=Następne +find_highlight=Wyróżnianie wszystkich +find_match_case_label=Rozróżnianie wielkości liter +find_match_diacritics_label=Rozróżnianie liter diakrytyzowanych +find_entire_word_label=Całe słowa +find_reached_top=Początek dokumentu. Wyszukiwanie od końca. +find_reached_bottom=Koniec dokumentu. Wyszukiwanie od początku. +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=Pierwsze z {{total}} trafień +find_match_count[two]=Drugie z {{total}} trafień +find_match_count[few]={{current}}. z {{total}} trafień +find_match_count[many]={{current}}. z {{total}} trafień +find_match_count[other]={{current}}. z {{total}} trafień +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Brak trafień. +find_match_count_limit[one]=Więcej niż jedno trafienie. +find_match_count_limit[two]=Więcej niż dwa trafienia. +find_match_count_limit[few]=Więcej niż {{limit}} trafienia. +find_match_count_limit[many]=Więcej niż {{limit}} trafień. +find_match_count_limit[other]=Więcej niż {{limit}} trafień. +find_not_found=Nie znaleziono tekstu + +# Predefined zoom values +page_scale_width=Szerokość strony +page_scale_fit=Dopasowanie strony +page_scale_auto=Skala automatyczna +page_scale_actual=Rozmiar oryginalny +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Podczas wczytywania dokumentu PDF wystąpił błąd. +invalid_file_error=Nieprawidłowy lub uszkodzony plik PDF. +missing_file_error=Brak pliku PDF. +unexpected_response_error=Nieoczekiwana odpowiedź serwera. +rendering_error=Podczas renderowania strony wystąpił błąd. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Przypis: {{type}}] +password_label=Wprowadź hasło, aby otworzyć ten dokument PDF. +password_invalid=Nieprawidłowe hasło. Proszę spróbować ponownie. +password_ok=OK +password_cancel=Anuluj + +printing_not_supported=Ostrzeżenie: drukowanie nie jest w pełni obsługiwane przez tę przeglądarkę. +printing_not_ready=Ostrzeżenie: dokument PDF nie jest całkowicie wczytany, więc nie można go wydrukować. +web_fonts_disabled=Czcionki sieciowe są wyłączone: nie można użyć osadzonych czcionek PDF. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Rysunek +editor_ink2_label=Rysunek + +editor_stamp.title=Dodaj obraz +editor_stamp_label=Dodaj obraz + +editor_stamp1.title=Dodaj lub edytuj obrazy +editor_stamp1_label=Dodaj lub edytuj obrazy + +free_text2_default_content=Zacznij pisać… + +# Editor Parameters +editor_free_text_color=Kolor +editor_free_text_size=Rozmiar +editor_ink_color=Kolor +editor_ink_thickness=Grubość +editor_ink_opacity=Nieprzezroczystość + +editor_stamp_add_image_label=Dodaj obraz +editor_stamp_add_image.title=Dodaj obraz + +# Editor aria +editor_free_text2_aria_label=Edytor tekstu +editor_ink2_aria_label=Edytor rysunku +editor_ink_canvas_aria_label=Obraz utworzony przez użytkownika diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/pt-BR/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pt-BR/viewer.properties new file mode 100644 index 00000000..077b4037 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pt-BR/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página anterior +previous_label=Anterior +next.title=Próxima página +next_label=Próxima + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Página +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Reduzir +zoom_out_label=Reduzir +zoom_in.title=Ampliar +zoom_in_label=Ampliar +zoom.title=Zoom +presentation_mode.title=Mudar para o modo de apresentação +presentation_mode_label=Modo de apresentação +open_file.title=Abrir arquivo +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir +save.title=Salvar +save_label=Salvar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Baixar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Baixar +bookmark1.title=Página atual (ver URL da página atual) +bookmark1_label=Pagina atual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Abrir em um aplicativo +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Abrir em um aplicativo + +# Secondary toolbar and context menu +tools.title=Ferramentas +tools_label=Ferramentas +first_page.title=Ir para a primeira página +first_page_label=Ir para a primeira página +last_page.title=Ir para a última página +last_page_label=Ir para a última página +page_rotate_cw.title=Girar no sentido horário +page_rotate_cw_label=Girar no sentido horário +page_rotate_ccw.title=Girar no sentido anti-horário +page_rotate_ccw_label=Girar no sentido anti-horário + +cursor_text_select_tool.title=Ativar a ferramenta de seleção de texto +cursor_text_select_tool_label=Ferramenta de seleção de texto +cursor_hand_tool.title=Ativar ferramenta de deslocamento +cursor_hand_tool_label=Ferramenta de deslocamento + +scroll_page.title=Usar rolagem de página +scroll_page_label=Rolagem de página +scroll_vertical.title=Usar deslocamento vertical +scroll_vertical_label=Deslocamento vertical +scroll_horizontal.title=Usar deslocamento horizontal +scroll_horizontal_label=Deslocamento horizontal +scroll_wrapped.title=Usar deslocamento contido +scroll_wrapped_label=Deslocamento contido + +spread_none.title=Não reagrupar páginas +spread_none_label=Não estender +spread_odd.title=Agrupar páginas começando em páginas com números ímpares +spread_odd_label=Estender ímpares +spread_even.title=Agrupar páginas começando em páginas com números pares +spread_even_label=Estender pares + +# Document properties dialog box +document_properties.title=Propriedades do documento… +document_properties_label=Propriedades do documento… +document_properties_file_name=Nome do arquivo: +document_properties_file_size=Tamanho do arquivo: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Assunto: +document_properties_keywords=Palavras-chave: +document_properties_creation_date=Data da criação: +document_properties_modification_date=Data da modificação: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Criação: +document_properties_producer=Criador do PDF: +document_properties_version=Versão do PDF: +document_properties_page_count=Número de páginas: +document_properties_page_size=Tamanho da página: +document_properties_page_size_unit_inches=pol. +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=retrato +document_properties_page_size_orientation_landscape=paisagem +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Jurídico +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Exibição web rápida: +document_properties_linearized_yes=Sim +document_properties_linearized_no=Não +document_properties_close=Fechar + +print_progress_message=Preparando documento para impressão… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Exibir/ocultar painel lateral +toggle_sidebar_notification2.title=Exibir/ocultar painel (documento contém estrutura/anexos/camadas) +toggle_sidebar_label=Exibir/ocultar painel +document_outline.title=Mostrar estrutura do documento (duplo-clique expande/recolhe todos os itens) +document_outline_label=Estrutura do documento +attachments.title=Mostrar anexos +attachments_label=Anexos +layers.title=Mostrar camadas (duplo-clique redefine todas as camadas ao estado predefinido) +layers_label=Camadas +thumbs.title=Mostrar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Encontrar item atual da estrutura +current_outline_item_label=Item atual da estrutura +findbar.title=Procurar no documento +findbar_label=Procurar + +additional_layers=Camadas adicionais +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Página {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Página {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura da página {{page}} + +# Find panel button title and messages +find_input.title=Procurar +find_input.placeholder=Procurar no documento… +find_previous.title=Procurar a ocorrência anterior da frase +find_previous_label=Anterior +find_next.title=Procurar a próxima ocorrência da frase +find_next_label=Próxima +find_highlight=Destacar tudo +find_match_case_label=Diferenciar maiúsculas/minúsculas +find_match_diacritics_label=Considerar acentuação +find_entire_word_label=Palavras completas +find_reached_top=Início do documento alcançado, continuando do fim +find_reached_bottom=Fim do documento alcançado, continuando do início +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} ocorrência +find_match_count[two]={{current}} de {{total}} ocorrências +find_match_count[few]={{current}} de {{total}} ocorrências +find_match_count[many]={{current}} de {{total}} ocorrências +find_match_count[other]={{current}} de {{total}} ocorrências +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mais de {{limit}} ocorrências +find_match_count_limit[one]=Mais de {{limit}} ocorrência +find_match_count_limit[two]=Mais de {{limit}} ocorrências +find_match_count_limit[few]=Mais de {{limit}} ocorrências +find_match_count_limit[many]=Mais de {{limit}} ocorrências +find_match_count_limit[other]=Mais de {{limit}} ocorrências +find_not_found=Não encontrado + +# Predefined zoom values +page_scale_width=Largura da página +page_scale_fit=Ajustar à janela +page_scale_auto=Zoom automático +page_scale_actual=Tamanho real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ocorreu um erro ao carregar o PDF. +invalid_file_error=Arquivo PDF corrompido ou inválido. +missing_file_error=Arquivo PDF ausente. +unexpected_response_error=Resposta inesperada do servidor. +rendering_error=Ocorreu um erro ao renderizar a página. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotação {{type}}] +password_label=Forneça a senha para abrir este arquivo PDF. +password_invalid=Senha inválida. Tente novamente. +password_ok=OK +password_cancel=Cancelar + +printing_not_supported=Aviso: a impressão não é totalmente suportada neste navegador. +printing_not_ready=Aviso: o PDF não está totalmente carregado para impressão. +web_fonts_disabled=As fontes web estão desativadas: não foi possível usar fontes incorporadas do PDF. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Desenho +editor_ink2_label=Desenho + +editor_stamp.title=Adicionar uma imagem +editor_stamp_label=Adicionar uma imagem + +editor_stamp1.title=Adicionar ou editar imagens +editor_stamp1_label=Adicionar ou editar imagens + +free_text2_default_content=Comece digitando… + +# Editor Parameters +editor_free_text_color=Cor +editor_free_text_size=Tamanho +editor_ink_color=Cor +editor_ink_thickness=Espessura +editor_ink_opacity=Opacidade + +editor_stamp_add_image_label=Adicionar imagem +editor_stamp_add_image.title=Adicionar imagem + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de desenho +editor_ink_canvas_aria_label=Imagem criada pelo usuário diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/pt-PT/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pt-PT/viewer.properties new file mode 100644 index 00000000..22437aa3 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/pt-PT/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Página anterior +previous_label=Anterior +next.title=Página seguinte +next_label=Seguinte + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Página +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Reduzir +zoom_out_label=Reduzir +zoom_in.title=Ampliar +zoom_in_label=Ampliar +zoom.title=Zoom +presentation_mode.title=Trocar para o modo de apresentação +presentation_mode_label=Modo de apresentação +open_file.title=Abrir ficheiro +open_file_label=Abrir +print.title=Imprimir +print_label=Imprimir +save.title=Guardar +save_label=Guardar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Transferir +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Transferir +bookmark1.title=Página atual (ver URL da página atual) +bookmark1_label=Pagina atual +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Abrir na aplicação +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Abrir na aplicação + +# Secondary toolbar and context menu +tools.title=Ferramentas +tools_label=Ferramentas +first_page.title=Ir para a primeira página +first_page_label=Ir para a primeira página +last_page.title=Ir para a última página +last_page_label=Ir para a última página +page_rotate_cw.title=Rodar à direita +page_rotate_cw_label=Rodar à direita +page_rotate_ccw.title=Rodar à esquerda +page_rotate_ccw_label=Rodar à esquerda + +cursor_text_select_tool.title=Ativar ferramenta de seleção de texto +cursor_text_select_tool_label=Ferramenta de seleção de texto +cursor_hand_tool.title=Ativar ferramenta de mão +cursor_hand_tool_label=Ferramenta de mão + +scroll_page.title=Utilizar deslocamento da página +scroll_page_label=Deslocamento da página +scroll_vertical.title=Utilizar deslocação vertical +scroll_vertical_label=Deslocação vertical +scroll_horizontal.title=Utilizar deslocação horizontal +scroll_horizontal_label=Deslocação horizontal +scroll_wrapped.title=Utilizar deslocação encapsulada +scroll_wrapped_label=Deslocação encapsulada + +spread_none.title=Não juntar páginas dispersas +spread_none_label=Sem spreads +spread_odd.title=Juntar páginas dispersas a partir de páginas com números ímpares +spread_odd_label=Spreads ímpares +spread_even.title=Juntar páginas dispersas a partir de páginas com números pares +spread_even_label=Spreads pares + +# Document properties dialog box +document_properties.title=Propriedades do documento… +document_properties_label=Propriedades do documento… +document_properties_file_name=Nome do ficheiro: +document_properties_file_size=Tamanho do ficheiro: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Título: +document_properties_author=Autor: +document_properties_subject=Assunto: +document_properties_keywords=Palavras-chave: +document_properties_creation_date=Data de criação: +document_properties_modification_date=Data de modificação: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Criador: +document_properties_producer=Produtor de PDF: +document_properties_version=Versão do PDF: +document_properties_page_count=N.º de páginas: +document_properties_page_size=Tamanho da página: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=retrato +document_properties_page_size_orientation_landscape=paisagem +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Carta +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista rápida web: +document_properties_linearized_yes=Sim +document_properties_linearized_no=Não +document_properties_close=Fechar + +print_progress_message=A preparar o documento para impressão… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cancelar + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Alternar barra lateral +toggle_sidebar_notification2.title=Alternar barra lateral (o documento contém contornos/anexos/camadas) +toggle_sidebar_label=Alternar barra lateral +document_outline.title=Mostrar esquema do documento (duplo clique para expandir/colapsar todos os itens) +document_outline_label=Esquema do documento +attachments.title=Mostrar anexos +attachments_label=Anexos +layers.title=Mostrar camadas (clique duas vezes para repor todas as camadas para o estado predefinido) +layers_label=Camadas +thumbs.title=Mostrar miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Encontrar o item atualmente destacado +current_outline_item_label=Item atualmente destacado +findbar.title=Localizar em documento +findbar_label=Localizar + +additional_layers=Camadas adicionais +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Página {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Página {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura da página {{page}} + +# Find panel button title and messages +find_input.title=Localizar +find_input.placeholder=Localizar em documento… +find_previous.title=Localizar ocorrência anterior da frase +find_previous_label=Anterior +find_next.title=Localizar ocorrência seguinte da frase +find_next_label=Seguinte +find_highlight=Destacar tudo +find_match_case_label=Correspondência +find_match_diacritics_label=Corresponder diacríticos +find_entire_word_label=Palavras completas +find_reached_top=Topo do documento atingido, a continuar a partir do fundo +find_reached_bottom=Fim do documento atingido, a continuar a partir do topo +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} de {{total}} correspondência +find_match_count[two]={{current}} de {{total}} correspondências +find_match_count[few]={{current}} de {{total}} correspondências +find_match_count[many]={{current}} de {{total}} correspondências +find_match_count[other]={{current}} de {{total}} correspondências +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mais de {{limit}} correspondências +find_match_count_limit[one]=Mais de {{limit}} correspondência +find_match_count_limit[two]=Mais de {{limit}} correspondências +find_match_count_limit[few]=Mais de {{limit}} correspondências +find_match_count_limit[many]=Mais de {{limit}} correspondências +find_match_count_limit[other]=Mais de {{limit}} correspondências +find_not_found=Frase não encontrada + +# Predefined zoom values +page_scale_width=Ajustar à largura +page_scale_fit=Ajustar à página +page_scale_auto=Zoom automático +page_scale_actual=Tamanho real +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ocorreu um erro ao carregar o PDF. +invalid_file_error=Ficheiro PDF inválido ou danificado. +missing_file_error=Ficheiro PDF inexistente. +unexpected_response_error=Resposta inesperada do servidor. +rendering_error=Ocorreu um erro ao processar a página. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotação {{type}}] +password_label=Introduza a palavra-passe para abrir este ficheiro PDF. +password_invalid=Palavra-passe inválida. Por favor, tente novamente. +password_ok=OK +password_cancel=Cancelar + +printing_not_supported=Aviso: a impressão não é totalmente suportada por este navegador. +printing_not_ready=Aviso: o PDF ainda não está totalmente carregado. +web_fonts_disabled=Os tipos de letra web estão desativados: não é possível utilizar os tipos de letra PDF embutidos. + +# Editor +editor_free_text2.title=Texto +editor_free_text2_label=Texto +editor_ink2.title=Desenhar +editor_ink2_label=Desenhar + +editor_stamp.title=Adicionar uma imagem +editor_stamp_label=Adicionar uma imagem + +editor_stamp1.title=Adicionar ou editar imagens +editor_stamp1_label=Adicionar ou editar imagens + +free_text2_default_content=Começar a digitar… + +# Editor Parameters +editor_free_text_color=Cor +editor_free_text_size=Tamanho +editor_ink_color=Cor +editor_ink_thickness=Espessura +editor_ink_opacity=Opacidade + +editor_stamp_add_image_label=Adicionar imagem +editor_stamp_add_image.title=Adicionar imagem + +# Editor aria +editor_free_text2_aria_label=Editor de texto +editor_ink2_aria_label=Editor de desenho +editor_ink_canvas_aria_label=Imagem criada pelo utilizador diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/rm/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/rm/viewer.properties new file mode 100644 index 00000000..ea0a1182 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/rm/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagina precedenta +previous_label=Enavos +next.title=Proxima pagina +next_label=Enavant + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=da {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} da {{pagesCount}}) + +zoom_out.title=Empitschnir +zoom_out_label=Empitschnir +zoom_in.title=Engrondir +zoom_in_label=Engrondir +zoom.title=Zoom +presentation_mode.title=Midar en il modus da preschentaziun +presentation_mode_label=Modus da preschentaziun +open_file.title=Avrir datoteca +open_file_label=Avrir +print.title=Stampar +print_label=Stampar +save.title=Memorisar +save_label=Memorisar +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Telechargiar +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Telechargiar +bookmark1.title=Pagina actuala (mussar l'URL da la pagina actuala) +bookmark1_label=Pagina actuala +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Avrir en ina app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Avrir en ina app + +# Secondary toolbar and context menu +tools.title=Utensils +tools_label=Utensils +first_page.title=Siglir a l'emprima pagina +first_page_label=Siglir a l'emprima pagina +last_page.title=Siglir a la davosa pagina +last_page_label=Siglir a la davosa pagina +page_rotate_cw.title=Rotar en direcziun da l'ura +page_rotate_cw_label=Rotar en direcziun da l'ura +page_rotate_ccw.title=Rotar en direcziun cuntraria a l'ura +page_rotate_ccw_label=Rotar en direcziun cuntraria a l'ura + +cursor_text_select_tool.title=Activar l'utensil per selecziunar text +cursor_text_select_tool_label=Utensil per selecziunar text +cursor_hand_tool.title=Activar l'utensil da maun +cursor_hand_tool_label=Utensil da maun + +scroll_page.title=Utilisar la defilada per pagina +scroll_page_label=Defilada per pagina +scroll_vertical.title=Utilisar il defilar vertical +scroll_vertical_label=Defilar vertical +scroll_horizontal.title=Utilisar il defilar orizontal +scroll_horizontal_label=Defilar orizontal +scroll_wrapped.title=Utilisar il defilar en colonnas +scroll_wrapped_label=Defilar en colonnas + +spread_none.title=Betg parallelisar las paginas +spread_none_label=Betg parallel +spread_odd.title=Parallelisar las paginas cun cumenzar cun paginas spèras +spread_odd_label=Parallel spèr +spread_even.title=Parallelisar las paginas cun cumenzar cun paginas pèras +spread_even_label=Parallel pèr + +# Document properties dialog box +document_properties.title=Caracteristicas dal document… +document_properties_label=Caracteristicas dal document… +document_properties_file_name=Num da la datoteca: +document_properties_file_size=Grondezza da la datoteca: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Titel: +document_properties_author=Autur: +document_properties_subject=Tema: +document_properties_keywords=Chavazzins: +document_properties_creation_date=Data da creaziun: +document_properties_modification_date=Data da modificaziun: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}} {{time}} +document_properties_creator=Creà da: +document_properties_producer=Creà il PDF cun: +document_properties_version=Versiun da PDF: +document_properties_page_count=Dumber da paginas: +document_properties_page_size=Grondezza da la pagina: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=vertical +document_properties_page_size_orientation_landscape=orizontal +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Gea +document_properties_linearized_no=Na +document_properties_close=Serrar + +print_progress_message=Preparar il document per stampar… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Interrumper + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Activar/deactivar la trav laterala +toggle_sidebar_notification2.title=Activar/deactivar la trav laterala (il document cuntegna structura dal document/agiuntas/nivels) +toggle_sidebar_label=Activar/deactivar la trav laterala +document_outline.title=Mussar la structura dal document (cliccar duas giadas per extender/cumprimer tut ils elements) +document_outline_label=Structura dal document +attachments.title=Mussar agiuntas +attachments_label=Agiuntas +layers.title=Mussar ils nivels (cliccar dubel per restaurar il stadi da standard da tut ils nivels) +layers_label=Nivels +thumbs.title=Mussar las miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Tschertgar l'element da structura actual +current_outline_item_label=Element da structura actual +findbar.title=Tschertgar en il document +findbar_label=Tschertgar + +additional_layers=Nivels supplementars +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pagina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura da la pagina {{page}} + +# Find panel button title and messages +find_input.title=Tschertgar +find_input.placeholder=Tschertgar en il document… +find_previous.title=Tschertgar la posiziun precedenta da l'expressiun +find_previous_label=Enavos +find_next.title=Tschertgar la proxima posiziun da l'expressiun +find_next_label=Enavant +find_highlight=Relevar tuts +find_match_case_label=Resguardar maiusclas/minusclas +find_match_diacritics_label=Resguardar ils segns diacritics +find_entire_word_label=Pleds entirs +find_reached_top=Il cumenzament dal document è cuntanschì, la tschertga cuntinuescha a la fin dal document +find_reached_bottom=La fin dal document è cuntanschì, la tschertga cuntinuescha al cumenzament dal document +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} dad {{total}} correspundenza +find_match_count[two]={{current}} da {{total}} correspundenzas +find_match_count[few]={{current}} da {{total}} correspundenzas +find_match_count[many]={{current}} da {{total}} correspundenzas +find_match_count[other]={{current}} da {{total}} correspundenzas +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Dapli che {{limit}} correspundenzas +find_match_count_limit[one]=Dapli che {{limit}} correspundenza +find_match_count_limit[two]=Dapli che {{limit}} correspundenzas +find_match_count_limit[few]=Dapli che {{limit}} correspundenzas +find_match_count_limit[many]=Dapli che {{limit}} correspundenzas +find_match_count_limit[other]=Dapli che {{limit}} correspundenzas +find_not_found=Impussibel da chattar l'expressiun + +# Predefined zoom values +page_scale_width=Ladezza da la pagina +page_scale_fit=Entira pagina +page_scale_auto=Zoom automatic +page_scale_actual=Grondezza actuala +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ina errur è cumparida cun chargiar il PDF. +invalid_file_error=Datoteca PDF nunvalida u donnegiada. +missing_file_error=Datoteca PDF manconta. +unexpected_response_error=Resposta nunspetgada dal server. +rendering_error=Ina errur è cumparida cun visualisar questa pagina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Annotaziun da {{type}}] +password_label=Endatescha il pled-clav per avrir questa datoteca da PDF. +password_invalid=Pled-clav nunvalid. Emprova anc ina giada. +password_ok=OK +password_cancel=Interrumper + +printing_not_supported=Attenziun: Il stampar na funcziunescha anc betg dal tut en quest navigatur. +printing_not_ready=Attenziun: Il PDF n'è betg chargià cumplettamain per stampar. +web_fonts_disabled=Scrittiras dal web èn deactivadas: impussibel dad utilisar las scrittiras integradas en il PDF. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Dissegnar +editor_ink2_label=Dissegnar + +editor_stamp.title=Agiuntar in maletg +editor_stamp_label=Agiuntar in maletg + +editor_stamp1.title=Agiuntar u modifitgar maletgs +editor_stamp1_label=Agiuntar u modifitgar maletgs + +free_text2_default_content=Cumenzar a tippar… + +# Editor Parameters +editor_free_text_color=Colur +editor_free_text_size=Grondezza +editor_ink_color=Colur +editor_ink_thickness=Grossezza +editor_ink_opacity=Opacitad + +editor_stamp_add_image_label=Agiuntar in maletg +editor_stamp_add_image.title=Agiuntar in maletg + +# Editor aria +editor_free_text2_aria_label=Editur da text +editor_ink2_aria_label=Editur dissegn +editor_ink_canvas_aria_label=Maletg creà da l'utilisader diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ro/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ro/viewer.properties new file mode 100644 index 00000000..487b483f --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ro/viewer.properties @@ -0,0 +1,220 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pagina precedentă +previous_label=Înapoi +next.title=Pagina următoare +next_label=Înainte + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pagina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=din {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} din {{pagesCount}}) + +zoom_out.title=Micșorează +zoom_out_label=Micșorează +zoom_in.title=Mărește +zoom_in_label=Mărește +zoom.title=Zoom +presentation_mode.title=Comută la modul de prezentare +presentation_mode_label=Mod de prezentare +open_file.title=Deschide un fișier +open_file_label=Deschide +print.title=Tipărește +print_label=Tipărește + +# Secondary toolbar and context menu +tools.title=Instrumente +tools_label=Instrumente +first_page.title=Mergi la prima pagină +first_page_label=Mergi la prima pagină +last_page.title=Mergi la ultima pagină +last_page_label=Mergi la ultima pagină +page_rotate_cw.title=Rotește în sensul acelor de ceas +page_rotate_cw_label=Rotește în sensul acelor de ceas +page_rotate_ccw.title=Rotește în sens invers al acelor de ceas +page_rotate_ccw_label=Rotește în sens invers al acelor de ceas + +cursor_text_select_tool.title=Activează instrumentul de selecție a textului +cursor_text_select_tool_label=Instrumentul de selecție a textului +cursor_hand_tool.title=Activează instrumentul mână +cursor_hand_tool_label=Unealta mână + +scroll_vertical.title=Folosește derularea verticală +scroll_vertical_label=Derulare verticală +scroll_horizontal.title=Folosește derularea orizontală +scroll_horizontal_label=Derulare orizontală +scroll_wrapped.title=Folosește derularea încadrată +scroll_wrapped_label=Derulare încadrată + +spread_none.title=Nu uni paginile broșate +spread_none_label=Fără pagini broșate +spread_odd.title=Unește paginile broșate începând cu cele impare +spread_odd_label=Broșare pagini impare +spread_even.title=Unește paginile broșate începând cu cele pare +spread_even_label=Broșare pagini pare + +# Document properties dialog box +document_properties.title=Proprietățile documentului… +document_properties_label=Proprietățile documentului… +document_properties_file_name=Numele fișierului: +document_properties_file_size=Mărimea fișierului: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} byți) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byți) +document_properties_title=Titlu: +document_properties_author=Autor: +document_properties_subject=Subiect: +document_properties_keywords=Cuvinte cheie: +document_properties_creation_date=Data creării: +document_properties_modification_date=Data modificării: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Autor: +document_properties_producer=Producător PDF: +document_properties_version=Versiune PDF: +document_properties_page_count=Număr de pagini: +document_properties_page_size=Mărimea paginii: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=verticală +document_properties_page_size_orientation_landscape=orizontală +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Literă +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vizualizare web rapidă: +document_properties_linearized_yes=Da +document_properties_linearized_no=Nu +document_properties_close=Închide + +print_progress_message=Se pregătește documentul pentru tipărire… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Renunță + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Comută bara laterală +toggle_sidebar_label=Comută bara laterală +document_outline.title=Afișează schița documentului (dublu-clic pentru a extinde/restrânge toate elementele) +document_outline_label=Schița documentului +attachments.title=Afișează atașamentele +attachments_label=Atașamente +thumbs.title=Afișează miniaturi +thumbs_label=Miniaturi +findbar.title=Caută în document +findbar_label=Caută + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pagina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura paginii {{page}} + +# Find panel button title and messages +find_input.title=Caută +find_input.placeholder=Caută în document… +find_previous.title=Mergi la apariția anterioară a textului +find_previous_label=Înapoi +find_next.title=Mergi la apariția următoare a textului +find_next_label=Înainte +find_highlight=Evidențiază toate aparițiile +find_match_case_label=Ține cont de majuscule și minuscule +find_entire_word_label=Cuvinte întregi +find_reached_top=Am ajuns la începutul documentului, continuă de la sfârșit +find_reached_bottom=Am ajuns la sfârșitul documentului, continuă de la început +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} din {{total}} rezultat +find_match_count[two]={{current}} din {{total}} rezultate +find_match_count[few]={{current}} din {{total}} rezultate +find_match_count[many]={{current}} din {{total}} de rezultate +find_match_count[other]={{current}} din {{total}} de rezultate +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Peste {{limit}} rezultate +find_match_count_limit[one]=Peste {{limit}} rezultat +find_match_count_limit[two]=Peste {{limit}} rezultate +find_match_count_limit[few]=Peste {{limit}} rezultate +find_match_count_limit[many]=Peste {{limit}} de rezultate +find_match_count_limit[other]=Peste {{limit}} de rezultate +find_not_found=Nu s-a găsit textul + +# Predefined zoom values +page_scale_width=Lățime pagină +page_scale_fit=Potrivire la pagină +page_scale_auto=Zoom automat +page_scale_actual=Mărime reală +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=A intervenit o eroare la încărcarea PDF-ului. +invalid_file_error=Fișier PDF nevalid sau corupt. +missing_file_error=Fișier PDF lipsă. +unexpected_response_error=Răspuns neașteptat de la server. + +rendering_error=A intervenit o eroare la randarea paginii. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Adnotare {{type}}] +password_label=Introdu parola pentru a deschide acest fișier PDF. +password_invalid=Parolă nevalidă. Te rugăm să încerci din nou. +password_ok=OK +password_cancel=Renunță + +printing_not_supported=Avertisment: Tipărirea nu este suportată în totalitate de acest browser. +printing_not_ready=Avertisment: PDF-ul nu este încărcat complet pentru tipărire. +web_fonts_disabled=Fonturile web sunt dezactivate: nu se pot folosi fonturile PDF încorporate. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ru/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ru/viewer.properties new file mode 100644 index 00000000..22bcda44 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ru/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Предыдущая страница +previous_label=Предыдущая +next.title=Следующая страница +next_label=Следующая + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Страница +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=из {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} из {{pagesCount}}) + +zoom_out.title=Уменьшить +zoom_out_label=Уменьшить +zoom_in.title=Увеличить +zoom_in_label=Увеличить +zoom.title=Масштаб +presentation_mode.title=Перейти в режим презентации +presentation_mode_label=Режим презентации +open_file.title=Открыть файл +open_file_label=Открыть +print.title=Печать +print_label=Печать +save.title=Сохранить +save_label=Сохранить +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Загрузить +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Загрузить +bookmark1.title=Текущая страница (просмотр URL-адреса с текущей страницы) +bookmark1_label=Текущая страница +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Открыть в приложении +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Открыть в программе + +# Secondary toolbar and context menu +tools.title=Инструменты +tools_label=Инструменты +first_page.title=Перейти на первую страницу +first_page_label=Перейти на первую страницу +last_page.title=Перейти на последнюю страницу +last_page_label=Перейти на последнюю страницу +page_rotate_cw.title=Повернуть по часовой стрелке +page_rotate_cw_label=Повернуть по часовой стрелке +page_rotate_ccw.title=Повернуть против часовой стрелки +page_rotate_ccw_label=Повернуть против часовой стрелки + +cursor_text_select_tool.title=Включить Инструмент «Выделение текста» +cursor_text_select_tool_label=Инструмент «Выделение текста» +cursor_hand_tool.title=Включить Инструмент «Рука» +cursor_hand_tool_label=Инструмент «Рука» + +scroll_page.title=Использовать прокрутку страниц +scroll_page_label=Прокрутка страниц +scroll_vertical.title=Использовать вертикальную прокрутку +scroll_vertical_label=Вертикальная прокрутка +scroll_horizontal.title=Использовать горизонтальную прокрутку +scroll_horizontal_label=Горизонтальная прокрутка +scroll_wrapped.title=Использовать масштабируемую прокрутку +scroll_wrapped_label=Масштабируемая прокрутка + +spread_none.title=Не использовать режим разворотов страниц +spread_none_label=Без разворотов страниц +spread_odd.title=Развороты начинаются с нечётных номеров страниц +spread_odd_label=Нечётные страницы слева +spread_even.title=Развороты начинаются с чётных номеров страниц +spread_even_label=Чётные страницы слева + +# Document properties dialog box +document_properties.title=Свойства документа… +document_properties_label=Свойства документа… +document_properties_file_name=Имя файла: +document_properties_file_size=Размер файла: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} байт) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} байт) +document_properties_title=Заголовок: +document_properties_author=Автор: +document_properties_subject=Тема: +document_properties_keywords=Ключевые слова: +document_properties_creation_date=Дата создания: +document_properties_modification_date=Дата изменения: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Приложение: +document_properties_producer=Производитель PDF: +document_properties_version=Версия PDF: +document_properties_page_count=Число страниц: +document_properties_page_size=Размер страницы: +document_properties_page_size_unit_inches=дюймов +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=книжная +document_properties_page_size_orientation_landscape=альбомная +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Быстрый просмотр в Web: +document_properties_linearized_yes=Да +document_properties_linearized_no=Нет +document_properties_close=Закрыть + +print_progress_message=Подготовка документа к печати… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Отмена + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Показать/скрыть боковую панель +toggle_sidebar_notification2.title=Показать/скрыть боковую панель (документ имеет содержание/вложения/слои) +toggle_sidebar_label=Показать/скрыть боковую панель +document_outline.title=Показать содержание документа (двойной щелчок, чтобы развернуть/свернуть все элементы) +document_outline_label=Содержание документа +attachments.title=Показать вложения +attachments_label=Вложения +layers.title=Показать слои (дважды щёлкните, чтобы сбросить все слои к состоянию по умолчанию) +layers_label=Слои +thumbs.title=Показать миниатюры +thumbs_label=Миниатюры +current_outline_item.title=Найти текущий элемент структуры +current_outline_item_label=Текущий элемент структуры +findbar.title=Найти в документе +findbar_label=Найти + +additional_layers=Дополнительные слои +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Страница {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Страница {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Миниатюра страницы {{page}} + +# Find panel button title and messages +find_input.title=Найти +find_input.placeholder=Найти в документе… +find_previous.title=Найти предыдущее вхождение фразы в текст +find_previous_label=Назад +find_next.title=Найти следующее вхождение фразы в текст +find_next_label=Далее +find_highlight=Подсветить все +find_match_case_label=С учётом регистра +find_match_diacritics_label=С учётом диакритических знаков +find_entire_word_label=Слова целиком +find_reached_top=Достигнут верх документа, продолжено снизу +find_reached_bottom=Достигнут конец документа, продолжено сверху +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} из {{total}} совпадения +find_match_count[two]={{current}} из {{total}} совпадений +find_match_count[few]={{current}} из {{total}} совпадений +find_match_count[many]={{current}} из {{total}} совпадений +find_match_count[other]={{current}} из {{total}} совпадений +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Более {{limit}} совпадений +find_match_count_limit[one]=Более {{limit}} совпадения +find_match_count_limit[two]=Более {{limit}} совпадений +find_match_count_limit[few]=Более {{limit}} совпадений +find_match_count_limit[many]=Более {{limit}} совпадений +find_match_count_limit[other]=Более {{limit}} совпадений +find_not_found=Фраза не найдена + +# Predefined zoom values +page_scale_width=По ширине страницы +page_scale_fit=По размеру страницы +page_scale_auto=Автоматически +page_scale_actual=Реальный размер +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=При загрузке PDF произошла ошибка. +invalid_file_error=Некорректный или повреждённый PDF-файл. +missing_file_error=PDF-файл отсутствует. +unexpected_response_error=Неожиданный ответ сервера. +rendering_error=При создании страницы произошла ошибка. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Аннотация {{type}}] +password_label=Введите пароль, чтобы открыть этот PDF-файл. +password_invalid=Неверный пароль. Пожалуйста, попробуйте снова. +password_ok=OK +password_cancel=Отмена + +printing_not_supported=Предупреждение: В этом браузере не полностью поддерживается печать. +printing_not_ready=Предупреждение: PDF не полностью загружен для печати. +web_fonts_disabled=Веб-шрифты отключены: не удалось задействовать встроенные PDF-шрифты. + +# Editor +editor_free_text2.title=Текст +editor_free_text2_label=Текст +editor_ink2.title=Рисовать +editor_ink2_label=Рисовать + +editor_stamp.title=Добавить изображение +editor_stamp_label=Добавить изображение + +editor_stamp1.title=Добавить или изменить изображения +editor_stamp1_label=Добавить или изменить изображения + +free_text2_default_content=Начните вводить… + +# Editor Parameters +editor_free_text_color=Цвет +editor_free_text_size=Размер +editor_ink_color=Цвет +editor_ink_thickness=Толщина +editor_ink_opacity=Прозрачность + +editor_stamp_add_image_label=Добавить изображение +editor_stamp_add_image.title=Добавить изображение + +# Editor aria +editor_free_text2_aria_label=Текстовый редактор +editor_ink2_aria_label=Редактор рисования +editor_ink_canvas_aria_label=Созданное пользователем изображение diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sat/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sat/viewer.properties new file mode 100644 index 00000000..b8c53998 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sat/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=ᱢᱟᱲᱟᱝ ᱥᱟᱦᱴᱟ +previous_label=ᱢᱟᱲᱟᱝᱟᱜ +next.title=ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ ᱥᱟᱦᱴᱟ +next_label=ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ᱥᱟᱦᱴᱟ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=ᱨᱮᱭᱟᱜ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} ᱠᱷᱚᱱ {{pagesCount}}) + +zoom_out.title=ᱦᱤᱲᱤᱧ ᱛᱮᱭᱟᱨ +zoom_out_label=ᱦᱤᱲᱤᱧ ᱛᱮᱭᱟᱨ +zoom_in.title=ᱢᱟᱨᱟᱝ ᱛᱮᱭᱟᱨ +zoom_in_label=ᱢᱟᱨᱟᱝ ᱛᱮᱭᱟᱨ +zoom.title=ᱡᱩᱢ +presentation_mode.title=ᱩᱫᱩᱜ ᱥᱚᱫᱚᱨ ᱚᱵᱚᱥᱛᱟ ᱨᱮ ᱚᱛᱟᱭ ᱢᱮ +presentation_mode_label=ᱩᱫᱩᱜ ᱥᱚᱫᱚᱨ ᱚᱵᱚᱥᱛᱟ ᱨᱮ +open_file.title=ᱨᱮᱫ ᱡᱷᱤᱡᱽ ᱢᱮ +open_file_label=ᱡᱷᱤᱡᱽ ᱢᱮ +print.title=ᱪᱷᱟᱯᱟ +print_label=ᱪᱷᱟᱯᱟ +save.title=ᱥᱟᱺᱪᱟᱣ ᱢᱮ +save_label=ᱥᱟᱺᱪᱟᱣ ᱢᱮ +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=ᱰᱟᱣᱩᱱᱞᱚᱰ +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=ᱰᱟᱣᱩᱱᱞᱚᱰ +bookmark1.title=ᱱᱤᱛᱚᱜᱟᱜ ᱥᱟᱦᱴᱟ (ᱱᱤᱛᱚᱜᱟᱜ ᱥᱟᱦᱴᱟ ᱠᱷᱚᱱ URL ᱫᱮᱠᱷᱟᱣ ᱢᱮ) +bookmark1_label=ᱱᱤᱛᱚᱜᱟᱜ ᱥᱟᱦᱴᱟ +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=ᱮᱯ ᱨᱮ ᱡᱷᱤᱡᱽ ᱢᱮ +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=ᱮᱯ ᱨᱮ ᱡᱷᱤᱡᱽ ᱢᱮ + +# Secondary toolbar and context menu +tools.title=ᱦᱟᱹᱛᱤᱭᱟᱹᱨ ᱠᱚ +tools_label=ᱦᱟᱹᱛᱤᱭᱟᱹᱨ ᱠᱚ +first_page.title=ᱯᱩᱭᱞᱩ ᱥᱟᱦᱴᱟ ᱥᱮᱫ ᱪᱟᱞᱟᱜ ᱢᱮ +first_page_label=ᱯᱩᱭᱞᱩ ᱥᱟᱦᱴᱟ ᱥᱮᱫ ᱪᱟᱞᱟᱜ ᱢᱮ +last_page.title=ᱢᱩᱪᱟᱹᱫ ᱥᱟᱦᱴᱟ ᱥᱮᱫ ᱪᱟᱞᱟᱜ ᱢᱮ +last_page_label=ᱢᱩᱪᱟᱹᱫ ᱥᱟᱦᱴᱟ ᱥᱮᱫ ᱪᱟᱞᱟᱜ ᱢᱮ +page_rotate_cw.title=ᱜᱷᱚᱰᱤ ᱦᱤᱥᱟᱹᱵ ᱛᱮ ᱟᱹᱪᱩᱨ +page_rotate_cw_label=ᱜᱷᱚᱰᱤ ᱦᱤᱥᱟᱹᱵ ᱛᱮ ᱟᱹᱪᱩᱨ +page_rotate_ccw.title=ᱜᱷᱚᱰᱤ ᱦᱤᱥᱟᱹᱵ ᱛᱮ ᱩᱞᱴᱟᱹ ᱟᱹᱪᱩᱨ +page_rotate_ccw_label=ᱜᱷᱚᱰᱤ ᱦᱤᱥᱟᱹᱵ ᱛᱮ ᱩᱞᱴᱟᱹ ᱟᱹᱪᱩᱨ + +cursor_text_select_tool.title=ᱚᱞ ᱵᱟᱪᱷᱟᱣ ᱦᱟᱹᱛᱤᱭᱟᱨ ᱮᱢ ᱪᱷᱚᱭ ᱢᱮ +cursor_text_select_tool_label=ᱚᱞ ᱵᱟᱪᱷᱟᱣ ᱦᱟᱹᱛᱤᱭᱟᱨ +cursor_hand_tool.title=ᱛᱤ ᱦᱟᱹᱛᱤᱭᱟᱨ ᱮᱢ ᱪᱷᱚᱭ ᱢᱮ +cursor_hand_tool_label=ᱛᱤ ᱦᱟᱹᱛᱤᱭᱟᱨ + +scroll_page.title=ᱥᱟᱦᱴᱟ ᱜᱩᱲᱟᱹᱣ ᱵᱮᱵᱷᱟᱨ ᱢᱮ +scroll_page_label=ᱥᱟᱦᱴᱟ ᱜᱩᱲᱟᱹᱣ +scroll_vertical.title=ᱥᱤᱫᱽ ᱜᱩᱲᱟᱹᱣ ᱵᱮᱵᱷᱟᱨ ᱢᱮ +scroll_vertical_label=ᱥᱤᱫᱽ ᱜᱩᱲᱟᱹᱣ +scroll_horizontal.title=ᱜᱤᱛᱤᱡ ᱛᱮ ᱜᱩᱲᱟᱹᱣ ᱵᱮᱵᱷᱟᱨ ᱢᱮ +scroll_horizontal_label=ᱜᱤᱛᱤᱡ ᱛᱮ ᱜᱩᱲᱟᱹᱣ +scroll_wrapped.title=ᱞᱤᱯᱴᱟᱹᱣ ᱜᱩᱰᱨᱟᱹᱣ ᱵᱮᱵᱷᱟᱨ ᱢᱮ +scroll_wrapped_label=ᱞᱤᱯᱴᱟᱣ ᱜᱩᱰᱨᱟᱹᱣ + +spread_none.title=ᱟᱞᱚᱢ ᱡᱚᱲᱟᱣ ᱟ ᱥᱟᱦᱴᱟ ᱫᱚ ᱯᱟᱥᱱᱟᱣᱜᱼᱟ +spread_none_label=ᱯᱟᱥᱱᱟᱣ ᱵᱟᱹᱱᱩᱜᱼᱟ +spread_odd.title=ᱥᱟᱦᱴᱟ ᱯᱟᱥᱱᱟᱣ ᱡᱚᱲᱟᱣ ᱢᱮ ᱡᱟᱦᱟᱸ ᱫᱚ ᱚᱰᱼᱮᱞ ᱥᱟᱦᱴᱟᱠᱚ ᱥᱟᱞᱟᱜ ᱮᱛᱦᱚᱵᱚᱜ ᱠᱟᱱᱟ +spread_odd_label=ᱚᱰ ᱯᱟᱥᱱᱟᱣ +spread_even.title=ᱥᱟᱦᱴᱟ ᱯᱟᱥᱱᱟᱣ ᱡᱚᱲᱟᱣ ᱢᱮ ᱡᱟᱦᱟᱸ ᱫᱚ ᱤᱣᱮᱱᱼᱮᱞ ᱥᱟᱦᱴᱟᱠᱚ ᱥᱟᱞᱟᱜ ᱮᱛᱦᱚᱵᱚᱜ ᱠᱟᱱᱟ +spread_even_label=ᱯᱟᱥᱱᱟᱣ ᱤᱣᱮᱱ + +# Document properties dialog box +document_properties.title=ᱫᱚᱞᱤᱞ ᱜᱩᱱᱠᱚ … +document_properties_label=ᱫᱚᱞᱤᱞ ᱜᱩᱱᱠᱚ … +document_properties_file_name=ᱨᱮᱫᱽ ᱧᱩᱛᱩᱢ : +document_properties_file_size=ᱨᱮᱫᱽ ᱢᱟᱯ : +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} ᱵᱟᱭᱤᱴ ᱠᱚ) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} ᱵᱟᱭᱤᱴ ᱠᱚ) +document_properties_title=ᱧᱩᱛᱩᱢ : +document_properties_author=ᱚᱱᱚᱞᱤᱭᱟᱹ : +document_properties_subject=ᱵᱤᱥᱚᱭ : +document_properties_keywords=ᱠᱟᱹᱴᱷᱤ ᱥᱟᱵᱟᱫᱽ : +document_properties_creation_date=ᱛᱮᱭᱟᱨ ᱢᱟᱸᱦᱤᱛ : +document_properties_modification_date=ᱵᱚᱫᱚᱞ ᱦᱚᱪᱚ ᱢᱟᱹᱦᱤᱛ : +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=ᱵᱮᱱᱟᱣᱤᱡ : +document_properties_producer=PDF ᱛᱮᱭᱟᱨ ᱚᱰᱚᱠᱤᱡ : +document_properties_version=PDF ᱵᱷᱟᱹᱨᱥᱚᱱ : +document_properties_page_count=ᱥᱟᱦᱴᱟ ᱞᱮᱠᱷᱟ : +document_properties_page_size=ᱥᱟᱦᱴᱟ ᱢᱟᱯ : +document_properties_page_size_unit_inches=ᱤᱧᱪ +document_properties_page_size_unit_millimeters=ᱢᱤᱢᱤ +document_properties_page_size_orientation_portrait=ᱯᱚᱴᱨᱮᱴ +document_properties_page_size_orientation_landscape=ᱞᱮᱱᱰᱥᱠᱮᱯ +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=ᱪᱤᱴᱷᱤ +document_properties_page_size_name_legal=ᱠᱟᱹᱱᱩᱱᱤ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=ᱞᱚᱜᱚᱱ ᱣᱮᱵᱽ ᱧᱮᱞ : +document_properties_linearized_yes=ᱦᱚᱭ +document_properties_linearized_no=ᱵᱟᱝ +document_properties_close=ᱵᱚᱸᱫᱚᱭ ᱢᱮ + +print_progress_message=ᱪᱷᱟᱯᱟ ᱞᱟᱹᱜᱤᱫ ᱫᱚᱞᱤᱞ ᱛᱮᱭᱟᱨᱚᱜ ᱠᱟᱱᱟ … +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ᱵᱟᱹᱰᱨᱟᱹ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=ᱫᱷᱟᱨᱮᱵᱟᱨ ᱥᱮᱫ ᱩᱪᱟᱹᱲᱚᱜ ᱢᱮ +toggle_sidebar_notification2.title=ᱫᱷᱟᱨᱮᱵᱟᱨ ᱥᱮᱫ ᱩᱪᱟᱹᱲᱚᱜ ᱢᱮ (ᱫᱚᱞᱤᱞ ᱨᱮ ᱟᱣᱴᱞᱟᱭᱤᱢ ᱢᱮᱱᱟᱜᱼᱟ/ᱞᱟᱪᱷᱟᱠᱚ/ᱯᱚᱨᱚᱛᱠᱚ) +toggle_sidebar_label=ᱫᱷᱟᱨᱮᱵᱟᱨ ᱥᱮᱫ ᱩᱪᱟᱹᱲᱚᱜ ᱢᱮ +document_outline.title=ᱫᱚᱞᱚᱞ ᱟᱣᱴᱞᱟᱭᱤᱱ ᱫᱮᱠᱷᱟᱣ ᱢᱮ (ᱡᱷᱚᱛᱚ ᱡᱤᱱᱤᱥᱠᱚ ᱵᱟᱨ ᱡᱮᱠᱷᱟ ᱚᱛᱟ ᱠᱮᱛᱮ ᱡᱷᱟᱹᱞ/ᱦᱩᱰᱤᱧ ᱪᱷᱚᱭ ᱢᱮ) +document_outline_label=ᱫᱚᱞᱤᱞ ᱛᱮᱭᱟᱨ ᱛᱮᱫ +attachments.title=ᱞᱟᱴᱷᱟ ᱥᱮᱞᱮᱫ ᱠᱚ ᱩᱫᱩᱜᱽ ᱢᱮ +attachments_label=ᱞᱟᱴᱷᱟ ᱥᱮᱞᱮᱫ ᱠᱚ +layers.title=ᱯᱚᱨᱚᱛ ᱫᱮᱠᱷᱟᱣ ᱢᱮ (ᱢᱩᱞ ᱡᱟᱭᱜᱟ ᱛᱮ ᱡᱷᱚᱛᱚ ᱯᱚᱨᱚᱛᱠᱚ ᱨᱤᱥᱮᱴ ᱞᱟᱹᱜᱤᱫ ᱵᱟᱨ ᱡᱮᱠᱷᱟ ᱚᱛᱚᱭ ᱢᱮ) +layers_label=ᱯᱚᱨᱚᱛᱠᱚ +thumbs.title=ᱪᱤᱛᱟᱹᱨ ᱟᱦᱞᱟ ᱠᱚ ᱩᱫᱩᱜᱽ ᱢᱮ +thumbs_label=ᱪᱤᱛᱟᱹᱨ ᱟᱦᱞᱟ ᱠᱚ +current_outline_item.title=ᱱᱤᱛᱚᱜᱟᱜ ᱟᱣᱴᱞᱟᱭᱤᱱ ᱡᱟᱱᱤᱥ ᱯᱟᱱᱛᱮ ᱢᱮ +current_outline_item_label=ᱱᱤᱛᱚᱜᱟᱜ ᱟᱣᱴᱞᱟᱭᱤᱱ ᱡᱟᱱᱤᱥ +findbar.title=ᱫᱚᱞᱤᱞ ᱨᱮ ᱯᱟᱱᱛᱮ +findbar_label=ᱥᱮᱸᱫᱽᱨᱟᱭ ᱢᱮ + +additional_layers=ᱵᱟᱹᱲᱛᱤ ᱯᱚᱨᱚᱛᱠᱚ +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark={{page}} ᱥᱟᱦᱴᱟ +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} ᱥᱟᱦᱴᱟ +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} ᱥᱟᱦᱴᱟ ᱨᱮᱭᱟᱜ ᱪᱤᱛᱟᱹᱨ ᱟᱦᱞᱟ + +# Find panel button title and messages +find_input.title=ᱥᱮᱸᱫᱽᱨᱟᱭ ᱢᱮ +find_input.placeholder=ᱫᱚᱞᱤᱞ ᱨᱮ ᱯᱟᱱᱛᱮ ᱢᱮ … +find_previous.title=ᱟᱭᱟᱛ ᱦᱤᱸᱥ ᱨᱮᱭᱟᱜ ᱯᱟᱹᱦᱤᱞ ᱥᱮᱫᱟᱜ ᱚᱰᱚᱠ ᱧᱟᱢ ᱢᱮ +find_previous_label=ᱢᱟᱲᱟᱝᱟᱜ +find_next.title=ᱟᱭᱟᱛ ᱦᱤᱸᱥ ᱨᱮᱭᱟᱜ ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ ᱚᱰᱚᱠ ᱧᱟᱢ ᱢᱮ +find_next_label=ᱤᱱᱟᱹ ᱛᱟᱭᱚᱢ +find_highlight=ᱡᱷᱚᱛᱚ ᱩᱫᱩᱜ ᱨᱟᱠᱟᱵ +find_match_case_label=ᱡᱚᱲ ᱠᱟᱛᱷᱟ +find_match_diacritics_label=ᱵᱤᱥᱮᱥᱚᱠ ᱠᱚ ᱢᱮᱲᱟᱣ ᱢᱮ +find_entire_word_label=ᱡᱷᱚᱛᱚ ᱟᱹᱲᱟᱹᱠᱚ +find_reached_top=ᱫᱚᱞᱤᱞ ᱨᱮᱭᱟᱜ ᱪᱤᱴ ᱨᱮ ᱥᱮᱴᱮᱨ, ᱞᱟᱛᱟᱨ ᱠᱷᱚᱱ ᱞᱮᱛᱟᱲ +find_reached_bottom=ᱫᱚᱞᱤᱞ ᱨᱮᱭᱟᱜ ᱢᱩᱪᱟᱹᱫ ᱨᱮ ᱥᱮᱴᱮᱨ, ᱪᱚᱴ ᱠᱷᱚᱱ ᱞᱮᱛᱟᱲ +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} ᱨᱮᱭᱟᱜ {{total}} ᱡᱚᱲ +find_match_count[two]={{current}} ᱨᱮᱭᱟᱜ {{total}} ᱡᱚᱲᱠᱚ +find_match_count[few]={{current}} ᱨᱮᱭᱟᱜ {{total}} ᱡᱚᱲᱠᱚ +find_match_count[many]={{current}} ᱨᱮᱭᱟᱜ {{total}} ᱡᱚᱲᱠᱚ +find_match_count[other]={{current}} ᱨᱮᱭᱟᱜ {{total}} ᱡᱚᱲᱠᱚ +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} ᱡᱚᱲ ᱠᱚ ᱠᱷᱚᱱ ᱰᱷᱮᱨ +find_match_count_limit[one]={{limit}} ᱡᱚᱲ ᱠᱷᱚᱱ ᱰᱷᱮᱨ +find_match_count_limit[two]={{limit}} ᱡᱚᱲ ᱠᱚ ᱠᱷᱚᱱ ᱰᱷᱮᱨ +find_match_count_limit[few]={{limit}} ᱡᱚᱲ ᱠᱚ ᱠᱷᱚᱱ ᱰᱷᱮᱨ +find_match_count_limit[many]={{limit}} ᱡᱚᱲ ᱠᱚ ᱠᱷᱚᱱ ᱰᱷᱮᱨ +find_match_count_limit[other]={{limit}} ᱡᱚᱲ ᱠᱚ ᱠᱷᱚᱱ ᱰᱷᱮᱨ +find_not_found=ᱛᱚᱯᱚᱞ ᱫᱚᱱᱚᱲ ᱵᱟᱝ ᱧᱟᱢ ᱞᱮᱱᱟ + +# Predefined zoom values +page_scale_width=ᱥᱟᱦᱴᱟ ᱚᱥᱟᱨ +page_scale_fit=ᱥᱟᱦᱴᱟ ᱠᱷᱟᱯ +page_scale_auto=ᱟᱡᱼᱟᱡ ᱛᱮ ᱦᱩᱰᱤᱧ ᱞᱟᱹᱴᱩ ᱛᱮᱭᱟᱨ +page_scale_actual=ᱴᱷᱤᱠ ᱢᱟᱨᱟᱝ ᱛᱮᱫ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF ᱞᱟᱫᱮ ᱡᱚᱦᱚᱜ ᱢᱤᱫ ᱵᱷᱩᱞ ᱦᱩᱭ ᱮᱱᱟ ᱾ +invalid_file_error=ᱵᱟᱝ ᱵᱟᱛᱟᱣ ᱟᱨᱵᱟᱝᱠᱷᱟᱱ ᱰᱤᱜᱟᱹᱣ PDF ᱨᱮᱫᱽ ᱾ +missing_file_error=ᱟᱫᱟᱜ PDF ᱨᱮᱫᱽ ᱾ +unexpected_response_error=ᱵᱟᱝᱵᱩᱡᱷ ᱥᱚᱨᱵᱷᱚᱨ ᱛᱮᱞᱟ ᱾ +rendering_error=ᱥᱟᱦᱴᱟ ᱮᱢ ᱡᱚᱦᱚᱠ ᱢᱤᱫ ᱵᱷᱩᱞ ᱦᱩᱭ ᱮᱱᱟ ᱾ + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} ᱢᱚᱱᱛᱚ ᱮᱢ] +password_label=ᱱᱚᱶᱟ PDF ᱨᱮᱫᱽ ᱡᱷᱤᱡᱽ ᱞᱟᱹᱜᱤᱫ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱟᱫᱮᱨ ᱢᱮ ᱾ +password_invalid=ᱵᱷᱩᱞ ᱫᱟᱱᱟᱝ ᱥᱟᱵᱟᱫᱽ ᱾ ᱫᱟᱭᱟᱠᱟᱛᱮ ᱫᱩᱦᱲᱟᱹ ᱪᱮᱥᱴᱟᱭ ᱢᱮ ᱾ +password_ok=ᱴᱷᱤᱠ +password_cancel=ᱵᱟᱹᱰᱨᱟᱹ + +printing_not_supported=ᱦᱚᱥᱤᱭᱟᱨ : ᱪᱷᱟᱯᱟ ᱱᱚᱣᱟ ᱯᱟᱱᱛᱮᱭᱟᱜ ᱫᱟᱨᱟᱭ ᱛᱮ ᱯᱩᱨᱟᱹᱣ ᱵᱟᱭ ᱜᱚᱲᱚᱣᱟᱠᱟᱱᱟ ᱾ +printing_not_ready=ᱦᱩᱥᱤᱭᱟᱹᱨ : ᱪᱷᱟᱯᱟ ᱞᱟᱹᱜᱤᱫ PDF ᱯᱩᱨᱟᱹ ᱵᱟᱭ ᱞᱟᱫᱮ ᱟᱠᱟᱱᱟ ᱾ +web_fonts_disabled=ᱣᱮᱵᱽ ᱪᱤᱠᱤ ᱵᱟᱝ ᱦᱩᱭ ᱦᱚᱪᱚ ᱠᱟᱱᱟ : ᱵᱷᱤᱛᱤᱨ ᱛᱷᱟᱯᱚᱱ PDF ᱪᱤᱠᱤ ᱵᱮᱵᱷᱟᱨ ᱵᱟᱝ ᱦᱩᱭ ᱠᱮᱭᱟ ᱾ + +# Editor +editor_free_text2.title=ᱚᱞ +editor_free_text2_label=ᱚᱞ +editor_ink2.title=ᱛᱮᱭᱟᱨ +editor_ink2_label=ᱛᱮᱭᱟᱨ + +editor_stamp.title=ᱢᱤᱫᱴᱟᱝ ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ +editor_stamp_label=ᱢᱤᱫᱴᱟᱝ ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ + +editor_stamp1.title=ᱪᱤᱛᱟᱹᱨᱠᱚ ᱥᱮᱞᱮᱫ ᱥᱮ ᱥᱟᱯᱲᱟᱣ ᱢᱮ +editor_stamp1_label=ᱪᱤᱛᱟᱹᱨᱠᱚ ᱥᱮᱞᱮᱫ ᱥᱮ ᱥᱟᱯᱲᱟᱣ ᱢᱮ + +free_text2_default_content=ᱚᱞ ᱮᱛᱦᱚᱵ ᱢᱮ … + +# Editor Parameters +editor_free_text_color=ᱨᱚᱝ +editor_free_text_size=ᱢᱟᱯ +editor_ink_color=ᱨᱚᱝ +editor_ink_thickness=ᱢᱚᱴᱟ +editor_ink_opacity=ᱟᱨᱯᱟᱨ + +editor_stamp_add_image_label=ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ +editor_stamp_add_image.title=ᱪᱤᱛᱟᱹᱨ ᱥᱮᱞᱮᱫ ᱢᱮ + +# Editor aria +editor_free_text2_aria_label=ᱚᱞ ᱥᱟᱯᱲᱟᱣᱤᱭᱟᱹ +editor_ink2_aria_label=ᱛᱮᱭᱟᱨ ᱥᱟᱯᱲᱟᱣᱤᱭᱟᱹ +editor_ink_canvas_aria_label=ᱵᱮᱵᱷᱟᱨᱤᱭᱟᱹ ᱛᱮᱭᱟᱨ ᱠᱟᱫ ᱪᱤᱛᱟᱹᱨ diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sc/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sc/viewer.properties new file mode 100644 index 00000000..4da24c12 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sc/viewer.properties @@ -0,0 +1,258 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pàgina anteriore +previous_label=S'ischeda chi b'est primu +next.title=Pàgina imbeniente +next_label=Imbeniente + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pàgina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=de {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} de {{pagesCount}}) + +zoom_out.title=Impitica +zoom_out_label=Impitica +zoom_in.title=Ismànnia +zoom_in_label=Ismànnia +zoom.title=Ismànnia +presentation_mode.title=Cola a sa modalidade de presentatzione +presentation_mode_label=Modalidade de presentatzione +open_file.title=Aberi s'archìviu +open_file_label=Abertu +print.title=Imprenta +print_label=Imprenta +save.title=Sarva +save_label=Sarva +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Iscàrriga +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Iscàrriga +bookmark1.title=Pàgina atuale (ammustra s’URL de sa pàgina atuale) +bookmark1_label=Pàgina atuale +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Aberi in un’aplicatzione +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Aberi in un’aplicatzione + +# Secondary toolbar and context menu +tools.title=Istrumentos +tools_label=Istrumentos +first_page.title=Bae a sa prima pàgina +first_page_label=Bae a sa prima pàgina +last_page.title=Bae a s'ùrtima pàgina +last_page_label=Bae a s'ùrtima pàgina +page_rotate_cw.title=Gira in sensu oràriu +page_rotate_cw_label=Gira in sensu oràriu +page_rotate_ccw.title=Gira in sensu anti-oràriu +page_rotate_ccw_label=Gira in sensu anti-oràriu + +cursor_text_select_tool.title=Ativa s'aina de seletzione de testu +cursor_text_select_tool_label=Aina de seletzione de testu +cursor_hand_tool.title=Ativa s'aina de manu +cursor_hand_tool_label=Aina de manu + +scroll_page.title=Imprea s'iscurrimentu de pàgina +scroll_page_label=Iscurrimentu de pàgina +scroll_vertical.title=Imprea s'iscurrimentu verticale +scroll_vertical_label=Iscurrimentu verticale +scroll_horizontal.title=Imprea s'iscurrimentu orizontale +scroll_horizontal_label=Iscurrimentu orizontale +scroll_wrapped.title=Imprea s'iscurrimentu continu +scroll_wrapped_label=Iscurrimentu continu + + +# Document properties dialog box +document_properties.title=Propiedades de su documentu… +document_properties_label=Propiedades de su documentu… +document_properties_file_name=Nòmine de s'archìviu: +document_properties_file_size=Mannària de s'archìviu: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Tìtulu: +document_properties_author=Autoria: +document_properties_subject=Ogetu: +document_properties_keywords=Faeddos crae: +document_properties_creation_date=Data de creatzione: +document_properties_modification_date=Data de modìfica: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Creatzione: +document_properties_producer=Produtore de PDF: +document_properties_version=Versione de PDF: +document_properties_page_count=Contu de pàginas: +document_properties_page_size=Mannària de sa pàgina: +document_properties_page_size_unit_inches=pòddighes +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=verticale +document_properties_page_size_orientation_landscape=orizontale +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Lìtera +document_properties_page_size_name_legal=Legale +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Visualizatzione web lestra: +document_properties_linearized_yes=Eja +document_properties_linearized_no=Nono +document_properties_close=Serra + +print_progress_message=Aparitzende s'imprenta de su documentu… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Cantzella + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Ativa/disativa sa barra laterale +toggle_sidebar_notification2.title=Ativa/disativa sa barra laterale (su documentu cuntenet un'ischema, alligongiados o livellos) +toggle_sidebar_label=Ativa/disativa sa barra laterale +document_outline_label=Ischema de su documentu +attachments.title=Ammustra alligongiados +attachments_label=Alliongiados +layers.title=Ammustra livellos (clic dòpiu pro ripristinare totu is livellos a s'istadu predefinidu) +layers_label=Livellos +thumbs.title=Ammustra miniaturas +thumbs_label=Miniaturas +current_outline_item.title=Agata s'elementu atuale de s'ischema +current_outline_item_label=Elementu atuale de s'ischema +findbar.title=Agata in su documentu +findbar_label=Agata + +additional_layers=Livellos additzionales +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Pàgina {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pàgina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura de sa pàgina {{page}} + +# Find panel button title and messages +find_input.title=Agata +find_input.placeholder=Agata in su documentu… +find_previous.title=Agata s'ocurrèntzia pretzedente de sa fràsia +find_previous_label=S'ischeda chi b'est primu +find_next.title=Agata s'ocurrèntzia imbeniente de sa fràsia +find_next_label=Imbeniente +find_highlight=Evidèntzia totu +find_match_case_label=Distinghe intre majùsculas e minùsculas +find_match_diacritics_label=Respeta is diacrìticos +find_entire_word_label=Faeddos intreos +find_reached_top=S'est lòmpidu a su cumintzu de su documentu, si sighit dae su bàsciu +find_reached_bottom=Acabbu de su documentu, si sighit dae s'artu +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} dae {{total}} currispondèntzia +find_match_count[two]={{current}} dae {{total}} currispondèntzias +find_match_count[few]={{current}} dae {{total}} currispondèntzias +find_match_count[many]={{current}} dae {{total}} currispondèntzias +find_match_count[other]={{current}} dae {{total}} currispondèntzias +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Prus de {{limit}} currispondèntzias +find_match_count_limit[one]=Prus de {{limit}} currispondèntzia +find_match_count_limit[two]=Prus de {{limit}} currispondèntzias +find_match_count_limit[few]=Prus de {{limit}} currispondèntzias +find_match_count_limit[many]=Prus de {{limit}} currispondèntzias +find_match_count_limit[other]=Prus de {{limit}} currispondèntzias +find_not_found=Testu no agatadu + +# Predefined zoom values +page_scale_auto=Ingrandimentu automàticu +page_scale_actual=Mannària reale +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Faddina in sa càrriga de su PDF. +invalid_file_error=Archìviu PDF non vàlidu o corrùmpidu. +missing_file_error=Ammancat s'archìviu PDF. +unexpected_response_error=Risposta imprevista de su serbidore. +rendering_error=Faddina in sa visualizatzione de sa pàgina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_label=Inserta sa crae pro abèrrere custu archìviu PDF. +password_invalid=Sa crae no est curreta. Torra a nche proare. +password_ok=Andat bene +password_cancel=Cantzella + +printing_not_supported=Atentzione: s'imprenta no est funtzionende de su totu in custu navigadore. +printing_not_ready=Atentzione: su PDF no est istadu carrigadu de su totu pro s'imprenta. +web_fonts_disabled=Is tipografias web sunt disativadas: is tipografias incrustadas a su PDF non podent èssere impreadas. + +# Editor +editor_free_text2.title=Testu +editor_free_text2_label=Testu +editor_ink2.title=Disinnu +editor_ink2_label=Disinnu + +editor_stamp_label=Agiunghe un’immàgine + +editor_stamp1.title=Agiunghe o modìfica immàgines +editor_stamp1_label=Agiunghe o modìfica immàgines + +free_text2_default_content=Cumintza a iscrìere… + +# Editor Parameters +editor_free_text_color=Colore +editor_free_text_size=Mannària +editor_ink_color=Colore +editor_ink_thickness=Grussària + +editor_stamp_add_image_label=Agiunghe un’immàgine +editor_stamp_add_image.title=Agiunghe un’immàgine + +# Editor aria +editor_free_text2_aria_label=Editore de testu +editor_ink2_aria_label=Editore de disinnos +editor_ink_canvas_aria_label=Immàgine creada dae s’utente diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/scn/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/scn/viewer.properties new file mode 100644 index 00000000..e9a650a9 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/scn/viewer.properties @@ -0,0 +1,101 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. + +zoom_out.title=Cchiù nicu +zoom_out_label=Cchiù nicu +zoom_in.title=Cchiù granni +zoom_in_label=Cchiù granni + +# Secondary toolbar and context menu + + + + +# Document properties dialog box +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Vista web lesta: +document_properties_linearized_yes=Se + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_close=Sfai + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. + +# Find panel button title and messages +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. + +# Error panel labels +# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be +# replaced by the PDF.JS version and build ID. +# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an +# english string describing the error. +# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack +# trace. +# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename +# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number + +# Predefined zoom values +page_scale_width=Larghizza dâ pàggina +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. + +# Loading indicator messages + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_cancel=Sfai + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sco/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sco/viewer.properties new file mode 100644 index 00000000..81203d10 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sco/viewer.properties @@ -0,0 +1,226 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Page Afore +previous_label=Previous +next.title=Page Efter +next_label=Neist + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Page +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=o {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} o {{pagesCount}}) + +zoom_out.title=Zoom Oot +zoom_out_label=Zoom Oot +zoom_in.title=Zoom In +zoom_in_label=Zoom In +zoom.title=Zoom +presentation_mode.title=Flit tae Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Open File +open_file_label=Open +print.title=Prent +print_label=Prent + +# Secondary toolbar and context menu +tools.title=Tools +tools_label=Tools +first_page.title=Gang tae First Page +first_page_label=Gang tae First Page +last_page.title=Gang tae Lest Page +last_page_label=Gang tae Lest Page +page_rotate_cw.title=Rotate Clockwise +page_rotate_cw_label=Rotate Clockwise +page_rotate_ccw.title=Rotate Coonterclockwise +page_rotate_ccw_label=Rotate Coonterclockwise + +cursor_text_select_tool.title=Enable Text Walin Tool +cursor_text_select_tool_label=Text Walin Tool +cursor_hand_tool.title=Enable Haun Tool +cursor_hand_tool_label=Haun Tool + +scroll_vertical.title=Yaise Vertical Scrollin +scroll_vertical_label=Vertical Scrollin +scroll_horizontal.title=Yaise Horizontal Scrollin +scroll_horizontal_label=Horizontal Scrollin +scroll_wrapped.title=Yaise Wrapped Scrollin +scroll_wrapped_label=Wrapped Scrollin + +spread_none.title=Dinnae jyn page spreids +spread_none_label=Nae Spreids +spread_odd.title=Jyn page spreids stertin wi odd-numbered pages +spread_odd_label=Odd Spreids +spread_even.title=Jyn page spreids stertin wi even-numbered pages +spread_even_label=Even Spreids + +# Document properties dialog box +document_properties.title=Document Properties… +document_properties_label=Document Properties… +document_properties_file_name=File nemme: +document_properties_file_size=File size: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Title: +document_properties_author=Author: +document_properties_subject=Subjeck: +document_properties_keywords=Keywirds: +document_properties_creation_date=Date o Makkin: +document_properties_modification_date=Date o Chynges: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Makker: +document_properties_producer=PDF Producer: +document_properties_version=PDF Version: +document_properties_page_count=Page Coont: +document_properties_page_size=Page Size: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portrait +document_properties_page_size_orientation_landscape=landscape +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Wab View: +document_properties_linearized_yes=Aye +document_properties_linearized_no=Naw +document_properties_close=Sneck + +print_progress_message=Reddin document fur prentin… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Stap + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Toggle Sidebaur +toggle_sidebar_notification2.title=Toggle Sidebaur (document conteens ootline/attachments/layers) +toggle_sidebar_label=Toggle Sidebaur +document_outline.title=Kythe Document Ootline (double-click fur tae oot-fauld/in-fauld aw items) +document_outline_label=Document Ootline +attachments.title=Kythe Attachments +attachments_label=Attachments +layers.title=Kythe Layers (double-click fur tae reset aw layers tae the staunart state) +layers_label=Layers +thumbs.title=Kythe Thumbnails +thumbs_label=Thumbnails +current_outline_item.title=Find Current Ootline Item +current_outline_item_label=Current Ootline Item +findbar.title=Find in Document +findbar_label=Find + +additional_layers=Mair Layers +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Page {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Page {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail o Page {{page}} + +# Find panel button title and messages +find_input.title=Find +find_input.placeholder=Find in document… +find_previous.title=Airt oot the last time this phrase occurred +find_previous_label=Previous +find_next.title=Airt oot the neist time this phrase occurs +find_next_label=Neist +find_highlight=Highlicht aw +find_match_case_label=Match case +find_entire_word_label=Hale Wirds +find_reached_top=Raxed tap o document, went on fae the dowp end +find_reached_bottom=Raxed end o document, went on fae the tap +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} o {{total}} match +find_match_count[two]={{current}} o {{total}} matches +find_match_count[few]={{current}} o {{total}} matches +find_match_count[many]={{current}} o {{total}} matches +find_match_count[other]={{current}} o {{total}} matches +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mair nor {{limit}} matches +find_match_count_limit[one]=Mair nor {{limit}} match +find_match_count_limit[two]=Mair nor {{limit}} matches +find_match_count_limit[few]=Mair nor {{limit}} matches +find_match_count_limit[many]=Mair nor {{limit}} matches +find_match_count_limit[other]=Mair nor {{limit}} matches +find_not_found=Phrase no fund + +# Predefined zoom values +page_scale_width=Page Width +page_scale_fit=Page Fit +page_scale_auto=Automatic Zoom +page_scale_actual=Actual Size +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=An mishanter tuik place while loadin the PDF. +invalid_file_error=No suithfest or camshauchlet PDF file. +missing_file_error=PDF file tint. +unexpected_response_error=Unexpectit server repone. + +rendering_error=A mishanter tuik place while renderin the page. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Inpit the passwird fur tae open this PDF file. +password_invalid=Passwird no suithfest. Gonnae gie it anither shot. +password_ok=OK +password_cancel=Stap + +printing_not_supported=Tak tent: Prentin isnae richt supportit by this stravaiger. +printing_not_ready=Tak tent: The PDF isnae richt loadit fur prentin. +web_fonts_disabled=Wab fonts are disabled: cannae yaise embeddit PDF fonts. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/si/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/si/viewer.properties new file mode 100644 index 00000000..05dde248 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/si/viewer.properties @@ -0,0 +1,228 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=කලින් පිටුව +previous_label=කලින් +next.title=ඊළඟ පිටුව +next_label=ඊළඟ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=පිටුව +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=කුඩාලනය +zoom_out_label=කුඩාලනය +zoom_in.title=විශාලනය +zoom_in_label=විශාලනය +zoom.title=විශාල කරන්න +presentation_mode.title=සමර්පණ ප්‍රකාරය වෙත මාරුවන්න +presentation_mode_label=සමර්පණ ප්‍රකාරය +open_file.title=ගොනුව අරින්න +open_file_label=අරින්න +print.title=මුද්‍රණය +print_label=මුද්‍රණය +save.title=සුරකින්න +save_label=සුරකින්න +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=බාගන්න +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=බාගන්න +bookmark1_label=පවතින පිටුව +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=යෙදුමෙහි අරින්න +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=යෙදුමෙහි අරින්න + +# Secondary toolbar and context menu +tools.title=මෙවලම් +tools_label=මෙවලම් +first_page.title=මුල් පිටුවට යන්න +first_page_label=මුල් පිටුවට යන්න +last_page.title=අවසන් පිටුවට යන්න +last_page_label=අවසන් පිටුවට යන්න + +cursor_text_select_tool.title=පෙළ තේරීමේ මෙවලම සබල කරන්න +cursor_text_select_tool_label=පෙළ තේරීමේ මෙවලම +cursor_hand_tool.title=අත් මෙවලම සබල කරන්න +cursor_hand_tool_label=අත් මෙවලම + +scroll_page.title=පිටුව අනුචලනය භාවිතය +scroll_page_label=පිටුව අනුචලනය +scroll_vertical.title=සිරස් අනුචලනය භාවිතය +scroll_vertical_label=සිරස් අනුචලනය +scroll_horizontal.title=තිරස් අනුචලනය භාවිතය +scroll_horizontal_label=තිරස් අනුචලනය + + +# Document properties dialog box +document_properties.title=ලේඛනයේ ගුණාංග… +document_properties_label=ලේඛනයේ ගුණාංග… +document_properties_file_name=ගොනුවේ නම: +document_properties_file_size=ගොනුවේ ප්‍රමාණය: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb=කි.බ. {{size_kb}} (බයිට {{size_b}}) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb=මෙ.බ. {{size_mb}} (බයිට {{size_b}}) +document_properties_title=සිරැසිය: +document_properties_author=කතෘ: +document_properties_subject=මාතෘකාව: +document_properties_keywords=මූල පද: +document_properties_creation_date=සෑදූ දිනය: +document_properties_modification_date=සංශෝධිත දිනය: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=නිර්මාතෘ: +document_properties_producer=පීඩීඑෆ් සම්පාදක: +document_properties_version=පීඩීඑෆ් අනුවාදය: +document_properties_page_count=පිටු ගණන: +document_properties_page_size=පිටුවේ තරම: +document_properties_page_size_unit_inches=අඟල් +document_properties_page_size_unit_millimeters=මි.මී. +document_properties_page_size_orientation_portrait=සිරස් +document_properties_page_size_orientation_landscape=තිරස් +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}}×{{height}}{{unit}}{{name}}{{orientation}} +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=වේගවත් වියමන දැක්ම: +document_properties_linearized_yes=ඔව් +document_properties_linearized_no=නැහැ +document_properties_close=වසන්න + +print_progress_message=මුද්‍රණය සඳහා ලේඛනය සූදානම් වෙමින්… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=අවලංගු කරන්න + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +document_outline_label=ලේඛනයේ වටසන +attachments.title=ඇමුණුම් පෙන්වන්න +attachments_label=ඇමුණුම් +layers.title=ස්තර පෙන්වන්න (සියළු ස්තර පෙරනිමි තත්‍වයට යළි සැකසීමට දෙවරක් ඔබන්න) +layers_label=ස්තර +thumbs.title=සිඟිති රූ පෙන්වන්න +thumbs_label=සිඟිති රූ +findbar.title=ලේඛනයෙහි සොයන්න +findbar_label=සොයන්න + +additional_layers=අතිරේක ස්තර +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=පිටුව {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=පිටුව {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=පිටුවේ සිඟිත රූව {{page}} + +# Find panel button title and messages +find_input.title=සොයන්න +find_input.placeholder=ලේඛනයේ සොයන්න… +find_previous.title=මෙම වැකිකඩ කලින් යෙදුණු ස්ථානය සොයන්න +find_previous_label=කලින් +find_next.title=මෙම වැකිකඩ ඊළඟට යෙදෙන ස්ථානය සොයන්න +find_next_label=ඊළඟ +find_highlight=සියල්ල උද්දීපනය +find_entire_word_label=සමස්ත වචන +find_reached_top=ලේඛනයේ මුදුනට ළඟා විය, පහළ සිට ඉහළට +find_reached_bottom=ලේඛනයේ අවසානයට ළඟා විය, ඉහළ සිට පහළට +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=ගැළපීම් {{limit}} කට වඩා +find_match_count_limit[two]=ගැළපුම් {{limit}} කට වඩා +find_match_count_limit[few]=ගැළපුම් {{limit}} කට වඩා +find_match_count_limit[many]=ගැළපුම් {{limit}} කට වඩා +find_match_count_limit[other]=ගැළපුම් {{limit}} කට වඩා +find_not_found=වැකිකඩ හමු නොවිණි + +# Predefined zoom values +page_scale_width=පිටුවේ පළල +page_scale_auto=ස්වයංක්‍රීය විශාලනය +page_scale_actual=සැබෑ ප්‍රමාණය +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=පීඩීඑෆ් පූරණය කිරීමේදී දෝෂයක් සිදු විය. +invalid_file_error=වලංගු නොවන හෝ හානිවූ පීඩීඑෆ් ගොනුවකි. +missing_file_error=මඟහැරුණු පීඩීඑෆ් ගොනුවකි. +unexpected_response_error=අනපේක්‍ෂිත සේවාදායක ප්‍රතිචාරයකි. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_label=මෙම පීඩීඑෆ් ගොනුව විවෘත කිරීමට මුරපදය යොදන්න. +password_invalid=වැරදි මුරපදයකි. නැවත උත්සාහ කරන්න. +password_ok=හරි +password_cancel=අවලංගු + +printing_not_supported=අවවාදයයි: මෙම අතිරික්සුව මුද්‍රණය සඳහා හොඳින් සහාය නොදක්වයි. +printing_not_ready=අවවාදයයි: මුද්‍රණයට පීඩීඑෆ් ගොනුව සම්පූර්ණයෙන් පූරණය වී නැත. +web_fonts_disabled=වියමන අකුරු අබලයි: පීඩීඑෆ් වෙත කාවැද්දූ රුවකුරු භාවිතා කළ නොහැකිය. + +# Editor +editor_free_text2.title=පෙළ +editor_free_text2_label=පෙළ +editor_ink2.title=අඳින්න +editor_ink2_label=අඳින්න + +editor_stamp.title=රූපයක් එක් කරන්න +editor_stamp_label=රූපයක් එක් කරන්න + +free_text2_default_content=ලිවීීම අරඹන්න… + +# Editor Parameters +editor_free_text_color=වර්ණය +editor_free_text_size=තරම +editor_ink_color=වර්ණය +editor_ink_thickness=ඝණකම + +# Editor aria +editor_free_text2_aria_label=වදන් සකසනය diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sk/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sk/viewer.properties new file mode 100644 index 00000000..22ce0590 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sk/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Predchádzajúca strana +previous_label=Predchádzajúca +next.title=Nasledujúca strana +next_label=Nasledujúca + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Strana +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=z {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} z {{pagesCount}}) + +zoom_out.title=Zmenšiť veľkosť +zoom_out_label=Zmenšiť veľkosť +zoom_in.title=Zväčšiť veľkosť +zoom_in_label=Zväčšiť veľkosť +zoom.title=Nastavenie veľkosti +presentation_mode.title=Prepnúť na režim prezentácie +presentation_mode_label=Režim prezentácie +open_file.title=Otvoriť súbor +open_file_label=Otvoriť +print.title=Tlačiť +print_label=Tlačiť +save.title=Uložiť +save_label=Uložiť +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Stiahnuť +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Stiahnuť +bookmark1.title=Aktuálna stránka (zobraziť adresu URL z aktuálnej stránky) +bookmark1_label=Aktuálna stránka +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Otvoriť v aplikácii +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Otvoriť v aplikácii + +# Secondary toolbar and context menu +tools.title=Nástroje +tools_label=Nástroje +first_page.title=Prejsť na prvú stranu +first_page_label=Prejsť na prvú stranu +last_page.title=Prejsť na poslednú stranu +last_page_label=Prejsť na poslednú stranu +page_rotate_cw.title=Otočiť v smere hodinových ručičiek +page_rotate_cw_label=Otočiť v smere hodinových ručičiek +page_rotate_ccw.title=Otočiť proti smeru hodinových ručičiek +page_rotate_ccw_label=Otočiť proti smeru hodinových ručičiek + +cursor_text_select_tool.title=Povoliť výber textu +cursor_text_select_tool_label=Výber textu +cursor_hand_tool.title=Povoliť nástroj ruka +cursor_hand_tool_label=Nástroj ruka + +scroll_page.title=Použiť rolovanie po stránkach +scroll_page_label=Rolovanie po stránkach +scroll_vertical.title=Používať zvislé posúvanie +scroll_vertical_label=Zvislé posúvanie +scroll_horizontal.title=Používať vodorovné posúvanie +scroll_horizontal_label=Vodorovné posúvanie +scroll_wrapped.title=Použiť postupné posúvanie +scroll_wrapped_label=Postupné posúvanie + +spread_none.title=Nezdružovať stránky +spread_none_label=Žiadne združovanie +spread_odd.title=Združí stránky a umiestni nepárne stránky vľavo +spread_odd_label=Združiť stránky (nepárne vľavo) +spread_even.title=Združí stránky a umiestni párne stránky vľavo +spread_even_label=Združiť stránky (párne vľavo) + +# Document properties dialog box +document_properties.title=Vlastnosti dokumentu… +document_properties_label=Vlastnosti dokumentu… +document_properties_file_name=Názov súboru: +document_properties_file_size=Veľkosť súboru: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} bajtov) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajtov) +document_properties_title=Názov: +document_properties_author=Autor: +document_properties_subject=Predmet: +document_properties_keywords=Kľúčové slová: +document_properties_creation_date=Dátum vytvorenia: +document_properties_modification_date=Dátum úpravy: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Vytvoril: +document_properties_producer=Tvorca PDF: +document_properties_version=Verzia PDF: +document_properties_page_count=Počet strán: +document_properties_page_size=Veľkosť stránky: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=na výšku +document_properties_page_size_orientation_landscape=na šírku +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=List +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Rýchle Web View: +document_properties_linearized_yes=Áno +document_properties_linearized_no=Nie +document_properties_close=Zavrieť + +print_progress_message=Príprava dokumentu na tlač… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Zrušiť + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Prepnúť bočný panel +toggle_sidebar_notification2.title=Prepnúť bočný panel (dokument obsahuje osnovu/prílohy/vrstvy) +toggle_sidebar_label=Prepnúť bočný panel +document_outline.title=Zobraziť osnovu dokumentu (dvojitým kliknutím rozbalíte/zbalíte všetky položky) +document_outline_label=Osnova dokumentu +attachments.title=Zobraziť prílohy +attachments_label=Prílohy +layers.title=Zobraziť vrstvy (dvojitým kliknutím uvediete všetky vrstvy do pôvodného stavu) +layers_label=Vrstvy +thumbs.title=Zobraziť miniatúry +thumbs_label=Miniatúry +current_outline_item.title=Nájsť aktuálnu položku v osnove +current_outline_item_label=Aktuálna položka v osnove +findbar.title=Hľadať v dokumente +findbar_label=Hľadať + +additional_layers=Ďalšie vrstvy +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Strana {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Strana {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatúra strany {{page}} + +# Find panel button title and messages +find_input.title=Hľadať +find_input.placeholder=Hľadať v dokumente… +find_previous.title=Vyhľadať predchádzajúci výskyt reťazca +find_previous_label=Predchádzajúce +find_next.title=Vyhľadať ďalší výskyt reťazca +find_next_label=Ďalšie +find_highlight=Zvýrazniť všetky +find_match_case_label=Rozlišovať veľkosť písmen +find_match_diacritics_label=Rozlišovať diakritiku +find_entire_word_label=Celé slová +find_reached_top=Bol dosiahnutý začiatok stránky, pokračuje sa od konca +find_reached_bottom=Bol dosiahnutý koniec stránky, pokračuje sa od začiatku +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}}. z {{total}} výsledku +find_match_count[two]={{current}}. z {{total}} výsledkov +find_match_count[few]={{current}}. z {{total}} výsledkov +find_match_count[many]={{current}}. z {{total}} výsledkov +find_match_count[other]={{current}}. z {{total}} výsledkov +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Viac než {{limit}} výsledkov +find_match_count_limit[one]=Viac než {{limit}} výsledok +find_match_count_limit[two]=Viac než {{limit}} výsledky +find_match_count_limit[few]=Viac než {{limit}} výsledky +find_match_count_limit[many]=Viac než {{limit}} výsledkov +find_match_count_limit[other]=Viac než {{limit}} výsledkov +find_not_found=Výraz nebol nájdený + +# Predefined zoom values +page_scale_width=Na šírku strany +page_scale_fit=Na veľkosť strany +page_scale_auto=Automatická veľkosť +page_scale_actual=Skutočná veľkosť +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=Počas načítavania dokumentu PDF sa vyskytla chyba. +invalid_file_error=Neplatný alebo poškodený súbor PDF. +missing_file_error=Chýbajúci súbor PDF. +unexpected_response_error=Neočakávaná odpoveď zo servera. +rendering_error=Pri vykresľovaní stránky sa vyskytla chyba. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotácia typu {{type}}] +password_label=Ak chcete otvoriť tento súbor PDF, zadajte jeho heslo. +password_invalid=Heslo nie je platné. Skúste to znova. +password_ok=OK +password_cancel=Zrušiť + +printing_not_supported=Upozornenie: tlač nie je v tomto prehliadači plne podporovaná. +printing_not_ready=Upozornenie: súbor PDF nie je plne načítaný pre tlač. +web_fonts_disabled=Webové písma sú vypnuté: nie je možné použiť písma vložené do súboru PDF. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Kreslenie +editor_ink2_label=Kresliť + +editor_stamp.title=Pridať obrázok +editor_stamp_label=Pridať obrázok + +editor_stamp1.title=Pridať alebo upraviť obrázky +editor_stamp1_label=Pridať alebo upraviť obrázky + +free_text2_default_content=Začnite písať… + +# Editor Parameters +editor_free_text_color=Farba +editor_free_text_size=Veľkosť +editor_ink_color=Farba +editor_ink_thickness=Hrúbka +editor_ink_opacity=Priehľadnosť + +editor_stamp_add_image_label=Pridať obrázok +editor_stamp_add_image.title=Pridať obrázok + +# Editor aria +editor_free_text2_aria_label=Textový editor +editor_ink2_aria_label=Editor kreslenia +editor_ink_canvas_aria_label=Obrázok vytvorený používateľom diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/skr/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/skr/viewer.properties new file mode 100644 index 00000000..a66a271c --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/skr/viewer.properties @@ -0,0 +1,264 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=پچھلا ورقہ +previous_label=پچھلا +next.title=اڳلا ورقہ +next_label=اڳلا + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=ورقہ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} دا +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} دا {{pagesCount}}) + +zoom_out.title=زوم آؤٹ +zoom_out_label=زوم آؤٹ +zoom_in.title=زوم اِن +zoom_in_label=زوم اِن +zoom.title=زوم +presentation_mode.title=پریزنٹیشن موڈ تے سوئچ کرو +presentation_mode_label=پریزنٹیشن موڈ +open_file.title=فائل کھولو +open_file_label=کھولو +print.title=چھاپو +print_label=چھاپو +save.title=ہتھیکڑا کرو +save_label=ہتھیکڑا کرو +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=ڈاؤن لوڈ +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=ڈاؤن لوڈ +bookmark1.title=موجودہ ورقہ (موجودہ ورقے کنوں یوآرایل ݙیکھو) +bookmark1_label=موجودہ ورقہ +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=ایپ وچ کھولو +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=ایپ وچ کھولو + +# Secondary toolbar and context menu +tools.title=اوزار +tools_label=اوزار +first_page.title=پہلے ورقے تے ونڄو +first_page_label=پہلے ورقے تے ونڄو +last_page.title=چھیکڑی ورقے تے ونڄو +last_page_label=چھیکڑی ورقے تے ونڄو +page_rotate_cw.title=گھڑی وانگوں گھماؤ +page_rotate_cw_label=گھڑی وانگوں گھماؤ +page_rotate_ccw.title=گھڑی تے اُپٹھ گھماؤ +page_rotate_ccw_label=گھڑی تے اُپٹھ گھماؤ + +cursor_text_select_tool.title=متن منتخب کݨ والا آلہ فعال بݨاؤ +cursor_text_select_tool_label=متن منتخب کرݨ والا آلہ +cursor_hand_tool.title=ہینڈ ٹول فعال بݨاؤ +cursor_hand_tool_label=ہینڈ ٹول + +scroll_page.title=پیج سکرولنگ استعمال کرو +scroll_page_label=پیج سکرولنگ +scroll_vertical.title=عمودی سکرولنگ استعمال کرو +scroll_vertical_label=عمودی سکرولنگ +scroll_horizontal.title=افقی سکرولنگ استعمال کرو +scroll_horizontal_label=افقی سکرولنگ +scroll_wrapped.title=ویڑھی ہوئی سکرولنگ استعمال کرو +scroll_wrapped_label=وہڑھی ہوئی سکرولنگ + +spread_none.title=پیج سپریڈز وِچ شامل نہ تھیوو۔ +spread_none_label=کوئی پولھ کائنی +spread_odd.title=طاق نمبر والے ورقیاں دے نال شروع تھیوݨ والے پیج سپریڈز وِچ شامل تھیوو۔ +spread_odd_label=تاک پھیلاؤ +spread_even.title=جفت نمر والے ورقیاں نال شروع تھیوݨ والے پیج سپریڈز وِ شامل تھیوو۔ +spread_even_label=جفت پھیلاؤ + +# Document properties dialog box +document_properties.title=دستاویز خواص… +document_properties_label=دستاویز خواص … +document_properties_file_name=فائل دا ناں: +document_properties_file_size=فائل دا سائز: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} کے بی ({{size_b}} بائٹس) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} ایم بی ({{size_b}} بائٹس) +document_properties_title=عنوان: +document_properties_author=تخلیق کار: +document_properties_subject=موضوع: +document_properties_keywords=کلیدی الفاظ: +document_properties_creation_date=تخلیق دی تاریخ: +document_properties_modification_date=ترمیم دی تاریخ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=تخلیق کار: +document_properties_producer=PDF پیدا کار: +document_properties_version=PDF ورژن: +document_properties_page_count=ورقہ شماری: +document_properties_page_size=ورقہ دی سائز: +document_properties_page_size_unit_inches=وِچ +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=عمودی انداز +document_properties_page_size_orientation_landscape=افقى انداز +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=لیٹر +document_properties_page_size_name_legal=قنونی +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=تکھا ویب نظارہ: +document_properties_linearized_yes=جیا +document_properties_linearized_no=کو +document_properties_close=بند کرو + +print_progress_message=چھاپݨ کیتے دستاویز تیار تھیندے پئے ہن … +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=منسوخ کرو + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=سائیڈ بار ٹوگل کرو +toggle_sidebar_notification2.title=سائیڈ بار ٹوگل کرو (دستاویز وِچ آؤٹ لائن/ منسلکات/ پرتاں شامل ہن) +toggle_sidebar_label=سائیڈ بار ٹوگل کرو +document_outline.title=دستاویز دا خاکہ ݙکھاؤ (تمام آئٹمز کوں پھیلاوݨ/سنگوڑݨ کیتے ڈبل کلک کرو) +document_outline_label=دستاویز آؤٹ لائن +attachments.title=نتھیاں ݙکھاؤ +attachments_label=منسلکات +layers.title=پرتاں ݙکھاؤ (تمام پرتاں کوں ڈیفالٹ حالت وِچ دوبارہ ترتیب ݙیوݨ کیتے ڈبل کلک کرو) +layers_label=پرتاں +thumbs.title=تھمبنیل ݙکھاؤ +thumbs_label=تھمبنیلز +current_outline_item.title=موجودہ آؤٹ لائن آئٹم لبھو +current_outline_item_label=موجودہ آؤٹ لائن آئٹم +findbar.title=دستاویز وِچ لبھو +findbar_label=لبھو + +additional_layers=اضافی پرتاں +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=ورقہ {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=ورقہ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=ورقے دا تھمبنیل {{page}} + +# Find panel button title and messages +find_input.title=لبھو +find_input.placeholder=دستاویز وِچ لبھو … +find_previous.title=فقرے دا پچھلا واقعہ لبھو +find_previous_label=پچھلا +find_next.title=فقرے دا اڳلا واقعہ لبھو +find_next_label=اڳلا +find_highlight=تمام نشابر کرو +find_match_case_label=حروف مشابہ کرو +find_match_diacritics_label=ڈائیکرٹکس مشابہ کرو +find_entire_word_label=تمام الفاظ +find_reached_top=ورقے دے شروع تے پُج ڳیا، تلوں جاری کیتا ڳیا +find_reached_bottom=ورقے دے پاند تے پُڄ ڳیا، اُتوں شروع کیتا ڳیا +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ جمع (کل) ]} +find_match_count[one]={{current}} دا {{total}} موازنہ کرو +find_match_count[two]={{current}} دا {{total}} موازنہ +find_match_count[few]={{current}} دا {{total}} موازنہ +find_match_count[many]={{current}} دا {{total}} موازنہ +find_match_count[other]={{current}} دا {{total}} موازنہ +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ جمع (حد) ]} +find_match_count_limit[zero]={{limit}} کنوں زیادہ مماثلتاں۔ +find_match_count_limit[one]={{limit}} مماثل کنوں ودھ +find_match_count_limit[two]={{limit}} کنوں زیادہ مماثلتاں۔ +find_match_count_limit[few]={{limit}} مماثلاں کنوں ودھ +find_match_count_limit[many]={{limit}} مماثلاں کنوں ودھ +find_match_count_limit[other]={{limit}} مماثلاں کنوں ودھ +find_not_found=فقرہ نئیں ملیا + +# Predefined zoom values +page_scale_width=ورقے دی چوڑائی +page_scale_fit=ورقہ فٹنگ +page_scale_auto=آپوں آپ زوم +page_scale_actual=اصل میچا +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF لوڈ کریندے ویلھے نقص آ ڳیا۔ +invalid_file_error=غلط یا خراب شدہ PDF فائل۔ +missing_file_error=PDF فائل غائب ہے۔ +unexpected_response_error=سرور دا غیر متوقع جواب۔ +rendering_error=ورقہ رینڈر کریندے ویلھے ہک خرابی پیش آڳئی۔ + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} تشریح] +password_label=ایہ PDF فائل کھولݨ کیتے پاس ورڈ درج کرو۔ +password_invalid=غلط پاس ورڈ: براہ مہربانی ولدا کوشش کرو۔ +password_ok=ٹھیک ہے +password_cancel=منسوخ کرو + +printing_not_supported=چتاوݨی: چھپائی ایں براؤزر تے پوری طراں معاونت شدہ کائنی۔ +printing_not_ready=چتاوݨی: PDF چھپائی کیتے پوری طراں لوڈ نئیں تھئی۔ +web_fonts_disabled=ویب فونٹس غیر فعال ہن: ایمبیڈڈ PDF فونٹس استعمال کرݨ کنوں قاصر ہن + +# Editor +editor_free_text2.title=متن +editor_free_text2_label=متن +editor_ink2.title=چھکو +editor_ink2_label=چھکو + +editor_stamp.title=ہک تصویر شامل کرو +editor_stamp_label=ہک تصویر شامل کرو + +free_text2_default_content=ٹائپنگ شروع کرو … + +# Editor Parameters +editor_free_text_color=رنگ +editor_free_text_size=سائز +editor_ink_color=رنگ +editor_ink_thickness=ٹھولھ +editor_ink_opacity=دھندلاپن + +# Editor aria +editor_free_text2_aria_label=ٹیکسٹ ایڈیٹر +editor_ink2_aria_label=ڈرا ایڈیٹر +editor_ink_canvas_aria_label=صارف دی بݨائی ہوئی تصویر diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sl/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sl/viewer.properties new file mode 100644 index 00000000..29254c12 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sl/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Prejšnja stran +previous_label=Nazaj +next.title=Naslednja stran +next_label=Naprej + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Stran +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=od {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} od {{pagesCount}}) + +zoom_out.title=Pomanjšaj +zoom_out_label=Pomanjšaj +zoom_in.title=Povečaj +zoom_in_label=Povečaj +zoom.title=Povečava +presentation_mode.title=Preklopi v način predstavitve +presentation_mode_label=Način predstavitve +open_file.title=Odpri datoteko +open_file_label=Odpri +print.title=Natisni +print_label=Natisni +save.title=Shrani +save_label=Shrani +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Prenesi +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Prenesi +bookmark1.title=Trenutna stran (prikaži URL, ki vodi do trenutne strani) +bookmark1_label=Na trenutno stran +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Odpri v programu +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Odpri v programu + +# Secondary toolbar and context menu +tools.title=Orodja +tools_label=Orodja +first_page.title=Pojdi na prvo stran +first_page_label=Pojdi na prvo stran +last_page.title=Pojdi na zadnjo stran +last_page_label=Pojdi na zadnjo stran +page_rotate_cw.title=Zavrti v smeri urnega kazalca +page_rotate_cw_label=Zavrti v smeri urnega kazalca +page_rotate_ccw.title=Zavrti v nasprotni smeri urnega kazalca +page_rotate_ccw_label=Zavrti v nasprotni smeri urnega kazalca + +cursor_text_select_tool.title=Omogoči orodje za izbor besedila +cursor_text_select_tool_label=Orodje za izbor besedila +cursor_hand_tool.title=Omogoči roko +cursor_hand_tool_label=Roka + +scroll_page.title=Uporabi drsenje po strani +scroll_page_label=Drsenje po strani +scroll_vertical.title=Uporabi navpično drsenje +scroll_vertical_label=Navpično drsenje +scroll_horizontal.title=Uporabi vodoravno drsenje +scroll_horizontal_label=Vodoravno drsenje +scroll_wrapped.title=Uporabi ovito drsenje +scroll_wrapped_label=Ovito drsenje + +spread_none.title=Ne združuj razponov strani +spread_none_label=Brez razponov +spread_odd.title=Združuj razpone strani z začetkom pri lihih straneh +spread_odd_label=Lihi razponi +spread_even.title=Združuj razpone strani z začetkom pri sodih straneh +spread_even_label=Sodi razponi + +# Document properties dialog box +document_properties.title=Lastnosti dokumenta … +document_properties_label=Lastnosti dokumenta … +document_properties_file_name=Ime datoteke: +document_properties_file_size=Velikost datoteke: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajtov) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajtov) +document_properties_title=Ime: +document_properties_author=Avtor: +document_properties_subject=Tema: +document_properties_keywords=Ključne besede: +document_properties_creation_date=Datum nastanka: +document_properties_modification_date=Datum spremembe: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Ustvaril: +document_properties_producer=Izdelovalec PDF: +document_properties_version=Različica PDF: +document_properties_page_count=Število strani: +document_properties_page_size=Velikost strani: +document_properties_page_size_unit_inches=palcev +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=pokončno +document_properties_page_size_orientation_landscape=ležeče +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Pismo +document_properties_page_size_name_legal=Pravno +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Hitri spletni ogled: +document_properties_linearized_yes=Da +document_properties_linearized_no=Ne +document_properties_close=Zapri + +print_progress_message=Priprava dokumenta na tiskanje … +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}} % +print_progress_close=Prekliči + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Preklopi stransko vrstico +toggle_sidebar_notification2.title=Preklopi stransko vrstico (dokument vsebuje oris/priponke/plasti) +toggle_sidebar_label=Preklopi stransko vrstico +document_outline.title=Prikaži oris dokumenta (dvokliknite za razširitev/strnitev vseh predmetov) +document_outline_label=Oris dokumenta +attachments.title=Prikaži priponke +attachments_label=Priponke +layers.title=Prikaži plasti (dvokliknite za ponastavitev vseh plasti na privzeto stanje) +layers_label=Plasti +thumbs.title=Prikaži sličice +thumbs_label=Sličice +current_outline_item.title=Najdi trenutni predmet orisa +current_outline_item_label=Trenutni predmet orisa +findbar.title=Iskanje po dokumentu +findbar_label=Najdi + +additional_layers=Dodatne plasti +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Stran {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Stran {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Sličica strani {{page}} + +# Find panel button title and messages +find_input.title=Najdi +find_input.placeholder=Najdi v dokumentu … +find_previous.title=Najdi prejšnjo ponovitev iskanega +find_previous_label=Najdi nazaj +find_next.title=Najdi naslednjo ponovitev iskanega +find_next_label=Najdi naprej +find_highlight=Označi vse +find_match_case_label=Razlikuj velike/male črke +find_match_diacritics_label=Razlikuj diakritične znake +find_entire_word_label=Cele besede +find_reached_top=Dosežen začetek dokumenta iz smeri konca +find_reached_bottom=Doseženo konec dokumenta iz smeri začetka +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=Zadetek {{current}} od {{total}} +find_match_count[two]=Zadetek {{current}} od {{total}} +find_match_count[few]=Zadetek {{current}} od {{total}} +find_match_count[many]=Zadetek {{current}} od {{total}} +find_match_count[other]=Zadetek {{current}} od {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Več kot {{limit}} zadetkov +find_match_count_limit[one]=Več kot {{limit}} zadetek +find_match_count_limit[two]=Več kot {{limit}} zadetka +find_match_count_limit[few]=Več kot {{limit}} zadetki +find_match_count_limit[many]=Več kot {{limit}} zadetkov +find_match_count_limit[other]=Več kot {{limit}} zadetkov +find_not_found=Iskanega ni mogoče najti + +# Predefined zoom values +page_scale_width=Širina strani +page_scale_fit=Prilagodi stran +page_scale_auto=Samodejno +page_scale_actual=Dejanska velikost +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}} % + +# Loading indicator messages +loading_error=Med nalaganjem datoteke PDF je prišlo do napake. +invalid_file_error=Neveljavna ali pokvarjena datoteka PDF. +missing_file_error=Ni datoteke PDF. +unexpected_response_error=Nepričakovan odgovor strežnika. +rendering_error=Med pripravljanjem strani je prišlo do napake! + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Opomba vrste {{type}}] +password_label=Vnesite geslo za odpiranje te datoteke PDF. +password_invalid=Neveljavno geslo. Poskusite znova. +password_ok=V redu +password_cancel=Prekliči + +printing_not_supported=Opozorilo: ta brskalnik ne podpira vseh možnosti tiskanja. +printing_not_ready=Opozorilo: PDF ni v celoti naložen za tiskanje. +web_fonts_disabled=Spletne pisave so onemogočene: vgradnih pisav za PDF ni mogoče uporabiti. + +# Editor +editor_free_text2.title=Besedilo +editor_free_text2_label=Besedilo +editor_ink2.title=Riši +editor_ink2_label=Riši + +editor_stamp1.title=Dodajanje ali urejanje slik +editor_stamp1_label=Dodajanje ali urejanje slik + +free_text2_default_content=Začnite tipkati … + +# Editor Parameters +editor_free_text_color=Barva +editor_free_text_size=Velikost +editor_ink_color=Barva +editor_ink_thickness=Debelina +editor_ink_opacity=Neprosojnost + +editor_stamp_add_image_label=Dodaj sliko +editor_stamp_add_image.title=Dodaj sliko + +# Editor aria +editor_free_text2_aria_label=Urejevalnik besedila +editor_ink2_aria_label=Urejevalnik risanja +editor_ink_canvas_aria_label=Uporabnikova slika + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Nadomestno besedilo +editor_alt_text_edit_button_label=Uredi nadomestno besedilo +editor_alt_text_dialog_label=Izberite možnost +editor_alt_text_dialog_description=Nadomestno besedilo se prikaže tistim, ki ne vidijo slike, ali če se ta ne naloži. +editor_alt_text_add_description_label=Dodaj opis +editor_alt_text_add_description_description=Poskušajte v enem ali dveh stavkih opisati motiv, okolje ali dejanja. +editor_alt_text_mark_decorative_label=Označi kot okrasno +editor_alt_text_mark_decorative_description=Uporablja se za slike, ki služijo samo okrasu, na primer obrobe ali vodne žige. +editor_alt_text_cancel_button=Prekliči +editor_alt_text_save_button=Shrani +editor_alt_text_decorative_tooltip=Označeno kot okrasno +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Na primer: "Mladenič sedi za mizo pri jedi" diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/son/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/son/viewer.properties new file mode 100644 index 00000000..cd9f5294 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/son/viewer.properties @@ -0,0 +1,152 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Moo bisante +previous_label=Bisante +next.title=Jinehere moo +next_label=Jine + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Moo +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} ra +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} ka hun {{pagesCount}}) ra + +zoom_out.title=Nakasandi +zoom_out_label=Nakasandi +zoom_in.title=Bebbeerandi +zoom_in_label=Bebbeerandi +zoom.title=Bebbeerandi +presentation_mode.title=Bere cebeyan alhaali +presentation_mode_label=Cebeyan alhaali +open_file.title=Tuku feeri +open_file_label=Feeri +print.title=Kar +print_label=Kar + +# Secondary toolbar and context menu +tools.title=Goyjinawey +tools_label=Goyjinawey +first_page.title=Koy moo jinaa ga +first_page_label=Koy moo jinaa ga +last_page.title=Koy moo koraa ga +last_page_label=Koy moo koraa ga +page_rotate_cw.title=Kuubi kanbe guma here +page_rotate_cw_label=Kuubi kanbe guma here +page_rotate_ccw.title=Kuubi kanbe wowa here +page_rotate_ccw_label=Kuubi kanbe wowa here + + +# Document properties dialog box +document_properties.title=Takadda mayrawey… +document_properties_label=Takadda mayrawey… +document_properties_file_name=Tuku maa: +document_properties_file_size=Tuku adadu: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb=KB {{size_kb}} (cebsu-ize {{size_b}}) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb=MB {{size_mb}} (cebsu-ize {{size_b}}) +document_properties_title=Tiiramaa: +document_properties_author=Hantumkaw: +document_properties_subject=Dalil: +document_properties_keywords=Kufalkalimawey: +document_properties_creation_date=Teeyan han: +document_properties_modification_date=Barmayan han: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Teekaw: +document_properties_producer=PDF berandikaw: +document_properties_version=PDF dumi: +document_properties_page_count=Moo hinna: +document_properties_close=Daabu + +print_progress_message=Goo ma takaddaa soolu k'a kar se… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Naŋ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Kanjari ceraw zuu +toggle_sidebar_label=Kanjari ceraw zuu +document_outline.title=Takaddaa korfur alhaaloo cebe (naagu cee hinka ka haya-izey kul hayandi/kankamandi) +document_outline_label=Takadda filla-boŋ +attachments.title=Hangarey cebe +attachments_label=Hangarey +thumbs.title=Kabeboy biyey cebe +thumbs_label=Kabeboy biyey +findbar.title=Ceeci takaddaa ra +findbar_label=Ceeci + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} moo +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Kabeboy bii {{page}} moo še + +# Find panel button title and messages +find_input.title=Ceeci +find_input.placeholder=Ceeci takaddaa ra… +find_previous.title=Kalimaɲaŋoo bangayri bisantaa ceeci +find_previous_label=Bisante +find_next.title=Kalimaɲaŋoo hiino bangayroo ceeci +find_next_label=Jine +find_highlight=Ikul šilbay +find_match_case_label=Harfu-beeriyan hawgay +find_reached_top=A too moŋoo boŋoo, koy jine ka šinitin nda cewoo +find_reached_bottom=A too moɲoo cewoo, koy jine šintioo ga +find_not_found=Kalimaɲaa mana duwandi + +# Predefined zoom values +page_scale_width=Mooo hayyan +page_scale_fit=Moo sawayan +page_scale_auto=Boŋše azzaati barmayyan +page_scale_actual=Adadu cimi +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Firka bangay kaŋ PDF goo ma zumandi. +invalid_file_error=PDF tuku laala wala laybante. +missing_file_error=PDF tuku kumante. +unexpected_response_error=Manti feršikaw tuuruyan maatante. + +rendering_error=Firka bangay kaŋ moɲoo goo ma willandi. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt={{type}} maasa-caw] +password_label=Šennikufal dam ka PDF tukoo woo feeri. +password_invalid=Šennikufal laalo. Ceeci koyne taare. +password_ok=Ayyo +password_cancel=Naŋ + +printing_not_supported=Yaamar: Karyan ši tee ka timme nda ceecikaa woo. +printing_not_ready=Yaamar: PDF ši zunbu ka timme karyan še. +web_fonts_disabled=Interneti šigirawey kay: ši hin ka goy nda PDF šigira hurantey. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sq/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sq/viewer.properties new file mode 100644 index 00000000..51aa9150 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sq/viewer.properties @@ -0,0 +1,247 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Faqja e Mëparshme +previous_label=E mëparshmja +next.title=Faqja Pasuese +next_label=Pasuesja + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Faqe +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=nga {{pagesCount}} gjithsej +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} nga {{pagesCount}}) + +zoom_out.title=Zvogëlojeni +zoom_out_label=Zvogëlojeni +zoom_in.title=Zmadhojeni +zoom_in_label=Zmadhojini +zoom.title=Zmadhim/Zvogëlim +presentation_mode.title=Kalo te Mënyra Paraqitje +presentation_mode_label=Mënyra Paraqitje +open_file.title=Hapni Kartelë +open_file_label=Hape +print.title=Shtypje +print_label=Shtype +save.title=Ruaje +save_label=Ruaje + +bookmark1.title=Faqja e Tanishme (Shihni URL nga Faqja e Tanishme) +bookmark1_label=Faqja e Tanishme + +# Secondary toolbar and context menu +tools.title=Mjete +tools_label=Mjete +first_page.title=Kaloni te Faqja e Parë +first_page_label=Kaloni te Faqja e Parë +last_page.title=Kaloni te Faqja e Fundit +last_page_label=Kaloni te Faqja e Fundit +page_rotate_cw.title=Rrotullojeni Në Kahun Orar +page_rotate_cw_label=Rrotulloje Në Kahun Orar +page_rotate_ccw.title=Rrotullojeni Në Kahun Kundërorar +page_rotate_ccw_label=Rrotulloje Në Kahun Kundërorar + +cursor_text_select_tool.title=Aktivizo Mjet Përzgjedhjeje Teksti +cursor_text_select_tool_label=Mjet Përzgjedhjeje Teksti +cursor_hand_tool.title=Aktivizo Mjetin Dorë +cursor_hand_tool_label=Mjeti Dorë + +scroll_page.title=Përdor Rrëshqitje Në Faqe +scroll_page_label=Rrëshqitje Në Faqe +scroll_vertical.title=Përdor Rrëshqitje Vertikale +scroll_vertical_label=Rrëshqitje Vertikale +scroll_horizontal.title=Përdor Rrëshqitje Horizontale +scroll_horizontal_label=Rrëshqitje Horizontale +scroll_wrapped.title=Përdor Rrëshqitje Me Mbështjellje +scroll_wrapped_label=Rrëshqitje Me Mbështjellje + + +# Document properties dialog box +document_properties.title=Veti Dokumenti… +document_properties_label=Veti Dokumenti… +document_properties_file_name=Emër kartele: +document_properties_file_size=Madhësi kartele: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bajte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bajte) +document_properties_title=Titull: +document_properties_author=Autor: +document_properties_subject=Subjekt: +document_properties_keywords=Fjalëkyçe: +document_properties_creation_date=Datë Krijimi: +document_properties_modification_date=Datë Ndryshimi: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Krijues: +document_properties_producer=Prodhues PDF-je: +document_properties_version=Version PDF-je: +document_properties_page_count=Numër Faqesh: +document_properties_page_size=Madhësi Faqeje: +document_properties_page_size_unit_inches=inç +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=portret +document_properties_page_size_orientation_landscape=së gjeri +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Parje e Shpjetë në Web: +document_properties_linearized_yes=Po +document_properties_linearized_no=Jo +document_properties_close=Mbylleni + +print_progress_message=Po përgatitet dokumenti për shtypje… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Anuloje + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Shfaqni/Fshihni Anështyllën +toggle_sidebar_notification2.title=Hap/Mbyll Anështylë (dokumenti përmban përvijim/nashkëngjitje/shtresa) +toggle_sidebar_label=Shfaq/Fshih Anështyllën +document_outline.title=Shfaqni Përvijim Dokumenti (dyklikoni që të shfaqen/fshihen krejt elementët) +document_outline_label=Përvijim Dokumenti +attachments.title=Shfaqni Bashkëngjitje +attachments_label=Bashkëngjitje +layers.title=Shfaq Shtresa (dyklikoni që të rikthehen krejt shtresat në gjendjen e tyre parazgjedhje) +layers_label=Shtresa +thumbs.title=Shfaqni Miniatura +thumbs_label=Miniatura +current_outline_item.title=Gjej Objektin e Tanishëm të Përvijuar +current_outline_item_label=Objekt i Tanishëm i Përvijuar +findbar.title=Gjeni në Dokument +findbar_label=Gjej + +additional_layers=Shtresa Shtesë +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Faqja {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Faqja {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniaturë e Faqes {{page}} + +# Find panel button title and messages +find_input.title=Gjej +find_input.placeholder=Gjeni në dokument… +find_previous.title=Gjeni hasjen e mëparshme të togfjalëshit +find_previous_label=E mëparshmja +find_next.title=Gjeni hasjen pasuese të togfjalëshit +find_next_label=Pasuesja +find_highlight=Theksoji të tëra +find_match_case_label=Siç Është Shkruar +find_match_diacritics_label=Me Përputhje Me Shenjat Diakritike +find_entire_word_label=Fjalë të Plota +find_reached_top=U mbërrit në krye të dokumentit, vazhduar prej fundit +find_reached_bottom=U mbërrit në fund të dokumentit, vazhduar prej kreut +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} nga {{total}} përputhje gjithsej +find_match_count[two]={{current}} nga {{total}} përputhje gjithsej +find_match_count[few]={{current}} nga {{total}} përputhje gjithsej +find_match_count[many]={{current}} nga {{total}} përputhje gjithsej +find_match_count[other]={{current}} nga {{total}} përputhje gjithsej +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Më shumë se {{limit}} përputhje +find_match_count_limit[one]=Më shumë se {{limit}} përputhje +find_match_count_limit[two]=Më shumë se {{limit}} përputhje +find_match_count_limit[few]=Më shumë se {{limit}} përputhje +find_match_count_limit[many]=Më shumë se {{limit}} përputhje +find_match_count_limit[other]=Më shumë se {{limit}} përputhje +find_not_found=Togfjalësh që s’gjendet + +# Predefined zoom values +page_scale_width=Gjerësi Faqeje +page_scale_fit=Sa Nxë Faqja +page_scale_auto=Zoom i Vetvetishëm +page_scale_actual=Madhësia Faktike +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Ndodhi një gabim gjatë ngarkimit të PDF-së. +invalid_file_error=Kartelë PDF e pavlefshme ose e dëmtuar. +missing_file_error=Kartelë PDF që mungon. +unexpected_response_error=Përgjigje shërbyesi e papritur. + +rendering_error=Ndodhi një gabim gjatë riprodhimit të faqes. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Nënvizim {{type}}] +password_label=Jepni fjalëkalimin që të hapet kjo kartelë PDF. +password_invalid=Fjalëkalim i pavlefshëm. Ju lutemi, riprovoni. +password_ok=OK +password_cancel=Anuloje + +printing_not_supported=Kujdes: Shtypja s’mbulohet plotësisht nga ky shfletues. +printing_not_ready=Kujdes: PDF-ja s’është ngarkuar plotësisht që ta shtypni. +web_fonts_disabled=Shkronjat Web janë të çaktivizuara: s’arrihet të përdoren shkronja të trupëzuara në PDF. + +# Editor +editor_free_text2.title=Tekst +editor_free_text2_label=Tekst +editor_ink2.title=Vizatoni +editor_ink2_label=Vizatoni + +free_text2_default_content=Filloni të shtypni… + +# Editor Parameters +editor_free_text_color=Ngjyrë +editor_free_text_size=Madhësi +editor_ink_color=Ngjyrë +editor_ink_thickness=Trashësi +editor_ink_opacity=Patejdukshmëri + +# Editor aria +editor_free_text2_aria_label=Përpunues Tekstesh +editor_ink2_aria_label=Përpunues Vizatimesh +editor_ink_canvas_aria_label=Figurë e krijuar nga përdoruesi diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sr/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sr/viewer.properties new file mode 100644 index 00000000..6fcfcbf4 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sr/viewer.properties @@ -0,0 +1,259 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Претходна страница +previous_label=Претходна +next.title=Следећа страница +next_label=Следећа + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Страница +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=од {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} од {{pagesCount}}) + +zoom_out.title=Умањи +zoom_out_label=Умањи +zoom_in.title=Увеличај +zoom_in_label=Увеличај +zoom.title=Увеличавање +presentation_mode.title=Промени на приказ у режиму презентације +presentation_mode_label=Режим презентације +open_file.title=Отвори датотеку +open_file_label=Отвори +print.title=Штампај +print_label=Штампај + +save.title=Сачувај +save_label=Сачувај +bookmark1.title=Тренутна страница (погледајте URL са тренутне странице) +bookmark1_label=Тренутна страница + +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Отвори у апликацији +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Отвори у апликацији + +# Secondary toolbar and context menu +tools.title=Алатке +tools_label=Алатке +first_page.title=Иди на прву страницу +first_page_label=Иди на прву страницу +last_page.title=Иди на последњу страницу +last_page_label=Иди на последњу страницу +page_rotate_cw.title=Ротирај у смеру казаљке на сату +page_rotate_cw_label=Ротирај у смеру казаљке на сату +page_rotate_ccw.title=Ротирај у смеру супротном од казаљке на сату +page_rotate_ccw_label=Ротирај у смеру супротном од казаљке на сату + +cursor_text_select_tool.title=Омогући алат за селектовање текста +cursor_text_select_tool_label=Алат за селектовање текста +cursor_hand_tool.title=Омогући алат за померање +cursor_hand_tool_label=Алат за померање + +scroll_page.title=Користи скроловање по омоту +scroll_page_label=Скроловање странице +scroll_vertical.title=Користи вертикално скроловање +scroll_vertical_label=Вертикално скроловање +scroll_horizontal.title=Користи хоризонтално скроловање +scroll_horizontal_label=Хоризонтално скроловање +scroll_wrapped.title=Користи скроловање по омоту +scroll_wrapped_label=Скроловање по омоту + +spread_none.title=Немој спајати ширења страница +spread_none_label=Без распростирања +spread_odd.title=Споји ширења страница које почињу непарним бројем +spread_odd_label=Непарна распростирања +spread_even.title=Споји ширења страница које почињу парним бројем +spread_even_label=Парна распростирања + +# Document properties dialog box +document_properties.title=Параметри документа… +document_properties_label=Параметри документа… +document_properties_file_name=Име датотеке: +document_properties_file_size=Величина датотеке: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} B) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} B) +document_properties_title=Наслов: +document_properties_author=Аутор: +document_properties_subject=Тема: +document_properties_keywords=Кључне речи: +document_properties_creation_date=Датум креирања: +document_properties_modification_date=Датум модификације: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Стваралац: +document_properties_producer=PDF произвођач: +document_properties_version=PDF верзија: +document_properties_page_count=Број страница: +document_properties_page_size=Величина странице: +document_properties_page_size_unit_inches=ин +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=усправно +document_properties_page_size_orientation_landscape=водоравно +document_properties_page_size_name_a3=А3 +document_properties_page_size_name_a4=А4 +document_properties_page_size_name_letter=Слово +document_properties_page_size_name_legal=Права +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Брз веб приказ: +document_properties_linearized_yes=Да +document_properties_linearized_no=Не +document_properties_close=Затвори + +print_progress_message=Припремам документ за штампање… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Откажи + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Прикажи додатну палету +toggle_sidebar_notification2.title=Прикажи/сакриј бочну траку (документ садржи контуру/прилоге/слојеве) +toggle_sidebar_label=Прикажи додатну палету +document_outline.title=Прикажи структуру документа (двоструким кликом проширујете/скупљате све ставке) +document_outline_label=Контура документа +attachments.title=Прикажи прилоге +attachments_label=Прилози +layers.title=Прикажи слојеве (дупли клик за враћање свих слојева у подразумевано стање) +layers_label=Слојеви +thumbs.title=Прикажи сличице +thumbs_label=Сличице +current_outline_item.title=Пронађите тренутни елемент структуре +current_outline_item_label=Тренутна контура +findbar.title=Пронађи у документу +findbar_label=Пронађи + +additional_layers=Додатни слојеви +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Страница {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Страница {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Сличица од странице {{page}} + +# Find panel button title and messages +find_input.title=Пронађи +find_input.placeholder=Пронађи у документу… +find_previous.title=Пронађи претходно појављивање фразе +find_previous_label=Претходна +find_next.title=Пронађи следеће појављивање фразе +find_next_label=Следећа +find_highlight=Истакнути све +find_match_case_label=Подударања +find_match_diacritics_label=Дијакритика +find_entire_word_label=Целе речи +find_reached_top=Достигнут врх документа, наставио са дна +find_reached_bottom=Достигнуто дно документа, наставио са врха +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} од {{total}} одговара +find_match_count[two]={{current}} од {{total}} одговара +find_match_count[few]={{current}} од {{total}} одговара +find_match_count[many]={{current}} од {{total}} одговара +find_match_count[other]={{current}} од {{total}} одговара +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Више од {{limit}} одговара +find_match_count_limit[one]=Више од {{limit}} одговара +find_match_count_limit[two]=Више од {{limit}} одговара +find_match_count_limit[few]=Више од {{limit}} одговара +find_match_count_limit[many]=Више од {{limit}} одговара +find_match_count_limit[other]=Више од {{limit}} одговара +find_not_found=Фраза није пронађена + +# Predefined zoom values +page_scale_width=Ширина странице +page_scale_fit=Прилагоди страницу +page_scale_auto=Аутоматско увеличавање +page_scale_actual=Стварна величина +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Дошло је до грешке приликом учитавања PDF-а. +invalid_file_error=PDF датотека је неважећа или је оштећена. +missing_file_error=Недостаје PDF датотека. +unexpected_response_error=Неочекиван одговор од сервера. + +rendering_error=Дошло је до грешке приликом рендеровања ове странице. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} коментар] +password_label=Унесите лозинку да бисте отворили овај PDF докуменат. +password_invalid=Неисправна лозинка. Покушајте поново. +password_ok=У реду +password_cancel=Откажи + +printing_not_supported=Упозорење: Штампање није у потпуности подржано у овом прегледачу. +printing_not_ready=Упозорење: PDF није у потпуности учитан за штампу. +web_fonts_disabled=Веб фонтови су онемогућени: не могу користити уграђене PDF фонтове. + +# Editor +editor_free_text2.title=Текст +editor_free_text2_label=Текст +editor_ink2.title=Цртај +editor_ink2_label=Цртај + +free_text2_default_content=Почни куцање… + +# Editor Parameters +editor_free_text_color=Боја +editor_free_text_size=Величина +editor_ink_color=Боја +editor_ink_thickness=Дебљина +editor_ink_opacity=Опацитет + +# Editor aria +editor_free_text2_aria_label=Уређивач текста +editor_ink2_aria_label=Уређивач цртежа +editor_ink_canvas_aria_label=Кориснички направљена слика diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/sv-SE/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sv-SE/viewer.properties new file mode 100644 index 00000000..a15d2b68 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/sv-SE/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Föregående sida +previous_label=Föregående +next.title=Nästa sida +next_label=Nästa + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Sida +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=av {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} av {{pagesCount}}) + +zoom_out.title=Zooma ut +zoom_out_label=Zooma ut +zoom_in.title=Zooma in +zoom_in_label=Zooma in +zoom.title=Zoom +presentation_mode.title=Byt till presentationsläge +presentation_mode_label=Presentationsläge +open_file.title=Öppna fil +open_file_label=Öppna +print.title=Skriv ut +print_label=Skriv ut +save.title=Spara +save_label=Spara +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Hämta +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Hämta +bookmark1.title=Aktuell sida (Visa URL från aktuell sida) +bookmark1_label=Aktuell sida +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Öppna i app +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Öppna i app + +# Secondary toolbar and context menu +tools.title=Verktyg +tools_label=Verktyg +first_page.title=Gå till första sidan +first_page_label=Gå till första sidan +last_page.title=Gå till sista sidan +last_page_label=Gå till sista sidan +page_rotate_cw.title=Rotera medurs +page_rotate_cw_label=Rotera medurs +page_rotate_ccw.title=Rotera moturs +page_rotate_ccw_label=Rotera moturs + +cursor_text_select_tool.title=Aktivera textmarkeringsverktyg +cursor_text_select_tool_label=Textmarkeringsverktyg +cursor_hand_tool.title=Aktivera handverktyg +cursor_hand_tool_label=Handverktyg + +scroll_page.title=Använd sidrullning +scroll_page_label=Sidrullning +scroll_vertical.title=Använd vertikal rullning +scroll_vertical_label=Vertikal rullning +scroll_horizontal.title=Använd horisontell rullning +scroll_horizontal_label=Horisontell rullning +scroll_wrapped.title=Använd överlappande rullning +scroll_wrapped_label=Överlappande rullning + +spread_none.title=Visa enkelsidor +spread_none_label=Enkelsidor +spread_odd.title=Visa uppslag med olika sidnummer till vänster +spread_odd_label=Uppslag med framsida +spread_even.title=Visa uppslag med lika sidnummer till vänster +spread_even_label=Uppslag utan framsida + +# Document properties dialog box +document_properties.title=Dokumentegenskaper… +document_properties_label=Dokumentegenskaper… +document_properties_file_name=Filnamn: +document_properties_file_size=Filstorlek: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} kB ({{size_b}} byte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byte) +document_properties_title=Titel: +document_properties_author=Författare: +document_properties_subject=Ämne: +document_properties_keywords=Nyckelord: +document_properties_creation_date=Skapades: +document_properties_modification_date=Ändrades: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Skapare: +document_properties_producer=PDF-producent: +document_properties_version=PDF-version: +document_properties_page_count=Sidantal: +document_properties_page_size=Pappersstorlek: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=porträtt +document_properties_page_size_orientation_landscape=landskap +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Snabb webbvisning: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Nej +document_properties_close=Stäng + +print_progress_message=Förbereder sidor för utskrift… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Avbryt + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Visa/dölj sidofält +toggle_sidebar_notification2.title=Växla sidofält (dokumentet innehåller dokumentstruktur/bilagor/lager) +toggle_sidebar_label=Visa/dölj sidofält +document_outline.title=Visa dokumentdisposition (dubbelklicka för att expandera/komprimera alla objekt) +document_outline_label=Dokumentöversikt +attachments.title=Visa Bilagor +attachments_label=Bilagor +layers.title=Visa lager (dubbelklicka för att återställa alla lager till standardläge) +layers_label=Lager +thumbs.title=Visa miniatyrer +thumbs_label=Miniatyrer +current_outline_item.title=Hitta aktuellt dispositionsobjekt +current_outline_item_label=Aktuellt dispositionsobjekt +findbar.title=Sök i dokument +findbar_label=Sök + +additional_layers=Ytterligare lager +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Sida {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Sida {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatyr av sida {{page}} + +# Find panel button title and messages +find_input.title=Sök +find_input.placeholder=Sök i dokument… +find_previous.title=Hitta föregående förekomst av frasen +find_previous_label=Föregående +find_next.title=Hitta nästa förekomst av frasen +find_next_label=Nästa +find_highlight=Markera alla +find_match_case_label=Matcha versal/gemen +find_match_diacritics_label=Matcha diakritiska tecken +find_entire_word_label=Hela ord +find_reached_top=Nådde början av dokumentet, började från slutet +find_reached_bottom=Nådde slutet på dokumentet, började från början +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} av {{total}} träff +find_match_count[two]={{current}} av {{total}} träffar +find_match_count[few]={{current}} av {{total}} träffar +find_match_count[many]={{current}} av {{total}} träffar +find_match_count[other]={{current}} av {{total}} träffar +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Mer än {{limit}} träffar +find_match_count_limit[one]=Mer än {{limit}} träff +find_match_count_limit[two]=Mer än {{limit}} träffar +find_match_count_limit[few]=Mer än {{limit}} träffar +find_match_count_limit[many]=Mer än {{limit}} träffar +find_match_count_limit[other]=Mer än {{limit}} träffar +find_not_found=Frasen hittades inte + +# Predefined zoom values +page_scale_width=Sidbredd +page_scale_fit=Anpassa sida +page_scale_auto=Automatisk zoom +page_scale_actual=Verklig storlek +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ett fel uppstod vid laddning av PDF-filen. +invalid_file_error=Ogiltig eller korrupt PDF-fil. +missing_file_error=Saknad PDF-fil. +unexpected_response_error=Oväntat svar från servern. +rendering_error=Ett fel uppstod vid visning av sidan. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}-annotering] +password_label=Skriv in lösenordet för att öppna PDF-filen. +password_invalid=Ogiltigt lösenord. Försök igen. +password_ok=OK +password_cancel=Avbryt + +printing_not_supported=Varning: Utskrifter stöds inte helt av den här webbläsaren. +printing_not_ready=Varning: PDF:en är inte klar för utskrift. +web_fonts_disabled=Webbtypsnitt är inaktiverade: kan inte använda inbäddade PDF-typsnitt. + +# Editor +editor_free_text2.title=Text +editor_free_text2_label=Text +editor_ink2.title=Rita +editor_ink2_label=Rita + +editor_stamp1.title=Lägg till eller redigera bilder +editor_stamp1_label=Lägg till eller redigera bilder + +free_text2_default_content=Börja skriva… + +# Editor Parameters +editor_free_text_color=Färg +editor_free_text_size=Storlek +editor_ink_color=Färg +editor_ink_thickness=Tjocklek +editor_ink_opacity=Opacitet + +editor_stamp_add_image_label=Lägg till bild +editor_stamp_add_image.title=Lägg till bild + +# Editor aria +editor_free_text2_aria_label=Textredigerare +editor_ink2_aria_label=Ritredigerare +editor_ink_canvas_aria_label=Användarskapad bild + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alternativ text +editor_alt_text_edit_button_label=Redigera alternativ text +editor_alt_text_dialog_label=Välj ett alternativ +editor_alt_text_dialog_description=Alt text (alternativ text) hjälper till när människor inte kan se bilden eller när den inte laddas. +editor_alt_text_add_description_label=Lägg till en beskrivning +editor_alt_text_add_description_description=Sikta på 1-2 meningar som beskriver ämnet, miljön eller handlingen. +editor_alt_text_mark_decorative_label=Markera som dekorativ +editor_alt_text_mark_decorative_description=Detta används för dekorativa bilder, som kanter eller vattenstämplar. +editor_alt_text_cancel_button=Avbryt +editor_alt_text_save_button=Spara +editor_alt_text_decorative_tooltip=Märkt som dekorativ +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Till exempel, "En ung man sätter sig vid ett bord för att äta en måltid" diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/szl/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/szl/viewer.properties new file mode 100644 index 00000000..ba0a898b --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/szl/viewer.properties @@ -0,0 +1,224 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Piyrwyjszo strōna +previous_label=Piyrwyjszo +next.title=Nastympno strōna +next_label=Dalij + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Strōna +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=ze {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} ze {{pagesCount}}) + +zoom_out.title=Zmyńsz +zoom_out_label=Zmyńsz +zoom_in.title=Zwiynksz +zoom_in_label=Zwiynksz +zoom.title=Srogość +presentation_mode.title=Przełōncz na tryb prezyntacyje +presentation_mode_label=Tryb prezyntacyje +open_file.title=Ôdewrzij zbiōr +open_file_label=Ôdewrzij +print.title=Durkuj +print_label=Durkuj + +# Secondary toolbar and context menu +tools.title=Noczynia +tools_label=Noczynia +first_page.title=Idź ku piyrszyj strōnie +first_page_label=Idź ku piyrszyj strōnie +last_page.title=Idź ku ôstatnij strōnie +last_page_label=Idź ku ôstatnij strōnie +page_rotate_cw.title=Zwyrtnij w prawo +page_rotate_cw_label=Zwyrtnij w prawo +page_rotate_ccw.title=Zwyrtnij w lewo +page_rotate_ccw_label=Zwyrtnij w lewo + +cursor_text_select_tool.title=Załōncz noczynie ôbiyranio tekstu +cursor_text_select_tool_label=Noczynie ôbiyranio tekstu +cursor_hand_tool.title=Załōncz noczynie rōnczka +cursor_hand_tool_label=Noczynie rōnczka + +scroll_vertical.title=Używej piōnowego przewijanio +scroll_vertical_label=Piōnowe przewijanie +scroll_horizontal.title=Używej poziōmego przewijanio +scroll_horizontal_label=Poziōme przewijanie +scroll_wrapped.title=Używej szichtowego przewijanio +scroll_wrapped_label=Szichtowe przewijanie + +spread_none.title=Niy dowej strōn w widoku po dwie +spread_none_label=Po jednyj strōnie +spread_odd.title=Pokoż strōny po dwie; niyporziste po lewyj +spread_odd_label=Niyporziste po lewyj +spread_even.title=Pokoż strōny po dwie; porziste po lewyj +spread_even_label=Porziste po lewyj + +# Document properties dialog box +document_properties.title=Włosności dokumyntu… +document_properties_label=Włosności dokumyntu… +document_properties_file_name=Miano zbioru: +document_properties_file_size=Srogość zbioru: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} B) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} B) +document_properties_title=Tytuł: +document_properties_author=Autōr: +document_properties_subject=Tymat: +document_properties_keywords=Kluczowe słowa: +document_properties_creation_date=Data zrychtowanio: +document_properties_modification_date=Data zmiany: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Zrychtowane ôd: +document_properties_producer=PDF ôd: +document_properties_version=Wersyjo PDF: +document_properties_page_count=Wielość strōn: +document_properties_page_size=Srogość strōny: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=piōnowo +document_properties_page_size_orientation_landscape=poziōmo +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Gibki necowy podglōnd: +document_properties_linearized_yes=Ja +document_properties_linearized_no=Niy +document_properties_close=Zawrzij + +print_progress_message=Rychtowanie dokumyntu do durku… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Pociep + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Przełōncz posek na rancie +toggle_sidebar_notification2.title=Przełōncz posek na rancie (dokumynt mo struktura/przidowki/warstwy) +toggle_sidebar_label=Przełōncz posek na rancie +document_outline.title=Pokoż struktura dokumyntu (tuplowane klikniyncie rozszyrzo/swijo wszyskie elymynta) +document_outline_label=Struktura dokumyntu +attachments.title=Pokoż przidowki +attachments_label=Przidowki +layers.title=Pokoż warstwy (tuplowane klikniyncie resetuje wszyskie warstwy do bazowego stanu) +layers_label=Warstwy +thumbs.title=Pokoż miniatury +thumbs_label=Miniatury +findbar.title=Znojdź w dokumyncie +findbar_label=Znojdź + +additional_layers=Nadbytnie warstwy +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Strōna {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Miniatura strōny {{page}} + +# Find panel button title and messages +find_input.title=Znojdź +find_input.placeholder=Znojdź w dokumyncie… +find_previous.title=Znojdź piyrwyjsze pokozanie sie tyj frazy +find_previous_label=Piyrwyjszo +find_next.title=Znojdź nastympne pokozanie sie tyj frazy +find_next_label=Dalij +find_highlight=Zaznacz wszysko +find_match_case_label=Poznowej srogość liter +find_entire_word_label=Cołke słowa +find_reached_top=Doszło do samego wiyrchu strōny, dalij ôd spodku +find_reached_bottom=Doszło do samego spodku strōny, dalij ôd wiyrchu +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} ze {{total}}, co pasujōm +find_match_count[two]={{current}} ze {{total}}, co pasujōm +find_match_count[few]={{current}} ze {{total}}, co pasujōm +find_match_count[many]={{current}} ze {{total}}, co pasujōm +find_match_count[other]={{current}} ze {{total}}, co pasujōm +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(total) ]} +find_match_count_limit[zero]=Wiyncyj jak {{limit}}, co pasujōm +find_match_count_limit[one]=Wiyncyj jak {{limit}}, co pasuje +find_match_count_limit[two]=Wiyncyj jak {{limit}}, co pasujōm +find_match_count_limit[few]=Wiyncyj jak {{limit}}, co pasujōm +find_match_count_limit[many]=Wiyncyj jak {{limit}}, co pasujōm +find_match_count_limit[other]=Wiyncyj jak {{limit}}, co pasujōm +find_not_found=Fraza niy znaleziōno + +# Predefined zoom values +page_scale_width=Szyrzka strōny +page_scale_fit=Napasowanie strōny +page_scale_auto=Autōmatyczno srogość +page_scale_actual=Aktualno srogość +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Przi ladowaniu PDFa pokozoł sie feler. +invalid_file_error=Zły abo felerny zbiōr PDF. +missing_file_error=Chybio zbioru PDF. +unexpected_response_error=Niyôczekowano ôdpowiydź serwera. + +rendering_error=Przi renderowaniu strōny pokozoł sie feler. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Anotacyjo typu {{type}}] +password_label=Wkludź hasło, coby ôdewrzić tyn zbiōr PDF. +password_invalid=Hasło je złe. Sprōbuj jeszcze roz. +password_ok=OK +password_cancel=Pociep + +printing_not_supported=Pozōr: Ta przeglōndarka niy cołkiym ôbsuguje durk. +printing_not_ready=Pozōr: Tyn PDF niy ma za tela zaladowany do durku. +web_fonts_disabled=Necowe fōnty sōm zastawiōne: niy idzie użyć wkludzōnych fōntōw PDF. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ta/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ta/viewer.properties new file mode 100644 index 00000000..ef30ea54 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ta/viewer.properties @@ -0,0 +1,173 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=முந்தைய பக்கம் +previous_label=முந்தையது +next.title=அடுத்த பக்கம் +next_label=அடுத்து + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=பக்கம் +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} இல் +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages={{pagesCount}}) இல் ({{pageNumber}} + +zoom_out.title=சிறிதாக்கு +zoom_out_label=சிறிதாக்கு +zoom_in.title=பெரிதாக்கு +zoom_in_label=பெரிதாக்கு +zoom.title=பெரிதாக்கு +presentation_mode.title=விளக்ககாட்சி பயன்முறைக்கு மாறு +presentation_mode_label=விளக்ககாட்சி பயன்முறை +open_file.title=கோப்பினை திற +open_file_label=திற +print.title=அச்சிடு +print_label=அச்சிடு + +# Secondary toolbar and context menu +tools.title=கருவிகள் +tools_label=கருவிகள் +first_page.title=முதல் பக்கத்திற்கு செல்லவும் +first_page_label=முதல் பக்கத்திற்கு செல்லவும் +last_page.title=கடைசி பக்கத்திற்கு செல்லவும் +last_page_label=கடைசி பக்கத்திற்கு செல்லவும் +page_rotate_cw.title=வலஞ்சுழியாக சுழற்று +page_rotate_cw_label=வலஞ்சுழியாக சுழற்று +page_rotate_ccw.title=இடஞ்சுழியாக சுழற்று +page_rotate_ccw_label=இடஞ்சுழியாக சுழற்று + +cursor_text_select_tool.title=உரைத் தெரிவு கருவியைச் செயல்படுத்து +cursor_text_select_tool_label=உரைத் தெரிவு கருவி +cursor_hand_tool.title=கைக் கருவிக்ச் செயற்படுத்து +cursor_hand_tool_label=கைக்குருவி + +# Document properties dialog box +document_properties.title=ஆவண பண்புகள்... +document_properties_label=ஆவண பண்புகள்... +document_properties_file_name=கோப்பு பெயர்: +document_properties_file_size=கோப்பின் அளவு: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} கிபை ({{size_b}} பைட்டுகள்) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} மெபை ({{size_b}} பைட்டுகள்) +document_properties_title=தலைப்பு: +document_properties_author=எழுதியவர் +document_properties_subject=பொருள்: +document_properties_keywords=முக்கிய வார்த்தைகள்: +document_properties_creation_date=படைத்த தேதி : +document_properties_modification_date=திருத்திய தேதி: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=உருவாக்குபவர்: +document_properties_producer=பிடிஎஃப் தயாரிப்பாளர்: +document_properties_version=PDF பதிப்பு: +document_properties_page_count=பக்க எண்ணிக்கை: +document_properties_page_size=பக்க அளவு: +document_properties_page_size_unit_inches=இதில் +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=நிலைபதிப்பு +document_properties_page_size_orientation_landscape=நிலைபரப்பு +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=கடிதம் +document_properties_page_size_name_legal=சட்டபூர்வ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +document_properties_close=மூடுக + +print_progress_message=அச்சிடுவதற்கான ஆவணம் தயாராகிறது... +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ரத்து + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=பக்கப் பட்டியை நிலைமாற்று +toggle_sidebar_label=பக்கப் பட்டியை நிலைமாற்று +document_outline.title=ஆவண அடக்கத்தைக் காட்டு (இருமுறைச் சொடுக்கி அனைத்து உறுப்பிடிகளையும் விரி/சேர்) +document_outline_label=ஆவண வெளிவரை +attachments.title=இணைப்புகளை காண்பி +attachments_label=இணைப்புகள் +thumbs.title=சிறுபடங்களைக் காண்பி +thumbs_label=சிறுபடங்கள் +findbar.title=ஆவணத்தில் கண்டறி +findbar_label=தேடு + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=பக்கம் {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=பக்கத்தின் சிறுபடம் {{page}} + +# Find panel button title and messages +find_input.title=கண்டுபிடி +find_input.placeholder=ஆவணத்தில் கண்டறி… +find_previous.title=இந்த சொற்றொடரின் முந்தைய நிகழ்வை தேடு +find_previous_label=முந்தையது +find_next.title=இந்த சொற்றொடரின் அடுத்த நிகழ்வை தேடு +find_next_label=அடுத்து +find_highlight=அனைத்தையும் தனிப்படுத்து +find_match_case_label=பேரெழுத்தாக்கத்தை உணர் +find_reached_top=ஆவணத்தின் மேல் பகுதியை அடைந்தது, அடிப்பக்கத்திலிருந்து தொடர்ந்தது +find_reached_bottom=ஆவணத்தின் முடிவை அடைந்தது, மேலிருந்து தொடர்ந்தது +find_not_found=சொற்றொடர் காணவில்லை + +# Predefined zoom values +page_scale_width=பக்க அகலம் +page_scale_fit=பக்கப் பொருத்தம் +page_scale_auto=தானியக்க பெரிதாக்கல் +page_scale_actual=உண்மையான அளவு +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF ஐ ஏற்றும் போது ஒரு பிழை ஏற்பட்டது. +invalid_file_error=செல்லுபடியாகாத அல்லது சிதைந்த PDF கோப்பு. +missing_file_error=PDF கோப்பு காணவில்லை. +unexpected_response_error=சேவகன் பதில் எதிர்பாரதது. + +rendering_error=இந்தப் பக்கத்தை காட்சிப்படுத்தும் போது ஒரு பிழை ஏற்பட்டது. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} விளக்கம்] +password_label=இந்த PDF கோப்பை திறக்க கடவுச்சொல்லை உள்ளிடவும். +password_invalid=செல்லுபடியாகாத கடவுச்சொல், தயை செய்து மீண்டும் முயற்சி செய்க. +password_ok=சரி +password_cancel=ரத்து + +printing_not_supported=எச்சரிக்கை: இந்த உலாவி அச்சிடுதலை முழுமையாக ஆதரிக்கவில்லை. +printing_not_ready=எச்சரிக்கை: PDF அச்சிட முழுவதுமாக ஏற்றப்படவில்லை. +web_fonts_disabled=வலை எழுத்துருக்கள் முடக்கப்பட்டுள்ளன: உட்பொதிக்கப்பட்ட PDF எழுத்துருக்களைப் பயன்படுத்த முடியவில்லை. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/te/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/te/viewer.properties new file mode 100644 index 00000000..0e37eab8 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/te/viewer.properties @@ -0,0 +1,216 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=మునుపటి పేజీ +previous_label=క్రితం +next.title=తరువాత పేజీ +next_label=తరువాత + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=పేజీ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=మొత్తం {{pagesCount}} లో +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=(మొత్తం {{pagesCount}} లో {{pageNumber}}వది) + +zoom_out.title=జూమ్ తగ్గించు +zoom_out_label=జూమ్ తగ్గించు +zoom_in.title=జూమ్ చేయి +zoom_in_label=జూమ్ చేయి +zoom.title=జూమ్ +presentation_mode.title=ప్రదర్శనా రీతికి మారు +presentation_mode_label=ప్రదర్శనా రీతి +open_file.title=ఫైల్ తెరువు +open_file_label=తెరువు +print.title=ముద్రించు +print_label=ముద్రించు + +# Secondary toolbar and context menu +tools.title=పనిముట్లు +tools_label=పనిముట్లు +first_page.title=మొదటి పేజీకి వెళ్ళు +first_page_label=మొదటి పేజీకి వెళ్ళు +last_page.title=చివరి పేజీకి వెళ్ళు +last_page_label=చివరి పేజీకి వెళ్ళు +page_rotate_cw.title=సవ్యదిశలో తిప్పు +page_rotate_cw_label=సవ్యదిశలో తిప్పు +page_rotate_ccw.title=అపసవ్యదిశలో తిప్పు +page_rotate_ccw_label=అపసవ్యదిశలో తిప్పు + +cursor_text_select_tool.title=టెక్స్ట్ ఎంపిక సాధనాన్ని ప్రారంభించండి +cursor_text_select_tool_label=టెక్స్ట్ ఎంపిక సాధనం +cursor_hand_tool.title=చేతి సాధనం చేతనించు +cursor_hand_tool_label=చేతి సాధనం + +scroll_vertical_label=నిలువు స్క్రోలింగు + + +# Document properties dialog box +document_properties.title=పత్రము లక్షణాలు... +document_properties_label=పత్రము లక్షణాలు... +document_properties_file_name=దస్త్రం పేరు: +document_properties_file_size=దస్త్రం పరిమాణం: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=శీర్షిక: +document_properties_author=మూలకర్త: +document_properties_subject=విషయం: +document_properties_keywords=కీ పదాలు: +document_properties_creation_date=సృష్టించిన తేదీ: +document_properties_modification_date=సవరించిన తేదీ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=సృష్టికర్త: +document_properties_producer=PDF ఉత్పాదకి: +document_properties_version=PDF వర్షన్: +document_properties_page_count=పేజీల సంఖ్య: +document_properties_page_size=కాగితం పరిమాణం: +document_properties_page_size_unit_inches=లో +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=నిలువుచిత్రం +document_properties_page_size_orientation_landscape=అడ్డచిత్రం +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=లేఖ +document_properties_page_size_name_legal=చట్టపరమైన +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized_yes=అవును +document_properties_linearized_no=కాదు +document_properties_close=మూసివేయి + +print_progress_message=ముద్రించడానికి పత్రము సిద్ధమవుతున్నది… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=రద్దుచేయి + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=పక్కపట్టీ మార్చు +toggle_sidebar_label=పక్కపట్టీ మార్చు +document_outline.title=పత్రము రూపము చూపించు (డబుల్ క్లిక్ చేసి అన్ని అంశాలను విస్తరించు/కూల్చు) +document_outline_label=పత్రము అవుట్‌లైన్ +attachments.title=అనుబంధాలు చూపు +attachments_label=అనుబంధాలు +layers_label=పొరలు +thumbs.title=థంబ్‌నైల్స్ చూపు +thumbs_label=థంబ్‌నైల్స్ +findbar.title=పత్రములో కనుగొనుము +findbar_label=కనుగొను + +additional_layers=అదనపు పొరలు +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=పేజీ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} పేజీ నఖచిత్రం + +# Find panel button title and messages +find_input.title=కనుగొను +find_input.placeholder=పత్రములో కనుగొను… +find_previous.title=పదం యొక్క ముందు సంభవాన్ని కనుగొను +find_previous_label=మునుపటి +find_next.title=పదం యొక్క తర్వాతి సంభవాన్ని కనుగొను +find_next_label=తరువాత +find_highlight=అన్నిటిని ఉద్దీపనం చేయుము +find_match_case_label=అక్షరముల తేడాతో పోల్చు +find_entire_word_label=పూర్తి పదాలు +find_reached_top=పేజీ పైకి చేరుకున్నది, క్రింది నుండి కొనసాగించండి +find_reached_bottom=పేజీ చివరకు చేరుకున్నది, పైనుండి కొనసాగించండి +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_not_found=పదబంధం కనబడలేదు + +# Predefined zoom values +page_scale_width=పేజీ వెడల్పు +page_scale_fit=పేజీ అమర్పు +page_scale_auto=స్వయంచాలక జూమ్ +page_scale_actual=యథార్ధ పరిమాణం +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF లోడవుచున్నప్పుడు ఒక దోషం ఎదురైంది. +invalid_file_error=చెల్లని లేదా పాడైన PDF ఫైలు. +missing_file_error=దొరకని PDF ఫైలు. +unexpected_response_error=అనుకోని సర్వర్ స్పందన. + +rendering_error=పేజీను రెండర్ చేయుటలో ఒక దోషం ఎదురైంది. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} టీకా] +password_label=ఈ PDF ఫైల్ తెరుచుటకు సంకేతపదం ప్రవేశపెట్టుము. +password_invalid=సంకేతపదం చెల్లదు. దయచేసి మళ్ళీ ప్రయత్నించండి. +password_ok=సరే +password_cancel=రద్దుచేయి + +printing_not_supported=హెచ్చరిక: ఈ విహారిణి చేత ముద్రణ పూర్తిగా తోడ్పాటు లేదు. +printing_not_ready=హెచ్చరిక: ముద్రణ కొరకు ఈ PDF పూర్తిగా లోడవలేదు. +web_fonts_disabled=వెబ్ ఫాంట్లు అచేతనించబడెను: ఎంబెడెడ్ PDF ఫాంట్లు ఉపయోగించలేక పోయింది. + +# Editor + + +# Editor + + +# Editor Parameters +editor_free_text_color=రంగు +editor_free_text_size=పరిమాణం +editor_ink_color=రంగు +editor_ink_thickness=మందం +editor_ink_opacity=అకిరణ్యత + +# Editor aria + +# Editor aria + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/tg/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/tg/viewer.properties new file mode 100644 index 00000000..b00f700e --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/tg/viewer.properties @@ -0,0 +1,281 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Саҳифаи қаблӣ +previous_label=Қаблӣ +next.title=Саҳифаи навбатӣ +next_label=Навбатӣ + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Саҳифа +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=аз {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} аз {{pagesCount}}) + +zoom_out.title=Хурд кардан +zoom_out_label=Хурд кардан +zoom_in.title=Калон кардан +zoom_in_label=Калон кардан +zoom.title=Танзими андоза +presentation_mode.title=Гузариш ба реҷаи тақдим +presentation_mode_label=Реҷаи тақдим +open_file.title=Кушодани файл +open_file_label=Кушодан +print.title=Чоп кардан +print_label=Чоп кардан +save.title=Нигоҳ доштан +save_label=Нигоҳ доштан +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Боргирӣ кардан +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Боргирӣ кардан +bookmark1.title=Саҳифаи ҷорӣ (Дидани нишонии URL аз саҳифаи ҷорӣ) +bookmark1_label=Саҳифаи ҷорӣ +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Кушодан дар барнома +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Кушодан дар барнома + +# Secondary toolbar and context menu +tools.title=Абзорҳо +tools_label=Абзорҳо +first_page.title=Ба саҳифаи аввал гузаред +first_page_label=Ба саҳифаи аввал гузаред +last_page.title=Ба саҳифаи охирин гузаред +last_page_label=Ба саҳифаи охирин гузаред +page_rotate_cw.title=Ба самти ҳаракати ақрабаки соат давр задан +page_rotate_cw_label=Ба самти ҳаракати ақрабаки соат давр задан +page_rotate_ccw.title=Ба муқобили самти ҳаракати ақрабаки соат давр задан +page_rotate_ccw_label=Ба муқобили самти ҳаракати ақрабаки соат давр задан + +cursor_text_select_tool.title=Фаъол кардани «Абзори интихоби матн» +cursor_text_select_tool_label=Абзори интихоби матн +cursor_hand_tool.title=Фаъол кардани «Абзори даст» +cursor_hand_tool_label=Абзори даст + +scroll_page.title=Истифодаи варақзанӣ +scroll_page_label=Варақзанӣ +scroll_vertical.title=Истифодаи варақзании амудӣ +scroll_vertical_label=Варақзании амудӣ +scroll_horizontal.title=Истифодаи варақзании уфуқӣ +scroll_horizontal_label=Варақзании уфуқӣ +scroll_wrapped.title=Истифодаи варақзании миқёсбандӣ +scroll_wrapped_label=Варақзании миқёсбандӣ + +spread_none.title=Густариши саҳифаҳо истифода бурда нашавад +spread_none_label=Бе густурдани саҳифаҳо +spread_odd.title=Густариши саҳифаҳо аз саҳифаҳо бо рақамҳои тоқ оғоз карда мешавад +spread_odd_label=Саҳифаҳои тоқ аз тарафи чап +spread_even.title=Густариши саҳифаҳо аз саҳифаҳо бо рақамҳои ҷуфт оғоз карда мешавад +spread_even_label=Саҳифаҳои ҷуфт аз тарафи чап + +# Document properties dialog box +document_properties.title=Хусусиятҳои ҳуҷҷат… +document_properties_label=Хусусиятҳои ҳуҷҷат… +document_properties_file_name=Номи файл: +document_properties_file_size=Андозаи файл: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} байт) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} байт) +document_properties_title=Сарлавҳа: +document_properties_author=Муаллиф: +document_properties_subject=Мавзуъ: +document_properties_keywords=Калимаҳои калидӣ: +document_properties_creation_date=Санаи эҷод: +document_properties_modification_date=Санаи тағйирот: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Эҷодкунанда: +document_properties_producer=Таҳиякунандаи «PDF»: +document_properties_version=Версияи «PDF»: +document_properties_page_count=Шумораи саҳифаҳо: +document_properties_page_size=Андозаи саҳифа: +document_properties_page_size_unit_inches=дюйм +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=амудӣ +document_properties_page_size_orientation_landscape=уфуқӣ +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Мактуб +document_properties_page_size_name_legal=Ҳуқуқӣ +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Намоиши тез дар Интернет: +document_properties_linearized_yes=Ҳа +document_properties_linearized_no=Не +document_properties_close=Пӯшидан + +print_progress_message=Омодасозии ҳуҷҷат барои чоп… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Бекор кардан + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Фаъол кардани навори ҷонибӣ +toggle_sidebar_notification2.title=Фаъол кардани навори ҷонибӣ (ҳуҷҷат дорои сохтор/замимаҳо/қабатҳо мебошад) +toggle_sidebar_label=Фаъол кардани навори ҷонибӣ +document_outline.title=Намоиш додани сохтори ҳуҷҷат (барои баркушодан/пеҷондани ҳамаи унсурҳо дубора зер кунед) +document_outline_label=Сохтори ҳуҷҷат +attachments.title=Намоиш додани замимаҳо +attachments_label=Замимаҳо +layers.title=Намоиш додани қабатҳо (барои барқарор кардани ҳамаи қабатҳо ба вазъияти пешфарз дубора зер кунед) +layers_label=Қабатҳо +thumbs.title=Намоиш додани тасвирчаҳо +thumbs_label=Тасвирчаҳо +current_outline_item.title=Ёфтани унсури сохтори ҷорӣ +current_outline_item_label=Унсури сохтори ҷорӣ +findbar.title=Ёфтан дар ҳуҷҷат +findbar_label=Ёфтан + +additional_layers=Қабатҳои иловагӣ +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Саҳифаи {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Саҳифаи {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Тасвирчаи саҳифаи {{page}} + +# Find panel button title and messages +find_input.title=Ёфтан +find_input.placeholder=Ёфтан дар ҳуҷҷат… +find_previous.title=Ҷустуҷӯи мавриди қаблии ибораи пешниҳодшуда +find_previous_label=Қаблӣ +find_next.title=Ҷустуҷӯи мавриди навбатии ибораи пешниҳодшуда +find_next_label=Навбатӣ +find_highlight=Ҳамаашро бо ранг ҷудо кардан +find_match_case_label=Бо дарназардошти ҳарфҳои хурду калон +find_match_diacritics_label=Бо дарназардошти аломатҳои диакритикӣ +find_entire_word_label=Калимаҳои пурра +find_reached_top=Ба болои ҳуҷҷат расид, аз поён идома ёфт +find_reached_bottom=Ба поёни ҳуҷҷат расид, аз боло идома ёфт +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} аз {{total}} мувофиқат +find_match_count[two]={{current}} аз {{total}} мувофиқат +find_match_count[few]={{current}} аз {{total}} мувофиқат +find_match_count[many]={{current}} аз {{total}} мувофиқат +find_match_count[other]={{current}} аз {{total}} мувофиқат +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Зиёда аз {{limit}} мувофиқат +find_match_count_limit[one]=Зиёда аз {{limit}} мувофиқат +find_match_count_limit[two]=Зиёда аз {{limit}} мувофиқат +find_match_count_limit[few]=Зиёда аз {{limit}} мувофиқат +find_match_count_limit[many]=Зиёда аз {{limit}} мувофиқат +find_match_count_limit[other]=Зиёда аз {{limit}} мувофиқат +find_not_found=Ибора ёфт нашуд + +# Predefined zoom values +page_scale_width=Аз рӯи паҳнои саҳифа +page_scale_fit=Аз рӯи андозаи саҳифа +page_scale_auto=Андозаи худкор +page_scale_actual=Андозаи воқеӣ +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Ҳангоми боркунии «PDF» хато ба миён омад. +invalid_file_error=Файли «PDF» нодуруст ё вайроншуда мебошад. +missing_file_error=Файли «PDF» ғоиб аст. +unexpected_response_error=Ҷавоби ногаҳон аз сервер. +rendering_error=Ҳангоми шаклсозии саҳифа хато ба миён омад. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Ҳошиянависӣ - {{type}}] +password_label=Барои кушодани ин файли «PDF» ниҳонвожаро ворид кунед. +password_invalid=Ниҳонвожаи нодуруст. Лутфан, аз нав кӯшиш кунед. +password_ok=ХУБ +password_cancel=Бекор кардан + +printing_not_supported=Диққат: Чопкунӣ аз тарафи ин браузер ба таври пурра дастгирӣ намешавад. +printing_not_ready=Диққат: Файли «PDF» барои чопкунӣ пурра бор карда нашуд. +web_fonts_disabled=Шрифтҳои интернетӣ ғайрифаъоланд: истифодаи шрифтҳои дарунсохти «PDF» ғайриимкон аст. + +# Editor +editor_free_text2.title=Матн +editor_free_text2_label=Матн +editor_ink2.title=Расмкашӣ +editor_ink2_label=Расмкашӣ + +editor_stamp1.title=Илова ё таҳрир кардани тасвирҳо +editor_stamp1_label=Илова ё таҳрир кардани тасвирҳо + +free_text2_default_content=Нависед… + +# Editor Parameters +editor_free_text_color=Ранг +editor_free_text_size=Андоза +editor_ink_color=Ранг +editor_ink_thickness=Ғафсӣ +editor_ink_opacity=Шаффофӣ + +editor_stamp_add_image_label=Илова кардани тасвир +editor_stamp_add_image.title=Илова кардани тасвир + +# Editor aria +editor_free_text2_aria_label=Муҳаррири матн +editor_ink2_aria_label=Муҳаррири расмкашӣ +editor_ink_canvas_aria_label=Тасвири эҷодкардаи корбар + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Матни ивазкунанда +editor_alt_text_edit_button_label=Таҳрир кардани матни ивазкунанда +editor_alt_text_dialog_label=Имконеро интихоб намоед +editor_alt_text_add_description_label=Илова кардани тавсиф +editor_alt_text_mark_decorative_label=Гузоштан ҳамчун матни ороишӣ +editor_alt_text_cancel_button=Бекор кардан +editor_alt_text_save_button=Нигоҳ доштан +editor_alt_text_decorative_tooltip=Ҳамчун матни ороишӣ гузошта шуд +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Барои мисол, «Ман забони тоҷикиро дӯст медорам» diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/th/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/th/viewer.properties new file mode 100644 index 00000000..f194072d --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/th/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=หน้าก่อนหน้า +previous_label=ก่อนหน้า +next.title=หน้าถัดไป +next_label=ถัดไป + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=หน้า +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=จาก {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} จาก {{pagesCount}}) + +zoom_out.title=ซูมออก +zoom_out_label=ซูมออก +zoom_in.title=ซูมเข้า +zoom_in_label=ซูมเข้า +zoom.title=ซูม +presentation_mode.title=สลับเป็นโหมดการนำเสนอ +presentation_mode_label=โหมดการนำเสนอ +open_file.title=เปิดไฟล์ +open_file_label=เปิด +print.title=พิมพ์ +print_label=พิมพ์ +save.title=บันทึก +save_label=บันทึก +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=ดาวน์โหลด +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=ดาวน์โหลด +bookmark1.title=หน้าปัจจุบัน (ดู URL จากหน้าปัจจุบัน) +bookmark1_label=หน้าปัจจุบัน +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=เปิดในแอป +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=เปิดในแอป + +# Secondary toolbar and context menu +tools.title=เครื่องมือ +tools_label=เครื่องมือ +first_page.title=ไปยังหน้าแรก +first_page_label=ไปยังหน้าแรก +last_page.title=ไปยังหน้าสุดท้าย +last_page_label=ไปยังหน้าสุดท้าย +page_rotate_cw.title=หมุนตามเข็มนาฬิกา +page_rotate_cw_label=หมุนตามเข็มนาฬิกา +page_rotate_ccw.title=หมุนทวนเข็มนาฬิกา +page_rotate_ccw_label=หมุนทวนเข็มนาฬิกา + +cursor_text_select_tool.title=เปิดใช้งานเครื่องมือการเลือกข้อความ +cursor_text_select_tool_label=เครื่องมือการเลือกข้อความ +cursor_hand_tool.title=เปิดใช้งานเครื่องมือมือ +cursor_hand_tool_label=เครื่องมือมือ + +scroll_page.title=ใช้การเลื่อนหน้า +scroll_page_label=การเลื่อนหน้า +scroll_vertical.title=ใช้การเลื่อนแนวตั้ง +scroll_vertical_label=การเลื่อนแนวตั้ง +scroll_horizontal.title=ใช้การเลื่อนแนวนอน +scroll_horizontal_label=การเลื่อนแนวนอน +scroll_wrapped.title=ใช้การเลื่อนแบบคลุม +scroll_wrapped_label=เลื่อนแบบคลุม + +spread_none.title=ไม่ต้องรวมการกระจายหน้า +spread_none_label=ไม่กระจาย +spread_odd.title=รวมการกระจายหน้าเริ่มจากหน้าคี่ +spread_odd_label=กระจายอย่างเหลือเศษ +spread_even.title=รวมการกระจายหน้าเริ่มจากหน้าคู่ +spread_even_label=กระจายอย่างเท่าเทียม + +# Document properties dialog box +document_properties.title=คุณสมบัติเอกสาร… +document_properties_label=คุณสมบัติเอกสาร… +document_properties_file_name=ชื่อไฟล์: +document_properties_file_size=ขนาดไฟล์: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} ไบต์) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} ไบต์) +document_properties_title=ชื่อเรื่อง: +document_properties_author=ผู้สร้าง: +document_properties_subject=ชื่อเรื่อง: +document_properties_keywords=คำสำคัญ: +document_properties_creation_date=วันที่สร้าง: +document_properties_modification_date=วันที่แก้ไข: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=ผู้สร้าง: +document_properties_producer=ผู้ผลิต PDF: +document_properties_version=รุ่น PDF: +document_properties_page_count=จำนวนหน้า: +document_properties_page_size=ขนาดหน้า: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=แนวตั้ง +document_properties_page_size_orientation_landscape=แนวนอน +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=จดหมาย +document_properties_page_size_name_legal=ข้อกฎหมาย +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=มุมมองเว็บแบบรวดเร็ว: +document_properties_linearized_yes=ใช่ +document_properties_linearized_no=ไม่ +document_properties_close=ปิด + +print_progress_message=กำลังเตรียมเอกสารสำหรับการพิมพ์… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=ยกเลิก + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=เปิด/ปิดแถบข้าง +toggle_sidebar_notification2.title=เปิด/ปิดแถบข้าง (เอกสารมีเค้าร่าง/ไฟล์แนบ/เลเยอร์) +toggle_sidebar_label=เปิด/ปิดแถบข้าง +document_outline.title=แสดงเค้าร่างเอกสาร (คลิกสองครั้งเพื่อขยาย/ยุบรายการทั้งหมด) +document_outline_label=เค้าร่างเอกสาร +attachments.title=แสดงไฟล์แนบ +attachments_label=ไฟล์แนบ +layers.title=แสดงเลเยอร์ (คลิกสองครั้งเพื่อรีเซ็ตเลเยอร์ทั้งหมดเป็นสถานะเริ่มต้น) +layers_label=เลเยอร์ +thumbs.title=แสดงภาพขนาดย่อ +thumbs_label=ภาพขนาดย่อ +current_outline_item.title=ค้นหารายการเค้าร่างปัจจุบัน +current_outline_item_label=รายการเค้าร่างปัจจุบัน +findbar.title=ค้นหาในเอกสาร +findbar_label=ค้นหา + +additional_layers=เลเยอร์เพิ่มเติม +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=หน้า {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=หน้า {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=ภาพขนาดย่อของหน้า {{page}} + +# Find panel button title and messages +find_input.title=ค้นหา +find_input.placeholder=ค้นหาในเอกสาร… +find_previous.title=หาตำแหน่งก่อนหน้าของวลี +find_previous_label=ก่อนหน้า +find_next.title=หาตำแหน่งถัดไปของวลี +find_next_label=ถัดไป +find_highlight=เน้นสีทั้งหมด +find_match_case_label=ตัวพิมพ์ใหญ่เล็กตรงกัน +find_match_diacritics_label=เครื่องหมายกำกับการออกเสียงตรงกัน +find_entire_word_label=ทั้งคำ +find_reached_top=ค้นหาถึงจุดเริ่มต้นของหน้า เริ่มค้นต่อจากด้านล่าง +find_reached_bottom=ค้นหาถึงจุดสิ้นสุดหน้า เริ่มค้นต่อจากด้านบน +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} จาก {{total}} ที่ตรงกัน +find_match_count[two]={{current}} จาก {{total}} ที่ตรงกัน +find_match_count[few]={{current}} จาก {{total}} ที่ตรงกัน +find_match_count[many]={{current}} จาก {{total}} ที่ตรงกัน +find_match_count[other]={{current}} จาก {{total}} ที่ตรงกัน +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=มากกว่า {{limit}} ที่ตรงกัน +find_match_count_limit[one]=มากกว่า {{limit}} ที่ตรงกัน +find_match_count_limit[two]=มากกว่า {{limit}} ที่ตรงกัน +find_match_count_limit[few]=มากกว่า {{limit}} ที่ตรงกัน +find_match_count_limit[many]=มากกว่า {{limit}} ที่ตรงกัน +find_match_count_limit[other]=มากกว่า {{limit}} ที่ตรงกัน +find_not_found=ไม่พบวลี + +# Predefined zoom values +page_scale_width=ความกว้างหน้า +page_scale_fit=พอดีหน้า +page_scale_auto=ซูมอัตโนมัติ +page_scale_actual=ขนาดจริง +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=เกิดข้อผิดพลาดขณะโหลด PDF +invalid_file_error=ไฟล์ PDF ไม่ถูกต้องหรือเสียหาย +missing_file_error=ไฟล์ PDF หายไป +unexpected_response_error=การตอบสนองของเซิร์ฟเวอร์ที่ไม่คาดคิด +rendering_error=เกิดข้อผิดพลาดขณะเรนเดอร์หน้า + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[คำอธิบายประกอบ {{type}}] +password_label=ป้อนรหัสผ่านเพื่อเปิดไฟล์ PDF นี้ +password_invalid=รหัสผ่านไม่ถูกต้อง โปรดลองอีกครั้ง +password_ok=ตกลง +password_cancel=ยกเลิก + +printing_not_supported=คำเตือน: เบราว์เซอร์นี้ไม่ได้สนับสนุนการพิมพ์อย่างเต็มที่ +printing_not_ready=คำเตือน: PDF ไม่ได้รับการโหลดอย่างเต็มที่สำหรับการพิมพ์ +web_fonts_disabled=แบบอักษรเว็บถูกปิดใช้งาน: ไม่สามารถใช้แบบอักษร PDF ฝังตัว + +# Editor +editor_free_text2.title=ข้อความ +editor_free_text2_label=ข้อความ +editor_ink2.title=รูปวาด +editor_ink2_label=รูปวาด + +editor_stamp.title=เพิ่มรูปภาพ +editor_stamp_label=เพิ่มรูปภาพ + +editor_stamp1.title=เพิ่มหรือแก้ไขภาพ +editor_stamp1_label=เพิ่มหรือแก้ไขภาพ + +free_text2_default_content=เริ่มพิมพ์… + +# Editor Parameters +editor_free_text_color=สี +editor_free_text_size=ขนาด +editor_ink_color=สี +editor_ink_thickness=ความหนา +editor_ink_opacity=ความทึบ + +editor_stamp_add_image_label=เพิ่มภาพ +editor_stamp_add_image.title=เพิ่มภาพ + +# Editor aria +editor_free_text2_aria_label=ตัวแก้ไขข้อความ +editor_ink2_aria_label=ตัวแก้ไขรูปวาด +editor_ink_canvas_aria_label=ภาพที่ผู้ใช้สร้างขึ้น diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/tl/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/tl/viewer.properties new file mode 100644 index 00000000..13b7ba88 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/tl/viewer.properties @@ -0,0 +1,222 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Naunang Pahina +previous_label=Nakaraan +next.title=Sunod na Pahina +next_label=Sunod + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Pahina +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=ng {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} ng {{pagesCount}}) + +zoom_out.title=Paliitin +zoom_out_label=Paliitin +zoom_in.title=Palakihin +zoom_in_label=Palakihin +zoom.title=Mag-zoom +presentation_mode.title=Lumipat sa Presentation Mode +presentation_mode_label=Presentation Mode +open_file.title=Magbukas ng file +open_file_label=Buksan +print.title=i-Print +print_label=i-Print + +# Secondary toolbar and context menu +tools.title=Mga Kagamitan +tools_label=Mga Kagamitan +first_page.title=Pumunta sa Unang Pahina +first_page_label=Pumunta sa Unang Pahina +last_page.title=Pumunta sa Huling Pahina +last_page_label=Pumunta sa Huling Pahina +page_rotate_cw.title=Paikutin Pakanan +page_rotate_cw_label=Paikutin Pakanan +page_rotate_ccw.title=Paikutin Pakaliwa +page_rotate_ccw_label=Paikutin Pakaliwa + +cursor_text_select_tool.title=I-enable ang Text Selection Tool +cursor_text_select_tool_label=Text Selection Tool +cursor_hand_tool.title=I-enable ang Hand Tool +cursor_hand_tool_label=Hand Tool + +scroll_vertical.title=Gumamit ng Vertical Scrolling +scroll_vertical_label=Vertical Scrolling +scroll_horizontal.title=Gumamit ng Horizontal Scrolling +scroll_horizontal_label=Horizontal Scrolling +scroll_wrapped.title=Gumamit ng Wrapped Scrolling +scroll_wrapped_label=Wrapped Scrolling + +spread_none.title=Huwag pagsamahin ang mga page spread +spread_none_label=No Spreads +spread_odd.title=Join page spreads starting with odd-numbered pages +spread_odd_label=Mga Odd Spread +spread_even.title=Pagsamahin ang mga page spread na nagsisimula sa mga even-numbered na pahina +spread_even_label=Mga Even Spread + +# Document properties dialog box +document_properties.title=Mga Katangian ng Dokumento… +document_properties_label=Mga Katangian ng Dokumento… +document_properties_file_name=File name: +document_properties_file_size=File size: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Pamagat: +document_properties_author=May-akda: +document_properties_subject=Paksa: +document_properties_keywords=Mga keyword: +document_properties_creation_date=Petsa ng Pagkakagawa: +document_properties_modification_date=Petsa ng Pagkakabago: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Tagalikha: +document_properties_producer=PDF Producer: +document_properties_version=PDF Version: +document_properties_page_count=Bilang ng Pahina: +document_properties_page_size=Laki ng Pahina: +document_properties_page_size_unit_inches=pulgada +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=patayo +document_properties_page_size_orientation_landscape=pahiga +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Fast Web View: +document_properties_linearized_yes=Oo +document_properties_linearized_no=Hindi +document_properties_close=Isara + +print_progress_message=Inihahanda ang dokumento para sa pag-print… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Kanselahin + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Ipakita/Itago ang Sidebar +toggle_sidebar_notification2.title=Ipakita/Itago ang Sidebar (nagtataglay ang dokumento ng balangkas/mga attachment/mga layer) +toggle_sidebar_label=Ipakita/Itago ang Sidebar +document_outline.title=Ipakita ang Document Outline (mag-double-click para i-expand/collapse ang laman) +document_outline_label=Balangkas ng Dokumento +attachments.title=Ipakita ang mga Attachment +attachments_label=Mga attachment +layers.title=Ipakita ang mga Layer (mag-double click para mareset ang lahat ng layer sa orihinal na estado) +layers_label=Mga layer +thumbs.title=Ipakita ang mga Thumbnail +thumbs_label=Mga thumbnail +findbar.title=Hanapin sa Dokumento +findbar_label=Hanapin + +additional_layers=Mga Karagdagang Layer +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Pahina {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Thumbnail ng Pahina {{page}} + +# Find panel button title and messages +find_input.title=Hanapin +find_input.placeholder=Hanapin sa dokumento… +find_previous.title=Hanapin ang nakaraang pangyayari ng parirala +find_previous_label=Nakaraan +find_next.title=Hanapin ang susunod na pangyayari ng parirala +find_next_label=Susunod +find_highlight=I-highlight lahat +find_match_case_label=Itugma ang case +find_entire_word_label=Buong salita +find_reached_top=Naabot na ang tuktok ng dokumento, ipinagpatuloy mula sa ilalim +find_reached_bottom=Naabot na ang dulo ng dokumento, ipinagpatuloy mula sa tuktok +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} ng {{total}} tugma +find_match_count[two]={{current}} ng {{total}} tugma +find_match_count[few]={{current}} ng {{total}} tugma +find_match_count[many]={{current}} ng {{total}} tugma +find_match_count[other]={{current}} ng {{total}} tugma +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Higit sa {{limit}} tugma +find_match_count_limit[one]=Higit sa {{limit}} tugma +find_match_count_limit[two]=Higit sa {{limit}} tugma +find_match_count_limit[few]=Higit sa {{limit}} tugma +find_match_count_limit[many]=Higit sa {{limit}} tugma +find_match_count_limit[other]=Higit sa {{limit}} tugma +find_not_found=Hindi natagpuan ang parirala + +# Predefined zoom values +page_scale_width=Lapad ng Pahina +page_scale_fit=Pagkasyahin ang Pahina +page_scale_auto=Automatic Zoom +page_scale_actual=Totoong sukat +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Nagkaproblema habang niloload ang PDF. +invalid_file_error=Di-wasto o sira ang PDF file. +missing_file_error=Nawawalang PDF file. +unexpected_response_error=Hindi inaasahang tugon ng server. + +rendering_error=Nagkaproblema habang nirerender ang pahina. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=Ipasok ang password upang buksan ang PDF file na ito. +password_invalid=Maling password. Subukan uli. +password_ok=OK +password_cancel=Kanselahin + +printing_not_supported=Babala: Hindi pa ganap na suportado ang pag-print sa browser na ito. +printing_not_ready=Babala: Hindi ganap na nabuksan ang PDF para sa pag-print. +web_fonts_disabled=Naka-disable ang mga Web font: hindi kayang gamitin ang mga naka-embed na PDF font. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/tr/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/tr/viewer.properties new file mode 100644 index 00000000..eaa4eaba --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/tr/viewer.properties @@ -0,0 +1,283 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Önceki sayfa +previous_label=Önceki +next.title=Sonraki sayfa +next_label=Sonraki + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Sayfa +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=Uzaklaştır +zoom_out_label=Uzaklaştır +zoom_in.title=Yaklaştır +zoom_in_label=Yaklaştır +zoom.title=Yakınlaştırma +presentation_mode.title=Sunum moduna geç +presentation_mode_label=Sunum modu +open_file.title=Dosya aç +open_file_label=Aç +print.title=Yazdır +print_label=Yazdır +save.title=Kaydet +save_label=Kaydet +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=İndir +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=İndir +bookmark1.title=Geçerli sayfa (geçerli sayfanın adresini görüntüle) +bookmark1_label=Geçerli sayfa +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Uygulamada aç +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Uygulamada aç + +# Secondary toolbar and context menu +tools.title=Araçlar +tools_label=Araçlar +first_page.title=İlk sayfaya git +first_page_label=İlk sayfaya git +last_page.title=Son sayfaya git +last_page_label=Son sayfaya git +page_rotate_cw.title=Saat yönünde döndür +page_rotate_cw_label=Saat yönünde döndür +page_rotate_ccw.title=Saat yönünün tersine döndür +page_rotate_ccw_label=Saat yönünün tersine döndür + +cursor_text_select_tool.title=Metin seçme aracını etkinleştir +cursor_text_select_tool_label=Metin seçme aracı +cursor_hand_tool.title=El aracını etkinleştir +cursor_hand_tool_label=El aracı + +scroll_page.title=Sayfa kaydırmayı kullan +scroll_page_label=Sayfa kaydırma +scroll_vertical.title=Dikey kaydırma kullan +scroll_vertical_label=Dikey kaydırma +scroll_horizontal.title=Yatay kaydırma kullan +scroll_horizontal_label=Yatay kaydırma +scroll_wrapped.title=Yan yana kaydırmayı kullan +scroll_wrapped_label=Yan yana kaydırma + +spread_none.title=Yan yana sayfaları birleştirme +spread_none_label=Birleştirme +spread_odd.title=Yan yana sayfaları tek numaralı sayfalardan başlayarak birleştir +spread_odd_label=Tek numaralı +spread_even.title=Yan yana sayfaları çift numaralı sayfalardan başlayarak birleştir +spread_even_label=Çift numaralı + +# Document properties dialog box +document_properties.title=Belge özellikleri… +document_properties_label=Belge özellikleri… +document_properties_file_name=Dosya adı: +document_properties_file_size=Dosya boyutu: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bayt) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bayt) +document_properties_title=Başlık: +document_properties_author=Yazar: +document_properties_subject=Konu: +document_properties_keywords=Anahtar kelimeler: +document_properties_creation_date=Oluturma tarihi: +document_properties_modification_date=Değiştirme tarihi: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}} {{time}} +document_properties_creator=Oluşturan: +document_properties_producer=PDF üreticisi: +document_properties_version=PDF sürümü: +document_properties_page_count=Sayfa sayısı: +document_properties_page_size=Sayfa boyutu: +document_properties_page_size_unit_inches=inç +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=dikey +document_properties_page_size_orientation_landscape=yatay +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Hızlı web görünümü: +document_properties_linearized_yes=Evet +document_properties_linearized_no=Hayır +document_properties_close=Kapat + +print_progress_message=Belge yazdırılmaya hazırlanıyor… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent=%{{progress}} +print_progress_close=İptal + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Kenar çubuğunu aç/kapat +toggle_sidebar_notification2.title=Kenar çubuğunu aç/kapat (Belge ana hat/ekler/katmanlar içeriyor) +toggle_sidebar_label=Kenar çubuğunu aç/kapat +document_outline.title=Belge ana hatlarını göster (Tüm öğeleri genişletmek/daraltmak için çift tıklayın) +document_outline_label=Belge ana hatları +attachments.title=Ekleri göster +attachments_label=Ekler +layers.title=Katmanları göster (tüm katmanları varsayılan duruma sıfırlamak için çift tıklayın) +layers_label=Katmanlar +thumbs.title=Küçük resimleri göster +thumbs_label=Küçük resimler +current_outline_item.title=Mevcut ana hat öğesini bul +current_outline_item_label=Mevcut ana hat öğesi +findbar.title=Belgede bul +findbar_label=Bul + +additional_layers=Ek katmanlar +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Sayfa {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Sayfa {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}}. sayfanın küçük hâli + +# Find panel button title and messages +find_input.title=Bul +find_input.placeholder=Belgede bul… +find_previous.title=Önceki eşleşmeyi bul +find_previous_label=Önceki +find_next.title=Sonraki eşleşmeyi bul +find_next_label=Sonraki +find_highlight=Tümünü vurgula +find_match_case_label=Büyük-küçük harfe duyarlı +find_match_diacritics_label=Fonetik işaretleri bul +find_entire_word_label=Tam sözcükler +find_reached_top=Belgenin başına ulaşıldı, sonundan devam edildi +find_reached_bottom=Belgenin sonuna ulaşıldı, başından devam edildi +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} eşleşmeden {{current}}. eşleşme +find_match_count[two]={{total}} eşleşmeden {{current}}. eşleşme +find_match_count[few]={{total}} eşleşmeden {{current}}. eşleşme +find_match_count[many]={{total}} eşleşmeden {{current}}. eşleşme +find_match_count[other]={{total}} eşleşmeden {{current}}. eşleşme +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]={{limit}} eşleşmeden fazla +find_match_count_limit[one]={{limit}} eşleşmeden fazla +find_match_count_limit[two]={{limit}} eşleşmeden fazla +find_match_count_limit[few]={{limit}} eşleşmeden fazla +find_match_count_limit[many]={{limit}} eşleşmeden fazla +find_match_count_limit[other]={{limit}} eşleşmeden fazla +find_not_found=Eşleşme bulunamadı + +# Predefined zoom values +page_scale_width=Sayfa genişliği +page_scale_fit=Sayfayı sığdır +page_scale_auto=Otomatik yakınlaştır +page_scale_actual=Gerçek boyut +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent=%{{scale}} + +# Loading indicator messages +loading_error=PDF yüklenirken bir hata oluştu. +invalid_file_error=Geçersiz veya bozulmuş PDF dosyası. +missing_file_error=PDF dosyası eksik. +unexpected_response_error=Beklenmeyen sunucu yanıtı. +rendering_error=Sayfa yorumlanırken bir hata oluştu. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} işareti] +password_label=Bu PDF dosyasını açmak için parolasını yazın. +password_invalid=Geçersiz parola. Lütfen yeniden deneyin. +password_ok=Tamam +password_cancel=İptal + +printing_not_supported=Uyarı: Yazdırma bu tarayıcı tarafından tam olarak desteklenmemektedir. +printing_not_ready=Uyarı: PDF tamamen yüklenmedi ve yazdırmaya hazır değil. +web_fonts_disabled=Web fontları devre dışı: Gömülü PDF fontları kullanılamıyor. + +# Editor +editor_free_text2.title=Metin +editor_free_text2_label=Metin +editor_ink2.title=Çiz +editor_ink2_label=Çiz + +editor_stamp1.title=Resim ekle veya düzenle +editor_stamp1_label=Resim ekle veya düzenle + +free_text2_default_content=Yazmaya başlayın… + +# Editor Parameters +editor_free_text_color=Renk +editor_free_text_size=Boyut +editor_ink_color=Renk +editor_ink_thickness=Kalınlık +editor_ink_opacity=Saydamlık + +editor_stamp_add_image_label=Resim ekle +editor_stamp_add_image.title=Resim ekle + +# Editor aria +editor_free_text2_aria_label=Metin düzenleyicisi +editor_ink2_aria_label=Çizim düzenleyicisi +editor_ink_canvas_aria_label=Kullanıcı tarafından oluşturulan resim + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Alternatif metin +editor_alt_text_edit_button_label=Alternatif metni düzenle +editor_alt_text_dialog_label=Bir seçenek seçin +editor_alt_text_dialog_description=Alternatif metin, insanlar görseli göremediğinde veya görsel yüklenmediğinde işe yarar. +editor_alt_text_add_description_label=Açıklama ekle +editor_alt_text_mark_decorative_label=Dekoratif olarak işaretle +editor_alt_text_mark_decorative_description=Kenarlıklar veya filigranlar gibi dekoratif görüntüler için kullanılır. +editor_alt_text_cancel_button=Vazgeç +editor_alt_text_save_button=Kaydet +editor_alt_text_decorative_tooltip=Dekoratif olarak işaretlendi +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Örneğin, “Genç bir adam yemek yemek için masaya oturuyor” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/trs/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/trs/viewer.properties new file mode 100644 index 00000000..1a56e5b5 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/trs/viewer.properties @@ -0,0 +1,184 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Pajinâ gunâj rukùu +previous_label=Sa gachin +next.title=Pajinâ 'na' ñaan +next_label=Ne' ñaan + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Ñanj +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=si'iaj {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} of {{pagesCount}}) + +zoom_out.title=Nagi'iaj li' +zoom_out_label=Nagi'iaj li' +zoom_in.title=Nagi'iaj niko' +zoom_in_label=Nagi'iaj niko' +zoom.title=dàj nìko ma'an +presentation_mode.title=Naduno' daj ga ma +presentation_mode_label=Daj gà ma +open_file.title=Na'nïn' chrû ñanj +open_file_label=Na'nïn +print.title=Nari' ña du'ua +print_label=Nari' ñadu'ua + +# Secondary toolbar and context menu +tools.title=Rasun +tools_label=Nej rasùun +first_page.title=gun' riña pajina asiniin +first_page_label=Gun' riña pajina asiniin +last_page.title=Gun' riña pajina rukù ni'in +last_page_label=Gun' riña pajina rukù ni'inj +page_rotate_cw.title=Tanikaj ne' huat +page_rotate_cw_label=Tanikaj ne' huat +page_rotate_ccw.title=Tanikaj ne' chînt' +page_rotate_ccw_label=Tanikaj ne' chint + +cursor_text_select_tool.title=Dugi'iaj sun' sa ganahui texto +cursor_text_select_tool_label=Nej rasun arajsun' da' nahui' texto +cursor_hand_tool.title=Nachrun' nej rasun +cursor_hand_tool_label=Sa rajsun ro'o' + +scroll_vertical.title=Garasun' dukuán runūu +scroll_vertical_label=Dukuán runūu +scroll_horizontal.title=Garasun' dukuán nikin' nahui +scroll_horizontal_label=Dukuán nikin' nahui +scroll_wrapped.title=Garasun' sa nachree +scroll_wrapped_label=Sa nachree + +spread_none.title=Si nagi'iaj nugun'un' nej pagina hua ninin +spread_none_label=Ni'io daj hua pagina +spread_odd.title=Nagi'iaj nugua'ant nej pajina +spread_odd_label=Ni'io' daj hua libro gurin +spread_even.title=Nakāj dugui' ngà nej pajinâ ayi'ì ngà da' hùi hùi +spread_even_label=Nahuin nìko nej + +# Document properties dialog box +document_properties.title=Nej sa nikāj ñanj… +document_properties_label=Nej sa nikāj ñanj… +document_properties_file_name=Si yugui archîbo: +document_properties_file_size=Dàj yachìj archîbo: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Si yugui: +document_properties_author=Sí girirà: +document_properties_subject=Dugui': +document_properties_keywords=Nej nuguan' huìi: +document_properties_creation_date=Gui gurugui' man: +document_properties_modification_date=Nuguan' nahuin nakà: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Guiri ro' +document_properties_producer=Sa ri PDF: +document_properties_version=PDF Version: +document_properties_page_count=Si Guendâ Pâjina: +document_properties_page_size=Dàj yachìj pâjina: +document_properties_page_size_unit_inches=riña +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=nadu'ua +document_properties_page_size_orientation_landscape=dàj huaj +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Da'ngà'a +document_properties_page_size_name_legal=Nuguan' a'nï'ïn +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Nanèt chre ni'iajt riña Web: +document_properties_linearized_yes=Ga'ue +document_properties_linearized_no=Si ga'ue +document_properties_close=Narán + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Duyichin' + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Nadunā barrâ nù yi'nïn +toggle_sidebar_label=Nadunā barrâ nù yi'nïn +findbar_label=Narì' + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. + +# Find panel button title and messages +find_input.title=Narì' +find_previous_label=Sa gachîn +find_next_label=Ne' ñaan +find_highlight=Daran' sa ña'an +find_match_case_label=Match case +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} si'iaj {{total}} guña gè huaj +find_match_count[two]={{current}} si'iaj {{total}} guña gè huaj +find_match_count[few]={{current}} si'iaj {{total}} guña gè huaj +find_match_count[many]={{current}} si'iaj {{total}} guña gè huaj +find_match_count[other]={{current}} of {{total}} matches +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Doj ngà da' {{limit}} nej sa nari' dugui'i +find_match_count_limit[one]=Doj ngà da' {{limit}} sa nari' dugui'i +find_match_count_limit[two]=Doj ngà da' {{limit}} nej sa nari' dugui'i +find_match_count_limit[few]=Doj ngà da' {{limit}} nej sa nari' dugui'i +find_match_count_limit[many]=Doj ngà da' {{limit}} nej sa nari' dugui'i +find_match_count_limit[other]=Doj ngà da' {{limit}} nej sa nari' dugui'i +find_not_found=Nu narì'ij nugua'anj + +# Predefined zoom values +page_scale_actual=Dàj yàchi akuan' nín +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +password_ok=Ga'ue +password_cancel=Duyichin' + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/uk/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/uk/viewer.properties new file mode 100644 index 00000000..64864e05 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/uk/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Попередня сторінка +previous_label=Попередня +next.title=Наступна сторінка +next_label=Наступна + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Сторінка +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=із {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} із {{pagesCount}}) + +zoom_out.title=Зменшити +zoom_out_label=Зменшити +zoom_in.title=Збільшити +zoom_in_label=Збільшити +zoom.title=Масштаб +presentation_mode.title=Перейти в режим презентації +presentation_mode_label=Режим презентації +open_file.title=Відкрити файл +open_file_label=Відкрити +print.title=Друк +print_label=Друк +save.title=Зберегти +save_label=Зберегти +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Завантажити +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Завантажити +bookmark1.title=Поточна сторінка (перегляд URL-адреси з поточної сторінки) +bookmark1_label=Поточна сторінка +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Відкрити у програмі +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Відкрити у програмі + +# Secondary toolbar and context menu +tools.title=Інструменти +tools_label=Інструменти +first_page.title=На першу сторінку +first_page_label=На першу сторінку +last_page.title=На останню сторінку +last_page_label=На останню сторінку +page_rotate_cw.title=Повернути за годинниковою стрілкою +page_rotate_cw_label=Повернути за годинниковою стрілкою +page_rotate_ccw.title=Повернути проти годинникової стрілки +page_rotate_ccw_label=Повернути проти годинникової стрілки + +cursor_text_select_tool.title=Увімкнути інструмент вибору тексту +cursor_text_select_tool_label=Інструмент вибору тексту +cursor_hand_tool.title=Увімкнути інструмент "Рука" +cursor_hand_tool_label=Інструмент "Рука" + +scroll_page.title=Використовувати прокручування сторінки +scroll_page_label=Прокручування сторінки +scroll_vertical.title=Використовувати вертикальне прокручування +scroll_vertical_label=Вертикальне прокручування +scroll_horizontal.title=Використовувати горизонтальне прокручування +scroll_horizontal_label=Горизонтальне прокручування +scroll_wrapped.title=Використовувати масштабоване прокручування +scroll_wrapped_label=Масштабоване прокручування + +spread_none.title=Не використовувати розгорнуті сторінки +spread_none_label=Без розгорнутих сторінок +spread_odd.title=Розгорнуті сторінки починаються з непарних номерів +spread_odd_label=Непарні сторінки зліва +spread_even.title=Розгорнуті сторінки починаються з парних номерів +spread_even_label=Парні сторінки зліва + +# Document properties dialog box +document_properties.title=Властивості документа… +document_properties_label=Властивості документа… +document_properties_file_name=Назва файла: +document_properties_file_size=Розмір файла: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} КБ ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} МБ ({{size_b}} bytes) +document_properties_title=Заголовок: +document_properties_author=Автор: +document_properties_subject=Тема: +document_properties_keywords=Ключові слова: +document_properties_creation_date=Дата створення: +document_properties_modification_date=Дата зміни: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Створено: +document_properties_producer=Виробник PDF: +document_properties_version=Версія PDF: +document_properties_page_count=Кількість сторінок: +document_properties_page_size=Розмір сторінки: +document_properties_page_size_unit_inches=дюймів +document_properties_page_size_unit_millimeters=мм +document_properties_page_size_orientation_portrait=книжкова +document_properties_page_size_orientation_landscape=альбомна +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Швидкий перегляд в Інтернеті: +document_properties_linearized_yes=Так +document_properties_linearized_no=Ні +document_properties_close=Закрити + +print_progress_message=Підготовка документу до друку… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Скасувати + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Бічна панель +toggle_sidebar_notification2.title=Перемкнути бічну панель (документ містить ескіз/вкладення/шари) +toggle_sidebar_label=Перемкнути бічну панель +document_outline.title=Показати схему документу (подвійний клік для розгортання/згортання елементів) +document_outline_label=Схема документа +attachments.title=Показати прикріплення +attachments_label=Прикріплення +layers.title=Показати шари (двічі клацніть, щоб скинути всі шари до типового стану) +layers_label=Шари +thumbs.title=Показувати ескізи +thumbs_label=Ескізи +current_outline_item.title=Знайти поточний елемент змісту +current_outline_item_label=Поточний елемент змісту +findbar.title=Знайти в документі +findbar_label=Знайти + +additional_layers=Додаткові шари +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Сторінка {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Сторінка {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Ескіз сторінки {{page}} + +# Find panel button title and messages +find_input.title=Знайти +find_input.placeholder=Знайти в документі… +find_previous.title=Знайти попереднє входження фрази +find_previous_label=Попереднє +find_next.title=Знайти наступне входження фрази +find_next_label=Наступне +find_highlight=Підсвітити все +find_match_case_label=З урахуванням регістру +find_match_diacritics_label=Відповідність діакритичних знаків +find_entire_word_label=Цілі слова +find_reached_top=Досягнуто початку документу, продовжено з кінця +find_reached_bottom=Досягнуто кінця документу, продовжено з початку +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} збіг із {{total}} +find_match_count[two]={{current}} збіги з {{total}} +find_match_count[few]={{current}} збігів із {{total}} +find_match_count[many]={{current}} збігів із {{total}} +find_match_count[other]={{current}} збігів із {{total}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Понад {{limit}} збігів +find_match_count_limit[one]=Більше, ніж {{limit}} збіг +find_match_count_limit[two]=Більше, ніж {{limit}} збіги +find_match_count_limit[few]=Більше, ніж {{limit}} збігів +find_match_count_limit[many]=Понад {{limit}} збігів +find_match_count_limit[other]=Понад {{limit}} збігів +find_not_found=Фразу не знайдено + +# Predefined zoom values +page_scale_width=За шириною +page_scale_fit=Вмістити +page_scale_auto=Автомасштаб +page_scale_actual=Дійсний розмір +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Під час завантаження PDF сталася помилка. +invalid_file_error=Недійсний або пошкоджений PDF-файл. +missing_file_error=Відсутній PDF-файл. +unexpected_response_error=Неочікувана відповідь сервера. +rendering_error=Під час виведення сторінки сталася помилка. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}}-анотація] +password_label=Введіть пароль для відкриття цього PDF-файла. +password_invalid=Невірний пароль. Спробуйте ще. +password_ok=Гаразд +password_cancel=Скасувати + +printing_not_supported=Попередження: Цей браузер не повністю підтримує друк. +printing_not_ready=Попередження: PDF не повністю завантажений для друку. +web_fonts_disabled=Веб-шрифти вимкнено: неможливо використати вбудовані у PDF шрифти. + +# Editor +editor_free_text2.title=Текст +editor_free_text2_label=Текст +editor_ink2.title=Малювати +editor_ink2_label=Малювати + +editor_stamp1.title=Додати чи редагувати зображення +editor_stamp1_label=Додати чи редагувати зображення + +free_text2_default_content=Почніть вводити… + +# Editor Parameters +editor_free_text_color=Колір +editor_free_text_size=Розмір +editor_ink_color=Колір +editor_ink_thickness=Товщина +editor_ink_opacity=Прозорість + +editor_stamp_add_image_label=Додати зображення +editor_stamp_add_image.title=Додати зображення + +# Editor aria +editor_free_text2_aria_label=Текстовий редактор +editor_ink2_aria_label=Графічний редактор +editor_ink_canvas_aria_label=Зображення, створене користувачем + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=Альтернативний текст +editor_alt_text_edit_button_label=Змінити альтернативний текст +editor_alt_text_dialog_label=Вибрати варіант +editor_alt_text_dialog_description=Альтернативний текст допомагає, коли зображення не видно або коли воно не завантажується. +editor_alt_text_add_description_label=Додати опис +editor_alt_text_add_description_description=Намагайтеся створити 1-2 речення, які описують тему, обставини або дії. +editor_alt_text_mark_decorative_label=Позначити декоративним +editor_alt_text_mark_decorative_description=Використовується для декоративних зображень, наприклад рамок або водяних знаків. +editor_alt_text_cancel_button=Скасувати +editor_alt_text_save_button=Зберегти +editor_alt_text_decorative_tooltip=Позначено декоративним +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=Наприклад, “Молодий чоловік сідає за стіл їсти” diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/ur/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ur/viewer.properties new file mode 100644 index 00000000..f2927fe4 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/ur/viewer.properties @@ -0,0 +1,218 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=پچھلا صفحہ +previous_label=پچھلا +next.title=اگلا صفحہ +next_label=آگے + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=صفحہ +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages={{pagesCount}} کا +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} کا {{pagesCount}}) + +zoom_out.title=باہر زوم کریں +zoom_out_label=باہر زوم کریں +zoom_in.title=اندر زوم کریں +zoom_in_label=اندر زوم کریں +zoom.title=زوم +presentation_mode.title=پیشکش موڈ میں چلے جائیں +presentation_mode_label=پیشکش موڈ +open_file.title=مسل کھولیں +open_file_label=کھولیں +print.title=چھاپیں +print_label=چھاپیں + +# Secondary toolbar and context menu +tools.title=آلات +tools_label=آلات +first_page.title=پہلے صفحہ پر جائیں +first_page_label=پہلے صفحہ پر جائیں +last_page.title=آخری صفحہ پر جائیں +last_page_label=آخری صفحہ پر جائیں +page_rotate_cw.title=گھڑی وار گھمائیں +page_rotate_cw_label=گھڑی وار گھمائیں +page_rotate_ccw.title=ضد گھڑی وار گھمائیں +page_rotate_ccw_label=ضد گھڑی وار گھمائیں + +cursor_text_select_tool.title=متن کے انتخاب کے ٹول کو فعال بناے +cursor_text_select_tool_label=متن کے انتخاب کا آلہ +cursor_hand_tool.title=ہینڈ ٹول کو فعال بناییں +cursor_hand_tool_label=ہاتھ کا آلہ + +scroll_vertical.title=عمودی اسکرولنگ کا استعمال کریں +scroll_vertical_label=عمودی اسکرولنگ +scroll_horizontal.title=افقی سکرولنگ کا استعمال کریں +scroll_horizontal_label=افقی سکرولنگ + +spread_none.title=صفحہ پھیلانے میں شامل نہ ہوں +spread_none_label=کوئی پھیلاؤ نہیں +spread_odd_label=تاک پھیلاؤ +spread_even_label=جفت پھیلاؤ + +# Document properties dialog box +document_properties.title=دستاویز خواص… +document_properties_label=دستاویز خواص…\u0020 +document_properties_file_name=نام مسل: +document_properties_file_size=مسل سائز: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=عنوان: +document_properties_author=تخلیق کار: +document_properties_subject=موضوع: +document_properties_keywords=کلیدی الفاظ: +document_properties_creation_date=تخلیق کی تاریخ: +document_properties_modification_date=ترمیم کی تاریخ: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}، {{time}} +document_properties_creator=تخلیق کار: +document_properties_producer=PDF پیدا کار: +document_properties_version=PDF ورژن: +document_properties_page_count=صفحہ شمار: +document_properties_page_size=صفہ کی لمبائ: +document_properties_page_size_unit_inches=میں +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=عمودی انداز +document_properties_page_size_orientation_landscape=افقى انداز +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=خط +document_properties_page_size_name_legal=قانونی +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} {{name}} {{orientation}} +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=تیز ویب دیکھیں: +document_properties_linearized_yes=ہاں +document_properties_linearized_no=نہیں +document_properties_close=بند کریں + +print_progress_message=چھاپنے کرنے کے لیے دستاویز تیار کیے جا رھے ھیں +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent=*{{progress}}%* +print_progress_close=منسوخ کریں + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=سلائیڈ ٹوگل کریں +toggle_sidebar_label=سلائیڈ ٹوگل کریں +document_outline.title=دستاویز کی سرخیاں دکھایں (تمام اشیاء وسیع / غائب کرنے کے لیے ڈبل کلک کریں) +document_outline_label=دستاویز آؤٹ لائن +attachments.title=منسلکات دکھائیں +attachments_label=منسلکات +thumbs.title=تھمبنیل دکھائیں +thumbs_label=مجمل +findbar.title=دستاویز میں ڈھونڈیں +findbar_label=ڈھونڈیں + +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=صفحہ {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=صفحہ {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=صفحے کا مجمل {{page}} + +# Find panel button title and messages +find_input.title=ڈھونڈیں +find_input.placeholder=دستاویز… میں ڈھونڈیں +find_previous.title=فقرے کا پچھلا وقوع ڈھونڈیں +find_previous_label=پچھلا +find_next.title=فقرے کا اگلہ وقوع ڈھونڈیں +find_next_label=آگے +find_highlight=تمام نمایاں کریں +find_match_case_label=حروف مشابہ کریں +find_entire_word_label=تمام الفاظ +find_reached_top=صفحہ کے شروع پر پہنچ گیا، نیچے سے جاری کیا +find_reached_bottom=صفحہ کے اختتام پر پہنچ گیا، اوپر سے جاری کیا +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{total}} میچ کا {{current}} +find_match_count[few]={{total}} میچوں میں سے {{current}} +find_match_count[many]={{total}} میچوں میں سے {{current}} +find_match_count[other]={{total}} میچوں میں سے {{current}} +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(total) ]} +find_match_count_limit[zero]={{limit}} سے زیادہ میچ +find_match_count_limit[one]={{limit}} سے زیادہ میچ +find_match_count_limit[two]={{limit}} سے زیادہ میچ +find_match_count_limit[few]={{limit}} سے زیادہ میچ +find_match_count_limit[many]={{limit}} سے زیادہ میچ +find_match_count_limit[other]={{limit}} سے زیادہ میچ +find_not_found=فقرا نہیں ملا + +# Predefined zoom values +page_scale_width=صفحہ چوڑائی +page_scale_fit=صفحہ فٹنگ +page_scale_auto=خودکار زوم +page_scale_actual=اصل سائز +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=PDF لوڈ کرتے وقت نقص آ گیا۔ +invalid_file_error=ناجائز یا خراب PDF مسل +missing_file_error=PDF مسل غائب ہے۔ +unexpected_response_error=غیرمتوقع پیش کار جواب + +rendering_error=صفحہ بناتے ہوئے نقص آ گیا۔ + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}.{{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} نوٹ] +password_label=PDF مسل کھولنے کے لیے پاس ورڈ داخل کریں. +password_invalid=ناجائز پاس ورڈ. براےؑ کرم دوبارہ کوشش کریں. +password_ok=ٹھیک ہے +password_cancel=منسوخ کریں + +printing_not_supported=تنبیہ:چھاپنا اس براؤزر پر پوری طرح معاونت شدہ نہیں ہے۔ +printing_not_ready=تنبیہ: PDF چھپائی کے لیے پوری طرح لوڈ نہیں ہوئی۔ +web_fonts_disabled=ویب فانٹ نا اہل ہیں: شامل PDF فانٹ استعمال کرنے میں ناکام۔ +# LOCALIZATION NOTE (unsupported_feature_signatures): Should contain the same +# exact string as in the `chrome.properties` file. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/uz/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/uz/viewer.properties new file mode 100644 index 00000000..b8d81970 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/uz/viewer.properties @@ -0,0 +1,142 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Oldingi sahifa +previous_label=Oldingi +next.title=Keyingi sahifa +next_label=Keyingi + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/{{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. + +zoom_out.title=Kichiklashtirish +zoom_out_label=Kichiklashtirish +zoom_in.title=Kattalashtirish +zoom_in_label=Kattalashtirish +zoom.title=Masshtab +presentation_mode.title=Namoyish usuliga oʻtish +presentation_mode_label=Namoyish usuli +open_file.title=Faylni ochish +open_file_label=Ochish +print.title=Chop qilish +print_label=Chop qilish + +# Secondary toolbar and context menu +tools.title=Vositalar +tools_label=Vositalar +first_page.title=Birinchi sahifaga oʻtish +first_page_label=Birinchi sahifaga oʻtish +last_page.title=Soʻnggi sahifaga oʻtish +last_page_label=Soʻnggi sahifaga oʻtish +page_rotate_cw.title=Soat yoʻnalishi boʻyicha burish +page_rotate_cw_label=Soat yoʻnalishi boʻyicha burish +page_rotate_ccw.title=Soat yoʻnalishiga qarshi burish +page_rotate_ccw_label=Soat yoʻnalishiga qarshi burish + + +# Document properties dialog box +document_properties.title=Hujjat xossalari +document_properties_label=Hujjat xossalari +document_properties_file_name=Fayl nomi: +document_properties_file_size=Fayl hajmi: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} bytes) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} bytes) +document_properties_title=Nomi: +document_properties_author=Muallifi: +document_properties_subject=Mavzusi: +document_properties_keywords=Kalit so‘zlar +document_properties_creation_date=Yaratilgan sanasi: +document_properties_modification_date=O‘zgartirilgan sanasi +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Yaratuvchi: +document_properties_producer=PDF ishlab chiqaruvchi: +document_properties_version=PDF versiyasi: +document_properties_page_count=Sahifa soni: +document_properties_close=Yopish + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Yon panelni yoqib/oʻchirib qoʻyish +toggle_sidebar_label=Yon panelni yoqib/oʻchirib qoʻyish +document_outline_label=Hujjat tuzilishi +attachments.title=Ilovalarni ko‘rsatish +attachments_label=Ilovalar +thumbs.title=Nishonchalarni koʻrsatish +thumbs_label=Nishoncha +findbar.title=Hujjat ichidan topish + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title={{page}} sahifa +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas={{page}} sahifa nishonchasi + +# Find panel button title and messages +find_previous.title=Soʻzlardagi oldingi hodisani topish +find_previous_label=Oldingi +find_next.title=Iboradagi keyingi hodisani topish +find_next_label=Keyingi +find_highlight=Barchasini ajratib koʻrsatish +find_match_case_label=Katta-kichik harflarni farqlash +find_reached_top=Hujjatning boshigacha yetib keldik, pastdan davom ettiriladi +find_reached_bottom=Hujjatning oxiriga yetib kelindi, yuqoridan davom ettirladi +find_not_found=Soʻzlar topilmadi + +# Predefined zoom values +page_scale_width=Sahifa eni +page_scale_fit=Sahifani moslashtirish +page_scale_auto=Avtomatik masshtab +page_scale_actual=Haqiqiy hajmi +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=PDF yuklanayotganda xato yuz berdi. +invalid_file_error=Xato yoki buzuq PDF fayli. +missing_file_error=PDF fayl kerak. +unexpected_response_error=Kutilmagan server javobi. + +rendering_error=Sahifa renderlanayotganda xato yuz berdi. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Annotation] +password_label=PDF faylni ochish uchun parolni kiriting. +password_invalid=Parol - notoʻgʻri. Qaytadan urinib koʻring. +password_ok=OK + +printing_not_supported=Diqqat: chop qilish bruzer tomonidan toʻliq qoʻllab-quvvatlanmaydi. +printing_not_ready=Diqqat: PDF fayl chop qilish uchun toʻliq yuklanmadi. +web_fonts_disabled=Veb shriftlar oʻchirilgan: ichki PDF shriftlardan foydalanib boʻlmmaydi. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/vi/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/vi/viewer.properties new file mode 100644 index 00000000..3b87eef3 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/vi/viewer.properties @@ -0,0 +1,270 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Trang trước +previous_label=Trước +next.title=Trang Sau +next_label=Tiếp + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Trang +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=trên {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} trên {{pagesCount}}) + +zoom_out.title=Thu nhỏ +zoom_out_label=Thu nhỏ +zoom_in.title=Phóng to +zoom_in_label=Phóng to +zoom.title=Thu phóng +presentation_mode.title=Chuyển sang chế độ trình chiếu +presentation_mode_label=Chế độ trình chiếu +open_file.title=Mở tập tin +open_file_label=Mở tập tin +print.title=In +print_label=In +save.title=Lưu +save_label=Lưu +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=Tải xuống +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=Tải xuống +bookmark1.title=Trang hiện tại (xem URL từ trang hiện tại) +bookmark1_label=Trang hiện tại +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=Mở trong ứng dụng +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=Mở trong ứng dụng + +# Secondary toolbar and context menu +tools.title=Công cụ +tools_label=Công cụ +first_page.title=Về trang đầu +first_page_label=Về trang đầu +last_page.title=Đến trang cuối +last_page_label=Đến trang cuối +page_rotate_cw.title=Xoay theo chiều kim đồng hồ +page_rotate_cw_label=Xoay theo chiều kim đồng hồ +page_rotate_ccw.title=Xoay ngược chiều kim đồng hồ +page_rotate_ccw_label=Xoay ngược chiều kim đồng hồ + +cursor_text_select_tool.title=Kích hoạt công cụ chọn vùng văn bản +cursor_text_select_tool_label=Công cụ chọn vùng văn bản +cursor_hand_tool.title=Kích hoạt công cụ con trỏ +cursor_hand_tool_label=Công cụ con trỏ + +scroll_page.title=Sử dụng cuộn trang hiện tại +scroll_page_label=Cuộn trang hiện tại +scroll_vertical.title=Sử dụng cuộn dọc +scroll_vertical_label=Cuộn dọc +scroll_horizontal.title=Sử dụng cuộn ngang +scroll_horizontal_label=Cuộn ngang +scroll_wrapped.title=Sử dụng cuộn ngắt dòng +scroll_wrapped_label=Cuộn ngắt dòng + +spread_none.title=Không nối rộng trang +spread_none_label=Không có phân cách +spread_odd.title=Nối trang bài bắt đầu với các trang được đánh số lẻ +spread_odd_label=Phân cách theo số lẻ +spread_even.title=Nối trang bài bắt đầu với các trang được đánh số chẵn +spread_even_label=Phân cách theo số chẵn + +# Document properties dialog box +document_properties.title=Thuộc tính của tài liệu… +document_properties_label=Thuộc tính của tài liệu… +document_properties_file_name=Tên tập tin: +document_properties_file_size=Kích thước: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} byte) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} byte) +document_properties_title=Tiêu đề: +document_properties_author=Tác giả: +document_properties_subject=Chủ đề: +document_properties_keywords=Từ khóa: +document_properties_creation_date=Ngày tạo: +document_properties_modification_date=Ngày sửa đổi: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Người tạo: +document_properties_producer=Phần mềm tạo PDF: +document_properties_version=Phiên bản PDF: +document_properties_page_count=Tổng số trang: +document_properties_page_size=Kích thước trang: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=khổ dọc +document_properties_page_size_orientation_landscape=khổ ngang +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Thư +document_properties_page_size_name_legal=Pháp lý +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=Xem nhanh trên web: +document_properties_linearized_yes=Có +document_properties_linearized_no=Không +document_properties_close=Ðóng + +print_progress_message=Chuẩn bị trang để in… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Hủy bỏ + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Bật/Tắt thanh lề +toggle_sidebar_notification2.title=Bật tắt thanh lề (tài liệu bao gồm bản phác thảo/tập tin đính kèm/lớp) +toggle_sidebar_label=Bật/Tắt thanh lề +document_outline.title=Hiển thị tài liệu phác thảo (nhấp đúp vào để mở rộng/thu gọn tất cả các mục) +document_outline_label=Bản phác tài liệu +attachments.title=Hiện nội dung đính kèm +attachments_label=Nội dung đính kèm +layers.title=Hiển thị các lớp (nhấp đúp để đặt lại tất cả các lớp về trạng thái mặc định) +layers_label=Lớp +thumbs.title=Hiển thị ảnh thu nhỏ +thumbs_label=Ảnh thu nhỏ +current_outline_item.title=Tìm mục phác thảo hiện tại +current_outline_item_label=Mục phác thảo hiện tại +findbar.title=Tìm trong tài liệu +findbar_label=Tìm + +additional_layers=Các lớp bổ sung +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=Trang {{page}} +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Trang {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Ảnh thu nhỏ của trang {{page}} + +# Find panel button title and messages +find_input.title=Tìm +find_input.placeholder=Tìm trong tài liệu… +find_previous.title=Tìm cụm từ ở phần trước +find_previous_label=Trước +find_next.title=Tìm cụm từ ở phần sau +find_next_label=Tiếp +find_highlight=Tô sáng tất cả +find_match_case_label=Phân biệt hoa, thường +find_match_diacritics_label=Khớp dấu phụ +find_entire_word_label=Toàn bộ từ +find_reached_top=Đã đến phần đầu tài liệu, quay trở lại từ cuối +find_reached_bottom=Đã đến phần cuối của tài liệu, quay trở lại từ đầu +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]={{current}} của {{total}} đã trùng +find_match_count[two]={{current}} của {{total}} đã trùng +find_match_count[few]={{current}} của {{total}} đã trùng +find_match_count[many]={{current}} của {{total}} đã trùng +find_match_count[other]={{current}} của {{total}} đã trùng +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=Nhiều hơn {{limit}} đã trùng +find_match_count_limit[one]=Nhiều hơn {{limit}} đã trùng +find_match_count_limit[two]=Nhiều hơn {{limit}} đã trùng +find_match_count_limit[few]=Nhiều hơn {{limit}} đã trùng +find_match_count_limit[many]=Nhiều hơn {{limit}} đã trùng +find_match_count_limit[other]=Nhiều hơn {{limit}} đã trùng +find_not_found=Không tìm thấy cụm từ này + +# Predefined zoom values +page_scale_width=Vừa chiều rộng +page_scale_fit=Vừa chiều cao +page_scale_auto=Tự động chọn kích thước +page_scale_actual=Kích thước thực +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=Lỗi khi tải tài liệu PDF. +invalid_file_error=Tập tin PDF hỏng hoặc không hợp lệ. +missing_file_error=Thiếu tập tin PDF. +unexpected_response_error=Máy chủ có phản hồi lạ. +rendering_error=Lỗi khi hiển thị trang. + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}}, {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Chú thích] +password_label=Nhập mật khẩu để mở tập tin PDF này. +password_invalid=Mật khẩu không đúng. Vui lòng thử lại. +password_ok=OK +password_cancel=Hủy bỏ + +printing_not_supported=Cảnh báo: In ấn không được hỗ trợ đầy đủ ở trình duyệt này. +printing_not_ready=Cảnh báo: PDF chưa được tải hết để in. +web_fonts_disabled=Phông chữ Web bị vô hiệu hóa: không thể sử dụng các phông chữ PDF được nhúng. + +# Editor +editor_free_text2.title=Văn bản +editor_free_text2_label=Văn bản +editor_ink2.title=Vẽ +editor_ink2_label=Vẽ + +editor_stamp.title=Thêm một ảnh +editor_stamp_label=Thêm một ảnh + +editor_stamp1.title=Thêm hoặc chỉnh sửa hình ảnh +editor_stamp1_label=Thêm hoặc chỉnh sửa hình ảnh + +free_text2_default_content=Bắt đầu nhập… + +# Editor Parameters +editor_free_text_color=Màu +editor_free_text_size=Kích cỡ +editor_ink_color=Màu +editor_ink_thickness=Độ dày +editor_ink_opacity=Độ mờ + +editor_stamp_add_image_label=Thêm hình ảnh +editor_stamp_add_image.title=Thêm hình ảnh + +# Editor aria +editor_free_text2_aria_label=Trình sửa văn bản +editor_ink2_aria_label=Trình sửa nét vẽ +editor_ink_canvas_aria_label=Hình ảnh do người dùng tạo diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/wo/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/wo/viewer.properties new file mode 100644 index 00000000..28ec9633 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/wo/viewer.properties @@ -0,0 +1,104 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Xët wi jiitu +previous_label=Bi jiitu +next.title=Xët wi ci topp +next_label=Bi ci topp + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. + +zoom_out.title=Wàññi +zoom_out_label=Wàññi +zoom_in.title=Yaatal +zoom_in_label=Yaatal +zoom.title=Yambalaŋ +presentation_mode.title=Wañarñil ci anamu wone +presentation_mode_label=Anamu Wone +open_file.title=Ubbi benn dencukaay +open_file_label=Ubbi +print.title=Móol +print_label=Móol + +# Secondary toolbar and context menu + + +# Document properties dialog box +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_title=Bopp: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. + +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +thumbs.title=Wone nataal yu ndaw yi +thumbs_label=Nataal yu ndaw yi +findbar.title=Gis ci biir jukki bi +findbar_label=Wut + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Xët {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Wiñet bu xët {{page}} + +# Find panel button title and messages +find_previous.title=Seet beneen kaddu bu ni mel te jiitu +find_previous_label=Bi jiitu +find_next.title=Seet beneen kaddu bu ni mel +find_next_label=Bi ci topp +find_highlight=Melaxal lépp +find_match_case_label=Sàmm jëmmalin wi +find_reached_top=Jot nañu ndorteel xët wi, kontine dale ko ci suuf +find_reached_bottom=Jot nañu jeexitalu xët wi, kontine ci ndorte +find_not_found=Gisiñu kaddu gi + +# Predefined zoom values +page_scale_width=Yaatuwaay bu mët +page_scale_fit=Xët lëmm +page_scale_auto=Yambalaŋ ci saa si +page_scale_actual=Dayo bi am +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. + +loading_error=Am na njumte ci yebum dencukaay PDF bi. +invalid_file_error=Dencukaay PDF bi baaxul walla mu sankar. + +rendering_error=Am njumte bu am bi xët bi di wonewu. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[Karmat {{type}}] +password_ok=OK +password_cancel=Neenal + +printing_not_supported=Artu: Joowkat bii nanguwul lool mool. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/xh/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/xh/viewer.properties new file mode 100644 index 00000000..16c457cf --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/xh/viewer.properties @@ -0,0 +1,156 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=Iphepha langaphambili +previous_label=Okwangaphambili +next.title=Iphepha elilandelayo +next_label=Okulandelayo + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=Iphepha +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=kwali- {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} kwali {{pagesCount}}) + +zoom_out.title=Bhekelisela Kudana +zoom_out_label=Bhekelisela Kudana +zoom_in.title=Sondeza Kufuphi +zoom_in_label=Sondeza Kufuphi +zoom.title=Yandisa / Nciphisa +presentation_mode.title=Tshintshela kwimo yonikezelo +presentation_mode_label=Imo yonikezelo +open_file.title=Vula Ifayile +open_file_label=Vula +print.title=Printa +print_label=Printa + +# Secondary toolbar and context menu +tools.title=Izixhobo zemiyalelo +tools_label=Izixhobo zemiyalelo +first_page.title=Yiya kwiphepha lokuqala +first_page_label=Yiya kwiphepha lokuqala +last_page.title=Yiya kwiphepha lokugqibela +last_page_label=Yiya kwiphepha lokugqibela +page_rotate_cw.title=Jikelisa ngasekunene +page_rotate_cw_label=Jikelisa ngasekunene +page_rotate_ccw.title=Jikelisa ngasekhohlo +page_rotate_ccw_label=Jikelisa ngasekhohlo + +cursor_text_select_tool.title=Vumela iSixhobo sokuKhetha iTeksti +cursor_text_select_tool_label=ISixhobo sokuKhetha iTeksti +cursor_hand_tool.title=Yenza iSixhobo seSandla siSebenze +cursor_hand_tool_label=ISixhobo seSandla + +# Document properties dialog box +document_properties.title=Iipropati zoxwebhu… +document_properties_label=Iipropati zoxwebhu… +document_properties_file_name=Igama lefayile: +document_properties_file_size=Isayizi yefayile: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB (iibhayiti{{size_b}}) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB (iibhayithi{{size_b}}) +document_properties_title=Umxholo: +document_properties_author=Umbhali: +document_properties_subject=Umbandela: +document_properties_keywords=Amagama aphambili: +document_properties_creation_date=Umhla wokwenziwa kwayo: +document_properties_modification_date=Umhla wokulungiswa kwayo: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=Umntu oyenzileyo: +document_properties_producer=Umvelisi we-PDF: +document_properties_version=Uhlelo lwe-PDF: +document_properties_page_count=Inani lamaphepha: +document_properties_close=Vala + +print_progress_message=Ilungisa uxwebhu ukuze iprinte… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=Rhoxisa + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=Togola ngebha eseCaleni +toggle_sidebar_label=Togola ngebha eseCaleni +document_outline.title=Bonisa uLwandlalo loXwebhu (cofa kabini ukuze wandise/diliza zonke izinto) +document_outline_label=Isishwankathelo soxwebhu +attachments.title=Bonisa iziqhotyoshelwa +attachments_label=Iziqhoboshelo +thumbs.title=Bonisa ukrobiso kumfanekiso +thumbs_label=Ukrobiso kumfanekiso +findbar.title=Fumana kuXwebhu +findbar_label=Fumana + +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=Iphepha {{page}} +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=Ukrobiso kumfanekiso wephepha {{page}} + +# Find panel button title and messages +find_input.title=Fumana +find_input.placeholder=Fumana kuXwebhu… +find_previous.title=Fumanisa isenzeko sangaphambili sebinzana lamagama +find_previous_label=Okwangaphambili +find_next.title=Fumanisa isenzeko esilandelayo sebinzana lamagama +find_next_label=Okulandelayo +find_highlight=Qaqambisa konke +find_match_case_label=Tshatisa ngobukhulu bukanobumba +find_reached_top=Ufike ngaphezulu ephepheni, kusukwa ngezantsi +find_reached_bottom=Ufike ekupheleni kwephepha, kusukwa ngaphezulu +find_not_found=Ibinzana alifunyenwanga + +# Predefined zoom values +page_scale_width=Ububanzi bephepha +page_scale_fit=Ukulinganiswa kwephepha +page_scale_auto=Ukwandisa/Ukunciphisa Ngokwayo +page_scale_actual=Ubungakanani bokwenene +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +loading_error=Imposiso yenzekile xa kulayishwa i-PDF. +invalid_file_error=Ifayile ye-PDF engeyiyo okanye eyonakalisiweyo. +missing_file_error=Ifayile ye-PDF edukileyo. +unexpected_response_error=Impendulo yeseva engalindelekanga. + +rendering_error=Imposiso yenzekile xa bekunikezelwa iphepha. + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} Ubhalo-nqaku] +password_label=Faka ipasiwedi ukuze uvule le fayile yePDF. +password_invalid=Ipasiwedi ayisebenzi. Nceda uzame kwakhona. +password_ok=KULUNGILE +password_cancel=Rhoxisa + +printing_not_supported=Isilumkiso: Ukuprinta akuxhaswa ngokupheleleyo yile bhrawuza. +printing_not_ready=Isilumkiso: IPDF ayihlohlwanga ngokupheleleyo ukwenzela ukuprinta. +web_fonts_disabled=Iifonti zewebhu ziqhwalelisiwe: ayikwazi ukusebenzisa iifonti ze-PDF ezincanyathelisiweyo. + diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/zh-CN/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/zh-CN/viewer.properties new file mode 100644 index 00000000..12908d19 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/zh-CN/viewer.properties @@ -0,0 +1,284 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=上一页 +previous_label=上一页 +next.title=下一页 +next_label=下一页 + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=页面 +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=/ {{pagesCount}} +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=({{pageNumber}} / {{pagesCount}}) + +zoom_out.title=缩小 +zoom_out_label=缩小 +zoom_in.title=放大 +zoom_in_label=放大 +zoom.title=缩放 +presentation_mode.title=切换到演示模式 +presentation_mode_label=演示模式 +open_file.title=打开文件 +open_file_label=打开 +print.title=打印 +print_label=打印 +save.title=保存 +save_label=保存 +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=下载 +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=下载 +bookmark1.title=当前页面(在当前页面查看 URL) +bookmark1_label=当前页面 +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=在应用中打开 +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=在应用中打开 + +# Secondary toolbar and context menu +tools.title=工具 +tools_label=工具 +first_page.title=转到第一页 +first_page_label=转到第一页 +last_page.title=转到最后一页 +last_page_label=转到最后一页 +page_rotate_cw.title=顺时针旋转 +page_rotate_cw_label=顺时针旋转 +page_rotate_ccw.title=逆时针旋转 +page_rotate_ccw_label=逆时针旋转 + +cursor_text_select_tool.title=启用文本选择工具 +cursor_text_select_tool_label=文本选择工具 +cursor_hand_tool.title=启用手形工具 +cursor_hand_tool_label=手形工具 + +scroll_page.title=使用页面滚动 +scroll_page_label=页面滚动 +scroll_vertical.title=使用垂直滚动 +scroll_vertical_label=垂直滚动 +scroll_horizontal.title=使用水平滚动 +scroll_horizontal_label=水平滚动 +scroll_wrapped.title=使用平铺滚动 +scroll_wrapped_label=平铺滚动 + +spread_none.title=不加入衔接页 +spread_none_label=单页视图 +spread_odd.title=加入衔接页使奇数页作为起始页 +spread_odd_label=双页视图 +spread_even.title=加入衔接页使偶数页作为起始页 +spread_even_label=书籍视图 + +# Document properties dialog box +document_properties.title=文档属性… +document_properties_label=文档属性… +document_properties_file_name=文件名: +document_properties_file_size=文件大小: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB ({{size_b}} 字节) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB ({{size_b}} 字节) +document_properties_title=标题: +document_properties_author=作者: +document_properties_subject=主题: +document_properties_keywords=关键词: +document_properties_creation_date=创建日期: +document_properties_modification_date=修改日期: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}}, {{time}} +document_properties_creator=创建者: +document_properties_producer=PDF 生成器: +document_properties_version=PDF 版本: +document_properties_page_count=页数: +document_properties_page_size=页面大小: +document_properties_page_size_unit_inches=英寸 +document_properties_page_size_unit_millimeters=毫米 +document_properties_page_size_orientation_portrait=纵向 +document_properties_page_size_orientation_landscape=横向 +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=文本 +document_properties_page_size_name_legal=法律 +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}}({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}}({{name}},{{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=快速 Web 视图: +document_properties_linearized_yes=是 +document_properties_linearized_no=否 +document_properties_close=关闭 + +print_progress_message=正在准备打印文档… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=取消 + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=切换侧栏 +toggle_sidebar_notification2.title=切换侧栏(文档所含的大纲/附件/图层) +toggle_sidebar_label=切换侧栏 +document_outline.title=显示文档大纲(双击展开/折叠所有项) +document_outline_label=文档大纲 +attachments.title=显示附件 +attachments_label=附件 +layers.title=显示图层(双击即可将所有图层重置为默认状态) +layers_label=图层 +thumbs.title=显示缩略图 +thumbs_label=缩略图 +current_outline_item.title=查找当前大纲项目 +current_outline_item_label=当前大纲项目 +findbar.title=在文档中查找 +findbar_label=查找 + +additional_layers=其他图层 +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=第 {{page}} 页 +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=第 {{page}} 页 +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=页面 {{page}} 的缩略图 + +# Find panel button title and messages +find_input.title=查找 +find_input.placeholder=在文档中查找… +find_previous.title=查找词语上一次出现的位置 +find_previous_label=上一页 +find_next.title=查找词语后一次出现的位置 +find_next_label=下一页 +find_highlight=全部高亮显示 +find_match_case_label=区分大小写 +find_match_diacritics_label=匹配变音符号 +find_entire_word_label=全词匹配 +find_reached_top=到达文档开头,从末尾继续 +find_reached_bottom=到达文档末尾,从开头继续 +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=第 {{current}} 项,共匹配 {{total}} 项 +find_match_count[two]=第 {{current}} 项,共匹配 {{total}} 项 +find_match_count[few]=第 {{current}} 项,共匹配 {{total}} 项 +find_match_count[many]=第 {{current}} 项,共匹配 {{total}} 项 +find_match_count[other]=第 {{current}} 项,共匹配 {{total}} 项 +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=超过 {{limit}} 项匹配 +find_match_count_limit[one]=超过 {{limit}} 项匹配 +find_match_count_limit[two]=超过 {{limit}} 项匹配 +find_match_count_limit[few]=超过 {{limit}} 项匹配 +find_match_count_limit[many]=超过 {{limit}} 项匹配 +find_match_count_limit[other]=超过 {{limit}} 项匹配 +find_not_found=找不到指定词语 + +# Predefined zoom values +page_scale_width=适合页宽 +page_scale_fit=适合页面 +page_scale_auto=自动缩放 +page_scale_actual=实际大小 +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=加载 PDF 时发生错误。 +invalid_file_error=无效或损坏的 PDF 文件。 +missing_file_error=缺少 PDF 文件。 +unexpected_response_error=意外的服务器响应。 +rendering_error=渲染页面时发生错误。 + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}},{{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} 注释] +password_label=输入密码以打开此 PDF 文件。 +password_invalid=密码无效。请重试。 +password_ok=确定 +password_cancel=取消 + +printing_not_supported=警告:此浏览器尚未完整支持打印功能。 +printing_not_ready=警告:此 PDF 未完成加载,无法打印。 +web_fonts_disabled=Web 字体已被禁用:无法使用嵌入的 PDF 字体。 + +# Editor +editor_free_text2.title=文本 +editor_free_text2_label=文本 +editor_ink2.title=绘图 +editor_ink2_label=绘图 + +editor_stamp1.title=添加或编辑图像 +editor_stamp1_label=添加或编辑图像 + +free_text2_default_content=开始输入… + +# Editor Parameters +editor_free_text_color=颜色 +editor_free_text_size=字号 +editor_ink_color=颜色 +editor_ink_thickness=粗细 +editor_ink_opacity=不透明度 + +editor_stamp_add_image_label=添加图像 +editor_stamp_add_image.title=添加图像 + +# Editor aria +editor_free_text2_aria_label=文本编辑器 +editor_ink2_aria_label=绘图编辑器 +editor_ink_canvas_aria_label=用户创建图像 + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=替换文字 +editor_alt_text_edit_button_label=编辑替换文字 +editor_alt_text_dialog_label=选择一个选项 +editor_alt_text_dialog_description=替换文字可在用户无法看到或加载图像时,描述其内容。 +editor_alt_text_add_description_label=添加描述 +editor_alt_text_add_description_description=描述主题、背景或动作,长度尽量控制在两句话内。 +editor_alt_text_mark_decorative_label=标记为装饰 +editor_alt_text_mark_decorative_description=用于装饰性图像,例如边框和水印。 +editor_alt_text_cancel_button=取消 +editor_alt_text_save_button=保存 +editor_alt_text_decorative_tooltip=已标记为装饰 +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=例如:一个少年坐到桌前,准备吃饭 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/locale/zh-TW/viewer.properties b/src/main/webapp/js/pdfjs-3.11.174/web/locale/zh-TW/viewer.properties new file mode 100644 index 00000000..56cf24c9 --- /dev/null +++ b/src/main/webapp/js/pdfjs-3.11.174/web/locale/zh-TW/viewer.properties @@ -0,0 +1,281 @@ +# Copyright 2012 Mozilla Foundation +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +# Main toolbar buttons (tooltips and alt text for images) +previous.title=上一頁 +previous_label=上一頁 +next.title=下一頁 +next_label=下一頁 + +# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input. +page.title=第 +# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number +# representing the total number of pages in the document. +of_pages=頁,共 {{pagesCount}} 頁 +# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}" +# will be replaced by a number representing the currently visible page, +# respectively a number representing the total number of pages in the document. +page_of_pages=(第 {{pageNumber}} 頁,共 {{pagesCount}} 頁) + +zoom_out.title=縮小 +zoom_out_label=縮小 +zoom_in.title=放大 +zoom_in_label=放大 +zoom.title=縮放 +presentation_mode.title=切換至簡報模式 +presentation_mode_label=簡報模式 +open_file.title=開啟檔案 +open_file_label=開啟 +print.title=列印 +print_label=列印 +save.title=儲存 +save_label=儲存 +# LOCALIZATION NOTE (download_button.title): used in Firefox for Android as a tooltip for the download button (“download” is a verb). +download_button.title=下載 +# LOCALIZATION NOTE (download_button_label): used in Firefox for Android as a label for the download button (“download” is a verb). +# Length of the translation matters since we are in a mobile context, with limited screen estate. +download_button_label=下載 +bookmark1.title=目前頁面(含目前檢視頁面的網址) +bookmark1_label=目前頁面 +# LOCALIZATION NOTE (open_in_app.title): This string is used in Firefox for Android. +open_in_app.title=在應用程式中開啟 +# LOCALIZATION NOTE (open_in_app_label): This string is used in Firefox for Android. Length of the translation matters since we are in a mobile context, with limited screen estate. +open_in_app_label=用程式開啟 + +# Secondary toolbar and context menu +tools.title=工具 +tools_label=工具 +first_page.title=跳到第一頁 +first_page_label=跳到第一頁 +last_page.title=跳到最後一頁 +last_page_label=跳到最後一頁 +page_rotate_cw.title=順時針旋轉 +page_rotate_cw_label=順時針旋轉 +page_rotate_ccw.title=逆時針旋轉 +page_rotate_ccw_label=逆時針旋轉 + +cursor_text_select_tool.title=開啟文字選擇工具 +cursor_text_select_tool_label=文字選擇工具 +cursor_hand_tool.title=開啟頁面移動工具 +cursor_hand_tool_label=頁面移動工具 + +scroll_page.title=使用頁面捲動功能 +scroll_page_label=頁面捲動功能 +scroll_vertical.title=使用垂直捲動版面 +scroll_vertical_label=垂直捲動 +scroll_horizontal.title=使用水平捲動版面 +scroll_horizontal_label=水平捲動 +scroll_wrapped.title=使用多頁捲動版面 +scroll_wrapped_label=多頁捲動 + +spread_none.title=不要進行跨頁顯示 +spread_none_label=不跨頁 +spread_odd.title=從奇數頁開始跨頁 +spread_odd_label=奇數跨頁 +spread_even.title=從偶數頁開始跨頁 +spread_even_label=偶數跨頁 + +# Document properties dialog box +document_properties.title=文件內容… +document_properties_label=文件內容… +document_properties_file_name=檔案名稱: +document_properties_file_size=檔案大小: +# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}" +# will be replaced by the PDF file size in kilobytes, respectively in bytes. +document_properties_kb={{size_kb}} KB({{size_b}} 位元組) +# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}" +# will be replaced by the PDF file size in megabytes, respectively in bytes. +document_properties_mb={{size_mb}} MB({{size_b}} 位元組) +document_properties_title=標題: +document_properties_author=作者: +document_properties_subject=主旨: +document_properties_keywords=關鍵字: +document_properties_creation_date=建立日期: +document_properties_modification_date=修改日期: +# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}" +# will be replaced by the creation/modification date, and time, of the PDF file. +document_properties_date_string={{date}} {{time}} +document_properties_creator=建立者: +document_properties_producer=PDF 產生器: +document_properties_version=PDF 版本: +document_properties_page_count=頁數: +document_properties_page_size=頁面大小: +document_properties_page_size_unit_inches=in +document_properties_page_size_unit_millimeters=mm +document_properties_page_size_orientation_portrait=垂直 +document_properties_page_size_orientation_landscape=水平 +document_properties_page_size_name_a3=A3 +document_properties_page_size_name_a4=A4 +document_properties_page_size_name_letter=Letter +document_properties_page_size_name_legal=Legal +# LOCALIZATION NOTE (document_properties_page_size_dimension_string): +# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement and orientation, of the (current) page. +document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}}({{orientation}}) +# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string): +# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by +# the size, respectively their unit of measurement, name, and orientation, of the (current) page. +document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}}({{name}},{{orientation}}) +# LOCALIZATION NOTE (document_properties_linearized): The linearization status of +# the document; usually called "Fast Web View" in English locales of Adobe software. +document_properties_linearized=快速 Web 檢視: +document_properties_linearized_yes=是 +document_properties_linearized_no=否 +document_properties_close=關閉 + +print_progress_message=正在準備列印文件… +# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by +# a numerical per cent value. +print_progress_percent={{progress}}% +print_progress_close=取消 + +# Tooltips and alt text for side panel toolbar buttons +# (the _label strings are alt text for the buttons, the .title strings are +# tooltips) +toggle_sidebar.title=切換側邊欄 +toggle_sidebar_notification2.title=切換側邊欄(包含大綱、附件、圖層的文件) +toggle_sidebar_label=切換側邊欄 +document_outline.title=顯示文件大綱(雙擊展開/摺疊所有項目) +document_outline_label=文件大綱 +attachments.title=顯示附件 +attachments_label=附件 +layers.title=顯示圖層(滑鼠雙擊即可將所有圖層重設為預設狀態) +layers_label=圖層 +thumbs.title=顯示縮圖 +thumbs_label=縮圖 +current_outline_item.title=尋找目前的大綱項目 +current_outline_item_label=目前的大綱項目 +findbar.title=在文件中尋找 +findbar_label=尋找 + +additional_layers=其他圖層 +# LOCALIZATION NOTE (page_landmark): "{{page}}" will be replaced by the page number. +page_landmark=第 {{page}} 頁 +# Thumbnails panel item (tooltip and alt text for images) +# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page +# number. +thumb_page_title=第 {{page}} 頁 +# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page +# number. +thumb_page_canvas=第 {{page}} 頁的縮圖 + +# Find panel button title and messages +find_input.title=尋找 +find_input.placeholder=在文件中搜尋… +find_previous.title=尋找文字前次出現的位置 +find_previous_label=上一個 +find_next.title=尋找文字下次出現的位置 +find_next_label=下一個 +find_highlight=全部強調標示 +find_match_case_label=區分大小寫 +find_match_diacritics_label=符合變音符號 +find_entire_word_label=符合整個字 +find_reached_top=已搜尋至文件頂端,自底端繼續搜尋 +find_reached_bottom=已搜尋至文件底端,自頂端繼續搜尋 +# LOCALIZATION NOTE (find_match_count): The supported plural forms are +# [one|two|few|many|other], with [other] as the default value. +# "{{current}}" and "{{total}}" will be replaced by a number representing the +# index of the currently active find result, respectively a number representing +# the total number of matches in the document. +find_match_count={[ plural(total) ]} +find_match_count[one]=第 {{current}} 筆,共找到 {{total}} 筆 +find_match_count[two]=第 {{current}} 筆,共找到 {{total}} 筆 +find_match_count[few]=第 {{current}} 筆,共找到 {{total}} 筆 +find_match_count[many]=第 {{current}} 筆,共找到 {{total}} 筆 +find_match_count[other]=第 {{current}} 筆,共找到 {{total}} 筆 +# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are +# [zero|one|two|few|many|other], with [other] as the default value. +# "{{limit}}" will be replaced by a numerical value. +find_match_count_limit={[ plural(limit) ]} +find_match_count_limit[zero]=找到超過 {{limit}} 筆 +find_match_count_limit[one]=找到超過 {{limit}} 筆 +find_match_count_limit[two]=找到超過 {{limit}} 筆 +find_match_count_limit[few]=找到超過 {{limit}} 筆 +find_match_count_limit[many]=找到超過 {{limit}} 筆 +find_match_count_limit[other]=找到超過 {{limit}} 筆 +find_not_found=找不到指定文字 + +# Predefined zoom values +page_scale_width=頁面寬度 +page_scale_fit=縮放至頁面大小 +page_scale_auto=自動縮放 +page_scale_actual=實際大小 +# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a +# numerical scale value. +page_scale_percent={{scale}}% + +# Loading indicator messages +loading_error=載入 PDF 時發生錯誤。 +invalid_file_error=無效或毀損的 PDF 檔案。 +missing_file_error=找不到 PDF 檔案。 +unexpected_response_error=伺服器回應未預期的內容。 +rendering_error=描繪頁面時發生錯誤。 + +# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be +# replaced by the modification date, and time, of the annotation. +annotation_date_string={{date}} {{time}} + +# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. +# "{{type}}" will be replaced with an annotation type from a list defined in +# the PDF spec (32000-1:2008 Table 169 – Annotation types). +# Some common types are e.g.: "Check", "Text", "Comment", "Note" +text_annotation_type.alt=[{{type}} 註解] +password_label=請輸入用來開啟此 PDF 檔案的密碼。 +password_invalid=密碼不正確,請再試一次。 +password_ok=確定 +password_cancel=取消 + +printing_not_supported=警告: 此瀏覽器未完整支援列印功能。 +printing_not_ready=警告: 此 PDF 未完成下載以供列印。 +web_fonts_disabled=已停用網路字型 (Web fonts): 無法使用 PDF 內嵌字型。 + +# Editor +editor_free_text2.title=文字 +editor_free_text2_label=文字 +editor_ink2.title=繪圖 +editor_ink2_label=繪圖 + +editor_stamp1.title=新增或編輯圖片 +editor_stamp1_label=新增或編輯圖片 + +free_text2_default_content=開始打字… + +# Editor Parameters +editor_free_text_color=色彩 +editor_free_text_size=大小 +editor_ink_color=色彩 +editor_ink_thickness=線條粗細 +editor_ink_opacity=透​明度 + +editor_stamp_add_image_label=新增圖片 +editor_stamp_add_image.title=新增圖片 + +# Editor aria +editor_free_text2_aria_label=文本編輯器 +editor_ink2_aria_label=圖形編輯器 +editor_ink_canvas_aria_label=使用者建立的圖片 + +# Alt-text dialog +# LOCALIZATION NOTE (editor_alt_text_button_label): Alternative text (alt text) helps +# when people can't see the image. +editor_alt_text_button_label=替代文字 +editor_alt_text_edit_button_label=編輯替代文字 +editor_alt_text_dialog_label=挑選一種 +editor_alt_text_dialog_description=替代文字可協助盲人,或於圖片無法載入時提供說明。 +editor_alt_text_add_description_label=新增描述 +editor_alt_text_add_description_description=用 1-2 句文字描述主題、背景或動作。 +editor_alt_text_cancel_button=取消 +editor_alt_text_save_button=儲存 +# This is a placeholder for the alt text input area +editor_alt_text_textarea.placeholder=例如:「有一位年輕男人坐在桌子前面吃飯」 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitDingbats.pfb b/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitDingbats.pfb new file mode 100644 index 0000000000000000000000000000000000000000..30d52963e281dcd7e6dd70555340fc987d3568ef GIT binary patch literal 29513 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
IPcH43@#`eg2^qqF8*c|6bOiVYX6pGiH#!l)b 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 DiyeX$ literal 0 HcmV?d00001 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitFixedBold.pfb b/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitFixedBold.pfb new file mode 100644 index 0000000000000000000000000000000000000000..cf8e24aee5962ebcf7e4d58d932cc3321f3cdd38 GIT binary patch literal 18055 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 aP{6{BWwy2LU5CmZYCDT$C?nq``+oq(ZGoi# literal 0 HcmV?d00001 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitFixedBoldItalic.pfb b/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitFixedBoldItalic.pfb new file mode 100644 index 0000000000000000000000000000000000000000..d2880017c25716417f837a1c26044a0342fa3f9a GIT binary patch literal 19151 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 M96+?GEz$me0Iy=aZvX%Q literal 0 HcmV?d00001 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitFixedItalic.pfb b/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitFixedItalic.pfb new file mode 100644 index 0000000000000000000000000000000000000000..d71697d4b638737a5545dd0cb28cba8f613e4eec GIT binary patch literal 18746 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 literal 0 HcmV?d00001 diff --git a/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitSerifBold.pfb b/src/main/webapp/js/pdfjs-3.11.174/web/standard_fonts/FoxitSerifBold.pfb new file mode 100644 index 0000000000000000000000000000000000000000..ff7c6ddecf6b689d93823c4c2a8c41e6e058de46 GIT binary patch literal 19395 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