├── .gitattributes ├── .idea ├── Fileview.iml ├── dataSources.local.xml ├── dataSources.xml ├── dataSources │ └── c76c5d35-aff0-4c35-9895-dc8c065e3de8.xml ├── dictionaries │ └── jsonhua.xml ├── encodings.xml ├── misc.xml ├── modules.xml └── workspace.xml ├── Fileview ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── db.sqlite3 ├── file ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── models.cpython-36.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20180613_1639.py │ ├── 0003_filename_classify.py │ ├── 0004_filename_time.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20180613_1639.cpython-36.pyc │ │ ├── 0003_filename_classify.cpython-36.pyc │ │ ├── 0004_filename_time.cpython-36.pyc │ │ └── __init__.cpython-36.pyc ├── models.py ├── tests.py └── views.py ├── manage.py ├── statics ├── css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── common.css │ ├── component.css │ ├── default.css │ ├── main.css │ └── normalize.css ├── filepath │ └── django.pdf ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ └── lato │ │ ├── lato-black.eot │ │ ├── lato-black.svg │ │ ├── lato-black.ttf │ │ ├── lato-black.woff │ │ ├── lato-bold.eot │ │ ├── lato-bold.svg │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.svg │ │ ├── lato-bolditalic.ttf │ │ ├── lato-bolditalic.woff │ │ ├── lato-italic.eot │ │ ├── lato-italic.svg │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-light.eot │ │ ├── lato-light.svg │ │ ├── lato-light.ttf │ │ ├── lato-light.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.svg │ │ ├── lato-regular.ttf │ │ └── lato-regular.woff ├── images │ ├── Thumbs.db │ ├── air-balloon-1.png │ ├── air-balloon-2.png │ ├── captchaCode.jpg │ ├── circle.png │ ├── icon_card.png │ ├── icon_card_grey.png │ ├── icon_change.png │ ├── icon_change_grey.png │ ├── icon_char.png │ ├── icon_char_grey.png │ ├── icon_chara.png │ ├── icon_chara_grey.png │ ├── icon_house.png │ ├── icon_house_grey.png │ ├── icon_rule.png │ ├── icon_rule_grey.png │ ├── icon_source.png │ ├── icon_source_grey.png │ ├── icon_user.png │ ├── icon_user_grey.png │ ├── login-bg.jpg │ ├── login-foot.jpg │ ├── login.png │ ├── logo.png │ └── progress02.png └── js │ ├── DD_belatedPNG.js │ ├── PDFJSInNet │ └── PDFJSInNet │ │ ├── build │ │ ├── pdf.js │ │ └── pdf.worker.js │ │ ├── doc │ │ └── 09.pdf │ │ ├── web.config │ │ └── web │ │ ├── 09.pdf │ │ ├── cmaps │ │ ├── 78-EUC-H.bcmap │ │ ├── 78-EUC-V.bcmap │ │ ├── 78-H.bcmap │ │ ├── 78-RKSJ-H.bcmap │ │ ├── 78-RKSJ-V.bcmap │ │ ├── 78-V.bcmap │ │ ├── 78ms-RKSJ-H.bcmap │ │ ├── 78ms-RKSJ-V.bcmap │ │ ├── 83pv-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-V.bcmap │ │ ├── 90msp-RKSJ-H.bcmap │ │ ├── 90msp-RKSJ-V.bcmap │ │ ├── 90pv-RKSJ-H.bcmap │ │ ├── 90pv-RKSJ-V.bcmap │ │ ├── Add-H.bcmap │ │ ├── Add-RKSJ-H.bcmap │ │ ├── Add-RKSJ-V.bcmap │ │ ├── Add-V.bcmap │ │ ├── Adobe-CNS1-0.bcmap │ │ ├── Adobe-CNS1-1.bcmap │ │ ├── Adobe-CNS1-2.bcmap │ │ ├── Adobe-CNS1-3.bcmap │ │ ├── Adobe-CNS1-4.bcmap │ │ ├── Adobe-CNS1-5.bcmap │ │ ├── Adobe-CNS1-6.bcmap │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ ├── Adobe-GB1-0.bcmap │ │ ├── Adobe-GB1-1.bcmap │ │ ├── Adobe-GB1-2.bcmap │ │ ├── Adobe-GB1-3.bcmap │ │ ├── Adobe-GB1-4.bcmap │ │ ├── Adobe-GB1-5.bcmap │ │ ├── Adobe-GB1-UCS2.bcmap │ │ ├── Adobe-Japan1-0.bcmap │ │ ├── Adobe-Japan1-1.bcmap │ │ ├── Adobe-Japan1-2.bcmap │ │ ├── Adobe-Japan1-3.bcmap │ │ ├── Adobe-Japan1-4.bcmap │ │ ├── Adobe-Japan1-5.bcmap │ │ ├── Adobe-Japan1-6.bcmap │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ ├── Adobe-Korea1-0.bcmap │ │ ├── Adobe-Korea1-1.bcmap │ │ ├── Adobe-Korea1-2.bcmap │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ ├── B5-H.bcmap │ │ ├── B5-V.bcmap │ │ ├── B5pc-H.bcmap │ │ ├── B5pc-V.bcmap │ │ ├── CNS-EUC-H.bcmap │ │ ├── CNS-EUC-V.bcmap │ │ ├── CNS1-H.bcmap │ │ ├── CNS1-V.bcmap │ │ ├── CNS2-H.bcmap │ │ ├── CNS2-V.bcmap │ │ ├── ETHK-B5-H.bcmap │ │ ├── ETHK-B5-V.bcmap │ │ ├── ETen-B5-H.bcmap │ │ ├── ETen-B5-V.bcmap │ │ ├── ETenms-B5-H.bcmap │ │ ├── ETenms-B5-V.bcmap │ │ ├── EUC-H.bcmap │ │ ├── EUC-V.bcmap │ │ ├── Ext-H.bcmap │ │ ├── Ext-RKSJ-H.bcmap │ │ ├── Ext-RKSJ-V.bcmap │ │ ├── Ext-V.bcmap │ │ ├── GB-EUC-H.bcmap │ │ ├── GB-EUC-V.bcmap │ │ ├── GB-H.bcmap │ │ ├── GB-V.bcmap │ │ ├── GBK-EUC-H.bcmap │ │ ├── GBK-EUC-V.bcmap │ │ ├── GBK2K-H.bcmap │ │ ├── GBK2K-V.bcmap │ │ ├── GBKp-EUC-H.bcmap │ │ ├── GBKp-EUC-V.bcmap │ │ ├── GBT-EUC-H.bcmap │ │ ├── GBT-EUC-V.bcmap │ │ ├── GBT-H.bcmap │ │ ├── GBT-V.bcmap │ │ ├── GBTpc-EUC-H.bcmap │ │ ├── GBTpc-EUC-V.bcmap │ │ ├── GBpc-EUC-H.bcmap │ │ ├── GBpc-EUC-V.bcmap │ │ ├── H.bcmap │ │ ├── HKdla-B5-H.bcmap │ │ ├── HKdla-B5-V.bcmap │ │ ├── HKdlb-B5-H.bcmap │ │ ├── HKdlb-B5-V.bcmap │ │ ├── HKgccs-B5-H.bcmap │ │ ├── HKgccs-B5-V.bcmap │ │ ├── HKm314-B5-H.bcmap │ │ ├── HKm314-B5-V.bcmap │ │ ├── HKm471-B5-H.bcmap │ │ ├── HKm471-B5-V.bcmap │ │ ├── HKscs-B5-H.bcmap │ │ ├── HKscs-B5-V.bcmap │ │ ├── Hankaku.bcmap │ │ ├── Hiragana.bcmap │ │ ├── KSC-EUC-H.bcmap │ │ ├── KSC-EUC-V.bcmap │ │ ├── KSC-H.bcmap │ │ ├── KSC-Johab-H.bcmap │ │ ├── KSC-Johab-V.bcmap │ │ ├── KSC-V.bcmap │ │ ├── KSCms-UHC-H.bcmap │ │ ├── KSCms-UHC-HW-H.bcmap │ │ ├── KSCms-UHC-HW-V.bcmap │ │ ├── KSCms-UHC-V.bcmap │ │ ├── KSCpc-EUC-H.bcmap │ │ ├── KSCpc-EUC-V.bcmap │ │ ├── Katakana.bcmap │ │ ├── LICENSE │ │ ├── NWP-H.bcmap │ │ ├── NWP-V.bcmap │ │ ├── RKSJ-H.bcmap │ │ ├── RKSJ-V.bcmap │ │ ├── Roman.bcmap │ │ ├── UniCNS-UCS2-H.bcmap │ │ ├── UniCNS-UCS2-V.bcmap │ │ ├── UniCNS-UTF16-H.bcmap │ │ ├── UniCNS-UTF16-V.bcmap │ │ ├── UniCNS-UTF32-H.bcmap │ │ ├── UniCNS-UTF32-V.bcmap │ │ ├── UniCNS-UTF8-H.bcmap │ │ ├── UniCNS-UTF8-V.bcmap │ │ ├── UniGB-UCS2-H.bcmap │ │ ├── UniGB-UCS2-V.bcmap │ │ ├── UniGB-UTF16-H.bcmap │ │ ├── UniGB-UTF16-V.bcmap │ │ ├── UniGB-UTF32-H.bcmap │ │ ├── UniGB-UTF32-V.bcmap │ │ ├── UniGB-UTF8-H.bcmap │ │ ├── UniGB-UTF8-V.bcmap │ │ ├── UniJIS-UCS2-H.bcmap │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ ├── UniJIS-UCS2-V.bcmap │ │ ├── UniJIS-UTF16-H.bcmap │ │ ├── UniJIS-UTF16-V.bcmap │ │ ├── UniJIS-UTF32-H.bcmap │ │ ├── UniJIS-UTF32-V.bcmap │ │ ├── UniJIS-UTF8-H.bcmap │ │ ├── UniJIS-UTF8-V.bcmap │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ ├── UniJISPro-UCS2-V.bcmap │ │ ├── UniJISPro-UTF8-V.bcmap │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ ├── UniKS-UCS2-H.bcmap │ │ ├── UniKS-UCS2-V.bcmap │ │ ├── UniKS-UTF16-H.bcmap │ │ ├── UniKS-UTF16-V.bcmap │ │ ├── UniKS-UTF32-H.bcmap │ │ ├── UniKS-UTF32-V.bcmap │ │ ├── UniKS-UTF8-H.bcmap │ │ ├── UniKS-UTF8-V.bcmap │ │ ├── V.bcmap │ │ └── WP-Symbol.bcmap │ │ ├── compatibility.js │ │ ├── debugger.js │ │ ├── images │ │ ├── annotation-check.svg │ │ ├── annotation-comment.svg │ │ ├── annotation-help.svg │ │ ├── annotation-insert.svg │ │ ├── annotation-key.svg │ │ ├── annotation-newparagraph.svg │ │ ├── annotation-noicon.svg │ │ ├── annotation-note.svg │ │ ├── annotation-paragraph.svg │ │ ├── findbarButton-next-rtl.png │ │ ├── findbarButton-next-rtl@2x.png │ │ ├── findbarButton-next.png │ │ ├── findbarButton-next@2x.png │ │ ├── findbarButton-previous-rtl.png │ │ ├── findbarButton-previous-rtl@2x.png │ │ ├── findbarButton-previous.png │ │ ├── findbarButton-previous@2x.png │ │ ├── grab.cur │ │ ├── grabbing.cur │ │ ├── loading-icon.gif │ │ ├── loading-small.png │ │ ├── secondaryToolbarButton-documentProperties.png │ │ ├── secondaryToolbarButton-documentProperties@2x.png │ │ ├── secondaryToolbarButton-firstPage.png │ │ ├── secondaryToolbarButton-firstPage@2x.png │ │ ├── secondaryToolbarButton-handTool.png │ │ ├── secondaryToolbarButton-handTool@2x.png │ │ ├── secondaryToolbarButton-lastPage.png │ │ ├── secondaryToolbarButton-lastPage@2x.png │ │ ├── secondaryToolbarButton-rotateCcw.png │ │ ├── secondaryToolbarButton-rotateCcw@2x.png │ │ ├── secondaryToolbarButton-rotateCw.png │ │ ├── secondaryToolbarButton-rotateCw@2x.png │ │ ├── shadow.png │ │ ├── texture.png │ │ ├── toolbarButton-bookmark.png │ │ ├── toolbarButton-bookmark@2x.png │ │ ├── toolbarButton-download.png │ │ ├── toolbarButton-download@2x.png │ │ ├── toolbarButton-menuArrows.png │ │ ├── toolbarButton-menuArrows@2x.png │ │ ├── toolbarButton-openFile.png │ │ ├── toolbarButton-openFile@2x.png │ │ ├── toolbarButton-pageDown-rtl.png │ │ ├── toolbarButton-pageDown-rtl@2x.png │ │ ├── toolbarButton-pageDown.png │ │ ├── toolbarButton-pageDown@2x.png │ │ ├── toolbarButton-pageUp-rtl.png │ │ ├── toolbarButton-pageUp-rtl@2x.png │ │ ├── toolbarButton-pageUp.png │ │ ├── toolbarButton-pageUp@2x.png │ │ ├── toolbarButton-presentationMode.png │ │ ├── toolbarButton-presentationMode@2x.png │ │ ├── toolbarButton-print.png │ │ ├── toolbarButton-print@2x.png │ │ ├── toolbarButton-search.png │ │ ├── toolbarButton-search@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl.png │ │ ├── toolbarButton-secondaryToolbarToggle-rtl@2x.png │ │ ├── toolbarButton-secondaryToolbarToggle.png │ │ ├── toolbarButton-secondaryToolbarToggle@2x.png │ │ ├── toolbarButton-sidebarToggle-rtl.png │ │ ├── toolbarButton-sidebarToggle-rtl@2x.png │ │ ├── toolbarButton-sidebarToggle.png │ │ ├── toolbarButton-sidebarToggle@2x.png │ │ ├── toolbarButton-viewAttachments.png │ │ ├── toolbarButton-viewAttachments@2x.png │ │ ├── toolbarButton-viewOutline-rtl.png │ │ ├── toolbarButton-viewOutline-rtl@2x.png │ │ ├── toolbarButton-viewOutline.png │ │ ├── toolbarButton-viewOutline@2x.png │ │ ├── toolbarButton-viewThumbnail.png │ │ ├── toolbarButton-viewThumbnail@2x.png │ │ ├── toolbarButton-zoomIn.png │ │ ├── toolbarButton-zoomIn@2x.png │ │ ├── toolbarButton-zoomOut.png │ │ └── toolbarButton-zoomOut@2x.png │ │ ├── l10n.js │ │ ├── locale │ │ ├── ach │ │ │ └── viewer.properties │ │ ├── af │ │ │ └── viewer.properties │ │ ├── ak │ │ │ └── viewer.properties │ │ ├── an │ │ │ └── viewer.properties │ │ ├── ar │ │ │ └── viewer.properties │ │ ├── as │ │ │ └── viewer.properties │ │ ├── ast │ │ │ └── viewer.properties │ │ ├── az │ │ │ └── viewer.properties │ │ ├── be │ │ │ └── viewer.properties │ │ ├── bg │ │ │ └── viewer.properties │ │ ├── bn-BD │ │ │ └── viewer.properties │ │ ├── bn-IN │ │ │ └── viewer.properties │ │ ├── br │ │ │ └── viewer.properties │ │ ├── bs │ │ │ └── viewer.properties │ │ ├── ca │ │ │ └── viewer.properties │ │ ├── cs │ │ │ └── viewer.properties │ │ ├── csb │ │ │ └── viewer.properties │ │ ├── cy │ │ │ └── viewer.properties │ │ ├── da │ │ │ └── viewer.properties │ │ ├── de │ │ │ └── viewer.properties │ │ ├── el │ │ │ └── viewer.properties │ │ ├── en-GB │ │ │ └── viewer.properties │ │ ├── en-US │ │ │ └── viewer.properties │ │ ├── en-ZA │ │ │ └── viewer.properties │ │ ├── eo │ │ │ └── viewer.properties │ │ ├── es-AR │ │ │ └── viewer.properties │ │ ├── es-CL │ │ │ └── viewer.properties │ │ ├── es-ES │ │ │ └── viewer.properties │ │ ├── es-MX │ │ │ └── viewer.properties │ │ ├── et │ │ │ └── viewer.properties │ │ ├── eu │ │ │ └── viewer.properties │ │ ├── fa │ │ │ └── viewer.properties │ │ ├── ff │ │ │ └── viewer.properties │ │ ├── fi │ │ │ └── viewer.properties │ │ ├── fr │ │ │ └── viewer.properties │ │ ├── fy-NL │ │ │ └── viewer.properties │ │ ├── ga-IE │ │ │ └── viewer.properties │ │ ├── gd │ │ │ └── viewer.properties │ │ ├── gl │ │ │ └── viewer.properties │ │ ├── gu-IN │ │ │ └── viewer.properties │ │ ├── he │ │ │ └── viewer.properties │ │ ├── hi-IN │ │ │ └── viewer.properties │ │ ├── hr │ │ │ └── viewer.properties │ │ ├── hu │ │ │ └── viewer.properties │ │ ├── hy-AM │ │ │ └── viewer.properties │ │ ├── id │ │ │ └── viewer.properties │ │ ├── is │ │ │ └── viewer.properties │ │ ├── it │ │ │ └── viewer.properties │ │ ├── ja │ │ │ └── viewer.properties │ │ ├── ka │ │ │ └── viewer.properties │ │ ├── kk │ │ │ └── viewer.properties │ │ ├── km │ │ │ └── viewer.properties │ │ ├── kn │ │ │ └── viewer.properties │ │ ├── ko │ │ │ └── viewer.properties │ │ ├── ku │ │ │ └── viewer.properties │ │ ├── lg │ │ │ └── viewer.properties │ │ ├── lij │ │ │ └── viewer.properties │ │ ├── locale.properties │ │ ├── lt │ │ │ └── viewer.properties │ │ ├── lv │ │ │ └── viewer.properties │ │ ├── mai │ │ │ └── viewer.properties │ │ ├── mk │ │ │ └── viewer.properties │ │ ├── ml │ │ │ └── viewer.properties │ │ ├── mn │ │ │ └── viewer.properties │ │ ├── mr │ │ │ └── viewer.properties │ │ ├── ms │ │ │ └── viewer.properties │ │ ├── my │ │ │ └── viewer.properties │ │ ├── nb-NO │ │ │ └── viewer.properties │ │ ├── nl │ │ │ └── viewer.properties │ │ ├── nn-NO │ │ │ └── viewer.properties │ │ ├── nso │ │ │ └── viewer.properties │ │ ├── oc │ │ │ └── viewer.properties │ │ ├── or │ │ │ └── viewer.properties │ │ ├── pa-IN │ │ │ └── viewer.properties │ │ ├── pl │ │ │ └── viewer.properties │ │ ├── pt-BR │ │ │ └── viewer.properties │ │ ├── pt-PT │ │ │ └── viewer.properties │ │ ├── rm │ │ │ └── viewer.properties │ │ ├── ro │ │ │ └── viewer.properties │ │ ├── ru │ │ │ └── viewer.properties │ │ ├── rw │ │ │ └── viewer.properties │ │ ├── sah │ │ │ └── viewer.properties │ │ ├── si │ │ │ └── viewer.properties │ │ ├── sk │ │ │ └── viewer.properties │ │ ├── sl │ │ │ └── viewer.properties │ │ ├── son │ │ │ └── viewer.properties │ │ ├── sq │ │ │ └── viewer.properties │ │ ├── sr │ │ │ └── viewer.properties │ │ ├── sv-SE │ │ │ └── viewer.properties │ │ ├── sw │ │ │ └── viewer.properties │ │ ├── ta-LK │ │ │ └── viewer.properties │ │ ├── ta │ │ │ └── viewer.properties │ │ ├── te │ │ │ └── viewer.properties │ │ ├── th │ │ │ └── viewer.properties │ │ ├── tl │ │ │ └── viewer.properties │ │ ├── tn │ │ │ └── viewer.properties │ │ ├── tr │ │ │ └── viewer.properties │ │ ├── uk │ │ │ └── viewer.properties │ │ ├── ur │ │ │ └── viewer.properties │ │ ├── vi │ │ │ └── viewer.properties │ │ ├── wo │ │ │ └── viewer.properties │ │ ├── xh │ │ │ └── viewer.properties │ │ ├── zh-CN │ │ │ └── viewer.properties │ │ ├── zh-TW │ │ │ └── viewer.properties │ │ └── zu │ │ │ └── viewer.properties │ │ ├── python.pdf │ │ ├── viewer.css │ │ ├── viewer.html │ │ └── viewer.js │ ├── bootstrap.min.js │ ├── custom-file-input.js │ ├── fun.base.js │ ├── jQuery.js │ ├── jquery-3.3.1.min.js │ ├── jquery.min.js │ ├── jquery.nouislider.js │ ├── jquery.nouislider.min.js │ └── script.js └── templates ├── file_list.html ├── file_view.html ├── fileupload.html └── login.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=Python 2 | *.css linguist-language=Python 3 | *.html linguist-language=Python 4 | -------------------------------------------------------------------------------- /.idea/Fileview.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 23 | 24 | 26 | -------------------------------------------------------------------------------- /.idea/dataSources.local.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #@ 7 | ` 8 | 9 | 10 | root 11 | *:fileview 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | mysql 6 | true 7 | true 8 | $PROJECT_DIR$/Fileview/settings.py 9 | com.mysql.jdbc.Driver 10 | jdbc:mysql://127.0.0.1:3306/fileview 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /.idea/dictionaries/jsonhua.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Fileview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/Fileview/__init__.py -------------------------------------------------------------------------------- /Fileview/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/Fileview/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/Fileview/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/Fileview/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/Fileview/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /Fileview/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for Fileview project. 3 | 4 | Generated by 'django-admin startproject' using Django 1.10.2. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/1.10/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/1.10/ref/settings/ 11 | """ 12 | 13 | import os 14 | 15 | # Build paths inside the project like this: os.path.join(BASE_DIR, ...) 16 | from django.conf.global_settings import LOGIN_URL 17 | 18 | BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 19 | 20 | 21 | # Quick-start development settings - unsuitable for production 22 | # See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/ 23 | 24 | # SECURITY WARNING: keep the secret key used in production secret! 25 | SECRET_KEY = 'f=if9%m*s75k$1wml403xmi3$is+e#++82p)9(^%j=w)r-tc-1' 26 | 27 | # SECURITY WARNING: don't run with debug turned on in production! 28 | DEBUG = True 29 | 30 | ALLOWED_HOSTS = [] 31 | 32 | # LOGIN_URL ='/login/' 33 | # Application definition 34 | 35 | INSTALLED_APPS = [ 36 | 'django.contrib.admin', 37 | 'django.contrib.auth', 38 | 'django.contrib.contenttypes', 39 | 'django.contrib.sessions', 40 | 'django.contrib.messages', 41 | 'django.contrib.staticfiles', 42 | 'file', 43 | ] 44 | 45 | MIDDLEWARE = [ 46 | 'django.middleware.security.SecurityMiddleware', 47 | 'django.contrib.sessions.middleware.SessionMiddleware', 48 | 'django.middleware.common.CommonMiddleware', 49 | 'django.middleware.csrf.CsrfViewMiddleware', 50 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 51 | 'django.contrib.messages.middleware.MessageMiddleware', 52 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 53 | ] 54 | 55 | ROOT_URLCONF = 'Fileview.urls' 56 | 57 | TEMPLATES = [ 58 | { 59 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 60 | 'DIRS': ['templates'], 61 | 'APP_DIRS': True, 62 | 'OPTIONS': { 63 | 'context_processors': [ 64 | 'django.template.context_processors.debug', 65 | 'django.template.context_processors.request', 66 | 'django.contrib.auth.context_processors.auth', 67 | 'django.contrib.messages.context_processors.messages', 68 | ], 69 | }, 70 | }, 71 | ] 72 | 73 | WSGI_APPLICATION = 'Fileview.wsgi.application' 74 | 75 | 76 | # Database 77 | # https://docs.djangoproject.com/en/1.10/ref/settings/#databases 78 | 79 | DATABASES = { 80 | 'default': { 81 | 'ENGINE': 'django.db.backends.mysql', 82 | 'NAME': 'fileview', 83 | 'USER':'root', 84 | 'PASSWORD':'', 85 | 'HOST':'127.0.0.1', 86 | 'PORT':'3306', 87 | } 88 | } 89 | 90 | 91 | # Password validation 92 | # https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators 93 | 94 | AUTH_PASSWORD_VALIDATORS = [ 95 | { 96 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 97 | }, 98 | { 99 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 100 | }, 101 | { 102 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 103 | }, 104 | { 105 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 106 | }, 107 | ] 108 | 109 | 110 | # Internationalization 111 | # https://docs.djangoproject.com/en/1.10/topics/i18n/ 112 | 113 | LANGUAGE_CODE = 'en-us' 114 | 115 | TIME_ZONE = 'UTC' 116 | 117 | USE_I18N = True 118 | 119 | USE_L10N = True 120 | 121 | USE_TZ = True 122 | 123 | 124 | # Static files (CSS, JavaScript, Images) 125 | # https://docs.djangoproject.com/en/1.10/howto/static-files/ 126 | 127 | STATIC_URL = '/statics/' 128 | STATICFILES_DIRS = ( 129 | "%s/%s" %(BASE_DIR, "statics"), 130 | ) 131 | 132 | LOGIN_URL = '/login' -------------------------------------------------------------------------------- /Fileview/urls.py: -------------------------------------------------------------------------------- 1 | """Fileview URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/1.10/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: url(r'^$', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.conf.urls import url, include 14 | 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) 15 | """ 16 | from django.conf.urls import url 17 | from django.contrib import admin 18 | from django.contrib.auth import views as auth_views 19 | from django.contrib.auth.decorators import login_required 20 | 21 | from file import views 22 | 23 | urlpatterns = [ 24 | url(r'^admin/', admin.site.urls), 25 | url(r'^loadview$',views.index), 26 | url(r'^fileload$',views.fileload), 27 | url(r'^fileview$',views.fileview),#页面展示 28 | url(r'^queryfile$',views.queryfile), 29 | url(r'^login/$',views.loginManager,), 30 | url(r'^loginVerify$',views.loginVerify), 31 | url(r'^filedown$',views.filedown), 32 | url(r'^keyQuery$',views.keyQuery), 33 | url(r'deletefile$',views.deletefile), 34 | # url(r'^verifyuser$',views.verifyuser), 35 | url(r'^logoutuser$',views.logoutuser) 36 | ] 37 | -------------------------------------------------------------------------------- /Fileview/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for Fileview project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Fileview.settings") 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Document-management 2 | 一个文档管理系统,可在线打开PDF文件。 3 | 4 | 这是一个简易的文件管理系统,支持在线打开PDF文件,需要上传PDF到服务器上,且只支持上传PDF文件。 5 | 使用的技术为Django+PDF.js。 6 | ![login.PNG](https://raw.githubusercontent.com/jsonhua1111/images/master/images/login.PNG) 7 | 使用者下载项目到本地,配置好环境后,需创建一个账户用于登录。 8 | ![upload.PNG](https://raw.githubusercontent.com/jsonhua1111/images/master/images/upload.PNG) 9 | 物理,语文,数学,英语为测试方便,使用者可以自行修改。 10 | ![view.PNG](https://raw.githubusercontent.com/jsonhua1111/images/master/images/view.PNG) 11 | 此页面提供分类,以及关键字模糊查询。 12 | 删除:此处可以判断是否管理员登录,如果管理员登录则会出现删除,一般用户登录不会出现。 13 | 14 | 此项目还有很多不足之处,如管理员注销,并未在前端页面体现出来,只提供了接口。本人不善前端,所以页面非常丑,欢迎大家批评指正。 15 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/db.sqlite3 -------------------------------------------------------------------------------- /file/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/__init__.py -------------------------------------------------------------------------------- /file/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /file/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /file/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /file/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /file/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /file/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class FileConfig(AppConfig): 5 | name = 'file' 6 | -------------------------------------------------------------------------------- /file/migrations/0001_initial.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 2.1 on 2018-08-27 02:31 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | initial = True 9 | 10 | dependencies = [ 11 | ] 12 | 13 | operations = [ 14 | migrations.CreateModel( 15 | name='Filename', 16 | fields=[ 17 | ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), 18 | ('name', models.CharField(max_length=60, unique=True)), 19 | ('classify', models.CharField(default='null', max_length=120)), 20 | ('time', models.CharField(default='null', max_length=60)), 21 | ], 22 | ), 23 | ] 24 | -------------------------------------------------------------------------------- /file/migrations/0002_auto_20180613_1639.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.10.2 on 2018-06-13 08:39 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('file', '0001_initial'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AlterField( 16 | model_name='filename', 17 | name='name', 18 | field=models.CharField(max_length=60, unique=True), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /file/migrations/0003_filename_classify.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.10.2 on 2018-06-26 01:10 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('file', '0002_auto_20180613_1639'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AddField( 16 | model_name='filename', 17 | name='classify', 18 | field=models.CharField(default='null', max_length=120), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /file/migrations/0004_filename_time.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Generated by Django 1.10.2 on 2018-07-11 07:42 3 | from __future__ import unicode_literals 4 | 5 | from django.db import migrations, models 6 | 7 | 8 | class Migration(migrations.Migration): 9 | 10 | dependencies = [ 11 | ('file', '0003_filename_classify'), 12 | ] 13 | 14 | operations = [ 15 | migrations.AddField( 16 | model_name='filename', 17 | name='time', 18 | field=models.CharField(default='null', max_length=60), 19 | ), 20 | ] 21 | -------------------------------------------------------------------------------- /file/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/migrations/__init__.py -------------------------------------------------------------------------------- /file/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/0002_auto_20180613_1639.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/migrations/__pycache__/0002_auto_20180613_1639.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/0003_filename_classify.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/migrations/__pycache__/0003_filename_classify.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/0004_filename_time.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/migrations/__pycache__/0004_filename_time.cpython-36.pyc -------------------------------------------------------------------------------- /file/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/file/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /file/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | #建立文件名表 5 | class Filename(models.Model): 6 | name = models.CharField(max_length=60,null=False,unique=True) 7 | classify = models.CharField(max_length=120,null=False,default="null") 8 | time = models.CharField(max_length=60,null=False,default="null") -------------------------------------------------------------------------------- /file/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Fileview.settings") 7 | try: 8 | from django.core.management import execute_from_command_line 9 | except ImportError: 10 | # The above import may fail for some other reason. Ensure that the 11 | # issue is really that Django is missing to avoid masking other 12 | # exceptions on Python 2. 13 | try: 14 | import django 15 | except ImportError: 16 | raise ImportError( 17 | "Couldn't import Django. Are you sure it's installed and " 18 | "available on your PYTHONPATH environment variable? Did you " 19 | "forget to activate a virtual environment?" 20 | ) 21 | raise 22 | execute_from_command_line(sys.argv) 23 | -------------------------------------------------------------------------------- /statics/css/main.css: -------------------------------------------------------------------------------- 1 | @charset "utf-8"; 2 | html,body{margin:0;padding:0;width:100%;} 3 | body{font-size:12px;font-family: "微软雅黑";color:#333;line-height:160%;background: url(../images/login-bg.jpg) center top repeat-x #FFF;height:100%;} 4 | p,ul,.name,.pwd,dd,h1,h2,h3,form,input,select,textarea{margin:0;padding:0;border:0;font-family:"微软雅黑";line-height:150%;} 5 | ul,li{list-style:none;} 6 | div,p{word-wrap: break-word;} 7 | img{border: none;} 8 | input,button,select,textarea{outline:none} 9 | 10 | /*login*/ 11 | .login{padding:1px 0 0 0;background:url(/statics/images/login-bg.jpg) center top no-repeat #FFF;padding:150px 0 0 0;} 12 | .login input.submit{border:none;font-weight:bold;color:#FFF;margin:25px 0 0 150px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow: #CCC 0px 0px 5px;-moz-box-shadow: #CCC 0px 0px 5px;box-shadow: #CCC 0px 0px 5px;background: #31b6e7;cursor: pointer;} 13 | .login input.submit:hover{background:#ff9229;} 14 | .login input.submit{padding:6px 20px;} 15 | .login .box{position:relative;z-index:100;margin:0 auto;width:700px;height:320px;background:url(../images/login.png) center top no-repeat;} 16 | .login .log{position:relative;width:370px;height:260px;margin:0 auto;padding:90px 0 0 20px;} 17 | .login .logo{height:85px;position:absolute;top:15px;left:180px;width:350px;height:50px;} 18 | .login label{display:inline-block;width:70px;text-align:right;padding-right:20px;vertical-align:middle;} 19 | .login .name{padding:10px 5px;font-size:14px;} 20 | .login .pwd{padding:10px 5px;font-size:14px;} 21 | .login .alt{position:absolute;top:43px;left:260px;font-size:20px;} 22 | .login .text{filter:alpha(opacity=80);-moz-opacity:0.8;opacity:0.8;} 23 | .login .copyright{position:absolute;left:0;width:100%;bottom:-40px;text-align:center;color:#AAA;} 24 | .login .air-balloon{position:absolute;top:-100px;left:-100px;z-index:50;} 25 | .login .air-balloon.ab-1{width:200px;height:191px;background:url(/statics/images/air-balloon-1.png) no-repeat;} 26 | .login .air-balloon.ab-2{width:24px;height:31px;background:url(/statics/images/air-balloon-2.png) no-repeat;} 27 | .login .footer{position: fixed;left:0;bottom:0;z-index:-1;width:100%;height:198px;background:url(../images/login-foot.jpg) center bottom repeat-x;} 28 | .text{border:1px solid #CCC;padding:5px;background-color:#FCFCFC;line-height:14px;width:220px;font-size:12px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow: #CCC 0px 0px 5px;-moz-box-shadow: #CCC 0px 0px 5px;box-shadow: #CCC 0px 0px 5px;border:1px solid #CCC;font-size:12px;} 29 | .text:focus{border:1px solid #31b6e7;background-color:#FFF;-webkit-box-shadow: #CCC 0px 0px 5px;-moz-box-shadow: #CCC 0px 0px 5px;box-shadow: #0178a4 0px 0px 5px;} 30 | .text:hover{background-color:#FFF;} -------------------------------------------------------------------------------- /statics/css/normalize.css: -------------------------------------------------------------------------------- 1 | article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;} -------------------------------------------------------------------------------- /statics/filepath/django.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/filepath/django.pdf -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /statics/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /statics/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /statics/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/Thumbs.db -------------------------------------------------------------------------------- /statics/images/air-balloon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/air-balloon-1.png -------------------------------------------------------------------------------- /statics/images/air-balloon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/air-balloon-2.png -------------------------------------------------------------------------------- /statics/images/captchaCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/captchaCode.jpg -------------------------------------------------------------------------------- /statics/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/circle.png -------------------------------------------------------------------------------- /statics/images/icon_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_card.png -------------------------------------------------------------------------------- /statics/images/icon_card_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_card_grey.png -------------------------------------------------------------------------------- /statics/images/icon_change.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_change.png -------------------------------------------------------------------------------- /statics/images/icon_change_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_change_grey.png -------------------------------------------------------------------------------- /statics/images/icon_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_char.png -------------------------------------------------------------------------------- /statics/images/icon_char_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_char_grey.png -------------------------------------------------------------------------------- /statics/images/icon_chara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_chara.png -------------------------------------------------------------------------------- /statics/images/icon_chara_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_chara_grey.png -------------------------------------------------------------------------------- /statics/images/icon_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_house.png -------------------------------------------------------------------------------- /statics/images/icon_house_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_house_grey.png -------------------------------------------------------------------------------- /statics/images/icon_rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_rule.png -------------------------------------------------------------------------------- /statics/images/icon_rule_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_rule_grey.png -------------------------------------------------------------------------------- /statics/images/icon_source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_source.png -------------------------------------------------------------------------------- /statics/images/icon_source_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_source_grey.png -------------------------------------------------------------------------------- /statics/images/icon_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_user.png -------------------------------------------------------------------------------- /statics/images/icon_user_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/icon_user_grey.png -------------------------------------------------------------------------------- /statics/images/login-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/login-bg.jpg -------------------------------------------------------------------------------- /statics/images/login-foot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/login-foot.jpg -------------------------------------------------------------------------------- /statics/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/login.png -------------------------------------------------------------------------------- /statics/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/logo.png -------------------------------------------------------------------------------- /statics/images/progress02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/images/progress02.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/doc/09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/doc/09.pdf -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web.config: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/09.pdf -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/LICENSE: -------------------------------------------------------------------------------- 1 | %%Copyright: ----------------------------------------------------------- 2 | %%Copyright: Copyright 1990-2009 Adobe Systems Incorporated. 3 | %%Copyright: All rights reserved. 4 | %%Copyright: 5 | %%Copyright: Redistribution and use in source and binary forms, with or 6 | %%Copyright: without modification, are permitted provided that the 7 | %%Copyright: following conditions are met: 8 | %%Copyright: 9 | %%Copyright: Redistributions of source code must retain the above 10 | %%Copyright: copyright notice, this list of conditions and the following 11 | %%Copyright: disclaimer. 12 | %%Copyright: 13 | %%Copyright: Redistributions in binary form must reproduce the above 14 | %%Copyright: copyright notice, this list of conditions and the following 15 | %%Copyright: disclaimer in the documentation and/or other materials 16 | %%Copyright: provided with the distribution. 17 | %%Copyright: 18 | %%Copyright: Neither the name of Adobe Systems Incorporated nor the names 19 | %%Copyright: of its contributors may be used to endorse or promote 20 | %%Copyright: products derived from this software without specific prior 21 | %%Copyright: written permission. 22 | %%Copyright: 23 | %%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 24 | %%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 25 | %%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 26 | %%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 27 | %%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 | %%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 29 | %%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 30 | %%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 31 | %%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 | %%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 33 | %%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 34 | %%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 35 | %%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36 | %%Copyright: ----------------------------------------------------------- 37 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-help.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 16 | 18 | 21 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-key.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-note.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 21 | 28 | 35 | 42 | 43 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/annotation-paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-next@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/findbarButton-previous@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/grab.cur -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/grabbing.cur -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-icon.gif -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/loading-small.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-documentProperties@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-firstPage@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-handTool@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-lastPage@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCcw@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/secondaryToolbarButton-rotateCw@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/shadow.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/texture.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-bookmark@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-download@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-menuArrows@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-openFile@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageDown@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-pageUp@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-presentationMode@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-print@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-search@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-secondaryToolbarToggle@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-sidebarToggle@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewAttachments@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline-rtl@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewOutline@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-viewThumbnail@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomIn@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/images/toolbarButton-zoomOut@2x.png -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ast/viewer.properties: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | 5 | previous.title = Páxina anterior 6 | previous_label = Anterior 7 | next.title = Páxina siguiente 8 | next_label = Siguiente 9 | page_label = Páxina: 10 | page_of = de {{pageCount}} 11 | zoom_out.title = Reducir 12 | zoom_out_label = Reducir 13 | zoom_in.title = Aumentar 14 | zoom_in_label = Aumentar 15 | zoom.title = Tamañu 16 | print.title = Imprentar 17 | print_label = Imprentar 18 | open_file.title = Abrir ficheru 19 | open_file_label = Abrir 20 | download.title = Descargar 21 | download_label = Descargar 22 | bookmark.title = Vista actual (copiar o abrir nuna nueva ventana) 23 | bookmark_label = Vista actual 24 | outline.title = Amosar l'esquema del documentu 25 | outline_label = Esquema del documentu 26 | thumbs.title = Amosar miniatures 27 | thumbs_label = Miniatures 28 | thumb_page_title = Páxina {{page}} 29 | thumb_page_canvas = Miniatura de la páxina {{page}} 30 | error_more_info = Más información 31 | error_less_info = Menos información 32 | error_close = Zarrar 33 | error_message = Mensaxe: {{message}} 34 | error_stack = Pila: {{stack}} 35 | error_file = Ficheru: {{file}} 36 | error_line = Llinia: {{line}} 37 | rendering_error = Hebo un fallu al renderizar la páxina. 38 | page_scale_width = Anchor de la páxina 39 | page_scale_fit = Axuste de la páxina 40 | page_scale_auto = Tamañu automáticu 41 | page_scale_actual = Tamañu actual 42 | loading_error_indicator = Fallu 43 | loading_error = Hebo un fallu al cargar el PDF. 44 | printing_not_supported = Avisu: Imprentar nun tien sofitu téunicu completu nesti navegador. 45 | presentation_mode_label = 46 | presentation_mode.title = 47 | page_rotate_cw.label = 48 | page_rotate_ccw.label = 49 | last_page.label = Dir a la cabera páxina 50 | invalid_file_error = Ficheru PDF inválidu o corruptu. 51 | first_page.label = Dir a la primer páxina 52 | findbar_label = Guetar 53 | findbar.title = Guetar nel documentu 54 | find_previous_label = Anterior 55 | find_previous.title = Alcontrar l'anterior apaición de la fras 56 | find_not_found = Frase non atopada 57 | find_next_label = Siguiente 58 | find_next.title = Alcontrar la siguiente apaición d'esta fras 59 | find_match_case_label = Coincidencia de mayús./minús. 60 | find_label = Guetar: 61 | find_highlight = Remarcar toos 62 | find_reached_top=Algamóse'l principiu del documentu, siguir dende'l final 63 | find_reached_bottom=Algamóse'l final del documentu, siguir dende'l principiu 64 | web_fonts_disabled = Les fontes web tán desactivaes: ye imposible usar les fontes PDF embebíes. 65 | toggle_sidebar_label = Camudar barra llateral 66 | toggle_sidebar.title = Camudar barra llateral 67 | missing_file_error = Nun hai ficheru PDF. 68 | error_version_info = PDF.js v{{version}} (build: {{build}}) 69 | printing_not_ready = Avisu: Esti PDF nun se cargó completamente pa poder imprentase. 70 | text_annotation_type.alt = [Anotación {{type}}] 71 | document_colors_disabled = Los documentos PDF nun tienen permitío usar los sos propios colores: 'Permitir a les páxines elexir los sos propios colores' ta desactivao nel navegador. 72 | tools_label = Ferramientes 73 | tools.title = Ferramientes 74 | password_ok = Aceutar 75 | password_label = Introduz la contraseña p'abrir esti ficheru PDF 76 | password_invalid = Contraseña non válida. Vuelvi a intentalo. 77 | password_cancel = Encaboxar 78 | page_rotate_cw_label = Xirar en sen horariu 79 | page_rotate_cw.title = Xirar en sen horariu 80 | page_rotate_ccw_label = Xirar en sen antihorariu 81 | page_rotate_ccw.title = Xirar en sen antihorariu 82 | last_page_label = Dir a la postrer páxina 83 | last_page.title = Dir a la postrer páxina 84 | hand_tool_enable_label = Activar ferramienta mano 85 | hand_tool_enable.title = Activar ferramienta mano 86 | hand_tool_disable_label = Desactivar ferramienta mano 87 | hand_tool_disable.title = Desactivar ferramienta mano 88 | first_page_label = Dir a la primer páxina 89 | first_page.title = Dir a la primer páxina 90 | document_properties_version = Versión PDF: 91 | document_properties_title = Títulu: 92 | document_properties_subject = Asuntu: 93 | document_properties_producer = Productor PDF: 94 | document_properties_page_count = Númberu de páxines: 95 | document_properties_modification_date = Data de modificación: 96 | document_properties_mb = {{size_mb}} MB ({{size_b}} bytes) 97 | document_properties_label = Propiedaes del documentu… 98 | document_properties_keywords = Pallabres clave: 99 | document_properties_kb = {{size_kb}} KB ({{size_b}} bytes) 100 | document_properties_file_size = Tamañu de ficheru: 101 | document_properties_file_name = Nome de ficheru: 102 | document_properties_date_string = {{date}}, {{time}} 103 | document_properties_creator = Creador: 104 | document_properties_creation_date = Data de creación: 105 | document_properties_close = Zarrar 106 | document_properties_author = Autor: 107 | document_properties.title = Propiedaes del documentu… 108 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/be/viewer.properties: -------------------------------------------------------------------------------- 1 | previous.title = Папярэдняя старонка 2 | previous_label = Папярэдняя 3 | next.title = Наступная старонка 4 | next_label = Наступная 5 | page_label = Старонка: 6 | page_of = з {{pageCount}} 7 | zoom_out.title = Паменшыць 8 | zoom_out_label = Паменшыць 9 | zoom_in.title = Павялічыць 10 | zoom_in_label = Павялічыць 11 | zoom.title = Павялічэнне тэксту 12 | presentation_mode.title = Пераключыцца ў рэжым паказу 13 | presentation_mode_label = Рэжым паказу 14 | open_file.title = Адчыніць файл 15 | open_file_label = Адчыніць 16 | print.title = Друкаваць 17 | print_label = Друкаваць 18 | download.title = Загрузка 19 | download_label = Загрузка 20 | bookmark.title = Цяперашняя праява (скапіяваць або адчыніць у новым акне) 21 | bookmark_label = Цяперашняя праява 22 | tools.title = Прылады 23 | tools_label = Прылады 24 | first_page.title = Перайсці на першую старонку 25 | first_page.label = Перайсці на першую старонку 26 | first_page_label = Перайсці на першую старонку 27 | last_page.title = Перайсці на апошнюю старонку 28 | last_page.label = Перайсці на апошнюю старонку 29 | last_page_label = Перайсці на апошнюю старонку 30 | page_rotate_cw.title = Павярнуць па гадзіннікавай стрэлцы 31 | page_rotate_cw.label = Павярнуць па гадзіннікавай стрэлцы 32 | page_rotate_cw_label = Павярнуць па гадзіннікавай стрэлцы 33 | page_rotate_ccw.title = Павярнуць супраць гадзіннікавай стрэлкі 34 | page_rotate_ccw.label = Павярнуць супраць гадзіннікавай стрэлкі 35 | page_rotate_ccw_label = Павярнуць супраць гадзіннікавай стрэлкі 36 | hand_tool_enable.title = Дазволіць ручную прыладу 37 | hand_tool_enable_label = Дазволіць ручную прыладу 38 | hand_tool_disable.title = Забараніць ручную прыладу 39 | hand_tool_disable_label = Забараніць ручную прыладу 40 | document_properties.title = Уласцівасці дакумента… 41 | document_properties_label = Уласцівасці дакумента… 42 | document_properties_file_name = Назва файла: 43 | document_properties_file_size = Памер файла: 44 | document_properties_kb = {{size_kb}} КБ ({{size_b}} байт) 45 | document_properties_mb = {{size_mb}} МБ ({{size_b}} байт) 46 | document_properties_title = Загаловак: 47 | document_properties_author = Аўтар: 48 | document_properties_subject = Тэма: 49 | document_properties_keywords = Ключавыя словы: 50 | document_properties_creation_date = Дата стварэння: 51 | document_properties_modification_date = Дата змянення: 52 | document_properties_date_string = {{date}}, {{time}} 53 | document_properties_creator = Стваральнік: 54 | document_properties_producer = Вырабнік PDF: 55 | document_properties_version = Версія PDF: 56 | document_properties_page_count = Колькасць старонак: 57 | document_properties_close = Зачыніць 58 | toggle_sidebar.title = Пераключэнне палічкі 59 | toggle_sidebar_label = Пераключыць палічку 60 | outline.title = Паказ будовы дакумента 61 | outline_label = Будова дакумента 62 | attachments.title = Паказаць далучэнні 63 | attachments_label = Далучэнні 64 | thumbs.title = Паказ накідаў 65 | thumbs_label = Накіды 66 | findbar.title = Пошук у дакуменце 67 | findbar_label = Знайсці 68 | thumb_page_title = Старонка {{page}} 69 | thumb_page_canvas = Накід старонкі {{page}} 70 | find_label = Пошук: 71 | find_previous.title = Знайсці папярэдні выпадак выразу 72 | find_previous_label = Папярэдні 73 | find_next.title = Знайсці наступны выпадак выразу 74 | find_next_label = Наступны 75 | find_highlight = Падфарбаваць усе 76 | find_match_case_label = Адрозніваць вялікія/малыя літары 77 | find_reached_top = Дасягнуты пачатак дакумента, працяг з канца 78 | find_reached_bottom = Дасягнуты канец дакумента, працяг з пачатку 79 | find_not_found = Выраз не знойдзены 80 | error_more_info = Падрабязней 81 | error_less_info = Сцісла 82 | error_close = Закрыць 83 | error_version_info = PDF.js в{{version}} (пабудова: {{build}}) 84 | error_message = Паведамленне: {{message}} 85 | error_stack = Стос: {{stack}} 86 | error_file = Файл: {{file}} 87 | error_line = Радок: {{line}} 88 | rendering_error = Здарылася памылка падчас адлюстравання старонкі. 89 | page_scale_width = Шырыня старонкі 90 | page_scale_fit = Уцісненне старонкі 91 | page_scale_auto = Самастойнае павялічэнне 92 | page_scale_actual = Сапраўдны памер 93 | loading_error_indicator = Памылка 94 | loading_error = Здарылася памылка падчас загрузкі PDF. 95 | invalid_file_error = Няспраўны або пашкоджаны файл PDF. 96 | missing_file_error = Адсутны файл PDF. 97 | text_annotation_type.alt = [{{type}} Annotation] 98 | password_label = Увядзіце пароль, каб адчыніць гэты файл PDF. 99 | password_invalid = Крывы пароль. Паспрабуйце зноў. 100 | password_ok = Добра 101 | password_cancel = Скасаваць 102 | printing_not_supported = Папярэджанне: друк не падтрымлівацца цалкам гэтым азіральнікам. 103 | printing_not_ready = Увага: PDF не сцягнуты цалкам для друкавання. 104 | web_fonts_disabled = Шрыфты Сеціва забаронены: немгчыма ўжываць укладзеныя шрыфты PDF. 105 | document_colors_disabled = Дакументам PDF не дазволена карыстацца сваімі ўласнымі колерамі: 'Дазволіць старонкам выбіраць свае ўласныя колеры' абяздзейнена ў азіральніку. 106 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/csb/viewer.properties: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | 5 | # Main toolbar buttons (tooltips and alt text for images) 6 | previous.title=Pòprzédnô strona 7 | previous_label=Pòprzédnô 8 | next.title=Nôslédnô strona 9 | next_label=Nôslédnô 10 | 11 | # LOCALIZATION NOTE (page_label, page_of): 12 | # These strings are concatenated to form the "Page: X of Y" string. 13 | # Do not translate "{{pageCount}}", it will be substituted with a number 14 | # representing the total number of pages. 15 | page_label=Strona: 16 | page_of=z {{pageCount}} 17 | 18 | zoom_out.title=Zmniészë 19 | zoom_out_label=Zmniészë 20 | zoom_in.title=Zwikszë 21 | zoom_in_label=Wiôlgòsc 22 | zoom.title=Wiôlgòsc 23 | print.title=Drëkùjë 24 | print_label=Drëkùjë 25 | presentation_mode.title=Przéńdzë w trib prezentacje 26 | presentation_mode_label=Trib prezentacje 27 | open_file.title=Òtemkni lopk 28 | open_file_label=Òtemkni 29 | download.title=Zladënk 30 | download_label=Zladënk 31 | bookmark.title=Spamiãtôj wëzdrzatk (kòpérëje, abò òtemkni w nowim òknnie) 32 | bookmark_label=Aktualny wëzdrzatk 33 | 34 | find_label=Szëkôj: 35 | find_previous.title=Biéj do pòprzédnégò wënikù szëkbë 36 | find_previous_label=Pòprzédny 37 | find_next.title=Biéj do nôslédnégò wënikù szëkbë 38 | find_next_label=Nôslédny 39 | find_highlight=Pòdszkrzëni wszëtczé 40 | find_match_case_label=Rozeznôwôj miarã lëterów 41 | find_not_found=Nie nalôzł tekstu 42 | find_reached_bottom=Doszedł do kùńca dokùmentu, zaczinającë òd górë 43 | find_reached_top=Doszedł do pòczątkù dokùmentu, zaczinającë òd dołù 44 | 45 | toggle_sidebar.title=Pòsuwk wëbiérkù 46 | toggle_sidebar_label=Pòsuwk wëbiérkù 47 | 48 | outline.title=Wëskrzëni òbcéch dokùmentu 49 | outline_label=Òbcéch dokùmentu 50 | thumbs.title=Wëskrzëni miniaturë 51 | thumbs_label=Miniaturë 52 | findbar.title=Przeszëkôj dokùment 53 | findbar_label=Nalezë 54 | tools_label=Nôrzãdła 55 | first_page.title=Biéj do pierszi stronë 56 | first_page.label=Biéj do pierszi stronë 57 | last_page.label=Biéj do òstatny stronë 58 | invalid_file_error=Lëchi ôrt, abò pòpsëti lopk PDF. 59 | 60 | 61 | 62 | # Thumbnails panel item (tooltip and alt text for images) 63 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 64 | # number. 65 | thumb_page_title=Strona {{page}} 66 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 67 | # number. 68 | thumb_page_canvas=Miniatura stronë {{page}} 69 | 70 | # Error panel labels 71 | error_more_info=Wicy infòrmacje 72 | error_less_info=Mni infòrmacje 73 | error_close=Close 74 | error_version_info=PDF.js v{{version}} (build: {{build}}) 75 | 76 | 77 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 78 | # english string describing the error. 79 | error_message=Message: {{wiadło}} 80 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 81 | # trace. 82 | error_stack=Stack: {{stóg}} 83 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 84 | error_file=File: {{lopk}} 85 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 86 | error_line=Line: {{line}} 87 | rendering_error=Pòkôza sã fela przë renderowanim stronë. 88 | 89 | # Predefined zoom values 90 | page_scale_width=Szérzawa stronë 91 | page_scale_fit=Dopasëje stronã 92 | page_scale_auto=Aùtomatnô wiôlgòsc 93 | page_scale_actual=Naturalnô wiôlgòsc 94 | 95 | # Loading indicator messages 96 | # LOCALIZATION NOTE (error_line): "{{[percent}}" will be replaced with a percentage 97 | loading_error_indicator=Fela 98 | loading_error=Pòkôza sã fela przë wczëtiwanim PDFù. 99 | 100 | # LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. 101 | # "{{[type}}" will be replaced with an annotation type from a list defined in 102 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 103 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 104 | 105 | request_password=PDF je zabezpieczony parolą: 106 | printing_not_supported = Òstrzéga: przezérnik nie je do kùńca wspieróny przez drëkôrze 107 | 108 | # Context menu 109 | page_rotate_cw.label=Òbkrãcë w prawò 110 | page_rotate_ccw.label=Òbkrãcë w lewò 111 | 112 | 113 | last_page.title=Biéj do pòprzédny stronë 114 | last_page_label=Biéj do pòprzédny stronë 115 | page_rotate_cw.title=Òbkrãcë w prawò 116 | page_rotate_cw_label=Òbkrãcë w prawò 117 | page_rotate_ccw.title=Òbkrãcë w lewò 118 | page_rotate_ccw_label=Òbkrãcë w lewò 119 | 120 | 121 | web_fonts_disabled=Sécowé czconczi są wëłączoné: włączë je, bë móc ùżiwac òsadzonëch czconków w lopkach PDF. 122 | 123 | 124 | missing_file_error=Felëje lopka PDF. 125 | printing_not_ready = Òstrzéga: lopk mùszi sã do kùńca wczëtac zanim gò mòże drëkòwac 126 | 127 | document_colors_disabled=Dokùmentë PDF nie mògą ù swòjich farwów: \'Pòzwòlë stronóm wëbierac swòje farwë\' je wëłączoné w przezérnikù. 128 | invalid_password=Lëchô parola. 129 | text_annotation_type.alt=[Adnotacjô {{type}}] 130 | 131 | tools.title=Tools 132 | first_page_label=Go to First Page 133 | 134 | 135 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/el/viewer.properties: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | 5 | # Main toolbar buttons (tooltips and alt text for images) 6 | previous.title=Προηγούμενη σελίδα 7 | previous_label=Προηγούμενη 8 | next.title=Επόμενη σελίδα 9 | next_label=Επόμενη 10 | 11 | # LOCALIZATION NOTE (page_label, page_of): 12 | # These strings are concatenated to form the "Page: X of Y" string. 13 | # Do not translate "{{pageCount}}", it will be substituted with a number 14 | # representing the total number of pages. 15 | page_label=Σελίδα: 16 | page_of= {{pageCount}} 17 | 18 | zoom_out.title=Σμίκρυνση 19 | zoom_out_label=Σμίκρυνση 20 | zoom_in.title=Μεγέθυνση 21 | zoom_in_label=Μεγέθυνση 22 | zoom.title=Μεγέθυνση 23 | print.title=Εκτύπωση 24 | print_label=Εκτύπωση 25 | open_file.title=Άνοιγμα αρχείου 26 | open_file_label=Άνοιγμα 27 | download.title=Λήψη 28 | download_label=Λήψη 29 | bookmark.title=Τρέχουσα προβολή (αντίγραφο ή άνοιγμα σε νέο παράθυρο) 30 | bookmark_label=Τρέχουσα προβολή 31 | 32 | # Tooltips and alt text for side panel toolbar buttons 33 | # (the _label strings are alt text for the buttons, the .title strings are 34 | # tooltips) 35 | outline.title=Προβολή διάρθρωσης κειμένου 36 | outline_label=Διάρθρωση κειμένου 37 | thumbs.title=Προβολή μικρογραφιών 38 | thumbs_label=Μικρογραφίες 39 | 40 | 41 | 42 | # Thumbnails panel item (tooltip and alt text for images) 43 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 44 | # number. 45 | thumb_page_title=Σελίδα {{page}} 46 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 47 | # number. 48 | thumb_page_canvas=Μικρογραφία της σελίδας {{page}} 49 | 50 | first_page.label=Μετάβαση στην πρώτη σελίδα 51 | 52 | # Error panel labels 53 | error_more_info=Περισσότερες πληροφορίες 54 | error_less_info=Λιγότερες πληροφορίες 55 | error_close=Κλείσιμο 56 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 57 | # english string describing the error. 58 | error_message=Μήνυμα: {{message}} 59 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 60 | # trace. 61 | error_stack=Stack: {{stack}} 62 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 63 | error_file=Αρχείο: {{file}} 64 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 65 | error_line=Line: {{line}} 66 | rendering_error=Προέκυψε σφάλμα κατά την ανάλυση της σελίδας. 67 | 68 | # Predefined zoom values 69 | page_scale_width=Πλάτος σελίδας 70 | page_scale_fit=Μέγεθος σελίδας 71 | page_scale_auto=Αυτόματη μεγέθυνση 72 | page_scale_actual=Πραγματικό μέγεθος 73 | 74 | 75 | # Context menu 76 | page_rotate_cw.label=Δεξιόστροφη περιστροφή 77 | page_rotate_ccw.label=Αριστερόστροφη περιστροφή 78 | 79 | presentation_mode.title=Μετάβαση σε λειτουργία παρουσίασης 80 | presentation_mode_label=Λειτουργία παρουσίασης 81 | 82 | # Loading indicator messages 83 | # LOCALIZATION NOTE (error_line): "{{[percent}}" will be replaced with a percentage 84 | 85 | loading_error_indicator=Σφάλμα 86 | loading_error=Προέκυψε ένα σφάλμα κατά τη φόρτωση του PDF. 87 | 88 | request_password=Το PDF προστατεύεται από κωδικό: 89 | 90 | printing_not_supported=Προειδοποίηση: Η εκτύπωση δεν υποστηρίζεται πλήρως από αυτόν τον περιηγητή. 91 | 92 | 93 | 94 | findbar.title=Εύρεση στο έγγραφο 95 | findbar_label=Εύρεση 96 | 97 | 98 | # Find panel button title and messages 99 | find_label=Εύρεση: 100 | find_previous.title=Εύρεση της προηγούμενης εμφάνισης της φράσης 101 | find_previous_label=Προηγούμενο 102 | find_next.title=Εύρεση της επόμενης εμφάνισης της φράσης 103 | find_next_label=Επόμενο 104 | find_highlight=Επισήμανση όλων 105 | find_match_case_label=Ταίριασμα χαρακτήρα 106 | find_reached_top=Έλευση στην αρχή του εγγράφου, συνέχεια από το τέλος 107 | find_reached_bottom=Έλευση στο τέλος του εγγράφου, συνέχεια από την αρχή 108 | find_not_found=Η φράση δεν βρέθηκε 109 | 110 | invalid_file_error=Μη έγκυρο ή κατεστραμμένο αρχείο PDF. 111 | last_page.label=Μετάβαση στη τελευταία σελίδα 112 | 113 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 114 | # replaced by the PDF.JS version and build ID. 115 | error_version_info=PDF.js v{{version}} (build: {{build}}) 116 | 117 | missing_file_error=Λείπει αρχείο PDF. 118 | 119 | 120 | toggle_sidebar.title=Εναλλαγή προβολής πλευρικής στήλης 121 | toggle_sidebar_label=Εναλλαγή προβολής πλευρικής στήλης 122 | 123 | web_fonts_disabled=Οι γραμματοσειρές Web απενεργοποιημένες: αδυναμία χρήσης των ενσωματωμένων γραμματοσειρών PDF. 124 | 125 | printing_not_ready=Προειδοποίηση: Το PDF δεν φορτώθηκε πλήρως για εκτύπωση. 126 | 127 | document_colors_disabled=Δεν επιτρέπεται στα έγγραφα PDF να χρησιμοποιούν τα δικά τους χρώματα: Η επιλογή \'Να επιτρέπεται η χρήση χρωμάτων της σελίδας\' δεν είναι ενεργή στην εφαρμογή. 128 | 129 | invalid_password=Μη έγκυρος κωδικός. 130 | text_annotation_type.alt=[{{type}} Annotation] 131 | 132 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/fa/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=صفحهٔ قبلی 17 | next.title=صفحهٔ بعدی 18 | 19 | # LOCALIZATION NOTE (page_label, page_of): 20 | # These strings are concatenated to form the "Page: X of Y" string. 21 | # Do not translate "{{pageCount}}", it will be substituted with a number 22 | # representing the total number of pages. 23 | page_label=صفحه: 24 | page_of=از {{pageCount}} 25 | 26 | zoom_out.title=کوچک‌نمایی 27 | zoom_out_label=کوچک‌نمایی 28 | zoom_in.title=بزرگ‌نمایی 29 | zoom_in_label=بزرگ‌نمایی 30 | zoom.title=زوم 31 | presentation_mode.title=تغییر به حالت ارائه 32 | presentation_mode_label=حالت ارائه 33 | open_file.title=باز کردن پرونده 34 | open_file_label=باز کردن 35 | print.title=چاپ 36 | print_label=چاپ 37 | download.title=بارگیری 38 | download_label=بارگیری 39 | bookmark.title=نمای فعلی (کپی کن، یا در پنجرۀ دیگری نشان بده) 40 | bookmark_label=نمای فعلی 41 | 42 | # Secondary toolbar and context menu 43 | 44 | # Tooltips and alt text for side panel toolbar buttons 45 | # (the _label strings are alt text for the buttons, the .title strings are 46 | # tooltips) 47 | outline.title=نمایش طرح نوشتار 48 | outline_label=طرح نوشتار 49 | thumbs.title=نمایش تصاویر بندانگشتی 50 | thumbs_label=تصاویر بندانگشتی 51 | findbar_label=پیدا کردن 52 | 53 | # Thumbnails panel item (tooltip and alt text for images) 54 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 55 | # number. 56 | thumb_page_title=صفحه {{page}} 57 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 58 | # number. 59 | thumb_page_canvas=تصویر بند‌ انگشتی صفحه {{page}} 60 | 61 | # Find panel button title and messages 62 | find_previous.title=پیدا کردن رخداد قبلی عبارت 63 | find_next.title=پیدا کردن رخداد بعدی عبارت 64 | find_not_found=عبارت پیدا نشد 65 | 66 | # Error panel labels 67 | error_more_info=اطلاعات بیشتر 68 | error_less_info=اطلاعات کمتر 69 | error_close=بستن 70 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 71 | # replaced by the PDF.JS version and build ID. 72 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 73 | # english string describing the error. 74 | error_message=پیام: {{message}} 75 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 76 | # trace. 77 | error_stack=توده: {{stack}} 78 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 79 | error_file=پرونده: {{file}} 80 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 81 | error_line=سطر: {{line}} 82 | rendering_error=هنگام بارگیری صفحه خطایی رخ داد. 83 | 84 | # Predefined zoom values 85 | page_scale_width=عرض صفحه 86 | page_scale_fit=اندازه کردن صفحه 87 | page_scale_auto=بزرگنمایی خودکار 88 | page_scale_actual=اندازه واقعی‌ 89 | 90 | # Loading indicator messages 91 | loading_error_indicator=خطا 92 | loading_error=هنگام بارگیری پرونده (PDF) خطایی رخ داد. 93 | 94 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 95 | # "{{type}}" will be replaced with an annotation type from a list defined in 96 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 97 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 98 | text_annotation_type.alt=[{{type}} Annotation] 99 | password_ok=تأیید 100 | password_cancel=انصراف 101 | 102 | printing_not_supported=هشدار: قابلیت چاپ به‌طور کامل در این مرورگر پشتیبانی نمی‌شود. 103 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/lg/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=Omuko Ogubadewo 17 | next.title=Omuko Oguddako 18 | 19 | # LOCALIZATION NOTE (page_label, page_of): 20 | # These strings are concatenated to form the "Page: X of Y" string. 21 | # Do not translate "{{pageCount}}", it will be substituted with a number 22 | # representing the total number of pages. 23 | page_label=Omuko: 24 | page_of=ku {{pageCount}} 25 | 26 | zoom_out.title=Zimbulukusa 27 | zoom_out_label=Zimbulukusa 28 | zoom_in.title=Funza Munda 29 | zoom_in_label=Funza Munda 30 | zoom.title=Gezzamu 31 | open_file.title=Bikula Fayiro 32 | open_file_label=Ggulawo 33 | print.title=Fulumya 34 | print_label=Fulumya 35 | download.title=Tikula 36 | download_label=Tikula 37 | bookmark.title=Endabika eriwo (koppa oba gulawo mu diriisa epya) 38 | bookmark_label=Endabika Eriwo 39 | 40 | # Secondary toolbar and context menu 41 | 42 | 43 | # Document properties dialog box 44 | 45 | # Tooltips and alt text for side panel toolbar buttons 46 | # (the _label strings are alt text for the buttons, the .title strings are 47 | # tooltips) 48 | outline.title=Laga Ensalo ze Kiwandiko 49 | outline_label=Ensalo ze Ekiwandiko 50 | thumbs.title=Laga Ekifanyi Mubufunze 51 | thumbs_label=Ekifanyi Mubufunze 52 | findbar_label=Zuula 53 | 54 | # Thumbnails panel item (tooltip and alt text for images) 55 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 56 | # number. 57 | thumb_page_title=Omuko {{page}} 58 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 59 | # number. 60 | thumb_page_canvas=Ekifananyi kyo Omuko Mubufunze {{page}} 61 | 62 | # Find panel button title and messages 63 | find_previous.title=Zuula awayise mukweddamu mumiteddera 64 | find_next.title=Zuula ekidako mukweddamu mumiteddera 65 | find_highlight=Londa byonna 66 | find_not_found=Emiteddera tezuuliddwa 67 | 68 | # Error panel labels 69 | error_more_info=Ebisingawo 70 | error_less_info=Mubumpimpi 71 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 72 | # replaced by the PDF.JS version and build ID. 73 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 74 | # english string describing the error. 75 | error_message=Obubaaka: {{message}} 76 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 77 | # trace. 78 | error_stack=Ebipangiddwa: {{stack}} 79 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 80 | error_file=Fayiro {{file}} 81 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 82 | error_line=Layini: {{line}} 83 | rendering_error=Wabadewo ensobi muku tekawo omuko. 84 | 85 | # Predefined zoom values 86 | page_scale_width=Obugazi bwo Omuko 87 | page_scale_fit=Okutuka kwo Omuko 88 | page_scale_auto=Okwefunza no Kwegeza 89 | page_scale_actual=Obunene Obutufu 90 | 91 | # Loading indicator messages 92 | loading_error_indicator=Ensobi 93 | loading_error=Wabadewo ensobi mukutika PDF. 94 | 95 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 96 | # "{{type}}" will be replaced with an annotation type from a list defined in 97 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 98 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 99 | text_annotation_type.alt=[{{type}} Enyonyola] 100 | password_ok=OK 101 | password_cancel=Sazaamu 102 | 103 | printing_not_supported=Okulaabula: Okulumya empapula tekuwagirwa enonyeso enno. 104 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/lij/viewer.properties: -------------------------------------------------------------------------------- 1 | # This Source Code Form is subject to the terms of the Mozilla Public 2 | # License, v. 2.0. If a copy of the MPL was not distributed with this 3 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 | 5 | previous.title = Pàgina precedénte 6 | previous_label = Precedénte 7 | next.title = Pàgina dòppo 8 | next_label = Pròscima 9 | page_label = Pàgina: 10 | page_of = de {{pageCount}} 11 | zoom_out.title = Diminoìsci zoom 12 | zoom_out_label = Diminoìsci zoom 13 | zoom_in.title = Aoménta zoom 14 | zoom_in_label = Aoménta zoom 15 | zoom.title = Zoom 16 | print.title = Stànpa 17 | print_label = Stànpa 18 | open_file.title = Àrvi file 19 | open_file_label = Àrvi 20 | download.title = Descaregaménto 21 | download_label = Descaregaménto 22 | bookmark.title = Vixón corénte (còpia ò àrvi inte 'n nêuvo barcón) 23 | bookmark_label = Vixón corénte 24 | outline.title = Véddi strutûa documénto 25 | outline_label = Strutûa documénto 26 | thumbs.title = Móstra miniatûe 27 | thumbs_label = Miniatûe 28 | thumb_page_title = Pàgina {{page}} 29 | thumb_page_canvas = Miniatûa da pàgina {{page}} 30 | error_more_info = Ciù informaçioìn 31 | error_less_info = Mêno informaçioìn 32 | error_version_info = PDF.js v{{version}} (build: {{build}}) 33 | error_close = Særa 34 | missing_file_error = O file PDF o no gh'é. 35 | toggle_sidebar.title = Atîva/dizatîva bâra de sciànco 36 | toggle_sidebar_label = Atîva/dizatîva bâra de sciànco 37 | error_message = Mesàggio: {{message}} 38 | error_stack = Stack: {{stack}} 39 | error_file = File: {{file}} 40 | error_line = Lìnia: {{line}} 41 | rendering_error = Gh'é stæto 'n'erô itno rendering da pàgina. 42 | page_scale_width = Larghéssa pàgina 43 | page_scale_fit = Adàtta a una pàgina 44 | page_scale_auto = Zoom aotomàtico 45 | page_scale_actual = Dimenscioìn efetîve 46 | loading_error_indicator = Erô 47 | loading_error = S'é verificòu 'n'erô itno caregaménto do PDF. 48 | printing_not_supported = Atençión: a stànpa a no l'é conpletaménte soportâ da sto navegatô. 49 | 50 | # Context menu 51 | page_rotate_cw.label=Gîa in sénso do reléuio 52 | page_rotate_ccw.label=Gîa in sénso do reléuio a-a revèrsa 53 | 54 | presentation_mode.title=Vànni into mòddo de prezentaçión 55 | presentation_mode_label=Mòddo de prezentaçión 56 | 57 | find_label = Trêuva: 58 | find_previous.title = Trêuva a ripetiçión precedénte do tèsto da çercâ 59 | find_previous_label = Precedénte 60 | find_next.title = Trêuva a ripetiçión dòppo do tèsto da çercâ 61 | find_next_label = Segoénte 62 | find_highlight = Evidénçia 63 | find_match_case_label = Maióscole/minóscole 64 | find_reached_bottom = Razónto l'inìçio da pàgina, contìnoa da-a fìn 65 | find_reached_top = Razónto a fìn da pàgina, contìnoa da l'inìçio 66 | find_not_found = Tèsto no trovòu 67 | findbar.title = Trêuva into documénto 68 | findbar_label = Trêuva 69 | first_page.label = Vànni a-a prìmma pàgina 70 | last_page.label = Vànni a l'ùrtima pàgina 71 | invalid_file_error = O file PDF o l'é no vàlido ò aroinòu. 72 | 73 | web_fonts_disabled = I font do web én dizativæ: inposcìbile adêuviâ i caràteri do PDF. 74 | printing_not_ready = Atençión: o PDF o no l'é ancón caregòu conpletaménte pe-a stànpa. 75 | 76 | document_colors_disabled = No l'é poscìbile adêuviâ i pròpi coî pe-i documénti PDF: l'opçión do navegatô 'Permètti a-e pàgine de çèrne i pròpi coî in càngio de quélli inpostæ' a l'é dizativâ. 77 | text_annotation_type.alt = [Anotaçión: {{type}}] 78 | 79 | first_page.title = Vànni a-a prìmma pàgina 80 | first_page_label = Vànni a-a prìmma pàgina 81 | last_page.title = Vànni a l'ùrtima pàgina 82 | last_page_label = Vànni a l'ùrtima pàgina 83 | page_rotate_ccw.title = Gîa into vèrso antiorâio 84 | page_rotate_ccw_label = Gîa into vèrso antiorâio 85 | page_rotate_cw.title = Gîa into vèrso orâio 86 | page_rotate_cw_label = Gîa into vèrso orâio 87 | tools.title = Struménti 88 | tools_label = Struménti 89 | password_label = Dìmme a paròlla segrêta pe arvî sto file PDF. 90 | password_invalid = Paròlla segrêta sbaliâ. Prêuva tórna. 91 | password_ok = Va bén 92 | password_cancel = Anùlla 93 | 94 | document_properties.title = Propietæ do documénto… 95 | document_properties_label = Propietæ do documénto… 96 | document_properties_file_name = Nómme file: 97 | document_properties_file_size = Dimensción file: 98 | document_properties_kb = {{size_kb}} kB ({{size_b}} byte) 99 | document_properties_mb = {{size_kb}} MB ({{size_b}} byte) 100 | document_properties_title = Tìtolo: 101 | document_properties_author = Aotô: 102 | document_properties_subject = Ogétto: 103 | document_properties_keywords = Paròlle ciâve: 104 | document_properties_creation_date = Dæta creaçión: 105 | document_properties_modification_date = Dæta cangiaménto: 106 | document_properties_date_string = {{date}}, {{time}} 107 | document_properties_creator = Aotô originâle: 108 | document_properties_producer = Produtô PDF: 109 | document_properties_version = Versción PDF: 110 | document_properties_page_count = Contézzo pàgine: 111 | document_properties_close = Særa 112 | 113 | hand_tool_enable.title = Atîva struménto màn 114 | hand_tool_enable_label = Atîva struménto màn 115 | hand_tool_disable.title = Dizatîva struménto màn 116 | hand_tool_disable_label = Dizatîva struménto màn 117 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/mai/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=पछिला पृष्ठ 17 | previous_label=पछिला 18 | next.title=अगिला पृष्ठ 19 | next_label=आगाँ 20 | 21 | # LOCALIZATION NOTE (page_label, page_of): 22 | # These strings are concatenated to form the "Page: X of Y" string. 23 | # Do not translate "{{pageCount}}", it will be substituted with a number 24 | # representing the total number of pages. 25 | page_label=पृष्ठ: 26 | page_of={{pageCount}} क 27 | 28 | zoom_out.title=छोट करू 29 | zoom_out_label=छोट करू 30 | zoom_in.title=पैघ करू 31 | zoom_in_label=जूम इन 32 | zoom.title=छोट-पैघ करू\u0020 33 | presentation_mode.title=प्रस्तुति अवस्थामे जाउ 34 | presentation_mode_label=प्रस्तुति अवस्था 35 | open_file.title=फाइल खोलू 36 | open_file_label=खोलू 37 | print.title=छापू 38 | print_label=छापू 39 | download.title=डाउनलोड 40 | download_label=डाउनलोड 41 | bookmark.title=मोजुदा दृश्य (नव विंडोमे नकल लिअ अथवा खोलू) 42 | bookmark_label=वर्तमान दृश्य 43 | 44 | # Secondary toolbar and context menu 45 | 46 | 47 | # Document properties dialog box 48 | document_properties_title=शीर्षक: 49 | 50 | # Tooltips and alt text for side panel toolbar buttons 51 | # (the _label strings are alt text for the buttons, the .title strings are 52 | # tooltips) 53 | toggle_sidebar.title=स्लाइडर टागल 54 | toggle_sidebar_label=स्लाइडर टागल 55 | outline.title=दस्तावेज आउटलाइन देखाउ 56 | outline_label=दस्तावेज खाका 57 | thumbs.title=लघु-छवि देखाउ 58 | thumbs_label=लघु छवि 59 | findbar.title=दस्तावेजमे ढूँढू 60 | findbar_label=ताकू 61 | 62 | # Thumbnails panel item (tooltip and alt text for images) 63 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 64 | # number. 65 | thumb_page_title=पृष्ठ {{page}} 66 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 67 | # number. 68 | thumb_page_canvas=पृष्ठ {{page}} का लघु-चित्र 69 | 70 | # Find panel button title and messages 71 | find_label=ताकू: 72 | find_previous.title=खोजक पछिला उपस्थिति ताकू 73 | find_previous_label=पछिला 74 | find_next.title=खोजक अगिला उपस्थिति ताकू 75 | find_next_label=आगाँ 76 | find_highlight=सभटा आलोकित करू 77 | find_match_case_label=मिलान स्थिति 78 | find_reached_top=पृष्ठक शीर्ष जाए पहुँचल, तल सँ जारी 79 | find_reached_bottom=पृष्ठक तल मे जाए पहुँचल, शीर्ष सँ जारी 80 | find_not_found=वाकींश नहि भेटल 81 | 82 | # Error panel labels 83 | error_more_info=बेसी सूचना 84 | error_less_info=कम सूचना 85 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 86 | # replaced by the PDF.JS version and build ID. 87 | error_version_info=PDF.js v{{version}} (build: {{build}}) 88 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 89 | # english string describing the error. 90 | error_message=संदेश: {{message}} 91 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 92 | # trace. 93 | error_stack=स्टैक: {{stack}} 94 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 95 | error_file=फ़ाइल: {{file}} 96 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 97 | error_line=पंक्ति: {{line}} 98 | rendering_error=पृष्ठ रेंडरिंगक समय त्रुटि आएल. 99 | 100 | # Predefined zoom values 101 | page_scale_width=पृष्ठ चओड़ाइ 102 | page_scale_fit=पृष्ठ फिट 103 | page_scale_auto=स्वचालित जूम 104 | page_scale_actual=सही आकार 105 | 106 | # Loading indicator messages 107 | loading_error_indicator=त्रुटि 108 | loading_error=पीडीएफ लोड करैत समय एकटा त्रुटि भेल. 109 | invalid_file_error=अमान्य अथवा भ्रष्ट PDF फाइल. 110 | missing_file_error=अनुपस्थित PDF फाइल. 111 | 112 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 113 | # "{{type}}" will be replaced with an annotation type from a list defined in 114 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 115 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 116 | text_annotation_type.alt=[{{type}} Annotation] 117 | password_cancel=रद्द करू\u0020 118 | 119 | printing_not_supported=चेतावनी: ई ब्राउजर पर छपाइ पूर्ण तरह सँ समर्थित नहि अछि. 120 | printing_not_ready=चेतावनी: पीडीएफ छपाइक लेल पूर्ण तरह सँ लोड नहि अछि. 121 | web_fonts_disabled=वेब फॉन्ट्स निष्क्रिय अछि: अंतःस्थापित PDF फान्टसक उपयोगमे असमर्थ. 122 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/mn/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | 17 | # LOCALIZATION NOTE (page_label, page_of): 18 | # These strings are concatenated to form the "Page: X of Y" string. 19 | # Do not translate "{{pageCount}}", it will be substituted with a number 20 | # representing the total number of pages. 21 | 22 | zoom.title=Тэлэлт 23 | open_file.title=Файл нээ 24 | open_file_label=Нээ 25 | 26 | # Secondary toolbar and context menu 27 | 28 | # Tooltips and alt text for side panel toolbar buttons 29 | # (the _label strings are alt text for the buttons, the .title strings are 30 | # tooltips) 31 | findbar_label=Ол 32 | 33 | # Thumbnails panel item (tooltip and alt text for images) 34 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 35 | # number. 36 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 37 | # number. 38 | 39 | # Find panel button title and messages 40 | find_previous.title=Хайлтын өмнөх олдцыг харуулна 41 | find_next.title=Хайлтын дараагийн олдцыг харуулна 42 | find_not_found=Олдсонгүй 43 | 44 | # Error panel labels 45 | error_more_info=Нэмэлт мэдээлэл 46 | error_close=Хаа 47 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 48 | # replaced by the PDF.JS version and build ID. 49 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 50 | # english string describing the error. 51 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 52 | # trace. 53 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 54 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 55 | 56 | # Predefined zoom values 57 | 58 | # Loading indicator messages 59 | loading_error_indicator=Алдаа 60 | 61 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 62 | # "{{type}}" will be replaced with an annotation type from a list defined in 63 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 64 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 65 | 66 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/rw/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=Previous Page 17 | previous_label=Previous 18 | next.title=Next Page 19 | next_label=Next 20 | 21 | # LOCALIZATION NOTE (page_label, page_of): 22 | # These strings are concatenated to form the "Page: X of Y" string. 23 | # Do not translate "{{pageCount}}", it will be substituted with a number 24 | # representing the total number of pages. 25 | page_label=Page: 26 | page_of=of {{pageCount}} 27 | 28 | zoom_out.title=Zoom Out 29 | zoom_out_label=Zoom Out 30 | zoom_in.title=Zoom In 31 | zoom_in_label=Zoom In 32 | zoom.title=Ihindurangano 33 | print.title=Print 34 | print_label=Print 35 | presentation_mode.title=Switch to Presentation Mode 36 | presentation_mode_label=Presentation Mode 37 | open_file.title=Gufungura Dosiye 38 | open_file_label=Gufungura 39 | download.title=Download 40 | download_label=Download 41 | bookmark.title=Current view (copy or open in new window) 42 | bookmark_label=Current View 43 | 44 | # Tooltips and alt text for side panel toolbar buttons 45 | # (the _label strings are alt text for the buttons, the .title strings are 46 | # tooltips) 47 | toggle_sidebar.title=Toggle Sidebar 48 | toggle_sidebar_label=Toggle Sidebar 49 | outline.title=Show Document Outline 50 | outline_label=Document Outline 51 | thumbs.title=Show Thumbnails 52 | thumbs_label=Thumbnails 53 | findbar.title=Find in Document 54 | findbar_label=Gushakisha 55 | 56 | # Thumbnails panel item (tooltip and alt text for images) 57 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 58 | # number. 59 | thumb_page_title=Page {{page}} 60 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 61 | # number. 62 | thumb_page_canvas=Thumbnail of Page {{page}} 63 | 64 | # Context menu 65 | first_page.label=Go to First Page 66 | last_page.label=Go to Last Page 67 | page_rotate_cw.label=Rotate Clockwise 68 | page_rotate_ccw.label=Rotate Counterclockwise 69 | 70 | # Find panel button title and messages 71 | find_label="Gushaka:" 72 | find_previous.title=Gushaka aho uyu murongo ugaruka mbere y'aha 73 | find_previous_label=Previous 74 | find_next.title=Gushaka aho uyu murongo wongera kugaruka 75 | find_next_label=Next 76 | find_highlight=Highlight all 77 | find_match_case_label=Match case 78 | find_reached_top=Reached top of document, continued from bottom 79 | find_reached_bottom=Reached end of document, continued from top 80 | find_not_found=Umurongo ntubonetse 81 | 82 | # Error panel labels 83 | error_more_info=More Information 84 | error_less_info=Less Information 85 | error_close=Gufunga 86 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 87 | # replaced by the PDF.JS version and build ID. 88 | error_version_info=PDF.js v{{version}} (build: {{build}}) 89 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 90 | # english string describing the error. 91 | error_message=Message: {{message}} 92 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 93 | # trace. 94 | error_stack=Stack: {{stack}} 95 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 96 | error_file=File: {{file}} 97 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 98 | error_line=Line: {{line}} 99 | rendering_error=An error occurred while rendering the page. 100 | 101 | # Predefined zoom values 102 | page_scale_width=Page Width 103 | page_scale_fit=Page Fit 104 | page_scale_auto=Automatic Zoom 105 | page_scale_actual=Actual Size 106 | 107 | # Loading indicator messages 108 | loading_error_indicator=Ikosa 109 | loading_error=An error occurred while loading the PDF. 110 | invalid_file_error=Invalid or corrupted PDF file. 111 | missing_file_error=Missing PDF file. 112 | 113 | # LOCALIZATION NOTE (text_annotation_type): This is used as a tooltip. 114 | # "{{type}}" will be replaced with an annotation type from a list defined in 115 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 116 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 117 | text_annotation_type=[{{type}} Annotation] 118 | request_password=PDF is protected by a password: 119 | 120 | printing_not_supported=Warning: Printing is not fully supported by this browser. 121 | printing_not_ready=Warning: The PDF is not fully loaded for printing. 122 | web_fonts_disabled=Web fonts are disabled: unable to use embedded PDF fonts. 123 | web_colors_disabled=Web colors are disabled. 124 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sah/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=Инники сирэй 17 | previous_label=Иннинээҕи 18 | next.title=Аныгыскы сирэй 19 | next_label=Аныгыскы 20 | 21 | # LOCALIZATION NOTE (page_label, page_of): 22 | # These strings are concatenated to form the "Page: X of Y" string. 23 | # Do not translate "{{pageCount}}", it will be substituted with a number 24 | # representing the total number of pages. 25 | page_label=Сирэй: 26 | page_of=мантан {{pageCount}} 27 | 28 | zoom_out.title=Куччат 29 | zoom_out_label=Куччат 30 | zoom_in.title=Улаатыннар 31 | zoom_in_label=Улаатыннар 32 | zoom.title=Улаатыннар 33 | presentation_mode.title=Көрдөрөр эрэсиимҥэ 34 | presentation_mode_label=Көрдөрөр эрэсиим 35 | open_file.title=Билэни арый 36 | open_file_label=Ас 37 | print.title=Бэчээт 38 | print_label=Бэчээт 39 | download.title=Хачайдааһын 40 | download_label=Хачайдааһын 41 | bookmark.title=Билиҥҥи көстүүтэ (хатылаа эбэтэр саҥа түннүккэ арый) 42 | bookmark_label=Билиҥҥи көстүүтэ 43 | 44 | # Secondary toolbar and context menu 45 | 46 | 47 | # Document properties dialog box 48 | document_properties_title=Баһа: 49 | 50 | # Tooltips and alt text for side panel toolbar buttons 51 | # (the _label strings are alt text for the buttons, the .title strings are 52 | # tooltips) 53 | toggle_sidebar.title=Ойоҕос хапталы арый/сап 54 | toggle_sidebar_label=Ойоҕос хапталы арый/сап 55 | outline.title=Дөкүмүөн иһинээҕитин көрдөр 56 | outline_label=Дөкүмүөн иһинээҕитэ 57 | thumbs.title=Ойуучааннары көрдөр 58 | thumbs_label=Ойуучааннар 59 | findbar.title=Дөкүмүөнтэн бул 60 | findbar_label=Бул 61 | 62 | # Thumbnails panel item (tooltip and alt text for images) 63 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 64 | # number. 65 | thumb_page_title=Сирэй {{page}} 66 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 67 | # number. 68 | thumb_page_canvas=Сирэй ойуучаана {{page}} 69 | 70 | # Find panel button title and messages 71 | find_label=Бул: 72 | find_previous.title=Этии тиэкискэ бу иннинээҕи киириитин бул 73 | find_previous_label=Иннинээҕи 74 | find_next.title=Этии тиэкискэ бу кэннинээҕи киириитин бул 75 | find_next_label=Аныгыскы 76 | find_highlight=Барытын сырдатан көрдөр 77 | find_match_case_label=Буукуба улаханын-кыратын араар 78 | find_reached_top=Сирэй үрдүгэр тиийдиҥ, салгыыта аллара 79 | find_reached_bottom=Сирэй бүттэ, үөһэ салҕанна 80 | find_not_found=Этии көстүбэтэ 81 | 82 | # Error panel labels 83 | error_more_info=Сиһилии 84 | error_less_info=Сиһилиитин кистээ 85 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 86 | # replaced by the PDF.JS version and build ID. 87 | error_version_info=PDF.js v{{version}} (хомуйуута: {{build}}) 88 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 89 | # english string describing the error. 90 | error_message=Этии: {{message}} 91 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 92 | # trace. 93 | error_stack=Стeк: {{stack}} 94 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 95 | error_file=Билэ: {{file}} 96 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 97 | error_line=Устуруока: {{line}} 98 | rendering_error=Сирэйи айарга алҕас таҕыста. 99 | 100 | # Predefined zoom values 101 | page_scale_width=Сирэй кэтитинэн 102 | page_scale_fit=Сирэй кээмэйинэн 103 | page_scale_auto=Аптамаатынан 104 | page_scale_actual=Дьиҥнээх кээмэйэ 105 | 106 | # Loading indicator messages 107 | loading_error_indicator=Алҕас 108 | loading_error=PDF-билэни хачайдыырга алҕас таҕыста. 109 | invalid_file_error=Туох эрэ алҕастаах эбэтэр алдьаммыт PDF-билэ. 110 | missing_file_error=PDF-билэ суох. 111 | 112 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 113 | # "{{type}}" will be replaced with an annotation type from a list defined in 114 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 115 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 116 | text_annotation_type.alt=[{{type}} туһунан] 117 | password_cancel=Салҕаама 118 | 119 | printing_not_supported=Сэрэтии: Бу браузер бэчээттиири толору өйөөбөт. 120 | printing_not_ready=Сэрэтии: PDF бэчээттииргэ толору хачайдана илик. 121 | web_fonts_disabled=Ситим-бичиктэр араарыллыахтара: PDF бичиктэрэ кыайан көстүбэттэр. 122 | document_colors_disabled=PDF-дөкүмүөүннэргэ бэйэлэрин өҥнөрүн туттар көҥүллэммэтэ: "Ситим-сирдэр бэйэлэрин өҥнөрүн тутталларын көҥүллүүргэ" диэн браузерга арахса сылдьар эбит. 123 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/si/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=මීට පෙර පිටුව 17 | next.title=මීළඟ පිටුව 18 | 19 | # LOCALIZATION NOTE (page_label, page_of): 20 | # These strings are concatenated to form the "Page: X of Y" string. 21 | # Do not translate "{{pageCount}}", it will be substituted with a number 22 | # representing the total number of pages. 23 | page_label=පිටුව: 24 | page_of={{pageCount}} කින් 25 | 26 | zoom_out.title=කුඩා කරන්න 27 | zoom_out_label=කුඩා කරන්න 28 | zoom_in.title=විශාල කරන්න 29 | zoom_in_label=විශාල කරන්න 30 | zoom.title=විශාලණය 31 | open_file.title=ගොනුව විවෘත කරන්න 32 | open_file_label=විවෘත කරන්න 33 | print.title=මුද්‍රණය 34 | print_label=මුද්‍රණය 35 | download.title=බාගන්න 36 | download_label=බාගන්න 37 | bookmark.title=දැනට ඇති දසුන (පිටපත් කරන්න හෝ නව කවුළුවක විවෘත කරන්න) 38 | bookmark_label=දැනට ඇති දසුන 39 | 40 | # Secondary toolbar and context menu 41 | 42 | 43 | # Document properties dialog box 44 | document_properties_title=සිරස්තලය: 45 | 46 | # Tooltips and alt text for side panel toolbar buttons 47 | # (the _label strings are alt text for the buttons, the .title strings are 48 | # tooltips) 49 | outline.title=ලේඛනයේ පිට මායිම පෙන්වන්න 50 | outline_label=ලේඛනයේ පිට මායිම 51 | thumbs.title=සිඟිති රූ පෙන්වන්න 52 | thumbs_label=සිඟිති රූ 53 | findbar_label=සොයන්න 54 | 55 | # Thumbnails panel item (tooltip and alt text for images) 56 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 57 | # number. 58 | thumb_page_title=පිටුව {{page}} 59 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 60 | # number. 61 | thumb_page_canvas=පිටුවෙ සිඟිත රූව {{page}} 62 | 63 | # Find panel button title and messages 64 | find_previous.title=මේ වාක්‍ය ඛණ්ඩය මීට පෙර යෙදුණු ස්ථානය සොයන්න 65 | find_next.title=මේ වාක්‍ය ඛණ්ඩය මීළඟට යෙදෙන ස්ථානය සොයන්න 66 | find_not_found=ඔබ සෙව් වචන හමු නොවීය 67 | 68 | # Error panel labels 69 | error_more_info=බොහෝ තොරතුරු 70 | error_less_info=අවම තොරතුරු 71 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 72 | # replaced by the PDF.JS version and build ID. 73 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 74 | # english string describing the error. 75 | error_message=පණිවිඩය: {{message}} 76 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 77 | # trace. 78 | error_stack=Stack: {{stack}} 79 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 80 | error_file=ගොනුව: {{file}} 81 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 82 | error_line=පේළිය: {{line}} 83 | rendering_error=පිටුව රෙන්ඩර් විමේදි ගැටලුවක් හට ගැනුණි. 84 | 85 | # Predefined zoom values 86 | page_scale_width=පිටුවේ පළල 87 | page_scale_fit=පිටුවට සුදුසු ලෙස 88 | page_scale_auto=ස්වයංක්‍රීය විශාලණය 89 | page_scale_actual=නියමිත ප්‍රමාණය 90 | 91 | # Loading indicator messages 92 | loading_error_indicator=දෝෂය 93 | loading_error=PDF පූරණය විමේදි දෝෂයක් හට ගැනුණි. 94 | 95 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 96 | # "{{type}}" will be replaced with an annotation type from a list defined in 97 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 98 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 99 | text_annotation_type.alt=[{{type}} විස්තරය] 100 | password_ok=හරි 101 | password_cancel=එපා 102 | 103 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/sw/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=Ukurasa Uliotangulia 17 | previous_label=Iliyotangulia 18 | next.title=Ukurasa Ufuatao 19 | next_label=Ifuatayo 20 | 21 | # LOCALIZATION NOTE (page_label, page_of): 22 | # These strings are concatenated to form the "Page: X of Y" string. 23 | # Do not translate "{{pageCount}}", it will be substituted with a number 24 | # representing the total number of pages. 25 | page_label=Ukurasa: 26 | page_of=ya {{Hesabu ya ukurasa}} 27 | 28 | zoom_out.title=Kuza Nje 29 | zoom_out_label=Kuza Nje 30 | zoom_in.title=Kuza Ndani 31 | zoom_in_label=Kuza Ndani 32 | zoom.title=Kuza 33 | presentation_mode.title=Badili kwa Hali ya Uwasilishaji 34 | presentation_mode_label=Hali ya Uwasilishaji 35 | open_file.title=Fungua Faili 36 | open_file_label=Fungua 37 | print.title=Chapisha 38 | print_label=Chapisha 39 | download.title=Pakua 40 | download_label=Pakua 41 | bookmark.title=Mwonekano wa sasa (nakili au ufungue katika dirisha mpya) 42 | bookmark_label=Mwonekano wa Sasa 43 | 44 | # Secondary toolbar and context menu 45 | 46 | 47 | # Document properties dialog box 48 | document_properties_title=Kichwa: 49 | 50 | # Tooltips and alt text for side panel toolbar buttons 51 | # (the _label strings are alt text for the buttons, the .title strings are 52 | # tooltips) 53 | toggle_sidebar.title=Kibiano cha Upau wa Kando 54 | toggle_sidebar_label=Kibiano cha Upau wa Kando 55 | outline.title=Onyesha Ufupisho wa Waraka 56 | outline_label=Ufupisho wa Waraka 57 | thumbs.title=Onyesha Kijipicha 58 | thumbs_label=Vijipicha 59 | findbar.title=Pata katika Waraka 60 | findbar_label=Tafuta 61 | 62 | # Thumbnails panel item (tooltip and alt text for images) 63 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 64 | # number. 65 | thumb_page_title=Ukurasa {{ukurasa}} 66 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 67 | # number. 68 | thumb_page_canvas=Kijipicha cha ukurasa {{ukurasa}} 69 | 70 | # Find panel button title and messages 71 | find_label=Tafuta: 72 | find_previous.title=Tafuta tukio kabla ya msemo huu 73 | find_previous_label=Iliyotangulia 74 | find_next.title=Tafuta tukio linalofuata la msemo 75 | find_next_label=Ifuatayo 76 | find_highlight=Angazia yote 77 | find_match_case_label=Linganisha herufi 78 | find_reached_top=Imefika juu ya waraka, imeendelea kutoka chini 79 | find_reached_bottom=Imefika mwisho wa waraka, imeendelea kutoka juu 80 | find_not_found=Msemo hukupatikana 81 | 82 | # Error panel labels 83 | error_more_info=Maelezo Zaidi 84 | error_less_info=Maelezo Kidogo 85 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 86 | # replaced by the PDF.JS version and build ID. 87 | error_version_info=PDF.js v{{version}} (jenga: {{build}}) 88 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 89 | # english string describing the error. 90 | error_message=Ujumbe: {{message}} 91 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 92 | # trace. 93 | error_stack=Panganya: {{stack}} 94 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 95 | error_file=Faili: {{faili}} 96 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 97 | error_line=Laini: {{laini}} 98 | rendering_error=Hitilafu lilitokea wajati wa kutoa ukurasa 99 | 100 | # Predefined zoom values 101 | page_scale_width=Upana wa Ukurasa 102 | page_scale_fit=Usawa wa Ukurasa 103 | page_scale_auto=Ukuzaji wa Kiotomatiki 104 | page_scale_actual=Ukubwa Halisi 105 | 106 | # Loading indicator messages 107 | loading_error_indicator=Hitilafu 108 | loading_error=Hitilafu lilitokea wakati wa kupakia PDF. 109 | invalid_file_error=Faili ya PDF isiyohalali au potofu. 110 | missing_file_error=Faili ya PDF isiyopo. 111 | 112 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 113 | # "{{type}}" will be replaced with an annotation type from a list defined in 114 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 115 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 116 | text_annotation_type.alt=[{{type}} Ufafanuzi] 117 | password_ok=SAWA 118 | password_cancel=Ghairi 119 | 120 | printing_not_supported=Onyo: Uchapishaji hauauniwi kabisa kwa kivinjari hiki. 121 | web_fonts_disabled=Fonti za tovuti zimelemazwa: haziwezi kutumia fonti za PDF zilizopachikwa. 122 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/ta-LK/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | 17 | # LOCALIZATION NOTE (page_label, page_of): 18 | # These strings are concatenated to form the "Page: X of Y" string. 19 | # Do not translate "{{pageCount}}", it will be substituted with a number 20 | # representing the total number of pages. 21 | 22 | zoom.title=அளவு 23 | open_file.title=கோப்பினைத் திறக்க 24 | open_file_label=திறக்க 25 | 26 | # Secondary toolbar and context menu 27 | 28 | 29 | # Document properties dialog box 30 | 31 | # Tooltips and alt text for side panel toolbar buttons 32 | # (the _label strings are alt text for the buttons, the .title strings are 33 | # tooltips) 34 | 35 | # Thumbnails panel item (tooltip and alt text for images) 36 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 37 | # number. 38 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 39 | # number. 40 | 41 | # Find panel button title and messages 42 | find_previous.title=இந்த சொற்றொடரின் முன்னைய நிகழ்வை தேடு 43 | find_next.title=இந்த சொற்றொடரின் அடுத்த நிகழ்வைத் தேடு 44 | 45 | # Error panel labels 46 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 47 | # replaced by the PDF.JS version and build ID. 48 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 49 | # english string describing the error. 50 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 51 | # trace. 52 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 53 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 54 | 55 | # Predefined zoom values 56 | 57 | # Loading indicator messages 58 | 59 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 60 | # "{{type}}" will be replaced with an annotation type from a list defined in 61 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 62 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 63 | password_ok=ஆம் 64 | 65 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/tl/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=Naunang Pahina 17 | next.title=Sunod na Pahina 18 | 19 | # LOCALIZATION NOTE (page_label, page_of): 20 | # These strings are concatenated to form the "Page: X of Y" string. 21 | # Do not translate "{{pageCount}}", it will be substituted with a number 22 | # representing the total number of pages. 23 | page_label=Pahina: 24 | page_of=ng {{bilangngPahina}} 25 | 26 | open_file.title=Magbukas ng file 27 | open_file_label=Buksan 28 | bookmark.title=Kasalukuyang tingin (kopyahin o buksan sa bagong window) 29 | bookmark_label=Kasalukuyang tingin 30 | 31 | # Secondary toolbar and context menu 32 | 33 | 34 | # Document properties dialog box 35 | document_properties_title=Pamagat: 36 | 37 | # Tooltips and alt text for side panel toolbar buttons 38 | # (the _label strings are alt text for the buttons, the .title strings are 39 | # tooltips) 40 | outline.title=Ipakita ang banghay ng dokumento 41 | outline_label=Banghay ng dokumento 42 | thumbs.title=Ipakita ang mga Thumbnails 43 | findbar_label=Hanapin 44 | 45 | # Thumbnails panel item (tooltip and alt text for images) 46 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 47 | # number. 48 | thumb_page_title=Pahina {{pahina}} 49 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 50 | # number. 51 | thumb_page_canvas=Thumbnail ng Pahina {{pahina}} 52 | 53 | # Find panel button title and messages 54 | 55 | # Error panel labels 56 | error_more_info=Maraming Inpormasyon 57 | error_less_info=Maikling Inpormasyon 58 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 59 | # replaced by the PDF.JS version and build ID. 60 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 61 | # english string describing the error. 62 | error_message=Mensahe: {{message}} 63 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 64 | # trace. 65 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 66 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 67 | error_line=Linya: { { linya } } 68 | rendering_error=May naganap na pagkakamali habang pagsasalin sa pahina. 69 | 70 | # Predefined zoom values 71 | page_scale_width=Haba ng Pahina 72 | page_scale_fit=ang pahina ay angkop 73 | page_scale_auto=awtomatikong pag-imbulog 74 | 75 | # Loading indicator messages 76 | loading_error=May maling nangyari habang kinakarga ang PDF. 77 | 78 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 79 | # "{{type}}" will be replaced with an annotation type from a list defined in 80 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 81 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 82 | password_ok=OK 83 | 84 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/tn/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | 17 | # LOCALIZATION NOTE (page_label, page_of): 18 | # These strings are concatenated to form the "Page: X of Y" string. 19 | # Do not translate "{{pageCount}}", it will be substituted with a number 20 | # representing the total number of pages. 21 | page_label=Tsebe: 22 | 23 | zoom.title=Zuma/gogela 24 | open_file.title=Bula Faele 25 | open_file_label=Bula 26 | 27 | # Secondary toolbar and context menu 28 | 29 | 30 | # Document properties dialog box 31 | document_properties_file_name=Leina la faele: 32 | document_properties_title=Leina: 33 | 34 | # Tooltips and alt text for side panel toolbar buttons 35 | # (the _label strings are alt text for the buttons, the .title strings are 36 | # tooltips) 37 | findbar_label=Batla 38 | 39 | # Thumbnails panel item (tooltip and alt text for images) 40 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 41 | # number. 42 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 43 | # number. 44 | 45 | # Find panel button title and messages 46 | find_previous.title=Batla tiragalo e e fetileng ya setlhopha sa mafoko 47 | find_next.title=Batla tiragalo e e latelang ya setlhopha sa mafoko 48 | find_not_found=Setlhopha sa mafoko ga se a bonwa 49 | 50 | # Error panel labels 51 | error_more_info=Tshedimosetso e Nngwe 52 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 53 | # replaced by the PDF.JS version and build ID. 54 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 55 | # english string describing the error. 56 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 57 | # trace. 58 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 59 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 60 | 61 | # Predefined zoom values 62 | 63 | # Loading indicator messages 64 | loading_error_indicator=Phoso 65 | 66 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 67 | # "{{type}}" will be replaced with an annotation type from a list defined in 68 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 69 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 70 | password_ok=Siame 71 | password_cancel=Khansela 72 | 73 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/locale/wo/viewer.properties: -------------------------------------------------------------------------------- 1 | # Copyright 2012 Mozilla Foundation 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | 15 | # Main toolbar buttons (tooltips and alt text for images) 16 | previous.title=Xët wi jiitu 17 | previous_label=Bi jiitu 18 | next.title=Xët wi ci topp 19 | next_label=Bi ci topp 20 | 21 | # LOCALIZATION NOTE (page_label, page_of): 22 | # These strings are concatenated to form the "Page: X of Y" string. 23 | # Do not translate "{{pageCount}}", it will be substituted with a number 24 | # representing the total number of pages. 25 | page_label=Xët: 26 | page_of=ci {{pageCount}} 27 | 28 | zoom_out.title=Wàññi 29 | zoom_out_label=Wàññi 30 | zoom_in.title=Yaatal 31 | zoom_in_label=Yaatal 32 | zoom.title=Yambalaŋ 33 | presentation_mode.title=Wañarñil ci anamu wone 34 | presentation_mode_label=Anamu Wone 35 | open_file.title=Ubbi benn dencukaay 36 | open_file_label=Ubbi 37 | print.title=Móol 38 | print_label=Móol 39 | download.title=Yeb yi 40 | download_label=Yeb yi 41 | bookmark.title=Wone bi taxaw (duppi walla ubbi palanteer bu bees) 42 | bookmark_label=Wone bi feeñ 43 | 44 | # Secondary toolbar and context menu 45 | 46 | 47 | # Document properties dialog box 48 | document_properties_title=Bopp: 49 | 50 | # Tooltips and alt text for side panel toolbar buttons 51 | # (the _label strings are alt text for the buttons, the .title strings are 52 | # tooltips) 53 | outline.title=Wone takku yi 54 | outline_label=Takku jukki yi 55 | thumbs.title=Wone nataal yu ndaw yi 56 | thumbs_label=Nataal yu ndaw yi 57 | findbar.title=Gis ci biir jukki bi 58 | findbar_label=Wut 59 | 60 | # Thumbnails panel item (tooltip and alt text for images) 61 | # LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page 62 | # number. 63 | thumb_page_title=Xët {{xët}} 64 | # LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page 65 | # number. 66 | thumb_page_canvas=Wiñet bu xët{{xët}} 67 | 68 | # Find panel button title and messages 69 | find_label=Wut: 70 | find_previous.title=Seet beneen kaddu bu ni mel te jiitu 71 | find_previous_label=Bi jiitu 72 | find_next.title=Seet beneen kaddu bu ni mel 73 | find_next_label=Bi ci topp 74 | find_highlight=Melaxal lépp 75 | find_match_case_label=Sàmm jëmmalin wi 76 | find_reached_top=Jot nañu ndorteel xët wi, kontine dale ko ci suuf 77 | find_reached_bottom=Jot nañu jeexitalu xët wi, kontine ci ndorte 78 | find_not_found=Gisiñu kaddu gi 79 | 80 | # Error panel labels 81 | error_more_info=Xibaar yu gën bari 82 | error_less_info=Xibaar yu gën bari 83 | # LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be 84 | # replaced by the PDF.JS version and build ID. 85 | # LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an 86 | # english string describing the error. 87 | error_message=Bataaxal: {{bataaxal}} 88 | # LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack 89 | # trace. 90 | error_stack=Juug: {{stack}} 91 | # LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename 92 | error_file=Dencukaay: {{file}} 93 | # LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number 94 | error_line=Rëdd : {{line}} 95 | rendering_error=Am njumte bu am bi xët bi di wonewu. 96 | 97 | # Predefined zoom values 98 | page_scale_width=Yaatuwaay bu mët 99 | page_scale_fit=Xët lëmm 100 | page_scale_auto=Yambalaŋ ci saa si 101 | page_scale_actual=Dayo bi am 102 | 103 | # Loading indicator messages 104 | loading_error_indicator=Njumte 105 | loading_error=Am na njumte ci yebum dencukaay PDF bi. 106 | invalid_file_error=Dencukaay PDF bi baaxul walla mu sankar. 107 | 108 | # LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip. 109 | # "{{type}}" will be replaced with an annotation type from a list defined in 110 | # the PDF spec (32000-1:2008 Table 169 – Annotation types). 111 | # Some common types are e.g.: "Check", "Text", "Comment", "Note" 112 | text_annotation_type.alt=[Karmat {{type}}] 113 | password_ok=OK 114 | password_cancel=Neenal 115 | 116 | printing_not_supported=Artu: Joowkat bii nanguwul lool mool. 117 | -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/python.pdf -------------------------------------------------------------------------------- /statics/js/PDFJSInNet/PDFJSInNet/web/viewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eleven-hua/Document-management/a1aae01d40bc84ab910d39806767a4c75b67134d/statics/js/PDFJSInNet/PDFJSInNet/web/viewer.html -------------------------------------------------------------------------------- /statics/js/custom-file-input.js: -------------------------------------------------------------------------------- 1 | /* 2 | By Osvaldas Valutis, www.osvaldas.info 3 | Available for use under the MIT License 4 | */ 5 | 6 | 'use strict'; 7 | 8 | ;( function ( document, window, index ) 9 | { 10 | var inputs = document.querySelectorAll( '.inputfile' ); 11 | Array.prototype.forEach.call( inputs, function( input ) 12 | { 13 | var label = input.nextElementSibling, 14 | labelVal = label.innerHTML; 15 | 16 | input.addEventListener( 'change', function( e ) 17 | { 18 | var fileName = ''; 19 | if( this.files && this.files.length > 1 ) 20 | fileName = ( this.getAttribute( 'data-multiple-caption' ) || '' ).replace( '{count}', this.files.length ); 21 | else 22 | fileName = e.target.value.split( '\\' ).pop(); 23 | 24 | if( fileName ) 25 | label.querySelector( 'span' ).innerHTML = fileName; 26 | else 27 | label.innerHTML = labelVal; 28 | }); 29 | 30 | // Firefox bug fix 31 | input.addEventListener( 'focus', function(){ input.classList.add( 'has-focus' ); }); 32 | input.addEventListener( 'blur', function(){ input.classList.remove( 'has-focus' ); }); 33 | }); 34 | }( document, window, 0 )); -------------------------------------------------------------------------------- /statics/js/fun.base.js: -------------------------------------------------------------------------------- 1 | ;function rand(mi,ma){ 2 | var range = ma - mi; 3 | var out = mi + Math.round( Math.random() * range) ; 4 | return parseInt(out); 5 | }; 6 | 7 | function getViewSize(){ 8 | var de=document.documentElement; 9 | var db=document.body; 10 | var viewW=de.clientWidth==0 ? db.clientWidth : de.clientWidth; 11 | var viewH=de.clientHeight==0 ? db.clientHeight : de.clientHeight; 12 | return Array(viewW,viewH); 13 | } -------------------------------------------------------------------------------- /statics/js/script.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | airBalloon('div.air-balloon'); 3 | }); 4 | 5 | /* 6 | @function 热气球移动 7 | @update by julying , 2012/7/25 8 | */ 9 | function airBalloon(balloon){ 10 | var viewSize = [] , viewWidth = 0 , viewHeight = 0 ; 11 | resize(); 12 | $(balloon).each(function(){ 13 | $(this).css({top: rand(40, viewHeight * 0.5 ) , left : rand( 10 , viewWidth - $(this).width() ) }); 14 | fly(this); 15 | }); 16 | $(window).resize(function(){ 17 | resize() 18 | $(balloon).each(function(){ 19 | $(this).stop().animate({top: rand(40, viewHeight * 0.5 ) , left : rand( 10 , viewWidth - $(this).width() ) } ,1000 , function(){ 20 | fly(this); 21 | }); 22 | }); 23 | }); 24 | function resize(){ 25 | viewSize = getViewSize(); 26 | viewWidth = $(document).width() ; 27 | viewHeight = viewSize[1] ; 28 | } 29 | function fly(obj){ 30 | var $obj = $(obj); 31 | var currentTop = parseInt($obj.css('top')); 32 | var currentLeft = parseInt($obj.css('left') ); 33 | var targetLeft = rand( 10 , viewWidth - $obj.width() ); 34 | var targetTop = rand(40, viewHeight /2 ); 35 | /*求两点之间的距离*/ 36 | var removing = Math.sqrt( Math.pow( targetLeft - currentLeft , 2 ) + Math.pow( targetTop - currentTop , 2 ) ); 37 | /*每秒移动24px ,计算所需要的时间,从而保持 气球的速度恒定*/ 38 | var moveTime = removing / 24; 39 | $obj.animate({ top : targetTop , left : targetLeft} , moveTime * 1000 , function(){ 40 | setTimeout(function(){ 41 | fly(obj); 42 | }, rand(1000, 3000) ); 43 | }); 44 | } 45 | }; -------------------------------------------------------------------------------- /templates/file_view.html: -------------------------------------------------------------------------------- 1 | {% load static %} 2 | 3 | 4 | 5 | 6 | Title 7 | 8 | 9 | 我是一只喵喵喵 10 | 11 | 12 | -------------------------------------------------------------------------------- /templates/fileupload.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | {# #} 6 | 7 | 文件上传 8 | 9 | 10 | 11 | 34 | 35 | 36 | 37 | 38 | 39 |
40 |
41 |
42 |
43 | 44 | 45 |
46 | {% csrf_token %} 47 | 物理
48 | 语文
49 | 数学
50 | 英语
51 |
52 | 53 | 54 |

55 |
56 |
57 |
58 |
59 |
60 | 61 | 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 管理员登录 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | 16 |
17 |
18 |
19 | 20 |
21 |
22 | 23 | 24 | 25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | 33 |
34 | 35 | 36 | 37 | 38 | 39 | 69 | 70 | 71 | 72 | 76 | 77 | 78 | --------------------------------------------------------------------------------