mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-14 03:25:02 +00:00
Merge branch 'websocketSupportFun' of git@github.com:Stirling-Tools/Stirling-PDF.git into websocketSupportFun
This commit is contained in:
commit
1e968c79f6
@ -180,7 +180,7 @@ jobs:
|
|||||||
password: ${{ secrets.DOCKER_HUB_API }}
|
password: ${{ secrets.DOCKER_HUB_API }}
|
||||||
|
|
||||||
- name: Build and push PR-specific image
|
- name: Build and push PR-specific image
|
||||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
|
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -56,9 +56,9 @@ jobs:
|
|||||||
build/reports/tests/
|
build/reports/tests/
|
||||||
build/test-results/
|
build/test-results/
|
||||||
build/reports/problems/
|
build/reports/problems/
|
||||||
/common/build/reports/tests/
|
common/build/reports/tests/
|
||||||
/common/build/test-results/
|
common/build/test-results/
|
||||||
/common/build/reports/problems/
|
common/build/reports/problems/
|
||||||
retention-days: 3
|
retention-days: 3
|
||||||
|
|
||||||
check-licence:
|
check-licence:
|
||||||
|
6
.github/workflows/push-docker.yml
vendored
6
.github/workflows/push-docker.yml
vendored
@ -90,7 +90,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build and push main Dockerfile
|
- name: Build and push main Dockerfile
|
||||||
id: build-push-regular
|
id: build-push-regular
|
||||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
||||||
with:
|
with:
|
||||||
builder: ${{ steps.buildx.outputs.name }}
|
builder: ${{ steps.buildx.outputs.name }}
|
||||||
context: .
|
context: .
|
||||||
@ -135,7 +135,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build and push Dockerfile-ultra-lite
|
- name: Build and push Dockerfile-ultra-lite
|
||||||
id: build-push-lite
|
id: build-push-lite
|
||||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
@ -166,7 +166,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build and push main Dockerfile fat
|
- name: Build and push main Dockerfile fat
|
||||||
id: build-push-fat
|
id: build-push-fat
|
||||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
||||||
if: github.ref != 'refs/heads/main'
|
if: github.ref != 'refs/heads/main'
|
||||||
with:
|
with:
|
||||||
builder: ${{ steps.buildx.outputs.name }}
|
builder: ${{ steps.buildx.outputs.name }}
|
||||||
|
2
.github/workflows/scorecards.yml
vendored
2
.github/workflows/scorecards.yml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|
||||||
- name: "Run analysis"
|
- name: "Run analysis"
|
||||||
uses: ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
|
uses: ossf/scorecard-action@05b42c624433fc40578a4040d5cf5e36ddca8cde # v2.4.2
|
||||||
with:
|
with:
|
||||||
results_file: results.sarif
|
results_file: results.sarif
|
||||||
results_format: sarif
|
results_format: sarif
|
||||||
|
2
.github/workflows/testdriver.yml
vendored
2
.github/workflows/testdriver.yml
vendored
@ -46,7 +46,7 @@ jobs:
|
|||||||
password: ${{ secrets.DOCKER_HUB_API }}
|
password: ${{ secrets.DOCKER_HUB_API }}
|
||||||
|
|
||||||
- name: Build and push test image
|
- name: Build and push test image
|
||||||
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0 # v6.17.0
|
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Main stage
|
# Main stage
|
||||||
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
|
FROM alpine:3.22.0@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
|
||||||
|
|
||||||
# Copy necessary files
|
# Copy necessary files
|
||||||
COPY scripts /scripts
|
COPY scripts /scripts
|
||||||
|
@ -19,7 +19,7 @@ RUN DOCKER_ENABLE_SECURITY=true \
|
|||||||
./gradlew clean build -x spotlessApply -x spotlessCheck -x test -x sonarqube
|
./gradlew clean build -x spotlessApply -x spotlessCheck -x test -x sonarqube
|
||||||
|
|
||||||
# Main stage
|
# Main stage
|
||||||
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
|
FROM alpine:3.22.0@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
|
||||||
|
|
||||||
# Copy necessary files
|
# Copy necessary files
|
||||||
COPY scripts /scripts
|
COPY scripts /scripts
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# use alpine
|
# use alpine
|
||||||
FROM alpine:3.21.3@sha256:a8560b36e8b8210634f77d9f7f9efd7ffa463e380b75e2e74aff4511df3ef88c
|
FROM alpine:3.22.0@sha256:8a1f59ffb675680d47db6337b49d22281a139e9d709335b492be023728e11715
|
||||||
|
|
||||||
ARG VERSION_TAG
|
ARG VERSION_TAG
|
||||||
|
|
||||||
|
78
README.md
78
README.md
@ -116,47 +116,47 @@ Stirling-PDF currently supports 40 languages!
|
|||||||
|
|
||||||
| Language | Progress |
|
| Language | Progress |
|
||||||
| -------------------------------------------- | -------------------------------------- |
|
| -------------------------------------------- | -------------------------------------- |
|
||||||
| Arabic (العربية) (ar_AR) |  |
|
| Arabic (العربية) (ar_AR) |  |
|
||||||
| Azerbaijani (Azərbaycan Dili) (az_AZ) |  |
|
| Azerbaijani (Azərbaycan Dili) (az_AZ) |  |
|
||||||
| Basque (Euskara) (eu_ES) |  |
|
| Basque (Euskara) (eu_ES) |  |
|
||||||
| Bulgarian (Български) (bg_BG) |  |
|
| Bulgarian (Български) (bg_BG) |  |
|
||||||
| Catalan (Català) (ca_CA) |  |
|
| Catalan (Català) (ca_CA) |  |
|
||||||
| Croatian (Hrvatski) (hr_HR) |  |
|
| Croatian (Hrvatski) (hr_HR) |  |
|
||||||
| Czech (Česky) (cs_CZ) |  |
|
| Czech (Česky) (cs_CZ) |  |
|
||||||
| Danish (Dansk) (da_DK) |  |
|
| Danish (Dansk) (da_DK) |  |
|
||||||
| Dutch (Nederlands) (nl_NL) |  |
|
| Dutch (Nederlands) (nl_NL) |  |
|
||||||
| English (English) (en_GB) |  |
|
| English (English) (en_GB) |  |
|
||||||
| English (US) (en_US) |  |
|
| English (US) (en_US) |  |
|
||||||
| French (Français) (fr_FR) |  |
|
| French (Français) (fr_FR) |  |
|
||||||
| German (Deutsch) (de_DE) |  |
|
| German (Deutsch) (de_DE) |  |
|
||||||
| Greek (Ελληνικά) (el_GR) |  |
|
| Greek (Ελληνικά) (el_GR) |  |
|
||||||
| Hindi (हिंदी) (hi_IN) |  |
|
| Hindi (हिंदी) (hi_IN) |  |
|
||||||
| Hungarian (Magyar) (hu_HU) |  |
|
| Hungarian (Magyar) (hu_HU) |  |
|
||||||
| Indonesian (Bahasa Indonesia) (id_ID) |  |
|
| Indonesian (Bahasa Indonesia) (id_ID) |  |
|
||||||
| Irish (Gaeilge) (ga_IE) |  |
|
| Irish (Gaeilge) (ga_IE) |  |
|
||||||
| Italian (Italiano) (it_IT) |  |
|
| Italian (Italiano) (it_IT) |  |
|
||||||
| Japanese (日本語) (ja_JP) |  |
|
| Japanese (日本語) (ja_JP) |  |
|
||||||
| Korean (한국어) (ko_KR) |  |
|
| Korean (한국어) (ko_KR) |  |
|
||||||
| Norwegian (Norsk) (no_NB) |  |
|
| Norwegian (Norsk) (no_NB) |  |
|
||||||
| Persian (فارسی) (fa_IR) |  |
|
| Persian (فارسی) (fa_IR) |  |
|
||||||
| Polish (Polski) (pl_PL) |  |
|
| Polish (Polski) (pl_PL) |  |
|
||||||
| Portuguese (Português) (pt_PT) |  |
|
| Portuguese (Português) (pt_PT) |  |
|
||||||
| Portuguese Brazilian (Português) (pt_BR) |  |
|
| Portuguese Brazilian (Português) (pt_BR) |  |
|
||||||
| Romanian (Română) (ro_RO) |  |
|
| Romanian (Română) (ro_RO) |  |
|
||||||
| Russian (Русский) (ru_RU) |  |
|
| Russian (Русский) (ru_RU) |  |
|
||||||
| Serbian Latin alphabet (Srpski) (sr_LATN_RS) |  |
|
| Serbian Latin alphabet (Srpski) (sr_LATN_RS) |  |
|
||||||
| Simplified Chinese (简体中文) (zh_CN) |  |
|
| Simplified Chinese (简体中文) (zh_CN) |  |
|
||||||
| Slovakian (Slovensky) (sk_SK) |  |
|
| Slovakian (Slovensky) (sk_SK) |  |
|
||||||
| Slovenian (Slovenščina) (sl_SI) |  |
|
| Slovenian (Slovenščina) (sl_SI) |  |
|
||||||
| Spanish (Español) (es_ES) |  |
|
| Spanish (Español) (es_ES) |  |
|
||||||
| Swedish (Svenska) (sv_SE) |  |
|
| Swedish (Svenska) (sv_SE) |  |
|
||||||
| Thai (ไทย) (th_TH) |  |
|
| Thai (ไทย) (th_TH) |  |
|
||||||
| Tibetan (བོད་ཡིག་) (bo_CN) |  |
|
| Tibetan (བོད་ཡིག་) (bo_CN) |  |
|
||||||
| Traditional Chinese (繁體中文) (zh_TW) |  |
|
| Traditional Chinese (繁體中文) (zh_TW) |  |
|
||||||
| Turkish (Türkçe) (tr_TR) |  |
|
| Turkish (Türkçe) (tr_TR) |  |
|
||||||
| Ukrainian (Українська) (uk_UA) |  |
|
| Ukrainian (Українська) (uk_UA) |  |
|
||||||
| Vietnamese (Tiếng Việt) (vi_VN) |  |
|
| Vietnamese (Tiếng Việt) (vi_VN) |  |
|
||||||
| Malayalam (മലയാളം) (ml_IN) |  |
|
| Malayalam (മലയാളം) (ml_IN) |  |
|
||||||
|
|
||||||
## Stirling PDF Enterprise
|
## Stirling PDF Enterprise
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ plugins {
|
|||||||
id "org.springdoc.openapi-gradle-plugin" version "1.9.0"
|
id "org.springdoc.openapi-gradle-plugin" version "1.9.0"
|
||||||
id "io.swagger.swaggerhub" version "1.3.2"
|
id "io.swagger.swaggerhub" version "1.3.2"
|
||||||
id "edu.sc.seis.launch4j" version "3.0.6"
|
id "edu.sc.seis.launch4j" version "3.0.6"
|
||||||
id "com.diffplug.spotless" version "7.0.3"
|
id "com.diffplug.spotless" version "7.0.4"
|
||||||
id "com.github.jk1.dependency-license-report" version "2.9"
|
id "com.github.jk1.dependency-license-report" version "2.9"
|
||||||
//id "nebula.lint" version "19.0.3"
|
//id "nebula.lint" version "19.0.3"
|
||||||
id("org.panteleyev.jpackageplugin") version "1.6.1"
|
id("org.panteleyev.jpackageplugin") version "1.6.1"
|
||||||
@ -430,7 +430,7 @@ dependencies {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (System.getenv("STIRLING_PDF_DESKTOP_UI") != "false") {
|
if (System.getenv("STIRLING_PDF_DESKTOP_UI") != "false") {
|
||||||
implementation "me.friwi:jcefmaven:132.3.1"
|
implementation "me.friwi:jcefmaven:135.0.20"
|
||||||
implementation "org.openjfx:javafx-controls:21"
|
implementation "org.openjfx:javafx-controls:21"
|
||||||
implementation "org.openjfx:javafx-swing:21"
|
implementation "org.openjfx:javafx-swing:21"
|
||||||
}
|
}
|
||||||
@ -464,7 +464,7 @@ dependencies {
|
|||||||
implementation 'com.unboundid.product.scim2:scim2-sdk-client:2.3.5'
|
implementation 'com.unboundid.product.scim2:scim2-sdk-client:2.3.5'
|
||||||
// Don't upgrade h2database
|
// Don't upgrade h2database
|
||||||
runtimeOnly "com.h2database:h2:2.3.232"
|
runtimeOnly "com.h2database:h2:2.3.232"
|
||||||
runtimeOnly "org.postgresql:postgresql:42.7.5"
|
runtimeOnly "org.postgresql:postgresql:42.7.6"
|
||||||
constraints {
|
constraints {
|
||||||
implementation "org.opensaml:opensaml-core:$openSamlVersion"
|
implementation "org.opensaml:opensaml-core:$openSamlVersion"
|
||||||
implementation "org.opensaml:opensaml-saml-api:$openSamlVersion"
|
implementation "org.opensaml:opensaml-saml-api:$openSamlVersion"
|
||||||
|
@ -25,7 +25,7 @@ configurations.all {
|
|||||||
|
|
||||||
dependencyManagement {
|
dependencyManagement {
|
||||||
imports {
|
imports {
|
||||||
mavenBom 'org.springframework.boot:spring-boot-dependencies:3.4.5'
|
mavenBom 'org.springframework.boot:spring-boot-dependencies:3.5.0'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -43,9 +43,9 @@ dependencies {
|
|||||||
implementation 'com.drewnoakes:metadata-extractor:2.19.0' // Image metadata extractor
|
implementation 'com.drewnoakes:metadata-extractor:2.19.0' // Image metadata extractor
|
||||||
implementation 'com.vladsch.flexmark:flexmark-html2md-converter:0.64.8'
|
implementation 'com.vladsch.flexmark:flexmark-html2md-converter:0.64.8'
|
||||||
implementation "org.apache.pdfbox:pdfbox:$pdfboxVersion"
|
implementation "org.apache.pdfbox:pdfbox:$pdfboxVersion"
|
||||||
implementation 'jakarta.servlet:jakarta.servlet-api:6.0.0'
|
implementation 'jakarta.servlet:jakarta.servlet-api:6.1.0'
|
||||||
implementation 'org.snakeyaml:snakeyaml-engine:2.9'
|
implementation 'org.snakeyaml:snakeyaml-engine:2.9'
|
||||||
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.6"
|
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.8"
|
||||||
|
|
||||||
compileOnly "org.projectlombok:lombok:$lombokVersion"
|
compileOnly "org.projectlombok:lombok:$lombokVersion"
|
||||||
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
|
annotationProcessor "org.projectlombok:lombok:$lombokVersion"
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Diese Cookies sind für das
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analyse
|
cookieBanner.preferencesModal.analytics.title=Analyse
|
||||||
cookieBanner.preferencesModal.analytics.description=Diese Cookies helfen uns zu verstehen, wie unsere Tools genutzt werden, damit wir uns darauf konzentrieren können, die Funktionen zu entwickeln, die unserer Community am meisten am Herzen liegen. Seien Sie beruhigt – Stirling PDF kann und wird niemals den Inhalt der Dokumente verfolgen, mit denen Sie arbeiten.
|
cookieBanner.preferencesModal.analytics.description=Diese Cookies helfen uns zu verstehen, wie unsere Tools genutzt werden, damit wir uns darauf konzentrieren können, die Funktionen zu entwickeln, die unserer Community am meisten am Herzen liegen. Seien Sie beruhigt – Stirling PDF kann und wird niemals den Inhalt der Dokumente verfolgen, mit denen Sie arbeiten.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Estas cookies son esenciales
|
|||||||
cookieBanner.preferencesModal.analytics.title=Análisis
|
cookieBanner.preferencesModal.analytics.title=Análisis
|
||||||
cookieBanner.preferencesModal.analytics.description=Estas cookies nos ayudan a entender cómo se están utilizando nuestras herramientas, para que podamos centrarnos en desarrollar las funciones que nuestra comunidad valora más. Tenga la seguridad de que Stirling PDF no puede y nunca podrá rastrear el contenido de los documentos con los que trabaja.
|
cookieBanner.preferencesModal.analytics.description=Estas cookies nos ayudan a entender cómo se están utilizando nuestras herramientas, para que podamos centrarnos en desarrollar las funciones que nuestra comunidad valora más. Tenga la seguridad de que Stirling PDF no puede y nunca podrá rastrear el contenido de los documentos con los que trabaja.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Ezek a sütik elengedhetetle
|
|||||||
cookieBanner.preferencesModal.analytics.title=Adatelemzések
|
cookieBanner.preferencesModal.analytics.title=Adatelemzések
|
||||||
cookieBanner.preferencesModal.analytics.description=Ezek a sütik segítenek megérteni, hogyan használják eszközeinket, így a közösségünk által leginkább értékelt funkciókra összpontosíthatunk. Nyugodt lehet-a Stirling PDF nem képes és soha nem is fog nyomon követni az Ön által használt dokumentumok tartalmát.
|
cookieBanner.preferencesModal.analytics.description=Ezek a sütik segítenek megérteni, hogyan használják eszközeinket, így a közösségünk által leginkább értékelt funkciókra összpontosíthatunk. Nyugodt lehet-a Stirling PDF nem képes és soha nem is fog nyomon követni az Ön által használt dokumentumok tartalmát.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Questi cookie sono essenzial
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=Questi cookie ci aiutano a capire come vengono utilizzati i nostri strumenti, così possiamo concentrarci sullo sviluppo delle funzionalità che la nostra community apprezza di più. Non preoccuparti: Stirling PDF non può e non traccerà mai il contenuto dei documenti con cui lavori.
|
cookieBanner.preferencesModal.analytics.description=Questi cookie ci aiutano a capire come vengono utilizzati i nostri strumenti, così possiamo concentrarci sullo sviluppo delle funzionalità che la nostra community apprezza di più. Non preoccuparti: Stirling PDF non può e non traccerà mai il contenuto dei documenti con cui lavori.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Falsa scansione
|
||||||
|
fakeScan.header=Falsa scansione
|
||||||
|
fakeScan.description=Crea un PDF che sembra scansionato
|
||||||
|
fakeScan.selectPDF=Seleziona PDF:
|
||||||
|
fakeScan.quality=Qualità di scansione
|
||||||
|
fakeScan.quality.low=Bassa
|
||||||
|
fakeScan.quality.medium=Media
|
||||||
|
fakeScan.quality.high=Alta
|
||||||
|
fakeScan.rotation=Angolo di rotazione
|
||||||
|
fakeScan.rotation.none=Nessuno
|
||||||
|
fakeScan.rotation.slight=Lieve
|
||||||
|
fakeScan.rotation.moderate=Moderato
|
||||||
|
fakeScan.rotation.severe=Severo
|
||||||
|
fakeScan.submit=Crea una falsa scansione
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Falsa scansione
|
||||||
|
home.fakeScan.desc=Crea un PDF che sembra scansionato
|
||||||
|
fakeScan.tags=scansiona, simula, realistico, converti
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Abilita impostazioni di scansione avanzate
|
||||||
|
fakeScan.colorspace=Spazio colore
|
||||||
|
fakeScan.colorspace.grayscale=Scala di grigi
|
||||||
|
fakeScan.colorspace.color=Colore
|
||||||
|
fakeScan.border=Bordo (px)
|
||||||
|
fakeScan.rotate=Rotazione di base (gradi)
|
||||||
|
fakeScan.rotateVariance=Varianza di rotazione (gradi)
|
||||||
|
fakeScan.brightness=Luminosità
|
||||||
|
fakeScan.contrast=Contrasto
|
||||||
|
fakeScan.blur=Sfocatura
|
||||||
|
fakeScan.noise=Rumore
|
||||||
|
fakeScan.yellowish=Giallastro (simula carta vecchia)
|
||||||
|
fakeScan.resolution=Risoluzione (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=これらのCookieはウェ
|
|||||||
cookieBanner.preferencesModal.analytics.title=分析
|
cookieBanner.preferencesModal.analytics.title=分析
|
||||||
cookieBanner.preferencesModal.analytics.description=これらのCookieはツールがどのように使用されているかを把握するのに役立ちます。これによりコミュニティが最も重視する機能の開発に集中することができます。ご安心ください。Stirling PDFはお客様が操作するドキュメントの内容を追跡することは決してありません。
|
cookieBanner.preferencesModal.analytics.description=これらのCookieはツールがどのように使用されているかを把握するのに役立ちます。これによりコミュニティが最も重視する機能の開発に集中することができます。ご安心ください。Stirling PDFはお客様が操作するドキュメントの内容を追跡することは決してありません。
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=വെബ്സൈറ്റ
|
|||||||
cookieBanner.preferencesModal.analytics.title=അനലിറ്റിക്സ്
|
cookieBanner.preferencesModal.analytics.title=അനലിറ്റിക്സ്
|
||||||
cookieBanner.preferencesModal.analytics.description=ഞങ്ങളുടെ ടൂളുകൾ എങ്ങനെ ഉപയോഗിക്കുന്നുവെന്ന് മനസ്സിലാക്കാൻ ഈ കുക്കികൾ ഞങ്ങളെ സഹായിക്കുന്നു, അതിനാൽ ഞങ്ങളുടെ കമ്മ്യൂണിറ്റി ഏറ്റവും കൂടുതൽ വിലമതിക്കുന്ന ഫീച്ചറുകൾ നിർമ്മിക്കുന്നതിൽ ഞങ്ങൾക്ക് ശ്രദ്ധ കേന്ദ്രീകരിക്കാൻ കഴിയും. ഉറപ്പാക്കുക—സ്റ്റെർലിംഗ് PDF-ന് നിങ്ങൾ പ്രവർത്തിക്കുന്ന പ്രമാണങ്ങളുടെ ഉള്ളടക്കം ട്രാക്ക് ചെയ്യാൻ കഴിയില്ല, ഒരിക്കലും കഴിയില്ല.
|
cookieBanner.preferencesModal.analytics.description=ഞങ്ങളുടെ ടൂളുകൾ എങ്ങനെ ഉപയോഗിക്കുന്നുവെന്ന് മനസ്സിലാക്കാൻ ഈ കുക്കികൾ ഞങ്ങളെ സഹായിക്കുന്നു, അതിനാൽ ഞങ്ങളുടെ കമ്മ്യൂണിറ്റി ഏറ്റവും കൂടുതൽ വിലമതിക്കുന്ന ഫീച്ചറുകൾ നിർമ്മിക്കുന്നതിൽ ഞങ്ങൾക്ക് ശ്രദ്ധ കേന്ദ്രീകരിക്കാൻ കഴിയും. ഉറപ്പാക്കുക—സ്റ്റെർലിംഗ് PDF-ന് നിങ്ങൾ പ്രവർത്തിക്കുന്ന പ്രമാണങ്ങളുടെ ഉള്ളടക്കം ട്രാക്ക് ചെയ്യാൻ കഴിയില്ല, ഒരിക്കലും കഴിയില്ല.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Estes cookies são essenciai
|
|||||||
cookieBanner.preferencesModal.analytics.title=Cookies Analíticos
|
cookieBanner.preferencesModal.analytics.title=Cookies Analíticos
|
||||||
cookieBanner.preferencesModal.analytics.description=Estes cookies nos ajudam a entender como nossas ferramentas estão sendo utilizadas, para que possamos nos concentrar na construção dos recursos que nossa comunidade mais valoriza. Fique tranquilo: o Stirling PDF não pode e nunca rastreará o conteúdo dos documentos com os quais você manipula.
|
cookieBanner.preferencesModal.analytics.description=Estes cookies nos ajudam a entender como nossas ferramentas estão sendo utilizadas, para que possamos nos concentrar na construção dos recursos que nossa comunidade mais valoriza. Fique tranquilo: o Stirling PDF não pode e nunca rastreará o conteúdo dos documentos com os quais você manipula.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Эти файлы cookie н
|
|||||||
cookieBanner.preferencesModal.analytics.title=Аналитика
|
cookieBanner.preferencesModal.analytics.title=Аналитика
|
||||||
cookieBanner.preferencesModal.analytics.description=Эти файлы cookie помогают нам понять, как используются наши инструменты, чтобы мы могли сосредоточиться на создании функций, которые ценит наше сообщество. Будьте уверены — Stirling PDF не может и никогда не будет отслеживать содержимое документов, с которыми вы работаете.
|
cookieBanner.preferencesModal.analytics.description=Эти файлы cookie помогают нам понять, как используются наши инструменты, чтобы мы могли сосредоточиться на создании функций, которые ценит наше сообщество. Будьте уверены — Stirling PDF не может и никогда не будет отслеживать содержимое документов, с которыми вы работаете.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Bu çerezler, web sitesinin
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analitik
|
cookieBanner.preferencesModal.analytics.title=Analitik
|
||||||
cookieBanner.preferencesModal.analytics.description=Bu çerezler, araçlarımızın nasıl kullanıldığını anlamamıza yardımcı olur, böylece topluluğumuzun en çok değer verdiği özellikleri geliştirmeye odaklanabiliriz. İçiniz rahat olsun — Stirling PDF, belgelerinizin içeriğini asla takip etmez ve etmeyecektir.
|
cookieBanner.preferencesModal.analytics.description=Bu çerezler, araçlarımızın nasıl kullanıldığını anlamamıza yardımcı olur, böylece topluluğumuzun en çok değer verdiği özellikleri geliştirmeye odaklanabiliriz. İçiniz rahat olsun — Stirling PDF, belgelerinizin içeriğini asla takip etmez ve etmeyecektir.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=Ці файли cookie є н
|
|||||||
cookieBanner.preferencesModal.analytics.title=Аналітика
|
cookieBanner.preferencesModal.analytics.title=Аналітика
|
||||||
cookieBanner.preferencesModal.analytics.description=Ці файли cookie допомагають нам зрозуміти, як використовуються наші інструменти, щоб ми могли зосередитися на створенні функцій, які найбільше цінує наша спільнота. Будьте впевнені — Stirling PDF не може і ніколи не буде відстежувати вміст документів, з якими ви працюєте.
|
cookieBanner.preferencesModal.analytics.description=Ці файли cookie допомагають нам зрозуміти, як використовуються наші інструменти, щоб ми могли зосередитися на створенні функцій, які найбільше цінує наша спільнота. Будьте впевнені — Stirling PDF не може і ніколи не буде відстежувати вміст документів, з якими ви працюєте.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=These cookies are essential
|
|||||||
cookieBanner.preferencesModal.analytics.title=Analytics
|
cookieBanner.preferencesModal.analytics.title=Analytics
|
||||||
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
cookieBanner.preferencesModal.analytics.description=These cookies help us understand how our tools are being used, so we can focus on building the features our community values most. Rest assured—Stirling PDF cannot and will never track the content of the documents you work with.
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=这些Cookie对网站基础
|
|||||||
cookieBanner.preferencesModal.analytics.title=分析统计
|
cookieBanner.preferencesModal.analytics.title=分析统计
|
||||||
cookieBanner.preferencesModal.analytics.description=这些Cookie帮助我们分析工具使用情况,以便聚焦开发用户最需要的功能。再次强调:Stirling PDF绝不会追踪您处理的文档内容。
|
cookieBanner.preferencesModal.analytics.description=这些Cookie帮助我们分析工具使用情况,以便聚焦开发用户最需要的功能。再次强调:Stirling PDF绝不会追踪您处理的文档内容。
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -1569,3 +1569,38 @@ cookieBanner.preferencesModal.necessary.description=這些 Cookies 對網站正
|
|||||||
cookieBanner.preferencesModal.analytics.title=分析 Cookies
|
cookieBanner.preferencesModal.analytics.title=分析 Cookies
|
||||||
cookieBanner.preferencesModal.analytics.description=這些 Cookies 幫助我們分析您如何使用我們的工具,好讓我們能專注在構建社群最重視的功能。儘管放心—— Stirling PDF 不會且永不追蹤您的文件
|
cookieBanner.preferencesModal.analytics.description=這些 Cookies 幫助我們分析您如何使用我們的工具,好讓我們能專注在構建社群最重視的功能。儘管放心—— Stirling PDF 不會且永不追蹤您的文件
|
||||||
|
|
||||||
|
#fakeScan
|
||||||
|
fakeScan.title=Fake Scan
|
||||||
|
fakeScan.header=Fake Scan
|
||||||
|
fakeScan.description=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.selectPDF=Select PDF:
|
||||||
|
fakeScan.quality=Scan Quality
|
||||||
|
fakeScan.quality.low=Low
|
||||||
|
fakeScan.quality.medium=Medium
|
||||||
|
fakeScan.quality.high=High
|
||||||
|
fakeScan.rotation=Rotation Angle
|
||||||
|
fakeScan.rotation.none=None
|
||||||
|
fakeScan.rotation.slight=Slight
|
||||||
|
fakeScan.rotation.moderate=Moderate
|
||||||
|
fakeScan.rotation.severe=Severe
|
||||||
|
fakeScan.submit=Create Fake Scan
|
||||||
|
|
||||||
|
#home.fakeScan
|
||||||
|
home.fakeScan.title=Fake Scan
|
||||||
|
home.fakeScan.desc=Create a PDF that looks like it was scanned
|
||||||
|
fakeScan.tags=scan,simulate,realistic,convert
|
||||||
|
|
||||||
|
# FakeScan advanced settings (frontend)
|
||||||
|
fakeScan.advancedSettings=Enable Advanced Scan Settings
|
||||||
|
fakeScan.colorspace=Colorspace
|
||||||
|
fakeScan.colorspace.grayscale=Grayscale
|
||||||
|
fakeScan.colorspace.color=Color
|
||||||
|
fakeScan.border=Border (px)
|
||||||
|
fakeScan.rotate=Base Rotation (degrees)
|
||||||
|
fakeScan.rotateVariance=Rotation Variance (degrees)
|
||||||
|
fakeScan.brightness=Brightness
|
||||||
|
fakeScan.contrast=Contrast
|
||||||
|
fakeScan.blur=Blur
|
||||||
|
fakeScan.noise=Noise
|
||||||
|
fakeScan.yellowish=Yellowish (simulate old paper)
|
||||||
|
fakeScan.resolution=Resolution (DPI)
|
||||||
|
@ -42,13 +42,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.core:jackson-annotations",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.core:jackson-annotations",
|
"moduleName": "com.fasterxml.jackson.core:jackson-annotations",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson",
|
"moduleUrl": "https://github.com/FasterXML/jackson",
|
||||||
@ -56,13 +49,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.core:jackson-core",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-core",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.core:jackson-core",
|
"moduleName": "com.fasterxml.jackson.core:jackson-core",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-core",
|
"moduleUrl": "https://github.com/FasterXML/jackson-core",
|
||||||
@ -70,13 +56,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.core:jackson-databind",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.core:jackson-databind",
|
"moduleName": "com.fasterxml.jackson.core:jackson-databind",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson",
|
"moduleUrl": "https://github.com/FasterXML/jackson",
|
||||||
@ -84,13 +63,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-dataformats-text",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml",
|
"moduleName": "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-dataformats-text",
|
"moduleUrl": "https://github.com/FasterXML/jackson-dataformats-text",
|
||||||
@ -98,13 +70,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8",
|
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jdk8",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8",
|
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8",
|
||||||
@ -112,13 +77,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
|
"moduleName": "com.fasterxml.jackson.datatype:jackson-datatype-jsr310",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310",
|
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310",
|
||||||
@ -147,13 +105,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names",
|
"moduleName": "com.fasterxml.jackson.module:jackson-module-parameter-names",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names",
|
"moduleUrl": "https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names",
|
||||||
@ -161,13 +112,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "com.fasterxml.jackson:jackson-bom",
|
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-bom",
|
|
||||||
"moduleVersion": "2.18.3",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "com.fasterxml.jackson:jackson-bom",
|
"moduleName": "com.fasterxml.jackson:jackson-bom",
|
||||||
"moduleUrl": "https://github.com/FasterXML/jackson-bom",
|
"moduleUrl": "https://github.com/FasterXML/jackson-bom",
|
||||||
@ -606,13 +550,6 @@
|
|||||||
"moduleLicense": "MIT License",
|
"moduleLicense": "MIT License",
|
||||||
"moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php"
|
"moduleLicenseUrl": "http://www.opensource.org/licenses/mit-license.php"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "io.micrometer:micrometer-commons",
|
|
||||||
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
|
|
||||||
"moduleVersion": "1.14.6",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "io.micrometer:micrometer-commons",
|
"moduleName": "io.micrometer:micrometer-commons",
|
||||||
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
|
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
|
||||||
@ -634,13 +571,6 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "io.micrometer:micrometer-observation",
|
|
||||||
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
|
|
||||||
"moduleVersion": "1.14.6",
|
|
||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "io.micrometer:micrometer-observation",
|
"moduleName": "io.micrometer:micrometer-observation",
|
||||||
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
|
"moduleUrl": "https://github.com/micrometer-metrics/micrometer",
|
||||||
@ -697,13 +627,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "io.swagger.core.v3:swagger-annotations-jakarta",
|
|
||||||
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-annotations",
|
|
||||||
"moduleVersion": "2.2.29",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "io.swagger.core.v3:swagger-annotations-jakarta",
|
"moduleName": "io.swagger.core.v3:swagger-annotations-jakarta",
|
||||||
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-annotations",
|
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-annotations",
|
||||||
@ -711,13 +634,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "io.swagger.core.v3:swagger-core-jakarta",
|
|
||||||
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-core",
|
|
||||||
"moduleVersion": "2.2.29",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "io.swagger.core.v3:swagger-core-jakarta",
|
"moduleName": "io.swagger.core.v3:swagger-core-jakarta",
|
||||||
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-core",
|
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-core",
|
||||||
@ -725,13 +641,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "io.swagger.core.v3:swagger-models-jakarta",
|
|
||||||
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-models",
|
|
||||||
"moduleVersion": "2.2.29",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "io.swagger.core.v3:swagger-models-jakarta",
|
"moduleName": "io.swagger.core.v3:swagger-models-jakarta",
|
||||||
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-models",
|
"moduleUrl": "https://github.com/swagger-api/swagger-core/modules/swagger-models",
|
||||||
@ -795,6 +704,13 @@
|
|||||||
"moduleLicense": "GPL2 w/ CPE",
|
"moduleLicense": "GPL2 w/ CPE",
|
||||||
"moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html"
|
"moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"moduleName": "jakarta.servlet:jakarta.servlet-api",
|
||||||
|
"moduleUrl": "https://www.eclipse.org",
|
||||||
|
"moduleVersion": "6.1.0",
|
||||||
|
"moduleLicense": "GPL2 w/ CPE",
|
||||||
|
"moduleLicenseUrl": "https://www.gnu.org/software/classpath/license.html"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"moduleName": "jakarta.transaction:jakarta.transaction-api",
|
"moduleName": "jakarta.transaction:jakarta.transaction-api",
|
||||||
"moduleUrl": "https://projects.eclipse.org/projects/ee4j.jta",
|
"moduleUrl": "https://projects.eclipse.org/projects/ee4j.jta",
|
||||||
@ -854,14 +770,14 @@
|
|||||||
{
|
{
|
||||||
"moduleName": "me.friwi:jcef-api",
|
"moduleName": "me.friwi:jcef-api",
|
||||||
"moduleUrl": "https://bitbucket.org/chromiumembedded/java-cef/",
|
"moduleUrl": "https://bitbucket.org/chromiumembedded/java-cef/",
|
||||||
"moduleVersion": "jcef-1770317+cef-132.3.1+g144febe+chromium-132.0.6834.83",
|
"moduleVersion": "jcef-ca49ada+cef-135.0.20+ge7de5c3+chromium-135.0.7049.85",
|
||||||
"moduleLicense": "BSD License",
|
"moduleLicense": "BSD License",
|
||||||
"moduleLicenseUrl": "https://bitbucket.org/chromiumembedded/java-cef/src/master/LICENSE.txt"
|
"moduleLicenseUrl": "https://bitbucket.org/chromiumembedded/java-cef/src/master/LICENSE.txt"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"moduleName": "me.friwi:jcefmaven",
|
"moduleName": "me.friwi:jcefmaven",
|
||||||
"moduleUrl": "https://github.com/jcefmaven/jcefmaven/",
|
"moduleUrl": "https://github.com/jcefmaven/jcefmaven/",
|
||||||
"moduleVersion": "132.3.1",
|
"moduleVersion": "135.0.20",
|
||||||
"moduleLicense": "Apache-2.0 License",
|
"moduleLicense": "Apache-2.0 License",
|
||||||
"moduleLicenseUrl": "https://github.com/jcefmaven/jcefmaven/blob/master/LICENSE"
|
"moduleLicenseUrl": "https://github.com/jcefmaven/jcefmaven/blob/master/LICENSE"
|
||||||
},
|
},
|
||||||
@ -1079,7 +995,7 @@
|
|||||||
{
|
{
|
||||||
"moduleName": "org.checkerframework:checker-qual",
|
"moduleName": "org.checkerframework:checker-qual",
|
||||||
"moduleUrl": "https://checkerframework.org/",
|
"moduleUrl": "https://checkerframework.org/",
|
||||||
"moduleVersion": "3.48.3",
|
"moduleVersion": "3.49.3",
|
||||||
"moduleLicense": "The MIT License",
|
"moduleLicense": "The MIT License",
|
||||||
"moduleLicenseUrl": "http://opensource.org/licenses/MIT"
|
"moduleLicenseUrl": "http://opensource.org/licenses/MIT"
|
||||||
},
|
},
|
||||||
@ -1507,7 +1423,7 @@
|
|||||||
{
|
{
|
||||||
"moduleName": "org.postgresql:postgresql",
|
"moduleName": "org.postgresql:postgresql",
|
||||||
"moduleUrl": "https://jdbc.postgresql.org/",
|
"moduleUrl": "https://jdbc.postgresql.org/",
|
||||||
"moduleVersion": "42.7.5",
|
"moduleVersion": "42.7.6",
|
||||||
"moduleLicense": "BSD-2-Clause",
|
"moduleLicense": "BSD-2-Clause",
|
||||||
"moduleLicenseUrl": "https://jdbc.postgresql.org/about/license.html"
|
"moduleLicenseUrl": "https://jdbc.postgresql.org/about/license.html"
|
||||||
},
|
},
|
||||||
@ -1532,49 +1448,24 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springdoc:springdoc-openapi-starter-common",
|
|
||||||
"moduleVersion": "2.8.6",
|
|
||||||
"moduleLicense": "The Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springdoc:springdoc-openapi-starter-common",
|
"moduleName": "org.springdoc:springdoc-openapi-starter-common",
|
||||||
"moduleVersion": "2.8.8",
|
"moduleVersion": "2.8.8",
|
||||||
"moduleLicense": "The Apache License, Version 2.0",
|
"moduleLicense": "The Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-api",
|
|
||||||
"moduleVersion": "2.8.6",
|
|
||||||
"moduleLicense": "The Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-api",
|
"moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-api",
|
||||||
"moduleVersion": "2.8.8",
|
"moduleVersion": "2.8.8",
|
||||||
"moduleLicense": "The Apache License, Version 2.0",
|
"moduleLicense": "The Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-ui",
|
|
||||||
"moduleVersion": "2.8.6",
|
|
||||||
"moduleLicense": "The Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-ui",
|
"moduleName": "org.springdoc:springdoc-openapi-starter-webmvc-ui",
|
||||||
"moduleVersion": "2.8.8",
|
"moduleVersion": "2.8.8",
|
||||||
"moduleLicense": "The Apache License, Version 2.0",
|
"moduleLicense": "The Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot",
|
"moduleName": "org.springframework.boot:spring-boot",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1596,13 +1487,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot-autoconfigure",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot-autoconfigure",
|
"moduleName": "org.springframework.boot:spring-boot-autoconfigure",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1617,13 +1501,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter",
|
"moduleName": "org.springframework.boot:spring-boot-starter",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1659,13 +1536,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-json",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-json",
|
"moduleName": "org.springframework.boot:spring-boot-starter-json",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1673,13 +1543,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-logging",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-logging",
|
"moduleName": "org.springframework.boot:spring-boot-starter-logging",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1708,13 +1571,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-thymeleaf",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-thymeleaf",
|
"moduleName": "org.springframework.boot:spring-boot-starter-thymeleaf",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1729,13 +1585,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-web",
|
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
|
||||||
"moduleVersion": "3.4.5",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework.boot:spring-boot-starter-web",
|
"moduleName": "org.springframework.boot:spring-boot-starter-web",
|
||||||
"moduleUrl": "https://spring.io/projects/spring-boot",
|
"moduleUrl": "https://spring.io/projects/spring-boot",
|
||||||
@ -1820,13 +1669,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-aop",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-aop",
|
"moduleName": "org.springframework:spring-aop",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1841,13 +1683,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-beans",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-beans",
|
"moduleName": "org.springframework:spring-beans",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1855,13 +1690,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-context",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-context",
|
"moduleName": "org.springframework:spring-context",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1876,13 +1704,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-core",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-core",
|
"moduleName": "org.springframework:spring-core",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1890,13 +1711,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-expression",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-expression",
|
"moduleName": "org.springframework:spring-expression",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1904,13 +1718,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-jcl",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-jcl",
|
"moduleName": "org.springframework:spring-jcl",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1939,13 +1746,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-web",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-web",
|
"moduleName": "org.springframework:spring-web",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1953,13 +1753,6 @@
|
|||||||
"moduleLicense": "Apache License, Version 2.0",
|
"moduleLicense": "Apache License, Version 2.0",
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.springframework:spring-webmvc",
|
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
|
||||||
"moduleVersion": "6.2.6",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "https://www.apache.org/licenses/LICENSE-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.springframework:spring-webmvc",
|
"moduleName": "org.springframework:spring-webmvc",
|
||||||
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
"moduleUrl": "https://github.com/spring-projects/spring-framework",
|
||||||
@ -1998,25 +1791,12 @@
|
|||||||
"moduleLicense": "The Apache Software License, Version 2.0",
|
"moduleLicense": "The Apache Software License, Version 2.0",
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.webjars:swagger-ui",
|
|
||||||
"moduleUrl": "https://www.webjars.org",
|
|
||||||
"moduleVersion": "5.20.1",
|
|
||||||
"moduleLicense": "Apache-2.0"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.webjars:swagger-ui",
|
"moduleName": "org.webjars:swagger-ui",
|
||||||
"moduleUrl": "https://www.webjars.org",
|
"moduleUrl": "https://www.webjars.org",
|
||||||
"moduleVersion": "5.21.0",
|
"moduleVersion": "5.21.0",
|
||||||
"moduleLicense": "Apache-2.0"
|
"moduleLicense": "Apache-2.0"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.webjars:webjars-locator-lite",
|
|
||||||
"moduleUrl": "https://webjars.org",
|
|
||||||
"moduleVersion": "1.0.1",
|
|
||||||
"moduleLicense": "MIT",
|
|
||||||
"moduleLicenseUrl": "https://github.com/webjars/webjars-locator-lite/blob/main/LICENSE.md"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.webjars:webjars-locator-lite",
|
"moduleName": "org.webjars:webjars-locator-lite",
|
||||||
"moduleUrl": "https://webjars.org",
|
"moduleUrl": "https://webjars.org",
|
||||||
@ -2024,13 +1804,6 @@
|
|||||||
"moduleLicense": "MIT",
|
"moduleLicense": "MIT",
|
||||||
"moduleLicenseUrl": "https://github.com/webjars/webjars-locator-lite/blob/main/LICENSE.md"
|
"moduleLicenseUrl": "https://github.com/webjars/webjars-locator-lite/blob/main/LICENSE.md"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"moduleName": "org.yaml:snakeyaml",
|
|
||||||
"moduleUrl": "https://bitbucket.org/snakeyaml/snakeyaml",
|
|
||||||
"moduleVersion": "2.3",
|
|
||||||
"moduleLicense": "Apache License, Version 2.0",
|
|
||||||
"moduleLicenseUrl": "http://www.apache.org/licenses/LICENSE-2.0.txt"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"moduleName": "org.yaml:snakeyaml",
|
"moduleName": "org.yaml:snakeyaml",
|
||||||
"moduleUrl": "https://bitbucket.org/snakeyaml/snakeyaml",
|
"moduleUrl": "https://bitbucket.org/snakeyaml/snakeyaml",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user