Merge branch 'develop' into feature/meal-planning
@ -19,3 +19,8 @@ POSTGRES_DB=djangodb
|
||||
# provided that include an additional nxginx container to handle media file serving.
|
||||
# If you know what you are doing turn this back on (1) to serve media files using djangos serve() method.
|
||||
GUNICORN_MEDIA=0
|
||||
|
||||
|
||||
# allow authentication via reverse proxy (e.g. authelia), leave of if you dont know what you are doing
|
||||
# docs: https://github.com/vabene1111/recipes/tree/develop/docs/docker/nginx-proxy%20with%20proxy%20authentication
|
||||
REVERSE_PROXY_AUTH=0
|
||||
|
15
.github/ISSUE_TEMPLATE/bug_report.md
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
name: Bug report
|
||||
about: Create a report to help us improve
|
||||
title: ''
|
||||
labels: ''
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Version
|
||||
Please provide your current version (can be found on the system page since v0.8.4)
|
||||
Version:
|
||||
|
||||
### Bug description
|
||||
A clear and concise description of what the bug is.
|
20
.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
27
.github/ISSUE_TEMPLATE/help-request.md
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
---
|
||||
name: Help request
|
||||
about: If there is anything wrong with your setup
|
||||
title: ''
|
||||
labels: setup issue
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
### Version
|
||||
Please provide your current version (can be found on the system page since v0.8.4)
|
||||
Version:
|
||||
|
||||
### Issue
|
||||
Please describe your problem here
|
||||
|
||||
### `.env`
|
||||
Please include your `.env` config file (**make sure to remove/replace all secrets**)
|
||||
```
|
||||
env content
|
||||
```
|
||||
|
||||
### `docker-compose.yml`
|
||||
When running with docker compose please provide your `docker-compose.yml`
|
||||
```
|
||||
docker-compose.yml content
|
||||
```
|
8
.github/workflows/docker-publish-dev.yml
vendored
@ -10,6 +10,14 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Update version file
|
||||
uses: DamianReeves/write-file-action@v1.0
|
||||
with:
|
||||
path: recipes/version.py
|
||||
contents: |
|
||||
VERSION_NUMBER = 'develop'
|
||||
BUILD_REF = '${{ github.sha }}'
|
||||
write-mode: overwrite
|
||||
- name: Publish to Registry
|
||||
uses: elgohr/Publish-Docker-Github-Action@2.13
|
||||
with:
|
||||
|
15
.github/workflows/docker-publish-latest.yml
vendored
@ -1,14 +1,25 @@
|
||||
name: publish latest image docker
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Get version number
|
||||
id: get_version
|
||||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
||||
- name: Update version file
|
||||
uses: DamianReeves/write-file-action@v1.0
|
||||
with:
|
||||
path: recipes/version.py
|
||||
contents: |
|
||||
VERSION_NUMBER = '${{ steps.get_version.outputs.VERSION }}'
|
||||
BUILD_REF = '${{ github.sha }}'
|
||||
write-mode: overwrite
|
||||
- name: Build and publish image
|
||||
uses: ilteoood/docker_buildx@master
|
||||
with:
|
||||
|
40
.github/workflows/docker-publish-release.yml
vendored
@ -7,19 +7,27 @@ on:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
name: Build image job
|
||||
steps:
|
||||
- name: Checkout master
|
||||
uses: actions/checkout@master#
|
||||
- name: Get the version
|
||||
id: get_version
|
||||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
||||
- name: Build and publish image
|
||||
uses: ilteoood/docker_buildx@master
|
||||
with:
|
||||
publish: true
|
||||
imageName: vabene1111/recipes
|
||||
tag: ${{ steps.get_version.outputs.VERSION }}
|
||||
dockerHubUser: ${{ secrets.DOCKER_USERNAME }}
|
||||
dockerHubPassword: ${{ secrets.DOCKER_PASSWORD }}
|
||||
runs-on: ubuntu-latest
|
||||
name: Build image job
|
||||
steps:
|
||||
- name: Checkout master
|
||||
uses: actions/checkout@master#
|
||||
- name: Get version number
|
||||
id: get_version
|
||||
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
|
||||
- name: Update version file
|
||||
uses: DamianReeves/write-file-action@v1.0
|
||||
with:
|
||||
path: recipes/version.py
|
||||
contents: |
|
||||
VERSION_NUMBER = '${{ steps.get_version.outputs.VERSION }}'
|
||||
BUILD_REF = '${{ github.sha }}'
|
||||
write-mode: overwrite
|
||||
- name: Build and publish image
|
||||
uses: ilteoood/docker_buildx@master
|
||||
with:
|
||||
publish: true
|
||||
imageName: vabene1111/recipes
|
||||
tag: ${{ steps.get_version.outputs.VERSION }}
|
||||
dockerHubUser: ${{ secrets.DOCKER_USERNAME }}
|
||||
dockerHubPassword: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
@ -1,4 +1,5 @@
|
||||
import base64
|
||||
import io
|
||||
import os
|
||||
from datetime import datetime
|
||||
|
||||
@ -90,14 +91,14 @@ class Dropbox(Provider):
|
||||
return response['url']
|
||||
|
||||
@staticmethod
|
||||
def get_base64_file(recipe):
|
||||
def get_file(recipe):
|
||||
if not recipe.link:
|
||||
recipe.link = Dropbox.get_share_link(recipe)
|
||||
recipe.save()
|
||||
|
||||
response = requests.get(recipe.link.replace('www.dropbox.', 'dl.dropboxusercontent.'))
|
||||
|
||||
return base64.b64encode(response.content)
|
||||
return io.BytesIO(response.content)
|
||||
|
||||
@staticmethod
|
||||
def rename_file(recipe, new_name):
|
||||
|
@ -1,4 +1,5 @@
|
||||
import base64
|
||||
import io
|
||||
import os
|
||||
import tempfile
|
||||
from datetime import datetime
|
||||
@ -85,18 +86,17 @@ class Nextcloud(Provider):
|
||||
return Nextcloud.create_share_link(recipe)
|
||||
|
||||
@staticmethod
|
||||
def get_base64_file(recipe):
|
||||
def get_file(recipe):
|
||||
client = Nextcloud.get_client(recipe.storage)
|
||||
|
||||
tmp_file_path = tempfile.gettempdir() + '/' + recipe.name + '.pdf'
|
||||
|
||||
client.download_file(remote_path=recipe.file_path, local_path=tmp_file_path)
|
||||
|
||||
val = base64.b64encode(open(tmp_file_path, 'rb').read())
|
||||
|
||||
file = io.BytesIO(open(tmp_file_path, 'rb').read())
|
||||
os.remove(tmp_file_path)
|
||||
|
||||
return val
|
||||
return file
|
||||
|
||||
@staticmethod
|
||||
def rename_file(recipe, new_name):
|
||||
|
@ -12,7 +12,7 @@ class Provider:
|
||||
raise Exception('Method not implemented in storage provider')
|
||||
|
||||
@staticmethod
|
||||
def get_base64_file(recipe):
|
||||
def get_file(recipe):
|
||||
raise Exception('Method not implemented in storage provider')
|
||||
|
||||
@staticmethod
|
||||
|
1
cookbook/static/js/pdf.min.js
vendored
11
cookbook/static/pdfjs/images/annotation-check.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="40"
|
||||
height="40"
|
||||
viewBox="0 0 40 40">
|
||||
<path
|
||||
d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z"
|
||||
id="path4"
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 415 B |
16
cookbook/static/pdfjs/images/annotation-comment.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
height="40"
|
||||
width="40"
|
||||
viewBox="0 0 40 40">
|
||||
<rect
|
||||
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
width="33.76017"
|
||||
height="33.76017"
|
||||
x="3.119915"
|
||||
y="3.119915" />
|
||||
<path
|
||||
d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
|
||||
</svg>
|
After Width: | Height: | Size: 883 B |
26
cookbook/static/pdfjs/images/annotation-help.svg
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="40"
|
||||
height="40"
|
||||
viewBox="0 0 40 40">
|
||||
<g
|
||||
transform="translate(0,-60)"
|
||||
id="layer1">
|
||||
<rect
|
||||
width="36.460953"
|
||||
height="34.805603"
|
||||
x="1.7695236"
|
||||
y="62.597198"
|
||||
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" />
|
||||
<g
|
||||
transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)">
|
||||
<path
|
||||
d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.1 KiB |
10
cookbook/static/pdfjs/images/annotation-insert.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="64"
|
||||
height="64"
|
||||
viewBox="0 0 64 64">
|
||||
<path
|
||||
d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z"
|
||||
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</svg>
|
After Width: | Height: | Size: 408 B |
11
cookbook/static/pdfjs/images/annotation-key.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="64"
|
||||
height="64"
|
||||
viewBox="0 0 64 64">
|
||||
<path
|
||||
d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z"
|
||||
id="path604"
|
||||
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.4 KiB |
11
cookbook/static/pdfjs/images/annotation-newparagraph.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="64"
|
||||
height="64"
|
||||
viewBox="0 0 64 64">
|
||||
<path
|
||||
d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z"
|
||||
id="path2985"
|
||||
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
</svg>
|
After Width: | Height: | Size: 426 B |
7
cookbook/static/pdfjs/images/annotation-noicon.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="40"
|
||||
height="40"
|
||||
viewBox="0 0 40 40">
|
||||
</svg>
|
After Width: | Height: | Size: 158 B |
42
cookbook/static/pdfjs/images/annotation-note.svg
Normal file
@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="40"
|
||||
height="40"
|
||||
viewBox="0 0 40 40">
|
||||
<rect
|
||||
width="36.075428"
|
||||
height="31.096582"
|
||||
x="1.962286"
|
||||
y="4.4517088"
|
||||
id="rect4"
|
||||
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.23004246;stroke-opacity:1" />
|
||||
<rect
|
||||
width="27.96859"
|
||||
height="1.5012145"
|
||||
x="6.0157046"
|
||||
y="10.285"
|
||||
id="rect6"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
width="27.96859"
|
||||
height="0.85783684"
|
||||
x="6.0157056"
|
||||
y="23.21689"
|
||||
id="rect8"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
width="27.96859"
|
||||
height="0.85783684"
|
||||
x="5.8130345"
|
||||
y="28.964394"
|
||||
id="rect10"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none" />
|
||||
<rect
|
||||
width="27.96859"
|
||||
height="0.85783684"
|
||||
x="6.0157046"
|
||||
y="17.426493"
|
||||
id="rect12"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
16
cookbook/static/pdfjs/images/annotation-paragraph.svg
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="40"
|
||||
height="40"
|
||||
viewBox="0 0 40 40">
|
||||
<rect
|
||||
width="33.76017"
|
||||
height="33.76017"
|
||||
x="3.119915"
|
||||
y="3.119915"
|
||||
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
||||
<path
|
||||
d="m 17.692678,34.50206 0,-16.182224 c -1.930515,-0.103225 -3.455824,-0.730383 -4.57593,-1.881473 -1.12011,-1.151067 -1.680164,-2.619596 -1.680164,-4.405591 0,-1.992435 0.621995,-3.5796849 1.865988,-4.7617553 1.243989,-1.1820288 3.06352,-1.7730536 5.458598,-1.7730764 l 9.802246,0 0,2.6789711 -2.229895,0 0,26.3251486 -2.632515,0 0,-26.3251486 -3.45324,0 0,26.3251486 z"
|
||||
style="font-size:29.42051125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.07795751;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
BIN
cookbook/static/pdfjs/images/findbarButton-next.png
Normal file
After Width: | Height: | Size: 193 B |
BIN
cookbook/static/pdfjs/images/findbarButton-next@2x.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
cookbook/static/pdfjs/images/findbarButton-previous.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
cookbook/static/pdfjs/images/findbarButton-previous@2x.png
Normal file
After Width: | Height: | Size: 304 B |
BIN
cookbook/static/pdfjs/images/grab.cur
Normal file
After Width: | Height: | Size: 326 B |
BIN
cookbook/static/pdfjs/images/grabbing.cur
Normal file
After Width: | Height: | Size: 326 B |
BIN
cookbook/static/pdfjs/images/loading-icon.gif
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
cookbook/static/pdfjs/images/loading-small.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
cookbook/static/pdfjs/images/loading-small@2x.png
Normal file
After Width: | Height: | Size: 16 KiB |
After Width: | Height: | Size: 403 B |
After Width: | Height: | Size: 933 B |
After Width: | Height: | Size: 179 B |
After Width: | Height: | Size: 266 B |
BIN
cookbook/static/pdfjs/images/secondaryToolbarButton-handTool.png
Normal file
After Width: | Height: | Size: 301 B |
After Width: | Height: | Size: 583 B |
BIN
cookbook/static/pdfjs/images/secondaryToolbarButton-lastPage.png
Normal file
After Width: | Height: | Size: 175 B |
After Width: | Height: | Size: 276 B |
After Width: | Height: | Size: 360 B |
After Width: | Height: | Size: 731 B |
BIN
cookbook/static/pdfjs/images/secondaryToolbarButton-rotateCw.png
Normal file
After Width: | Height: | Size: 359 B |
After Width: | Height: | Size: 714 B |
After Width: | Height: | Size: 218 B |
After Width: | Height: | Size: 332 B |
After Width: | Height: | Size: 228 B |
After Width: | Height: | Size: 349 B |
After Width: | Height: | Size: 297 B |
After Width: | Height: | Size: 490 B |
After Width: | Height: | Size: 461 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 347 B |
After Width: | Height: | Size: 694 B |
After Width: | Height: | Size: 179 B |
After Width: | Height: | Size: 261 B |
After Width: | Height: | Size: 344 B |
After Width: | Height: | Size: 621 B |
BIN
cookbook/static/pdfjs/images/shadow.png
Normal file
After Width: | Height: | Size: 290 B |
BIN
cookbook/static/pdfjs/images/texture.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
cookbook/static/pdfjs/images/toolbarButton-bookmark.png
Normal file
After Width: | Height: | Size: 174 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-bookmark@2x.png
Normal file
After Width: | Height: | Size: 260 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-download.png
Normal file
After Width: | Height: | Size: 259 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-download@2x.png
Normal file
After Width: | Height: | Size: 425 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-menuArrows.png
Normal file
After Width: | Height: | Size: 107 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-menuArrows@2x.png
Normal file
After Width: | Height: | Size: 152 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-openFile.png
Normal file
After Width: | Height: | Size: 295 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-openFile@2x.png
Normal file
After Width: | Height: | Size: 550 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-pageDown.png
Normal file
After Width: | Height: | Size: 238 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-pageDown@2x.png
Normal file
After Width: | Height: | Size: 396 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-pageUp.png
Normal file
After Width: | Height: | Size: 246 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-pageUp@2x.png
Normal file
After Width: | Height: | Size: 403 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-presentationMode.png
Normal file
After Width: | Height: | Size: 321 B |
After Width: | Height: | Size: 586 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-print.png
Normal file
After Width: | Height: | Size: 257 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-print@2x.png
Normal file
After Width: | Height: | Size: 464 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-search.png
Normal file
After Width: | Height: | Size: 309 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-search@2x.png
Normal file
After Width: | Height: | Size: 653 B |
After Width: | Height: | Size: 243 B |
After Width: | Height: | Size: 458 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-sidebarToggle.png
Normal file
After Width: | Height: | Size: 225 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-sidebarToggle@2x.png
Normal file
After Width: | Height: | Size: 331 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-viewAttachments.png
Normal file
After Width: | Height: | Size: 384 B |
After Width: | Height: | Size: 859 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-viewOutline.png
Normal file
After Width: | Height: | Size: 178 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-viewOutline@2x.png
Normal file
After Width: | Height: | Size: 331 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-viewThumbnail.png
Normal file
After Width: | Height: | Size: 185 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-viewThumbnail@2x.png
Normal file
After Width: | Height: | Size: 219 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-zoomIn.png
Normal file
After Width: | Height: | Size: 136 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-zoomIn@2x.png
Normal file
After Width: | Height: | Size: 160 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-zoomOut.png
Normal file
After Width: | Height: | Size: 88 B |
BIN
cookbook/static/pdfjs/images/toolbarButton-zoomOut@2x.png
Normal file
After Width: | Height: | Size: 109 B |
BIN
cookbook/static/pdfjs/images/treeitem-collapsed.png
Normal file
After Width: | Height: | Size: 128 B |
BIN
cookbook/static/pdfjs/images/treeitem-collapsed@2x.png
Normal file
After Width: | Height: | Size: 149 B |
BIN
cookbook/static/pdfjs/images/treeitem-expanded.png
Normal file
After Width: | Height: | Size: 125 B |
BIN
cookbook/static/pdfjs/images/treeitem-expanded@2x.png
Normal file
After Width: | Height: | Size: 172 B |
207
cookbook/static/pdfjs/locale/ach/viewer.properties
Normal file
@ -0,0 +1,207 @@
|
||||
# Copyright 2012 Mozilla Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Main toolbar buttons (tooltips and alt text for images)
|
||||
previous.title=Pot buk mukato
|
||||
previous_label=Mukato
|
||||
next.title=Pot buk malubo
|
||||
next_label=Malubo
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Pot buk
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=pi {{pagesCount}}
|
||||
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
|
||||
# will be replaced by a number representing the currently visible page,
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} me {{pagesCount}})
|
||||
|
||||
zoom_out.title=Jwik Matidi
|
||||
zoom_out_label=Jwik Matidi
|
||||
zoom_in.title=Kwot Madit
|
||||
zoom_in_label=Kwot Madit
|
||||
zoom.title=Kwoti
|
||||
presentation_mode.title=Lokke i kit me tyer
|
||||
presentation_mode_label=Kit me tyer
|
||||
open_file.title=Yab Pwail
|
||||
open_file_label=Yab
|
||||
print.title=Go
|
||||
print_label=Go
|
||||
download.title=Gam
|
||||
download_label=Gam
|
||||
bookmark.title=Neno ma kombedi (lok onyo yab i dirica manyen)
|
||||
bookmark_label=Neno ma kombedi
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Gintic
|
||||
tools_label=Gintic
|
||||
first_page.title=Cit i pot buk mukwongo
|
||||
first_page.label=Cit i pot buk mukwongo
|
||||
first_page_label=Cit i pot buk mukwongo
|
||||
last_page.title=Cit i pot buk magiko
|
||||
last_page.label=Cit i pot buk magiko
|
||||
last_page_label=Cit i pot buk magiko
|
||||
page_rotate_cw.title=Wire i tung lacuc
|
||||
page_rotate_cw.label=Wire i tung lacuc
|
||||
page_rotate_cw_label=Wire i tung lacuc
|
||||
page_rotate_ccw.title=Wire i tung lacam
|
||||
page_rotate_ccw.label=Wire i tung lacam
|
||||
page_rotate_ccw_label=Wire i tung lacam
|
||||
|
||||
cursor_text_select_tool.title=Cak gitic me yero coc
|
||||
cursor_text_select_tool_label=Gitic me yero coc
|
||||
cursor_hand_tool.title=Cak gitic me cing
|
||||
cursor_hand_tool_label=Gitic cing
|
||||
|
||||
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Jami me gin acoya…
|
||||
document_properties_label=Jami me gin acoya…
|
||||
document_properties_file_name=Nying pwail:
|
||||
document_properties_file_size=Dit pa pwail:
|
||||
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
|
||||
document_properties_kb={{size_kb}} KB ({{size_b}} bytes)
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
document_properties_mb={{size_mb}} MB ({{size_b}} bytes)
|
||||
document_properties_title=Wiye:
|
||||
document_properties_author=Ngat mucoyo:
|
||||
document_properties_subject=Subjek:
|
||||
document_properties_keywords=Lok mapire tek:
|
||||
document_properties_creation_date=Nino dwe me cwec:
|
||||
document_properties_modification_date=Nino dwe me yub:
|
||||
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
|
||||
# will be replaced by the creation/modification date, and time, of the PDF file.
|
||||
document_properties_date_string={{date}}, {{time}}
|
||||
document_properties_creator=Lacwec:
|
||||
document_properties_producer=Layub PDF:
|
||||
document_properties_version=Kit PDF:
|
||||
document_properties_page_count=Kwan me pot buk:
|
||||
document_properties_page_size=Dit pa potbuk:
|
||||
document_properties_page_size_unit_inches=i
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=atir
|
||||
document_properties_page_size_orientation_landscape=arii
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Waraga
|
||||
document_properties_page_size_name_legal=Cik
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||
document_properties_linearized_yes=Eyo
|
||||
document_properties_linearized_no=Pe
|
||||
document_properties_close=Lor
|
||||
|
||||
print_progress_message=Yubo coc me agoya…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Juki
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
toggle_sidebar.title=Lok gintic ma inget
|
||||
toggle_sidebar_notification.title=Lok lanyut me nget (wiyewiye tye i gin acoya/attachments)
|
||||
toggle_sidebar_label=Lok gintic ma inget
|
||||
document_outline.title=Nyut Wiyewiye me Gin acoya (dii-kiryo me yaro/kano jami weng)
|
||||
document_outline_label=Pek pa gin acoya
|
||||
attachments.title=Nyut twec
|
||||
attachments_label=Twec
|
||||
thumbs.title=Nyut cal
|
||||
thumbs_label=Cal
|
||||
findbar.title=Nong iye gin acoya
|
||||
findbar_label=Nong
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_title=Pot buk {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Cal me pot buk {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Nong
|
||||
find_input.placeholder=Nong i dokumen…
|
||||
find_previous.title=Nong timme pa lok mukato
|
||||
find_previous_label=Mukato
|
||||
find_next.title=Nong timme pa lok malubo
|
||||
find_next_label=Malubo
|
||||
find_highlight=Wer weng
|
||||
find_match_case_label=Lok marwate
|
||||
find_reached_top=Oo iwi gin acoya, omede ki i tere
|
||||
find_reached_bottom=Oo i agiki me gin acoya, omede ki iwiye
|
||||
find_not_found=Lok pe ononge
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Ngec Mukene
|
||||
error_less_info=Ngec Manok
|
||||
error_close=Lor
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
error_version_info=PDF.js v{{version}} (build: {{build}})
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
error_message=Kwena: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Can kikore {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Pwail: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Rek: {{line}}
|
||||
rendering_error=Bal otime i kare me nyuto pot buk.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Lac me iye pot buk
|
||||
page_scale_fit=Porre me pot buk
|
||||
page_scale_auto=Kwot pire kene
|
||||
page_scale_actual=Dite kikome
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Bal
|
||||
loading_error=Bal otime kun cano PDF.
|
||||
invalid_file_error=Pwail me PDF ma pe atir onyo obale woko.
|
||||
missing_file_error=Pwail me PDF tye ka rem.
|
||||
unexpected_response_error=Lagam mape kigeno pa lapok tic.
|
||||
|
||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
||||
# "{{type}}" will be replaced with an annotation type from a list defined in
|
||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
||||
text_annotation_type.alt=[{{type}} Lok angea manok]
|
||||
password_label=Ket mung me donyo me yabo pwail me PDF man.
|
||||
password_invalid=Mung me donyo pe atir. Tim ber i tem doki.
|
||||
password_ok=OK
|
||||
password_cancel=Juki
|
||||
|
||||
printing_not_supported=Ciko: Layeny ma pe teno goyo liweng.
|
||||
printing_not_ready=Ciko: PDF pe ocane weng me agoya.
|
||||
web_fonts_disabled=Kijuko dit pa coc me kakube woko: pe romo tic ki dit pa coc me PDF ma kiketo i kine.
|
||||
document_colors_not_allowed=Pe ki yee ki gin acoya me PDF me tic ki rangi gi kengi: Kijuko woko “Yee pot buk me yero rangi mamegi kengi” ki i layeny.
|
184
cookbook/static/pdfjs/locale/af/viewer.properties
Normal file
@ -0,0 +1,184 @@
|
||||
# Copyright 2012 Mozilla Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Main toolbar buttons (tooltips and alt text for images)
|
||||
previous.title=Vorige bladsy
|
||||
previous_label=Vorige
|
||||
next.title=Volgende bladsy
|
||||
next_label=Volgende
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Bladsy
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=van {{pagesCount}}
|
||||
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
|
||||
# will be replaced by a number representing the currently visible page,
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} van {{pagesCount}})
|
||||
|
||||
zoom_out.title=Zoem uit
|
||||
zoom_out_label=Zoem uit
|
||||
zoom_in.title=Zoem in
|
||||
zoom_in_label=Zoem in
|
||||
zoom.title=Zoem
|
||||
presentation_mode.title=Wissel na voorleggingsmodus
|
||||
presentation_mode_label=Voorleggingsmodus
|
||||
open_file.title=Open lêer
|
||||
open_file_label=Open
|
||||
print.title=Druk
|
||||
print_label=Druk
|
||||
download.title=Laai af
|
||||
download_label=Laai af
|
||||
bookmark.title=Huidige aansig (kopieer of open in nuwe venster)
|
||||
bookmark_label=Huidige aansig
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Nutsgoed
|
||||
tools_label=Nutsgoed
|
||||
first_page.title=Gaan na eerste bladsy
|
||||
first_page.label=Gaan na eerste bladsy
|
||||
first_page_label=Gaan na eerste bladsy
|
||||
last_page.title=Gaan na laaste bladsy
|
||||
last_page.label=Gaan na laaste bladsy
|
||||
last_page_label=Gaan na laaste bladsy
|
||||
page_rotate_cw.title=Roteer kloksgewys
|
||||
page_rotate_cw.label=Roteer kloksgewys
|
||||
page_rotate_cw_label=Roteer kloksgewys
|
||||
page_rotate_ccw.title=Roteer anti-kloksgewys
|
||||
page_rotate_ccw.label=Roteer anti-kloksgewys
|
||||
page_rotate_ccw_label=Roteer anti-kloksgewys
|
||||
|
||||
cursor_text_select_tool.title=Aktiveer gereedskap om teks te merk
|
||||
cursor_text_select_tool_label=Teksmerkgereedskap
|
||||
cursor_hand_tool.title=Aktiveer handjie
|
||||
cursor_hand_tool_label=Handjie
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Dokumenteienskappe…
|
||||
document_properties_label=Dokumenteienskappe…
|
||||
document_properties_file_name=Lêernaam:
|
||||
document_properties_file_size=Lêergrootte:
|
||||
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
|
||||
document_properties_kb={{size_kb}} kG ({{size_b}} grepe)
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
document_properties_mb={{size_mb}} MG ({{size_b}} grepe)
|
||||
document_properties_title=Titel:
|
||||
document_properties_author=Outeur:
|
||||
document_properties_subject=Onderwerp:
|
||||
document_properties_keywords=Sleutelwoorde:
|
||||
document_properties_creation_date=Skeppingsdatum:
|
||||
document_properties_modification_date=Wysigingsdatum:
|
||||
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
|
||||
# will be replaced by the creation/modification date, and time, of the PDF file.
|
||||
document_properties_date_string={{date}}, {{time}}
|
||||
document_properties_creator=Skepper:
|
||||
document_properties_producer=PDF-vervaardiger:
|
||||
document_properties_version=PDF-weergawe:
|
||||
document_properties_page_count=Aantal bladsye:
|
||||
document_properties_close=Sluit
|
||||
|
||||
print_progress_message=Berei tans dokument voor om te druk…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Kanselleer
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
toggle_sidebar.title=Sypaneel aan/af
|
||||
toggle_sidebar_notification.title=Sypaneel aan/af (dokument bevat skema/aanhegsels)
|
||||
toggle_sidebar_label=Sypaneel aan/af
|
||||
document_outline.title=Wys dokumentskema (dubbelklik om alle items oop/toe te vou)
|
||||
document_outline_label=Dokumentoorsig
|
||||
attachments.title=Wys aanhegsels
|
||||
attachments_label=Aanhegsels
|
||||
thumbs.title=Wys duimnaels
|
||||
thumbs_label=Duimnaels
|
||||
findbar.title=Soek in dokument
|
||||
findbar_label=Vind
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_title=Bladsy {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Duimnael van bladsy {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Vind
|
||||
find_input.placeholder=Soek in dokument…
|
||||
find_previous.title=Vind die vorige voorkoms van die frase
|
||||
find_previous_label=Vorige
|
||||
find_next.title=Vind die volgende voorkoms van die frase
|
||||
find_next_label=Volgende
|
||||
find_highlight=Verlig almal
|
||||
find_match_case_label=Kassensitief
|
||||
find_reached_top=Bokant van dokument is bereik; gaan voort van onder af
|
||||
find_reached_bottom=Einde van dokument is bereik; gaan voort van bo af
|
||||
find_not_found=Frase nie gevind nie
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Meer inligting
|
||||
error_less_info=Minder inligting
|
||||
error_close=Sluit
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
error_version_info=PDF.js v{{version}} (ID: {{build}})
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
error_message=Boodskap: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Stapel: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Lêer: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Lyn: {{line}}
|
||||
rendering_error='n Fout het voorgekom toe die bladsy weergegee is.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Bladsywydte
|
||||
page_scale_fit=Pas bladsy
|
||||
page_scale_auto=Outomatiese zoem
|
||||
page_scale_actual=Werklike grootte
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Fout
|
||||
loading_error='n Fout het voorgekom met die laai van die PDF.
|
||||
invalid_file_error=Ongeldige of korrupte PDF-lêer.
|
||||
missing_file_error=PDF-lêer is weg.
|
||||
unexpected_response_error=Onverwagse antwoord van bediener.
|
||||
|
||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
||||
# "{{type}}" will be replaced with an annotation type from a list defined in
|
||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
||||
text_annotation_type.alt=[{{type}}-annotasie]
|
||||
password_label=Gee die wagwoord om dié PDF-lêer mee te open.
|
||||
password_invalid=Ongeldige wagwoord. Probeer gerus weer.
|
||||
password_ok=OK
|
||||
password_cancel=Kanselleer
|
||||
|
||||
printing_not_supported=Waarskuwing: Dié blaaier ondersteun nie drukwerk ten volle nie.
|
||||
printing_not_ready=Waarskuwing: Die PDF is nog nie volledig gelaai vir drukwerk nie.
|
||||
web_fonts_disabled=Webfonte is gedeaktiveer: kan nie PDF-fonte wat ingebed is, gebruik nie.
|
||||
document_colors_not_allowed=PDF-dokumente word nie toegelaat om hul eie kleure te gebruik nie: “Laat bladsye toe om hul eie kleure te kies” is gedeaktiveer in die blaaier.
|
184
cookbook/static/pdfjs/locale/an/viewer.properties
Normal file
@ -0,0 +1,184 @@
|
||||
# Copyright 2012 Mozilla Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Main toolbar buttons (tooltips and alt text for images)
|
||||
previous.title=Pachina anterior
|
||||
previous_label=Anterior
|
||||
next.title=Pachina siguient
|
||||
next_label=Siguient
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Pachina
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=de {{pagesCount}}
|
||||
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
|
||||
# will be replaced by a number representing the currently visible page,
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} de {{pagesCount}})
|
||||
|
||||
zoom_out.title=Achiquir
|
||||
zoom_out_label=Achiquir
|
||||
zoom_in.title=Agrandir
|
||||
zoom_in_label=Agrandir
|
||||
zoom.title=Grandaria
|
||||
presentation_mode.title=Cambear t'o modo de presentación
|
||||
presentation_mode_label=Modo de presentación
|
||||
open_file.title=Ubrir o fichero
|
||||
open_file_label=Ubrir
|
||||
print.title=Imprentar
|
||||
print_label=Imprentar
|
||||
download.title=Descargar
|
||||
download_label=Descargar
|
||||
bookmark.title=Vista actual (copiar u ubrir en una nueva finestra)
|
||||
bookmark_label=Anvista actual
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Ferramientas
|
||||
tools_label=Ferramientas
|
||||
first_page.title=Ir ta la primer pachina
|
||||
first_page.label=Ir ta la primer pachina
|
||||
first_page_label=Ir ta la primer pachina
|
||||
last_page.title=Ir ta la zaguer pachina
|
||||
last_page.label=Ir ta la zaguera pachina
|
||||
last_page_label=Ir ta la zaguer pachina
|
||||
page_rotate_cw.title=Chirar enta la dreita
|
||||
page_rotate_cw.label=Chirar enta la dreita
|
||||
page_rotate_cw_label=Chira enta la dreita
|
||||
page_rotate_ccw.title=Chirar enta la zurda
|
||||
page_rotate_ccw.label=Chirar en sentiu antihorario
|
||||
page_rotate_ccw_label=Chirar enta la zurda
|
||||
|
||||
cursor_text_select_tool.title=Activar la ferramienta de selección de texto
|
||||
cursor_text_select_tool_label=Ferramienta de selección de texto
|
||||
cursor_hand_tool.title=Activar la ferramienta man
|
||||
cursor_hand_tool_label=Ferramienta man
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Propiedatz d'o documento...
|
||||
document_properties_label=Propiedatz d'o documento...
|
||||
document_properties_file_name=Nombre de fichero:
|
||||
document_properties_file_size=Grandaria d'o fichero:
|
||||
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
|
||||
document_properties_kb={{size_kb}} KB ({{size_b}} bytes)
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
document_properties_mb={{size_mb}} MB ({{size_b}} bytes)
|
||||
document_properties_title=Titol:
|
||||
document_properties_author=Autor:
|
||||
document_properties_subject=Afer:
|
||||
document_properties_keywords=Parolas clau:
|
||||
document_properties_creation_date=Calendata de creyación:
|
||||
document_properties_modification_date=Calendata de modificación:
|
||||
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
|
||||
# will be replaced by the creation/modification date, and time, of the PDF file.
|
||||
document_properties_date_string={{date}}, {{time}}
|
||||
document_properties_creator=Creyador:
|
||||
document_properties_producer=Creyador de PDF:
|
||||
document_properties_version=Versión de PDF:
|
||||
document_properties_page_count=Numero de pachinas:
|
||||
document_properties_close=Zarrar
|
||||
|
||||
print_progress_message=Se ye preparando la documentación pa imprentar…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Cancelar
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
toggle_sidebar.title=Amostrar u amagar a barra lateral
|
||||
toggle_sidebar_notification.title=Cambiar barra lateral (lo documento contiene esquema/adchuntos)
|
||||
toggle_sidebar_label=Amostrar a barra lateral
|
||||
document_outline.title=Amostrar esquema d'o documento (fer doble clic pa expandir/compactar totz los items)
|
||||
document_outline_label=Esquema d'o documento
|
||||
attachments.title=Amostrar os adchuntos
|
||||
attachments_label=Adchuntos
|
||||
thumbs.title=Amostrar as miniaturas
|
||||
thumbs_label=Miniaturas
|
||||
findbar.title=Trobar en o documento
|
||||
findbar_label=Trobar
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_title=Pachina {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Miniatura d'a pachina {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Trobar
|
||||
find_input.placeholder=Trobar en o documento…
|
||||
find_previous.title=Trobar l'anterior coincidencia d'a frase
|
||||
find_previous_label=Anterior
|
||||
find_next.title=Trobar a siguient coincidencia d'a frase
|
||||
find_next_label=Siguient
|
||||
find_highlight=Resaltar-lo tot
|
||||
find_match_case_label=Coincidencia de mayusclas/minusclas
|
||||
find_reached_top=S'ha plegau a l'inicio d'o documento, se contina dende baixo
|
||||
find_reached_bottom=S'ha plegau a la fin d'o documento, se contina dende alto
|
||||
find_not_found=No s'ha trobau a frase
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Mas información
|
||||
error_less_info=Menos información
|
||||
error_close=Zarrar
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
error_version_info=PDF.js v{{version}} (build: {{build}})
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
error_message=Mensache: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Pila: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Fichero: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Linia: {{line}}
|
||||
rendering_error=Ha ocurriu una error en renderizar a pachina.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Amplaria d'a pachina
|
||||
page_scale_fit=Achuste d'a pachina
|
||||
page_scale_auto=Grandaria automatica
|
||||
page_scale_actual=Grandaria actual
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Error
|
||||
loading_error=S'ha produciu una error en cargar o PDF.
|
||||
invalid_file_error=O PDF no ye valido u ye estorbau.
|
||||
missing_file_error=No i ha fichero PDF.
|
||||
unexpected_response_error=Respuesta a lo servicio inasperada.
|
||||
|
||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
||||
# "{{type}}" will be replaced with an annotation type from a list defined in
|
||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
||||
text_annotation_type.alt=[Anotación {{type}}]
|
||||
password_label=Introduzca a clau ta ubrir iste fichero PDF.
|
||||
password_invalid=Clau invalida. Torna a intentar-lo.
|
||||
password_ok=Acceptar
|
||||
password_cancel=Cancelar
|
||||
|
||||
printing_not_supported=Pare cuenta: Iste navegador no maneya totalment as impresions.
|
||||
printing_not_ready=Aviso: Encara no se ha cargau completament o PDF ta imprentar-lo.
|
||||
web_fonts_disabled=As fuents web son desactivadas: no se puet incrustar fichers PDF.
|
||||
document_colors_not_allowed=Los documentos PDF no pueden fer servir las suyas propias colors: 'Permitir que as pachinas triguen as suyas propias colors' ye desactivau en o navegador.
|
246
cookbook/static/pdfjs/locale/ar/viewer.properties
Normal file
@ -0,0 +1,246 @@
|
||||
# Copyright 2012 Mozilla Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Main toolbar buttons (tooltips and alt text for images)
|
||||
previous.title=الصفحة السابقة
|
||||
previous_label=السابقة
|
||||
next.title=الصفحة التالية
|
||||
next_label=التالية
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=صفحة
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=من {{pagesCount}}
|
||||
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
|
||||
# will be replaced by a number representing the currently visible page,
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} من {{pagesCount}})
|
||||
|
||||
zoom_out.title=بعّد
|
||||
zoom_out_label=بعّد
|
||||
zoom_in.title=قرّب
|
||||
zoom_in_label=قرّب
|
||||
zoom.title=التقريب
|
||||
presentation_mode.title=انتقل لوضع العرض التقديمي
|
||||
presentation_mode_label=وضع العرض التقديمي
|
||||
open_file.title=افتح ملفًا
|
||||
open_file_label=افتح
|
||||
print.title=اطبع
|
||||
print_label=اطبع
|
||||
download.title=نزّل
|
||||
download_label=نزّل
|
||||
bookmark.title=المنظور الحالي (انسخ أو افتح في نافذة جديدة)
|
||||
bookmark_label=المنظور الحالي
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=الأدوات
|
||||
tools_label=الأدوات
|
||||
first_page.title=اذهب إلى الصفحة الأولى
|
||||
first_page.label=اذهب إلى الصفحة الأولى
|
||||
first_page_label=اذهب إلى الصفحة الأولى
|
||||
last_page.title=اذهب إلى الصفحة الأخيرة
|
||||
last_page.label=اذهب إلى الصفحة الأخيرة
|
||||
last_page_label=اذهب إلى الصفحة الأخيرة
|
||||
page_rotate_cw.title=أدر باتجاه عقارب الساعة
|
||||
page_rotate_cw.label=أدر باتجاه عقارب الساعة
|
||||
page_rotate_cw_label=أدر باتجاه عقارب الساعة
|
||||
page_rotate_ccw.title=أدر بعكس اتجاه عقارب الساعة
|
||||
page_rotate_ccw.label=أدر بعكس اتجاه عقارب الساعة
|
||||
page_rotate_ccw_label=أدر بعكس اتجاه عقارب الساعة
|
||||
|
||||
cursor_text_select_tool.title=فعّل أداة اختيار النص
|
||||
cursor_text_select_tool_label=أداة اختيار النص
|
||||
cursor_hand_tool.title=فعّل أداة اليد
|
||||
cursor_hand_tool_label=أداة اليد
|
||||
|
||||
scroll_vertical.title=استخدم التمرير الرأسي
|
||||
scroll_vertical_label=التمرير الرأسي
|
||||
scroll_horizontal.title=استخدم التمرير الأفقي
|
||||
scroll_horizontal_label=التمرير الأفقي
|
||||
scroll_wrapped.title=استخدم التمرير الملتف
|
||||
scroll_wrapped_label=التمرير الملتف
|
||||
|
||||
spread_none.title=لا تدمج هوامش الصفحات مع بعضها البعض
|
||||
spread_none_label=بلا هوامش
|
||||
spread_odd.title=ادمج هوامش الصفحات الفردية
|
||||
spread_odd_label=هوامش الصفحات الفردية
|
||||
spread_even.title=ادمج هوامش الصفحات الزوجية
|
||||
spread_even_label=هوامش الصفحات الزوجية
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=خصائص المستند…
|
||||
document_properties_label=خصائص المستند…
|
||||
document_properties_file_name=اسم الملف:
|
||||
document_properties_file_size=حجم الملف:
|
||||
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
|
||||
document_properties_kb={{size_kb}} ك.بايت ({{size_b}} بايت)
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
document_properties_mb={{size_mb}} م.بايت ({{size_b}} بايت)
|
||||
document_properties_title=العنوان:
|
||||
document_properties_author=المؤلف:
|
||||
document_properties_subject=الموضوع:
|
||||
document_properties_keywords=الكلمات الأساسية:
|
||||
document_properties_creation_date=تاريخ الإنشاء:
|
||||
document_properties_modification_date=تاريخ التعديل:
|
||||
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
|
||||
# will be replaced by the creation/modification date, and time, of the PDF file.
|
||||
document_properties_date_string={{date}}، {{time}}
|
||||
document_properties_creator=المنشئ:
|
||||
document_properties_producer=منتج PDF:
|
||||
document_properties_version=إصدارة PDF:
|
||||
document_properties_page_count=عدد الصفحات:
|
||||
document_properties_page_size=مقاس الورقة:
|
||||
document_properties_page_size_unit_inches=بوصة
|
||||
document_properties_page_size_unit_millimeters=ملم
|
||||
document_properties_page_size_orientation_portrait=طوليّ
|
||||
document_properties_page_size_orientation_landscape=عرضيّ
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=خطاب
|
||||
document_properties_page_size_name_legal=قانونيّ
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}، {{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||
document_properties_linearized=العرض السريع عبر الوِب:
|
||||
document_properties_linearized_yes=نعم
|
||||
document_properties_linearized_no=لا
|
||||
document_properties_close=أغلق
|
||||
|
||||
print_progress_message=يُحضّر المستند للطباعة…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}٪
|
||||
print_progress_close=ألغِ
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
toggle_sidebar.title=بدّل ظهور الشريط الجانبي
|
||||
toggle_sidebar_notification.title=بدّل ظهور الشريط الجانبي (يحتوي المستند على مخطط أو مرفقات)
|
||||
toggle_sidebar_label=بدّل ظهور الشريط الجانبي
|
||||
document_outline.title=اعرض فهرس المستند (نقر مزدوج لتمديد أو تقليص كل العناصر)
|
||||
document_outline_label=مخطط المستند
|
||||
attachments.title=اعرض المرفقات
|
||||
attachments_label=المُرفقات
|
||||
thumbs.title=اعرض مُصغرات
|
||||
thumbs_label=مُصغّرات
|
||||
findbar.title=ابحث في المستند
|
||||
findbar_label=ابحث
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_title=صفحة {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=مصغّرة صفحة {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=ابحث
|
||||
find_input.placeholder=ابحث في المستند…
|
||||
find_previous.title=ابحث عن التّواجد السّابق للعبارة
|
||||
find_previous_label=السابق
|
||||
find_next.title=ابحث عن التّواجد التّالي للعبارة
|
||||
find_next_label=التالي
|
||||
find_highlight=أبرِز الكل
|
||||
find_match_case_label=طابق حالة الأحرف
|
||||
find_entire_word_label=كلمات كاملة
|
||||
find_reached_top=تابعت من الأسفل بعدما وصلت إلى بداية المستند
|
||||
find_reached_bottom=تابعت من الأعلى بعدما وصلت إلى نهاية المستند
|
||||
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
|
||||
# [one|two|few|many|other], with [other] as the default value.
|
||||
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
||||
# index of the currently active find result, respectively a number representing
|
||||
# the total number of matches in the document.
|
||||
find_match_count={[ plural(total) ]}
|
||||
find_match_count[one]={{current}} من أصل مطابقة واحدة
|
||||
find_match_count[two]={{current}} من أصل مطابقتين
|
||||
find_match_count[few]={{current}} من أصل {{total}} مطابقات
|
||||
find_match_count[many]={{current}} من أصل {{total}} مطابقة
|
||||
find_match_count[other]={{current}} من أصل {{total}} مطابقة
|
||||
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||
# "{{limit}}" will be replaced by a numerical value.
|
||||
find_match_count_limit={[ plural(limit) ]}
|
||||
find_match_count_limit[zero]=فقط
|
||||
find_match_count_limit[one]=أكثر من مطابقة واحدة
|
||||
find_match_count_limit[two]=أكثر من مطابقتين
|
||||
find_match_count_limit[few]=أكثر من {{limit}} مطابقات
|
||||
find_match_count_limit[many]=أكثر من {{limit}} مطابقة
|
||||
find_match_count_limit[other]=أكثر من {{limit}} مطابقة
|
||||
find_not_found=لا وجود للعبارة
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=معلومات أكثر
|
||||
error_less_info=معلومات أقل
|
||||
error_close=أغلق
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
error_version_info=PDF.js ن{{version}} (بناء: {{build}})
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
error_message=الرسالة: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=الرصّة: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=الملف: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=السطر: {{line}}
|
||||
rendering_error=حدث خطأ أثناء عرض الصفحة.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=عرض الصفحة
|
||||
page_scale_fit=ملائمة الصفحة
|
||||
page_scale_auto=تقريب تلقائي
|
||||
page_scale_actual=الحجم الفعلي
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}٪
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=عطل
|
||||
loading_error=حدث عطل أثناء تحميل ملف PDF.
|
||||
invalid_file_error=ملف PDF تالف أو غير صحيح.
|
||||
missing_file_error=ملف PDF غير موجود.
|
||||
unexpected_response_error=استجابة خادوم غير متوقعة.
|
||||
|
||||
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
|
||||
# replaced by the modification date, and time, of the annotation.
|
||||
annotation_date_string={{date}}، {{time}}
|
||||
|
||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
||||
# "{{type}}" will be replaced with an annotation type from a list defined in
|
||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
||||
text_annotation_type.alt=[تعليق {{type}}]
|
||||
password_label=أدخل لكلمة السر لفتح هذا الملف.
|
||||
password_invalid=كلمة سر خطأ. من فضلك أعد المحاولة.
|
||||
password_ok=حسنا
|
||||
password_cancel=ألغِ
|
||||
|
||||
printing_not_supported=تحذير: لا يدعم هذا المتصفح الطباعة بشكل كامل.
|
||||
printing_not_ready=تحذير: ملف PDF لم يُحمّل كاملًا للطباعة.
|
||||
web_fonts_disabled=خطوط الوب مُعطّلة: تعذّر استخدام خطوط PDF المُضمّنة.
|
||||
document_colors_not_allowed=ليس مسموحًا لملفات PDF باستخدام ألوانها الخاصة: خيار ”اسمح للصفحات باختيار ألوانها الخاصة“ ليس مُفعّلًا في المتصفح.
|
207
cookbook/static/pdfjs/locale/ast/viewer.properties
Normal file
@ -0,0 +1,207 @@
|
||||
# Copyright 2012 Mozilla Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Main toolbar buttons (tooltips and alt text for images)
|
||||
previous.title=Páxina anterior
|
||||
previous_label=Anterior
|
||||
next.title=Páxina siguiente
|
||||
next_label=Siguiente
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Páxina
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=de {{pagesCount}}
|
||||
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
|
||||
# will be replaced by a number representing the currently visible page,
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} de {{pagesCount}})
|
||||
|
||||
zoom_out.title=Reducir
|
||||
zoom_out_label=Reducir
|
||||
zoom_in.title=Aumentar
|
||||
zoom_in_label=Aumentar
|
||||
zoom.title=Tamañu
|
||||
open_file.title=Abrir ficheru
|
||||
open_file_label=Abrir
|
||||
print.title=Imprentar
|
||||
print_label=Imprentar
|
||||
download.title=Descargar
|
||||
download_label=Descargar
|
||||
bookmark.title=Vista actual (copiar o abrir nuna nueva ventana)
|
||||
bookmark_label=Vista actual
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Ferramientes
|
||||
tools_label=Ferramientes
|
||||
first_page.title=Dir a la primer páxina
|
||||
first_page.label=Dir a la primer páxina
|
||||
first_page_label=Dir a la primer páxina
|
||||
last_page.title=Dir a la postrer páxina
|
||||
last_page.label=Dir a la cabera páxina
|
||||
last_page_label=Dir a la postrer páxina
|
||||
page_rotate_cw.title=Xirar en sen horariu
|
||||
page_rotate_cw_label=Xirar en sen horariu
|
||||
page_rotate_ccw.title=Xirar en sen antihorariu
|
||||
page_rotate_ccw_label=Xirar en sen antihorariu
|
||||
|
||||
|
||||
scroll_vertical_label=Desplazamientu vertical
|
||||
scroll_horizontal_label=Desplazamientu horizontal
|
||||
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Propiedaes del documentu…
|
||||
document_properties_label=Propiedaes del documentu…
|
||||
document_properties_file_name=Nome de ficheru:
|
||||
document_properties_file_size=Tamañu de ficheru:
|
||||
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
|
||||
document_properties_kb={{size_kb}} KB ({{size_b}} bytes)
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
document_properties_mb={{size_mb}} MB ({{size_b}} bytes)
|
||||
document_properties_title=Títulu:
|
||||
document_properties_author=Autor:
|
||||
document_properties_subject=Asuntu:
|
||||
document_properties_keywords=Pallabres clave:
|
||||
document_properties_creation_date=Data de creación:
|
||||
document_properties_modification_date=Data de modificación:
|
||||
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
|
||||
# will be replaced by the creation/modification date, and time, of the PDF file.
|
||||
document_properties_date_string={{date}}, {{time}}
|
||||
document_properties_creator=Creador:
|
||||
document_properties_producer=Productor PDF:
|
||||
document_properties_version=Versión PDF:
|
||||
document_properties_page_count=Númberu de páxines:
|
||||
document_properties_page_size_unit_inches=in
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||
document_properties_linearized_yes=Sí
|
||||
document_properties_linearized_no=Non
|
||||
document_properties_close=Zarrar
|
||||
|
||||
print_progress_message=Tresnando documentu pa imprentar…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Encaboxar
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
toggle_sidebar.title=Camudar barra llateral
|
||||
toggle_sidebar_label=Camudar barra llateral
|
||||
document_outline.title=Amosar esquema del documentu (duble clic pa espander/contrayer tolos elementos)
|
||||
document_outline_label=Esquema del documentu
|
||||
attachments.title=Amosar axuntos
|
||||
attachments_label=Axuntos
|
||||
thumbs.title=Amosar miniatures
|
||||
thumbs_label=Miniatures
|
||||
findbar.title=Guetar nel documentu
|
||||
findbar_label=Guetar
|
||||
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_title=Páxina {{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas=Miniatura de la páxina {{page}}
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Guetar
|
||||
find_input.placeholder=Guetar nel documentu…
|
||||
find_previous.title=Alcontrar l'anterior apaición de la fras
|
||||
find_previous_label=Anterior
|
||||
find_next.title=Alcontrar la siguiente apaición d'esta fras
|
||||
find_next_label=Siguiente
|
||||
find_highlight=Remarcar toos
|
||||
find_match_case_label=Coincidencia de mayús./minús.
|
||||
find_entire_word_label=Pallabres enteres
|
||||
find_reached_top=Algamóse'l principiu del documentu, siguir dende'l final
|
||||
find_reached_bottom=Algamóse'l final del documentu, siguir dende'l principiu
|
||||
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
|
||||
# [one|two|few|many|other], with [other] as the default value.
|
||||
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
||||
# index of the currently active find result, respectively a number representing
|
||||
# the total number of matches in the document.
|
||||
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||
# "{{limit}}" will be replaced by a numerical value.
|
||||
find_not_found=Frase non atopada
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Más información
|
||||
error_less_info=Menos información
|
||||
error_close=Zarrar
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
error_version_info=PDF.js v{{version}} (build: {{build}})
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
error_message=Mensaxe: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Pila: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Ficheru: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Llinia: {{line}}
|
||||
rendering_error=Hebo un fallu al renderizar la páxina.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Anchor de la páxina
|
||||
page_scale_fit=Axuste de la páxina
|
||||
page_scale_auto=Tamañu automáticu
|
||||
page_scale_actual=Tamañu actual
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Fallu
|
||||
loading_error=Hebo un fallu al cargar el PDF.
|
||||
invalid_file_error=Ficheru PDF inválidu o corruptu.
|
||||
missing_file_error=Nun hai ficheru PDF.
|
||||
unexpected_response_error=Rempuesta inesperada del sirvidor.
|
||||
|
||||
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
|
||||
# replaced by the modification date, and time, of the annotation.
|
||||
|
||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
||||
# "{{type}}" will be replaced with an annotation type from a list defined in
|
||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
||||
text_annotation_type.alt=[Anotación {{type}}]
|
||||
password_label=Introduz la contraseña p'abrir esti ficheru PDF
|
||||
password_invalid=Contraseña non válida. Vuelvi a intentalo.
|
||||
password_ok=Aceutar
|
||||
password_cancel=Encaboxar
|
||||
|
||||
printing_not_supported=Alvertencia: La imprentación entá nun ta sofitada dafechu nesti restolador.
|
||||
printing_not_ready=Avisu: Esti PDF nun se cargó completamente pa poder imprentase.
|
||||
web_fonts_disabled=Les fontes web tán desactivaes: ye imposible usar les fontes PDF embebíes.
|
||||
document_colors_not_allowed=Los documentos PDF nun tienen permisu pa usar les sos colores: «Permitir que les páxines escueyan les sos colores» ta desactivao nel restolador.
|
248
cookbook/static/pdfjs/locale/az/viewer.properties
Normal file
@ -0,0 +1,248 @@
|
||||
# Copyright 2012 Mozilla Foundation
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Main toolbar buttons (tooltips and alt text for images)
|
||||
previous.title=Əvvəlki səhifə
|
||||
previous_label=Əvvəlkini tap
|
||||
next.title=Növbəti səhifə
|
||||
next_label=İrəli
|
||||
|
||||
# LOCALIZATION NOTE (page.title): The tooltip for the pageNumber input.
|
||||
page.title=Səhifə
|
||||
# LOCALIZATION NOTE (of_pages): "{{pagesCount}}" will be replaced by a number
|
||||
# representing the total number of pages in the document.
|
||||
of_pages=/ {{pagesCount}}
|
||||
# LOCALIZATION NOTE (page_of_pages): "{{pageNumber}}" and "{{pagesCount}}"
|
||||
# will be replaced by a number representing the currently visible page,
|
||||
# respectively a number representing the total number of pages in the document.
|
||||
page_of_pages=({{pageNumber}} / {{pagesCount}})
|
||||
|
||||
zoom_out.title=Uzaqlaş
|
||||
zoom_out_label=Uzaqlaş
|
||||
zoom_in.title=Yaxınlaş
|
||||
zoom_in_label=Yaxınlaş
|
||||
zoom.title=Yaxınlaşdırma
|
||||
presentation_mode.title=Təqdimat Rejiminə Keç
|
||||
presentation_mode_label=Təqdimat Rejimi
|
||||
open_file.title=Fayl Aç
|
||||
open_file_label=Aç
|
||||
print.title=Yazdır
|
||||
print_label=Yazdır
|
||||
download.title=Yüklə
|
||||
download_label=Yüklə
|
||||
bookmark.title=Hazırkı görünüş (köçür və ya yeni pəncərədə aç)
|
||||
bookmark_label=Hazırkı görünüş
|
||||
|
||||
# Secondary toolbar and context menu
|
||||
tools.title=Alətlər
|
||||
tools_label=Alətlər
|
||||
first_page.title=İlk Səhifəyə get
|
||||
first_page.label=İlk Səhifəyə get
|
||||
first_page_label=İlk Səhifəyə get
|
||||
last_page.title=Son Səhifəyə get
|
||||
last_page.label=Son Səhifəyə get
|
||||
last_page_label=Son Səhifəyə get
|
||||
page_rotate_cw.title=Saat İstiqamətində Fırlat
|
||||
page_rotate_cw.label=Saat İstiqamətində Fırlat
|
||||
page_rotate_cw_label=Saat İstiqamətində Fırlat
|
||||
page_rotate_ccw.title=Saat İstiqamətinin Əksinə Fırlat
|
||||
page_rotate_ccw.label=Saat İstiqamətinin Əksinə Fırlat
|
||||
page_rotate_ccw_label=Saat İstiqamətinin Əksinə Fırlat
|
||||
|
||||
cursor_text_select_tool.title=Yazı seçmə alətini aktivləşdir
|
||||
cursor_text_select_tool_label=Yazı seçmə aləti
|
||||
cursor_hand_tool.title=Əl alətini aktivləşdir
|
||||
cursor_hand_tool_label=Əl aləti
|
||||
|
||||
scroll_vertical.title=Şaquli sürüşdürmə işlət
|
||||
scroll_vertical_label=Şaquli sürüşdürmə
|
||||
scroll_horizontal.title=Üfüqi sürüşdürmə işlət
|
||||
scroll_horizontal_label=Üfüqi sürüşdürmə
|
||||
scroll_wrapped.title=Bükülü sürüşdürmə işlət
|
||||
scroll_wrapped_label=Bükülü sürüşdürmə
|
||||
|
||||
spread_none.title=Yan-yana birləşdirilmiş səhifələri işlətmə
|
||||
spread_none_label=Birləşdirmə
|
||||
spread_odd.title=Yan-yana birləşdirilmiş səhifələri tək nömrəli səhifələrdən başlat
|
||||
spread_odd_label=Tək nömrəli
|
||||
spread_even.title=Yan-yana birləşdirilmiş səhifələri cüt nömrəli səhifələrdən başlat
|
||||
spread_even_label=Cüt nömrəli
|
||||
|
||||
# Document properties dialog box
|
||||
document_properties.title=Sənəd xüsusiyyətləri…
|
||||
document_properties_label=Sənəd xüsusiyyətləri…
|
||||
document_properties_file_name=Fayl adı:
|
||||
document_properties_file_size=Fayl ölçüsü:
|
||||
# LOCALIZATION NOTE (document_properties_kb): "{{size_kb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in kilobytes, respectively in bytes.
|
||||
document_properties_kb={{size_kb}} KB ({{size_b}} bayt)
|
||||
# LOCALIZATION NOTE (document_properties_mb): "{{size_mb}}" and "{{size_b}}"
|
||||
# will be replaced by the PDF file size in megabytes, respectively in bytes.
|
||||
document_properties_mb={{size_mb}} MB ({{size_b}} bayt)
|
||||
document_properties_title=Başlık:
|
||||
document_properties_author=Müəllif:
|
||||
document_properties_subject=Mövzu:
|
||||
document_properties_keywords=Açar sözlər:
|
||||
document_properties_creation_date=Yaradılış Tarixi :
|
||||
document_properties_modification_date=Dəyişdirilmə Tarixi :
|
||||
# LOCALIZATION NOTE (document_properties_date_string): "{{date}}" and "{{time}}"
|
||||
# will be replaced by the creation/modification date, and time, of the PDF file.
|
||||
document_properties_date_string={{date}}, {{time}}
|
||||
document_properties_creator=Yaradan:
|
||||
document_properties_producer=PDF yaradıcısı:
|
||||
document_properties_version=PDF versiyası:
|
||||
document_properties_page_count=Səhifə sayı:
|
||||
document_properties_page_size=Səhifə Ölçüsü:
|
||||
document_properties_page_size_unit_inches=inç
|
||||
document_properties_page_size_unit_millimeters=mm
|
||||
document_properties_page_size_orientation_portrait=portret
|
||||
document_properties_page_size_orientation_landscape=albom
|
||||
document_properties_page_size_name_a3=A3
|
||||
document_properties_page_size_name_a4=A4
|
||||
document_properties_page_size_name_letter=Məktub
|
||||
document_properties_page_size_name_legal=Hüquqi
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_string={{width}} × {{height}} {{unit}} ({{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_page_size_dimension_name_string):
|
||||
# "{{width}}", "{{height}}", {{unit}}, {{name}}, and {{orientation}} will be replaced by
|
||||
# the size, respectively their unit of measurement, name, and orientation, of the (current) page.
|
||||
document_properties_page_size_dimension_name_string={{width}} × {{height}} {{unit}} ({{name}}, {{orientation}})
|
||||
# LOCALIZATION NOTE (document_properties_linearized): The linearization status of
|
||||
# the document; usually called "Fast Web View" in English locales of Adobe software.
|
||||
document_properties_linearized=Fast Web View:
|
||||
document_properties_linearized_yes=Bəli
|
||||
document_properties_linearized_no=Xeyr
|
||||
document_properties_close=Qapat
|
||||
|
||||
print_progress_message=Sənəd çap üçün hazırlanır…
|
||||
# LOCALIZATION NOTE (print_progress_percent): "{{progress}}" will be replaced by
|
||||
# a numerical per cent value.
|
||||
print_progress_percent={{progress}}%
|
||||
print_progress_close=Ləğv et
|
||||
|
||||
# Tooltips and alt text for side panel toolbar buttons
|
||||
# (the _label strings are alt text for the buttons, the .title strings are
|
||||
# tooltips)
|
||||
toggle_sidebar.title=Yan Paneli Aç/Bağla
|
||||
toggle_sidebar_notification.title=Yan paneli çevir (sənəddə icmal/bağlama var)
|
||||
toggle_sidebar_label=Yan Paneli Aç/Bağla
|
||||
document_outline.title=Sənədin eskizini göstər (bütün bəndləri açmaq/yığmaq üçün iki dəfə klikləyin)
|
||||
document_outline_label=Sənəd strukturu
|
||||
attachments.title=Bağlamaları göstər
|
||||
attachments_label=Bağlamalar
|
||||
thumbs.title=Kiçik şəkilləri göstər
|
||||
thumbs_label=Kiçik şəkillər
|
||||
findbar.title=Sənəddə Tap
|
||||
findbar_label=Tap
|
||||
|
||||
# LOCALIZATION NOTE (page_canvas): "{{page}}" will be replaced by the page number.
|
||||
page_canvas=Səhifə {{page}}
|
||||
# Thumbnails panel item (tooltip and alt text for images)
|
||||
# LOCALIZATION NOTE (thumb_page_title): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_title=Səhifə{{page}}
|
||||
# LOCALIZATION NOTE (thumb_page_canvas): "{{page}}" will be replaced by the page
|
||||
# number.
|
||||
thumb_page_canvas={{page}} səhifəsinin kiçik vəziyyəti
|
||||
|
||||
# Find panel button title and messages
|
||||
find_input.title=Tap
|
||||
find_input.placeholder=Sənəddə tap…
|
||||
find_previous.title=Bir öncəki uyğun gələn sözü tapır
|
||||
find_previous_label=Geri
|
||||
find_next.title=Bir sonrakı uyğun gələn sözü tapır
|
||||
find_next_label=İrəli
|
||||
find_highlight=İşarələ
|
||||
find_match_case_label=Böyük/kiçik hərfə həssaslıq
|
||||
find_entire_word_label=Tam sözlər
|
||||
find_reached_top=Sənədin yuxarısına çatdı, aşağıdan davam edir
|
||||
find_reached_bottom=Sənədin sonuna çatdı, yuxarıdan davam edir
|
||||
# LOCALIZATION NOTE (find_match_count): The supported plural forms are
|
||||
# [one|two|few|many|other], with [other] as the default value.
|
||||
# "{{current}}" and "{{total}}" will be replaced by a number representing the
|
||||
# index of the currently active find result, respectively a number representing
|
||||
# the total number of matches in the document.
|
||||
find_match_count={[ plural(total) ]}
|
||||
find_match_count[one]={{current}} / {{total}} uyğunluq
|
||||
find_match_count[two]={{current}} / {{total}} uyğunluq
|
||||
find_match_count[few]={{current}} / {{total}} uyğunluq
|
||||
find_match_count[many]={{current}} / {{total}} uyğunluq
|
||||
find_match_count[other]={{current}} / {{total}} uyğunluq
|
||||
# LOCALIZATION NOTE (find_match_count_limit): The supported plural forms are
|
||||
# [zero|one|two|few|many|other], with [other] as the default value.
|
||||
# "{{limit}}" will be replaced by a numerical value.
|
||||
find_match_count_limit={[ plural(limit) ]}
|
||||
find_match_count_limit[zero]={{limit}}-dan çox uyğunluq
|
||||
find_match_count_limit[one]={{limit}}-dən çox uyğunluq
|
||||
find_match_count_limit[two]={{limit}}-dən çox uyğunluq
|
||||
find_match_count_limit[few]={{limit}} uyğunluqdan daha çox
|
||||
find_match_count_limit[many]={{limit}} uyğunluqdan daha çox
|
||||
find_match_count_limit[other]={{limit}} uyğunluqdan daha çox
|
||||
find_not_found=Uyğunlaşma tapılmadı
|
||||
|
||||
# Error panel labels
|
||||
error_more_info=Daha çox məlumati
|
||||
error_less_info=Daha az məlumat
|
||||
error_close=Qapat
|
||||
# LOCALIZATION NOTE (error_version_info): "{{version}}" and "{{build}}" will be
|
||||
# replaced by the PDF.JS version and build ID.
|
||||
error_version_info=PDF.js v{{version}} (yığma: {{build}})
|
||||
# LOCALIZATION NOTE (error_message): "{{message}}" will be replaced by an
|
||||
# english string describing the error.
|
||||
error_message=İsmarıc: {{message}}
|
||||
# LOCALIZATION NOTE (error_stack): "{{stack}}" will be replaced with a stack
|
||||
# trace.
|
||||
error_stack=Stek: {{stack}}
|
||||
# LOCALIZATION NOTE (error_file): "{{file}}" will be replaced with a filename
|
||||
error_file=Fayl: {{file}}
|
||||
# LOCALIZATION NOTE (error_line): "{{line}}" will be replaced with a line number
|
||||
error_line=Sətir: {{line}}
|
||||
rendering_error=Səhifə göstərilərkən səhv yarandı.
|
||||
|
||||
# Predefined zoom values
|
||||
page_scale_width=Səhifə genişliyi
|
||||
page_scale_fit=Səhifəni sığdır
|
||||
page_scale_auto=Avtomatik yaxınlaşdır
|
||||
page_scale_actual=Hazırkı Həcm
|
||||
# LOCALIZATION NOTE (page_scale_percent): "{{scale}}" will be replaced by a
|
||||
# numerical scale value.
|
||||
page_scale_percent={{scale}}%
|
||||
|
||||
# Loading indicator messages
|
||||
loading_error_indicator=Səhv
|
||||
loading_error=PDF yüklenərkən bir səhv yarandı.
|
||||
invalid_file_error=Səhv və ya zədələnmiş olmuş PDF fayl.
|
||||
missing_file_error=PDF fayl yoxdur.
|
||||
unexpected_response_error=Gözlənilməz server cavabı.
|
||||
|
||||
# LOCALIZATION NOTE (annotation_date_string): "{{date}}" and "{{time}}" will be
|
||||
# replaced by the modification date, and time, of the annotation.
|
||||
annotation_date_string={{date}}, {{time}}
|
||||
|
||||
# LOCALIZATION NOTE (text_annotation_type.alt): This is used as a tooltip.
|
||||
# "{{type}}" will be replaced with an annotation type from a list defined in
|
||||
# the PDF spec (32000-1:2008 Table 169 – Annotation types).
|
||||
# Some common types are e.g.: "Check", "Text", "Comment", "Note"
|
||||
text_annotation_type.alt=[{{type}} Annotasiyası]
|
||||
password_label=Bu PDF faylı açmaq üçün parolu daxil edin.
|
||||
password_invalid=Parol səhvdir. Bir daha yoxlayın.
|
||||
password_ok=Tamam
|
||||
password_cancel=Ləğv et
|
||||
|
||||
printing_not_supported=Xəbərdarlıq: Çap bu səyyah tərəfindən tam olaraq dəstəklənmir.
|
||||
printing_not_ready=Xəbərdarlıq: PDF çap üçün tam yüklənməyib.
|
||||
web_fonts_disabled=Web Şriftlər söndürülüb: yerləşdirilmiş PDF şriftlərini istifadə etmək mümkün deyil.
|
||||
document_colors_not_allowed=PDF sənədlərə öz rənglərini işlətməyə icazə verilmir: “Səhifələrə öz rənglərini istifadə etməyə icazə ver”mə səyyahda söndürülüb.
|