Compare commits
No commits in common. "gh-pages" and "master" have entirely different histories.
41
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
# Checkout and setup
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Setup
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18
|
||||
# Install and build
|
||||
- name: Install
|
||||
run: npm ci
|
||||
- name: Build
|
||||
run: |
|
||||
npm run init
|
||||
npm run prod
|
||||
env:
|
||||
CI: true
|
||||
TRANSIFEX_TOKEN: ${{ secrets.TRANSIFEX_TOKEN }}
|
||||
# Deploy, limited to the main branch
|
||||
- name: Deploy
|
||||
if: success() && github.ref == 'refs/heads/master'
|
||||
uses: peaceiris/actions-gh-pages@v3
|
||||
with:
|
||||
publish_dir: ./dist
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
cname: btcpayserver.org
|
||||
user_name: 'github-actions[bot]'
|
||||
user_email: 'github-actions[bot]@users.noreply.github.com'
|
||||
6
.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
/dist
|
||||
/node_modules
|
||||
/transifex/download
|
||||
/github
|
||||
.env
|
||||
.idea
|
||||
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 btcpayserver
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
68
README.md
Normal file
@ -0,0 +1,68 @@
|
||||
# btcpayserver.org
|
||||
|
||||
The official website repository of [BTCPay Server project](https://github.com/btcpayserver/btcpayserver/).
|
||||
|
||||
## Contributing
|
||||
|
||||
Feel free to contribute ideas, code or content to improve the website.
|
||||
|
||||
Prior to submitting a major pull-request, make sure to discuss the changes with the community on [#website channel on Mattermost](https://chat.btcpayserver.org/btcpayserver/channels/website) to avoid duplicating the work.
|
||||
|
||||
If you're a developer looking to help, but you're not sure where to begin, check the `good first issue` label, which contains small pieces of work that have been specifically flagged as being friendly to new contributors.
|
||||
|
||||
Please do not open issues not related to the website in this repository. If you have an issue with BTCPay Server software, open an issue in an [appropriate repository](https://github.com/btcpayserver/btcpayserver/issues).
|
||||
|
||||
### Source files
|
||||
|
||||
All changes to the website should be applied in the `src` folder.
|
||||
|
||||
The files in the `src` are used in conjunction with the `transifex/resources` to make the btcpayserver.org website.
|
||||
|
||||
Create pull requests affecting the CSS, JS, images etc in the `src`-- and once merged, the changes will be used to roll out updates to the main directory.
|
||||
|
||||
Please **do not** submit any changes to the html files other than those within the `src` directory.
|
||||
|
||||
To fix spelling or grammatical errors, make updates to either the English string(s) in the relevant file of the `transifex/resources` directory or any of the **non-english** translations via the Transifex website. If you want to add new strings, append the `.json` file, preserving the JSON format.
|
||||
|
||||
Modifying existing strings may cause the already-translated strings to be lost ([more details](https://docs.transifex.com/projects/updating-content#section-using-the-api-or-command-line-client)).
|
||||
|
||||
### Translating the website
|
||||
|
||||
Translations help us make the software relevant for people who need it around the world.
|
||||
|
||||
If you would like to help us translate btcpayserver.org, please [join the team on Transifex](https://www.transifex.com/btcpayserver/btcpayserver-website/dashboard/).
|
||||
|
||||
Translations are only handled through Transifex, please do not create a pull request for translations.
|
||||
|
||||
For more information on contributing by translating, [check the translation guides](https://docs.btcpayserver.org/Contribute/ContributeTranslate/)
|
||||
|
||||
Translators can opt-in to be notified when new strings require translating for a language they're subscribed to.
|
||||
|
||||
We used a 90% minimum threshold for translations.
|
||||
|
||||
## How to build
|
||||
|
||||
Prerequisites:
|
||||
|
||||
- [Node.js](https://nodejs.org/en/) >= 10
|
||||
- Create a `.env` file containing the API token for Transifex (`TRANSIFEX_TOKEN="my_api_token"`)
|
||||
|
||||
Setup:
|
||||
|
||||
```sh
|
||||
# Install the dependencies
|
||||
npm install
|
||||
|
||||
# Download the translations – this is mandatory for the rest to work
|
||||
npm run init
|
||||
```
|
||||
|
||||
Build:
|
||||
|
||||
```sh
|
||||
# Build the site locally and start dev server
|
||||
npm start
|
||||
|
||||
# Build the site for production
|
||||
npm run prod
|
||||
```
|
||||
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="rtl" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server بكل فخر مجاني ومفتوح المصدر ،يتم بنائه وتطويره من طرف مجتمع من المساهمين الشغوفين عبر العالم.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server بكل فخر مجاني ومفتوح المصدر ،يتم بنائه وتطويره من طرف مجتمع من المساهمين الشغوفين عبر العالم.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>تبرع | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-left">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="وثائق المساعدة" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>وثائق المساعدة</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="المدونة" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>المدونة</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ar <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="تجربة حية" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">تجربة حية</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="تجربة حية" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">تجربة حية</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ar <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>ادعم مشروع BTCPay</h1>
|
||||
<p>BTCPay Server هو نظام يتطلب استضافتك الشخصية، معالج دفع للعملات الإلكترونية مفتوح المصدر بالكامل. امن، خاص ويهتم بالخصوصية، مقاوم للمنع والحظر وايضا مجاني. </p>
|
||||
|
||||
<div>
|
||||
<h2>تبرعات المؤسسات</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">مؤسسة BTCPay Server <i
|
||||
class="fas fa-chevron-left"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">البرمجيات</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="التقدمة" href="https://docs.btcpayserver.org/Guide/">التقدمة</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="حالات الإستخدام" href="https://docs.btcpayserver.org/UseCase/">حالات الإستخدام</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="التطبيقات"
|
||||
href="https://docs.btcpayserver.org/Apps/">التطبيقات</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="التنصيب" href="https://docs.btcpayserver.org/Deployment/">التنصيب</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="البدء الأن" href="https://docs.btcpayserver.org/RegisterAccount/">البدء الأن</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">المصادر</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="وثائق المساعدة" href="https://docs.btcpayserver.org/">وثائق المساعدة</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="التطوير" href="https://docs.btcpayserver.org/Development/">التطوير</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="الدعم" href="https://docs.btcpayserver.org/Support/">الدعم</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="التعليمات" href="https://docs.btcpayserver.org/FAQ/">التعليمات</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">المجتمع</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="المدونة" href="https://blog.btcpayserver.org">المدونة</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="الدردشة" href="https://chat.btcpayserver.org">الدردشة</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="دليل المواقع" href="https://directory.btcpayserver.org">دليل المواقع</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ساهم" href="https://docs.btcpayserver.org/Contribute/">ساهم</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="تبرع" href="/ar/donate">تبرع</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">الموقع مبني بواسطة ⚡ Flat 18</a>
|
||||
<br>
|
||||
تم إصدار المحتوى بموجب ترخيص MIT.
|
||||
<br>
|
||||
لا يستخدم هذا الموقع ملفات تعريف الارتباط ولا يجمع البيانات الشخصية.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
ar/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server гордо е безплатен и отворен код, строен и поддържан от общност от страстни сътрудници.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server гордо е безплатен и отворен код, строен и поддържан от общност от страстни сътрудници.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Дарете | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Документи" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Документи</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Блог" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Блог</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
bg <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Демонстранция на живо" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Демонстранция на живо</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Демонстранция на живо" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Демонстранция на живо</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
bg <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Подкрепете проекта BTCPay</h1>
|
||||
<p>BTCPay Server е процесор за крипто-валутни плащания с опция за самостоятелно хостване и отворен код. Той е сигурен, поверителен, устойчив на цензура и безплатен.</p>
|
||||
|
||||
<div>
|
||||
<h2>Бизнес дарения</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Софтуер.</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Въведение" href="https://docs.btcpayserver.org/Guide/">Въведение</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Приложение" href="https://docs.btcpayserver.org/UseCase/">Приложение</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Приложения"
|
||||
href="https://docs.btcpayserver.org/Apps/">Приложения</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Инсталация" href="https://docs.btcpayserver.org/Deployment/">Инсталация</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Първи стъпки" href="https://docs.btcpayserver.org/RegisterAccount/">Първи стъпки</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Ресурси</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Документация" href="https://docs.btcpayserver.org/">Документация</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Разработка" href="https://docs.btcpayserver.org/Development/">Разработка</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Поддръжка" href="https://docs.btcpayserver.org/Support/">Поддръжка</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ЧЗВ" href="https://docs.btcpayserver.org/FAQ/">ЧЗВ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Общност</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Блог" href="https://blog.btcpayserver.org">Блог</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Чат" href="https://chat.btcpayserver.org">Чат</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Указател" href="https://directory.btcpayserver.org">Указател</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Допринеси" href="https://docs.btcpayserver.org/Contribute/">Допринеси</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Дарете" href="/bg/donate">Дарете</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Уебсайт, изграден с ⚡от Flat 18.</a>
|
||||
<br>
|
||||
Съдържанието е издадено с MIT лиценз.
|
||||
<br>
|
||||
Този уебсайт не използва бисквитки и не събира лични данни.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
bg/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server je besplatan i s otvorenim kodom, izgrađen i održava ga svjetska zajednica strastvenih saradnika.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server je besplatan i s otvorenim kodom, izgrađen i održava ga svjetska zajednica strastvenih saradnika.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Donacije | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumenti" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumenti</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
bs <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo Uživo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo Uživo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo Uživo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo Uživo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
bs <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Podržite BTCPay projekat.</h1>
|
||||
<p>BTCPay Server je samoodrživ, open-source kripto platni procesor, koji je siguran, privatan, otporan na cenzuru i besplatan.</p>
|
||||
|
||||
<div>
|
||||
<h2>Korporativne donacije</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fondacija BTCPay servera. <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Programi</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Uvod" href="https://docs.btcpayserver.org/Guide/">Uvod</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Upotreba" href="https://docs.btcpayserver.org/UseCase/">Upotreba</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplikacije"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplikacije</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Razvoj" href="https://docs.btcpayserver.org/Deployment/">Razvoj</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Kako započeti" href="https://docs.btcpayserver.org/RegisterAccount/">Kako započeti</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Resursi</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentacija" href="https://docs.btcpayserver.org/">Dokumentacija</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Razvoj" href="https://docs.btcpayserver.org/Development/">Razvoj</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Podrška" href="https://docs.btcpayserver.org/Support/">Podrška</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Zajednica</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Direktorijum" href="https://directory.btcpayserver.org">Direktorijum</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Podrži" href="https://docs.btcpayserver.org/Contribute/">Podrži</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Donacije" href="/bs_BA/donate">Donacije</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Web stranica izrađena sa ⚡ od Flat 18</a>
|
||||
<br>
|
||||
Sadržaj objavljen pod licencom MIT.
|
||||
<br>
|
||||
Ova web stranica ne koristi kolačiće niti prikuplja osobne podatke.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
bs_BA/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server je hrdě bezplatný a open-source, postavený a udržovaný celosvětovou komunitou vášnivých přispěvatelů.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server je hrdě bezplatný a open-source, postavený a udržovaný celosvětovou komunitou vášnivých přispěvatelů.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Darovat | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentace" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentace</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
cs <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Živá ukázka" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Živá ukázka</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Živá ukázka" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Živá ukázka</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
cs <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Podpořte projekt BTCPay</h1>
|
||||
<p>BTCPay Server je hostitelem s otevřeným zdrojovým procesorem plateb pro kryptoměnu. Je to bezpečný, soukromý, odolný vůči cenzuře a zdarma.</p>
|
||||
|
||||
<div>
|
||||
<h2>Firemní dary</h2>
|
||||
|
||||
<p>Firemní subjekty, které chtějí pomoci podpořit budoucnost projektu, by měly navštívit Nadaci serveru BTCPay a stát se oficiálním podporovatelem prostřednictvím naší kontaktní stránky.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Úvod" href="https://docs.btcpayserver.org/Guide/">Úvod</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Případová studie" href="https://docs.btcpayserver.org/UseCase/">Případová studie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplikace"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplikace</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Nasazení" href="https://docs.btcpayserver.org/Deployment/">Nasazení</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Začínáme" href="https://docs.btcpayserver.org/RegisterAccount/">Začínáme</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Zdroje</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentace" href="https://docs.btcpayserver.org/">Dokumentace</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Vývoj" href="https://docs.btcpayserver.org/Development/">Vývoj</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Podpořit" href="https://docs.btcpayserver.org/Support/">Podpořit</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Komunita</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Adresář" href="https://directory.btcpayserver.org">Adresář</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Přispět" href="https://docs.btcpayserver.org/Contribute/">Přispět</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Darovat" href="/cs_CZ/donate">Darovat</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Web vytvořený pomocí ⚡ od Flat 18</a>
|
||||
<br>
|
||||
Obsah vydán na základě licence MIT.
|
||||
<br>
|
||||
Tento web nepoužívá cookies ani nesbírá osobní údaje.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
cs_CZ/index.html
@ -1 +0,0 @@
|
||||
contents{display:block;text-align:center;max-width:900px;margin:40px auto 100px;width:95vw}contents h2{color:var(--black);text-align:left;position:absolute;margin:0;transform:translateY(-12px);background:var(--white);border-radius:100px;font-weight:600;font-size:16px;text-transform:uppercase}contents h1,contents h3,contents p{color:var(--black);font-weight:600;text-align:left}contents p{font-size:18px;color:var(--grey);padding:20px 0;font-weight:300}contents a{display:inline-block;text-decoration:none;color:var(--lime)}.donation-type{margin:0 auto 50px;padding:0 20px;border-radius:10px}.donation-type,.foundation-donation{display:grid;grid-auto-flow:row}.foundation-donation svg{margin:auto}.individual-grid{display:flex;flex-flow:row;flex-wrap:wrap;margin:auto auto 30px;min-width:300px;border-color:var(--lighter-grey)}.ind-icon .in-img{background-color:var(--lime-green);height:80px;width:80px;margin:10px auto 0;background-position:50% 50%;background-size:cover;background-repeat:no-repeat;transition:.2s ease;cursor:pointer;background-image:url(/img/person-01.png);border-radius:300px}.in-img:hover{transform:scale(1.1)}.ind-icon{margin:10px auto 20px;text-align:center;justify-content:center;align-items:center;padding:0 30px}.in-nom{font-size:12px;opacity:.6;max-width:100px;display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--dark-grey)}.cta-foundation-donation i{transition:.2s ease}.cta-foundation-donation:hover>i{transform:translateX(4px)}.d-g{fill:var(--darkest-green)}.don-iss{color:var(--error)!important}.genVal_{text-transform:lowercase!important}.f-in-cap{text-transform:capitalize!important}.no-scroll{overflow:hidden;position:fixed}.js-i-ws-to-sc{-webkit-overflow-scrolling:touch;overflow-y:scroll;max-height:calc(calc(var(--vh, 1vh)*100) - 40px)}
|
||||
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server er stolt gratis og open-source, bygget og vedligeholdt af et verdensomspændende fællesskab af passonerede bidragsydere. ">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server er stolt gratis og open-source, bygget og vedligeholdt af et verdensomspændende fællesskab af passonerede bidragsydere. ">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Doner | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentation" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentation</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Github" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">Github</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
da <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
da <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Støt BTCPay Projektet</h1>
|
||||
<p>BTCPay Server er en selv-hosted, open-source betalingsgateway for kryptovalutaer. Det er sikkert, privat, censur resistent og gratis.</p>
|
||||
|
||||
<div>
|
||||
<h2>Virksomheds Donationer</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introduktion" href="https://docs.btcpayserver.org/Guide/">Introduktion</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Brugs Tilfælde" href="https://docs.btcpayserver.org/UseCase/">Brugs Tilfælde</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Apps"
|
||||
href="https://docs.btcpayserver.org/Apps/">Apps</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Implementering" href="https://docs.btcpayserver.org/Deployment/">Implementering</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Kom igang" href="https://docs.btcpayserver.org/RegisterAccount/">Kom igang</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Ressourcer</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentation" href="https://docs.btcpayserver.org/">Dokumentation</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Udviklere" href="https://docs.btcpayserver.org/Development/">Udviklere</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="Github" href="https://github.com/btcpayserver/">Github</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Hjælp" href="https://docs.btcpayserver.org/Support/">Hjælp</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Ofte stillede spørgsmål" href="https://docs.btcpayserver.org/FAQ/">Ofte stillede spørgsmål</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Fællesskab</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Katalog" href="https://directory.btcpayserver.org">Katalog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Bidrag" href="https://docs.btcpayserver.org/Contribute/">Bidrag</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Doner" href="/da_DK/donate">Doner</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Hjemmeside bygget med ⚡af Flat 18</a>
|
||||
<br>
|
||||
Indhold Udgivet under MIT licensen.
|
||||
<br>
|
||||
Dette hjemmeside benytter hverken cookies eller indsamling af persondata.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
da_DK/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server ist stolz darauf, kostenlos und open-source zu sein und wird von einer weltweiten Community leidenschaftlicher Mitarbeiter entwickelt und gewartet.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server ist stolz darauf, kostenlos und open-source zu sein und wird von einer weltweiten Community leidenschaftlicher Mitarbeiter entwickelt und gewartet.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Spenden | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentation" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentation</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
de <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
de <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Unterstütze das BTCPay Projekt</h1>
|
||||
<p>BTCPay Server ist eine Open Source Zahlungsplattform für Kryptowährungen, die du selbst hosten kannst. Sicher, privat, zensurresistent und kostenlos.</p>
|
||||
|
||||
<div>
|
||||
<h2>Unternehmensspenden</h2>
|
||||
|
||||
<p>Unternehmen, die das Projekt unterstützen möchten, sollten offizieller Unterstützer der BTCPay Server Stiftung werden.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Stiftung <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Einführung" href="https://docs.btcpayserver.org/Guide/">Einführung</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Anwendungen" href="https://docs.btcpayserver.org/UseCase/">Anwendungen</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Apps"
|
||||
href="https://docs.btcpayserver.org/Apps/">Apps</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Einsatz" href="https://docs.btcpayserver.org/Deployment/">Einsatz</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Anfangen" href="https://docs.btcpayserver.org/RegisterAccount/">Anfangen</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Ressourcen</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentation" href="https://docs.btcpayserver.org/">Dokumentation</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Entwicklung" href="https://docs.btcpayserver.org/Development/">Entwicklung</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Support" href="https://docs.btcpayserver.org/Support/">Support</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Community</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Dateiverzeichnis" href="https://directory.btcpayserver.org">Dateiverzeichnis</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Beitragen" href="https://docs.btcpayserver.org/Contribute/">Beitragen</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Spenden" href="/de_DE/donate">Spenden</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Webseite erstellt mit ⚡ von Flat 18</a>
|
||||
<br>
|
||||
Inhalt veröffentlicht unter MIT Lizenz.
|
||||
<br>
|
||||
Diese Webseite verwendet keine Cookies und sammelt keine persönlichen Daten.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
de_DE/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server is proudly free and open-source, built and maintained by a world-wide community of passionate contributors.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server is proudly free and open-source, built and maintained by a world-wide community of passionate contributors.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Donate | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Docs" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Docs</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
en <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
en <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Support the BTCPay Project</h1>
|
||||
<p>BTCPay Server is a self-hosted, open-source cryptocurrency payment processor. It's secure, private, censorship-resistant, and free.</p>
|
||||
|
||||
<div>
|
||||
<h2>Corporate Donations</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introduction" href="https://docs.btcpayserver.org/Guide/">Introduction</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Use Case" href="https://docs.btcpayserver.org/UseCase/">Use Case</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Apps"
|
||||
href="https://docs.btcpayserver.org/Apps/">Apps</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Deployment" href="https://docs.btcpayserver.org/Deployment/">Deployment</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Getting Started" href="https://docs.btcpayserver.org/RegisterAccount/">Getting Started</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Resources</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentation" href="https://docs.btcpayserver.org/">Documentation</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Development" href="https://docs.btcpayserver.org/Development/">Development</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Support" href="https://docs.btcpayserver.org/Support/">Support</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Community</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Directory" href="https://directory.btcpayserver.org">Directory</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribute" href="https://docs.btcpayserver.org/Contribute/">Contribute</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Donate" href="/donate">Donate</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Website built with ⚡ by Flat 18</a>
|
||||
<br>
|
||||
Content Released under MIT license.
|
||||
<br>
|
||||
This website does not use cookies nor collect personal data.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="Ο BTCPay Server είναι περήφανα δωρεάν και ανοικτού κώδικα, κατασκευασμένος και συντηρημένος από μια παγκόσμια κοινότητα παθιασμένων συνεισφερόντων.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="Ο BTCPay Server είναι περήφανα δωρεάν και ανοικτού κώδικα, κατασκευασμένος και συντηρημένος από μια παγκόσμια κοινότητα παθιασμένων συνεισφερόντων.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Δώρισε | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Έγγραφα" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Έγγραφα</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
el <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Δωρεάν Δοκιμή/Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Δωρεάν Δοκιμή/Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Δωρεάν Δοκιμή/Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Δωρεάν Δοκιμή/Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
el <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Υποστήριξε το έργο BTCPay</h1>
|
||||
<p>Ο BTCPay Server είναι αυτο-φιλοξενούμενος, ανοικτού κώδικα επεξεργαστής πληρωμών για κρυπτονομίσματα. Είναι ασφαλής, ιδιωτικός, ανθεκτικός στη λογοκρισία και δωρεάν.</p>
|
||||
|
||||
<div>
|
||||
<h2>Δωρεές Εταιρειών</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Ίδρυμα BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Λογισμικό</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Εισαγωγή" href="https://docs.btcpayserver.org/Guide/">Εισαγωγή</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Περίπτωση" href="https://docs.btcpayserver.org/UseCase/">Περίπτωση</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Εφαρμογές"
|
||||
href="https://docs.btcpayserver.org/Apps/">Εφαρμογές</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Ανάπτυξη" href="https://docs.btcpayserver.org/Deployment/">Ανάπτυξη</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Ξεκινώντας" href="https://docs.btcpayserver.org/RegisterAccount/">Ξεκινώντας</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Πόροι</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Έγγραφα" href="https://docs.btcpayserver.org/">Έγγραφα</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Ανάπτυξη" href="https://docs.btcpayserver.org/Development/">Ανάπτυξη</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Υποστήριξη" href="https://docs.btcpayserver.org/Support/">Υποστήριξη</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Συχνές Ερωτήσεις" href="https://docs.btcpayserver.org/FAQ/">Συχνές Ερωτήσεις</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Κοινότητα</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Συνομιλία" href="https://chat.btcpayserver.org">Συνομιλία</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Κατάλογος" href="https://directory.btcpayserver.org">Κατάλογος</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Συνείσφερε" href="https://docs.btcpayserver.org/Contribute/">Συνείσφερε</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Δώρισε" href="/el_GR/donate">Δώρισε</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Η ιστοσελίδα κατασκευάστηκε με ⚡ από Flat 18</a>
|
||||
<br>
|
||||
Το περιεχόμενο κυκλοφόρησε υπό την άδεια MIT.
|
||||
<br>
|
||||
Αυτός ο ιστότοπος δεν χρησιμοποιεί cookies ούτε συλλέγει προσωπικά δεδομένα.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
el_GR/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server está orgulloso de ser gratuito y de código abierto, construido y mantenido por una comunidad mundial de apasionados colaboradores.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server está orgulloso de ser gratuito y de código abierto, construido y mantenido por una comunidad mundial de apasionados colaboradores.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Donar | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Documentación" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Documentación</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
es <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
es <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Apoya al Proyecto BTCPay</h1>
|
||||
<p>BTCPay Server es un procesador de pagos de criptomonedas, de código abierto y alojado por uno mismo. Es seguro, privado, difícil de censurar y gratuito.</p>
|
||||
|
||||
<div>
|
||||
<h2>Donaciones Corporativas</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fundación BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introducción" href="https://docs.btcpayserver.org/Guide/">Introducción</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Caso de Uso" href="https://docs.btcpayserver.org/UseCase/">Caso de Uso</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplicaciones"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplicaciones</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Implementación" href="https://docs.btcpayserver.org/Deployment/">Implementación</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Comenzar" href="https://docs.btcpayserver.org/RegisterAccount/">Comenzar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Recursos</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentación" href="https://docs.btcpayserver.org/">Documentación</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Desarrollo" href="https://docs.btcpayserver.org/Development/">Desarrollo</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Soporte" href="https://docs.btcpayserver.org/Support/">Soporte</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Preguntas Frecuentes" href="https://docs.btcpayserver.org/FAQ/">Preguntas Frecuentes</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Comunidad</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Directorio" href="https://directory.btcpayserver.org">Directorio</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribuir" href="https://docs.btcpayserver.org/Contribute/">Contribuir</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Donar" href="/es_419/donate">Donar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Sitio Web creado con ⚡ por Flat 18</a>
|
||||
<br>
|
||||
Contenido lanzado bajo licencia MIT.
|
||||
<br>
|
||||
Este sitio Web no utiliza cookies ni recopila información personal.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
es_419/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server está orgulloso de ser gratuito y de código abierto, construido y mantenido por una comunidad mundial de colaboradores apasionados.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server está orgulloso de ser gratuito y de código abierto, construido y mantenido por una comunidad mundial de colaboradores apasionados.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Donar | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Documentación" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Documentación</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
es <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
es <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Apoya el Proyecto BTCPay</h1>
|
||||
<p>BTCPay Server es un procesador de pagos de criptomonedas, de código abierto y alojado por uno mismo. Es seguro, privado, difícil de censurar y gratuito.</p>
|
||||
|
||||
<div>
|
||||
<h2>Donaciones Corporativas</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fundación BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introducción" href="https://docs.btcpayserver.org/Guide/">Introducción</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Caso de Uso" href="https://docs.btcpayserver.org/UseCase/">Caso de Uso</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplicaciones"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplicaciones</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Implementación" href="https://docs.btcpayserver.org/Deployment/">Implementación</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Comenzar" href="https://docs.btcpayserver.org/RegisterAccount/">Comenzar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Recursos</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentación" href="https://docs.btcpayserver.org/">Documentación</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Desarrollo" href="https://docs.btcpayserver.org/Development/">Desarrollo</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Soporte" href="https://docs.btcpayserver.org/Support/">Soporte</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Preguntas Frecuentes" href="https://docs.btcpayserver.org/FAQ/">Preguntas Frecuentes</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Comunidad</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Directorio" href="https://directory.btcpayserver.org">Directorio</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribuir" href="https://docs.btcpayserver.org/Contribute/">Contribuir</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Donar" href="/es_ES/donate">Donar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Sitio Web creado con ⚡ por Flat 18</a>
|
||||
<br>
|
||||
Contenido lanzado bajo licencia MIT.
|
||||
<br>
|
||||
Este sitio Web no utiliza cookies ni recopila información personal.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
es_ES/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="rtl" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="بیتی سی پی افتخار دارد که مجانی و اوپن سورس است ,توسط جمعی از داوطلبان آتیشی از سراسر دنیا ساخته و نگهداری می شود">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="بیتی سی پی افتخار دارد که مجانی و اوپن سورس است ,توسط جمعی از داوطلبان آتیشی از سراسر دنیا ساخته و نگهداری می شود">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>اهدا کنید | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-left">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="اسناد" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>اسناد</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="اسناد" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>اسناد</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="گیت هاب" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">گیت هاب</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
fa <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="نسخه آزمایشی " class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">نسخه آزمایشی </a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="نسخه آزمایشی " class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">نسخه آزمایشی </a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
fa <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>از پروژه بی تی سی پی حمایت کنید</h1>
|
||||
<p>سرور بی تی سی پی یک پردازشگر پرداخت ها در بستر رمز ارزها است که خودتان میزبانی سرور خودتان را انجام می دهید. امن , خصوصی , ضد سانسور و رایگان می باشد</p>
|
||||
|
||||
<div>
|
||||
<h2>کمک های مالی سازمانی</h2>
|
||||
|
||||
<p>اشخاص شرکتی که میخواهند در آینده پروژه را حمایت کنند، باید به سایت بنیاد سرور BTCPay مراجعه کنند از طریق صفحه ارتباط با ما حامی رسمی شوند.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">بنیاد بیتی سی پی سرور <i
|
||||
class="fas fa-chevron-left"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">نرم افزار</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="مقدمه" href="https://docs.btcpayserver.org/Guide/">مقدمه</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="موارد استفاده" href="https://docs.btcpayserver.org/UseCase/">موارد استفاده</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="برنامه ها"
|
||||
href="https://docs.btcpayserver.org/Apps/">برنامه ها</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="بار گذاری " href="https://docs.btcpayserver.org/Deployment/">بار گذاری </a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="شروع کنید" href="https://docs.btcpayserver.org/RegisterAccount/">شروع کنید</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">منابع</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="مستندات" href="https://docs.btcpayserver.org/">مستندات</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="توسعه" href="https://docs.btcpayserver.org/Development/">توسعه</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="گیت هاب" href="https://github.com/btcpayserver/">گیت هاب</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="پشتیبانی" href="https://docs.btcpayserver.org/Support/">پشتیبانی</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="سوالات متداول" href="https://docs.btcpayserver.org/FAQ/">سوالات متداول</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">گیت هاب</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="اسناد" href="https://blog.btcpayserver.org">اسناد</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="چت" href="https://chat.btcpayserver.org">چت</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="دایرکتوری" href="https://directory.btcpayserver.org">دایرکتوری</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="همکاری" href="https://docs.btcpayserver.org/Contribute/">همکاری</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="اهدا کنید " href="/fa/donate">اهدا کنید </a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">وب سایت با ⚡ توسط فلت18 ساخته شده است</a>
|
||||
<br>
|
||||
ساخته شده است MIT محتوا تحت مجوز
|
||||
<br>
|
||||
این وب سایت از کوکی ها طبیعتا از اطلاعات شخصی نیز استفاده نمی کند
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
fa/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server on ilmainen, avointa lähdekoodia ja sitä rakennetaan, sekä ylläpidetään maailmanlaajuisen ja intohimoisen yhteisön toimesta.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server on ilmainen, avointa lähdekoodia ja sitä rakennetaan, sekä ylläpidetään maailmanlaajuisen ja intohimoisen yhteisön toimesta.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Lahjoita | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentaatio" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentaatio</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blogi" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blogi</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
fi <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
fi <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Tue BTCPay -projektia.</h1>
|
||||
<p>BTCPay -palvelinta ylläpidetään itse ja se on avoimeen lähdekoodiin perustuva maksupalveluratkaisu. Se on ilmainen, tietoturvallinen, yksityinen ja tavallisen maksuliikenteen sensuurin ulkopuolella.</p>
|
||||
|
||||
<div>
|
||||
<h2>Yritysten lahjoitukset</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Säätiö <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Ohjelmisto</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Johdanto" href="https://docs.btcpayserver.org/Guide/">Johdanto</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Käyttötarkoitus" href="https://docs.btcpayserver.org/UseCase/">Käyttötarkoitus</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Sovellukset"
|
||||
href="https://docs.btcpayserver.org/Apps/">Sovellukset</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Käyttöönotto" href="https://docs.btcpayserver.org/Deployment/">Käyttöönotto</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aloita tästä" href="https://docs.btcpayserver.org/RegisterAccount/">Aloita tästä</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Lähteet</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentaatio" href="https://docs.btcpayserver.org/">Dokumentaatio</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Kehitys" href="https://docs.btcpayserver.org/Development/">Kehitys</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Tuki" href="https://docs.btcpayserver.org/Support/">Tuki</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Usein kysytyt kysymykset" href="https://docs.btcpayserver.org/FAQ/">Usein kysytyt kysymykset</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Yhteisö</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blogi" href="https://blog.btcpayserver.org">Blogi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Keskustele" href="https://chat.btcpayserver.org">Keskustele</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Hakemisto" href="https://directory.btcpayserver.org">Hakemisto</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Osallistu" href="https://docs.btcpayserver.org/Contribute/">Osallistu</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Lahjoita" href="/fi_FI/donate">Lahjoita</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Verkkosivu on rakennettu käyttäen ⚡ Flat 18 ratkaisuja.</a>
|
||||
<br>
|
||||
Sisältö on julkaistu käyttäen MIT -lisenssiä.
|
||||
<br>
|
||||
Tämä verkkosivu ei käytä evästeitä, eikä kerää henkilökohtaisia tietoja.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
fi_FI/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server est fièr d'être gratuit, libre, construit et maintenu par une communauté mondiale de passionnés.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server est fièr d'être gratuit, libre, construit et maintenu par une communauté mondiale de passionnés.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Dons | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Docs" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Docs</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="BLOG" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>BLOG</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
fr <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
fr <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Soutenez le projet BTCPay</h1>
|
||||
<p>BTCPay Server est un processeur de paiement pour crypto-monnaies auto-hébergé et à code source ouvert. C'est sécurisé, anti-censure et gratuit.</p>
|
||||
|
||||
<div>
|
||||
<h2>Dons d'Entreprises</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fondation BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Logiciel</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introduction" href="https://docs.btcpayserver.org/Guide/">Introduction</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Cas d'usage" href="https://docs.btcpayserver.org/UseCase/">Cas d'usage</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Applis"
|
||||
href="https://docs.btcpayserver.org/Apps/">Applis</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Déploiement" href="https://docs.btcpayserver.org/Deployment/">Déploiement</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Démarrage" href="https://docs.btcpayserver.org/RegisterAccount/">Démarrage</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Ressources</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentation" href="https://docs.btcpayserver.org/">Documentation</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Développement" href="https://docs.btcpayserver.org/Development/">Développement</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Support" href="https://docs.btcpayserver.org/Support/">Support</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Communauté</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="BLOG" href="https://blog.btcpayserver.org">BLOG</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Listing" href="https://directory.btcpayserver.org">Listing</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribuer" href="https://docs.btcpayserver.org/Contribute/">Contribuer</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Dons" href="/fr_FR/donate">Dons</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Site web construit avec ⚡ par Flat 18</a>
|
||||
<br>
|
||||
Contenu sous license MIT.
|
||||
<br>
|
||||
Ce site n'utilise pas de cookies ni ne collecte d'informations personnelles.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
fr_FR/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="rtl" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="שרת BTCPay מופעל בגאווה באמצעות קוד פתוח ובחינם, נבנה ומתוחזק על ידי קהילה עולמית של תורמים נלהבים.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="שרת BTCPay מופעל בגאווה באמצעות קוד פתוח ובחינם, נבנה ומתוחזק על ידי קהילה עולמית של תורמים נלהבים.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>תירמו | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-left">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="תיעוד" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>תיעוד</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="בלוג" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>בלוג</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="גיטהאב" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">גיטהאב</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
he <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="הדגמה חיה" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">הדגמה חיה</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="הדגמה חיה" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">הדגמה חיה</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
he <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>תמכו בפרוייקט BTCPay</h1>
|
||||
<p>שרת BTCPay הוא ספק תשלומים קריפטוגרפיים בקוד פתוח ולאירוח עצמי. הוא מאובטח, פרטי, עמיד לצנזורה וחינמי לחלוטין.</p>
|
||||
|
||||
<div>
|
||||
<h2>תרומות תאגידיות</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-left"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">תוכנה</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="מבוא" href="https://docs.btcpayserver.org/Guide/">מבוא</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="שימושים" href="https://docs.btcpayserver.org/UseCase/">שימושים</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ישומונים"
|
||||
href="https://docs.btcpayserver.org/Apps/">ישומונים</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="פריסה" href="https://docs.btcpayserver.org/Deployment/">פריסה</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="התחלה" href="https://docs.btcpayserver.org/RegisterAccount/">התחלה</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">מוקורות</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="תיעוד" href="https://docs.btcpayserver.org/">תיעוד</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="פיתוח" href="https://docs.btcpayserver.org/Development/">פיתוח</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="גיטהאב" href="https://github.com/btcpayserver/">גיטהאב</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="תמיכה" href="https://docs.btcpayserver.org/Support/">תמיכה</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="שאלות נפוצות" href="https://docs.btcpayserver.org/FAQ/">שאלות נפוצות</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">קהילה</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="בלוג" href="https://blog.btcpayserver.org">בלוג</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="צ'אט" href="https://chat.btcpayserver.org">צ'אט</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ספריה" href="https://directory.btcpayserver.org">ספריה</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="תרמו" href="https://docs.btcpayserver.org/Contribute/">תרמו</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="תירמו" href="/he/donate">תירמו</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">האתר נבנה בעזרת ⚡ ע"י Flat 18</a>
|
||||
<br>
|
||||
תוכן שוחרר ברישיון MIT.
|
||||
<br>
|
||||
אתר זה אינו משתמש בקובצי Cookie ואינו אוסף נתונים אישיים.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
he/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCpay सर्वर ओपन-सोर्स और इस्तेमाल के लिए मुफ्त है, दुनिया भर के उत्सुक योगदानकर्ताओं के समूह द्वारा बनाया और सरंक्षण किया गया।">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCpay सर्वर ओपन-सोर्स और इस्तेमाल के लिए मुफ्त है, दुनिया भर के उत्सुक योगदानकर्ताओं के समूह द्वारा बनाया और सरंक्षण किया गया।">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>दान | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="दस्तावेज़" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>दस्तावेज़</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="ब्लॉग" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>ब्लॉग</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
hi <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="लाइव प्रदर्शन" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">लाइव प्रदर्शन</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="लाइव प्रदर्शन" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">लाइव प्रदर्शन</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
hi <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>BTCPay प्रोजेक्ट का समर्थन करें</h1>
|
||||
<p>BTCPay सर्वर एक स्व-होस्टेड, ओपन-सोर्स क्रिप्टोकरेन्सी भुगतान संसाधक है। यह सुरक्षित, निजी, सेंसर-प्रतिरोधी और मुफ्त है।</p>
|
||||
|
||||
<div>
|
||||
<h2>कॉर्पोरेट दान</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay सर्वर संस्थान <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">सॉफ्टवेयर</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="परिचय" href="https://docs.btcpayserver.org/Guide/">परिचय</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="उपयोग के नमूने" href="https://docs.btcpayserver.org/UseCase/">उपयोग के नमूने</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ऍप्स "
|
||||
href="https://docs.btcpayserver.org/Apps/">ऍप्स </a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="डिप्लॉय" href="https://docs.btcpayserver.org/Deployment/">डिप्लॉय</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="यहाँ से शुरुआत करें" href="https://docs.btcpayserver.org/RegisterAccount/">यहाँ से शुरुआत करें</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">संसाधन</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="दस्तावेज़ीकरण" href="https://docs.btcpayserver.org/">दस्तावेज़ीकरण</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="विकसन" href="https://docs.btcpayserver.org/Development/">विकसन</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="सपोर्ट" href="https://docs.btcpayserver.org/Support/">सपोर्ट</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="अक्सर पूछे जाने वाले प्रश्न" href="https://docs.btcpayserver.org/FAQ/">अक्सर पूछे जाने वाले प्रश्न</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">समुदाय</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="ब्लॉग" href="https://blog.btcpayserver.org">ब्लॉग</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="चैट " href="https://chat.btcpayserver.org">चैट </a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="डायरेक्टरी" href="https://directory.btcpayserver.org">डायरेक्टरी</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="योगदान" href="https://docs.btcpayserver.org/Contribute/">योगदान</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="दान" href="/hi/donate">दान</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">वेबसाइट ⚡ पर फ्लैट 18 द्वारा निर्मित्त</a>
|
||||
<br>
|
||||
एमआईटी लाइसेंस के तहत जारी की गई सामग्री।
|
||||
<br>
|
||||
यह वेबसाइट कुकीज़ का उपयोग नहीं करती है और न ही व्यक्तिगत डेटा एकत्र करती है।
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
hi/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server dengan bangga bersifat bebas & open-source, dan dibangun oleh komunitas kontributor-kontributor aktif dari seluruh dunia.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server dengan bangga bersifat bebas & open-source, dan dibangun oleh komunitas kontributor-kontributor aktif dari seluruh dunia.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Donasi | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentasi" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentasi</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Github" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">Github</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
id <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo Langsung" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo Langsung</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo Langsung" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo Langsung</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
id <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Dukung Proyek BTCPay</h1>
|
||||
<p>BTCPay Server adalah payment gateway untuk mata uang kripto, yang bersifat open-source dan self-hosted. BTCPay bersifat aman, menjaga privasi, tahan terhadap sensor, dan bebas.</p>
|
||||
|
||||
<div>
|
||||
<h2>Donasi Perusahaan</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introduksi" href="https://docs.btcpayserver.org/Guide/">Introduksi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contoh Penggunaan" href="https://docs.btcpayserver.org/UseCase/">Contoh Penggunaan</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="App"
|
||||
href="https://docs.btcpayserver.org/Apps/">App</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Peluncuran Software" href="https://docs.btcpayserver.org/Deployment/">Peluncuran Software</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Mulai" href="https://docs.btcpayserver.org/RegisterAccount/">Mulai</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Sumber informasi</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentasi" href="https://docs.btcpayserver.org/">Dokumentasi</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Pengembangan" href="https://docs.btcpayserver.org/Development/">Pengembangan</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="Github" href="https://github.com/btcpayserver/">Github</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Bantuan" href="https://docs.btcpayserver.org/Support/">Bantuan</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Komunitas</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Direktori" href="https://directory.btcpayserver.org">Direktori</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Kontribusi" href="https://docs.btcpayserver.org/Contribute/">Kontribusi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Donasi" href="/id/donate">Donasi</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Website dibangun dengan ⚡ oleh Flat 18</a>
|
||||
<br>
|
||||
Konten dirilis menurut lisensi MIT.
|
||||
<br>
|
||||
Website ini tidak menggunakan cookies dan tidak menyimpan data pribadi.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
id/index.html
1138
index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server è orgogliosamente gratuito e open-source, costruito e gestito da una comunità mondiale di collaboratori appassionati.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server è orgogliosamente gratuito e open-source, costruito e gestito da una comunità mondiale di collaboratori appassionati.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Dona | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Documentazione" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Documentazione</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
it <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
it <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Supporta il progetto BTCPay. </h1>
|
||||
<p>BTCPay Server è un processore di pagamento self-hosted e completamente open-source. È sicuro, privato e resistente alla censura. </p>
|
||||
|
||||
<div>
|
||||
<h2>Donazioni Aziendali</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Fondazione <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introduzione" href="https://docs.btcpayserver.org/Guide/">Introduzione</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Utilizzo" href="https://docs.btcpayserver.org/UseCase/">Utilizzo</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="App"
|
||||
href="https://docs.btcpayserver.org/Apps/">App</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Distribuzione" href="https://docs.btcpayserver.org/Deployment/">Distribuzione</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Primi Passi" href="https://docs.btcpayserver.org/RegisterAccount/">Primi Passi</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Risorse</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentazione" href="https://docs.btcpayserver.org/">Documentazione</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Svilupp" href="https://docs.btcpayserver.org/Development/">Svilupp</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aiuto" href="https://docs.btcpayserver.org/Support/">Aiuto</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Domande Frequenti" href="https://docs.btcpayserver.org/FAQ/">Domande Frequenti</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Comunità</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Cartella" href="https://directory.btcpayserver.org">Cartella</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribuisci" href="https://docs.btcpayserver.org/Contribute/">Contribuisci</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Dona" href="/it_IT/donate">Dona</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Sito fatto con ⚡ by Flat 18</a>
|
||||
<br>
|
||||
Contenuto rilasciato sotto licenza MIT.
|
||||
<br>
|
||||
Questo sito non usa cookies nè colleziona dati personali.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
it_IT/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Serverは無料でオープンソースであり、熱心なコントリビュータによる世界的なコミュニティによって構築され、維持されています。">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Serverは無料でオープンソースであり、熱心なコントリビュータによる世界的なコミュニティによって構築され、維持されています。">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>寄付 | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="ドキュメント" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>ドキュメント</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ja <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="ライブデモ" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">ライブデモ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="ライブデモ" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">ライブデモ</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ja <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>BTCPayプロジェクトをサポートする</h1>
|
||||
<p>BTCPayサーバーは、自己ホスト型のオープンソースの暗号通貨支払い処理者です。安全で、プライベートで、検閲抵抗性があり、無料です。</p>
|
||||
|
||||
<div>
|
||||
<h2>団体寄付</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">ソフトウェア</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="前書き" href="https://docs.btcpayserver.org/Guide/">前書き</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="使用事例" href="https://docs.btcpayserver.org/UseCase/">使用事例</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="アプリ"
|
||||
href="https://docs.btcpayserver.org/Apps/">アプリ</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="デプロイする" href="https://docs.btcpayserver.org/Deployment/">デプロイする</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="始める" href="https://docs.btcpayserver.org/RegisterAccount/">始める</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">リソース</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="ドキュメント" href="https://docs.btcpayserver.org/">ドキュメント</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="開発" href="https://docs.btcpayserver.org/Development/">開発</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="サポート" href="https://docs.btcpayserver.org/Support/">サポート</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="よくある質問" href="https://docs.btcpayserver.org/FAQ/">よくある質問</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">コミュニティ</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="チャット" href="https://chat.btcpayserver.org">チャット</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ディレクトリ" href="https://directory.btcpayserver.org">ディレクトリ</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="貢献する" href="https://docs.btcpayserver.org/Contribute/">貢献する</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="寄付" href="/ja_JP/donate">寄付</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">ウェブサイトはFlat 18コンテンツによる⚡で構築され、</a>
|
||||
<br>
|
||||
MITライセンスの下でリリースされています。
|
||||
<br>
|
||||
このウェブサイトはクッキーを使用せず、また個人データも収集しません。
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
ja_JP/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server는 자랑스럽게도 자유 오픈 소스 프로젝트이며, 열정적인 기여자들로 이루어진 범세계적 커뮤니티에 의하여 만들어지고 유지됩니다.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server는 자랑스럽게도 자유 오픈 소스 프로젝트이며, 열정적인 기여자들로 이루어진 범세계적 커뮤니티에 의하여 만들어지고 유지됩니다.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>기부하기 | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="기술문서" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>기술문서</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="블로그" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>블로그</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ko <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="라이브 데모" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">라이브 데모</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="라이브 데모" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">라이브 데모</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ko <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>BTCPay 프로젝트 지원하기</h1>
|
||||
<p>BTCPay 서버는 스스로 운영이 가능하며, 오픈 소스로 된 비트코인 결제 프로세서입니다. 본 프로세서는 안전하고, 프라이버시를 보장하며, 검열 저항성이 있으며, 또한 무료로 제공됩니다.</p>
|
||||
|
||||
<div>
|
||||
<h2>기업 기부</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server 재단 <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">소프트웨어</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="소개" href="https://docs.btcpayserver.org/Guide/">소개</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="사용 사례도" href="https://docs.btcpayserver.org/UseCase/">사용 사례도</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="앱"
|
||||
href="https://docs.btcpayserver.org/Apps/">앱</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="구축" href="https://docs.btcpayserver.org/Deployment/">구축</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="시작해보기" href="https://docs.btcpayserver.org/RegisterAccount/">시작해보기</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">자료들</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="기술문서" href="https://docs.btcpayserver.org/">기술문서</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="개발" href="https://docs.btcpayserver.org/Development/">개발</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="지원" href="https://docs.btcpayserver.org/Support/">지원</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="자주 묻는 질문들" href="https://docs.btcpayserver.org/FAQ/">자주 묻는 질문들</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">커뮤니티</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="블로그" href="https://blog.btcpayserver.org">블로그</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="채팅" href="https://chat.btcpayserver.org">채팅</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="디렉토리" href="https://directory.btcpayserver.org">디렉토리</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="기여하기" href="https://docs.btcpayserver.org/Contribute/">기여하기</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="기부하기" href="/ko/donate">기부하기</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">이 웹사이트는 Flat 18 팀에 의해 ⚡ 기술을 도입하여 개발되었습니다.</a>
|
||||
<br>
|
||||
본 컨텐츠는 MIT 라이선스에 따라 발행되었습니다.
|
||||
<br>
|
||||
이 웹사이트는 쿠키를 사용하거나 개인 데이터를 수집하지 않습니다.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
ko/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay yra nemokamas ir atvirojo kodo, sukurtas ir palaikomas viso pasaulio bendruomenės entuziastų.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay yra nemokamas ir atvirojo kodo, sukurtas ir palaikomas viso pasaulio bendruomenės entuziastų.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Paremti | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentai" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentai</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blogas" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blogas</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
lt <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demonstracija" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demonstracija</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demonstracija" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demonstracija</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
lt <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Paremk BTCPay projektą.</h1>
|
||||
<p>BTCPay saviįkuriantis Serveris, atvirojo kodo kriptovaliutų mokėjimų sistema. Saugi, privati, cenzūrai atspari, nemokama.</p>
|
||||
|
||||
<div>
|
||||
<h2>Įmonių parama</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Serverio Fondas <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Programinė įranga</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Pradžia" href="https://docs.btcpayserver.org/Guide/">Pradžia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Naudojimas" href="https://docs.btcpayserver.org/UseCase/">Naudojimas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Programėlės"
|
||||
href="https://docs.btcpayserver.org/Apps/">Programėlės</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Diegimas" href="https://docs.btcpayserver.org/Deployment/">Diegimas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Prieš pradendant" href="https://docs.btcpayserver.org/RegisterAccount/">Prieš pradendant</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Ištekliai</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentacija" href="https://docs.btcpayserver.org/">Dokumentacija</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Plėtra" href="https://docs.btcpayserver.org/Development/">Plėtra</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Palaikymas" href="https://docs.btcpayserver.org/Support/">Palaikymas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="DUK" href="https://docs.btcpayserver.org/FAQ/">DUK</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Bendruomenė</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blogas" href="https://blog.btcpayserver.org">Blogas</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Pokalbių kambarys" href="https://chat.btcpayserver.org">Pokalbių kambarys</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Direktorija" href="https://directory.btcpayserver.org">Direktorija</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Padėti" href="https://docs.btcpayserver.org/Contribute/">Padėti</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Paremti" href="/lt/donate">Paremti</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Tinklapis sukurtas ⚡Flat 18</a>
|
||||
<br>
|
||||
Turinys išleistas pagal MIT licenciją.
|
||||
<br>
|
||||
Šis tinklapis nenaudoja slapukų ir nerenka asmeninės informacijos.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
lt/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay is gratis en open-source, gebouwd en onderhouden door een wereldwijde community van gepassioneerde bijdragers.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay is gratis en open-source, gebouwd en onderhouden door een wereldwijde community van gepassioneerde bijdragers.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Doneren | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Documentatie" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Documentatie</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
nl <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
nl <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Steun het BTCPay Project</h1>
|
||||
<p>BTCPay Server is een zelf-gehoste, open-source cryptocurrency-betalingsverwerker. Het is veilig, privé, censuurbestendig en kosteloos.</p>
|
||||
|
||||
<div>
|
||||
<h2>Zakelijke donaties</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introductie" href="https://docs.btcpayserver.org/Guide/">Introductie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Gebruiksituatie" href="https://docs.btcpayserver.org/UseCase/">Gebruiksituatie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Apps"
|
||||
href="https://docs.btcpayserver.org/Apps/">Apps</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Deployment" href="https://docs.btcpayserver.org/Deployment/">Deployment</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Start hier" href="https://docs.btcpayserver.org/RegisterAccount/">Start hier</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Middelen</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentatie" href="https://docs.btcpayserver.org/">Documentatie</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Ontwikkeling" href="https://docs.btcpayserver.org/Development/">Ontwikkeling</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Support" href="https://docs.btcpayserver.org/Support/">Support</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Community</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Directory" href="https://directory.btcpayserver.org">Directory</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Bijdragen" href="https://docs.btcpayserver.org/Contribute/">Bijdragen</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Doneren" href="/nl_NL/donate">Doneren</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Website gemaakt met ⚡ door Flat 18</a>
|
||||
<br>
|
||||
De content is uitgebracht onder MIT-licentie
|
||||
<br>
|
||||
Deze website gebruikt geen cookies en verzamelt geen persoonlijke gegevens.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
nl_NL/index.html
3475
package-lock.json
generated
Normal file
49
package.json
Normal file
@ -0,0 +1,49 @@
|
||||
{
|
||||
"private": true,
|
||||
"name": "btcpayserver.org",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"description": "BTCPay Server Official Website",
|
||||
"homepage": "https://btcpayserver.org/",
|
||||
"repository": "btcpayserver/btcpayserver.github.io",
|
||||
"bugs": "https://github.com/btcpayserver/btcpayserver.github.io/issues",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist && mkdir -p dist transifex/download/video transifex/download/website",
|
||||
"init": "npm-run-all clean -p d:*",
|
||||
"d:translations": "node -r dotenv/config tasks/download_translations.js && cp transifex/resources/video.json transifex/download/video/en_GB.json && cp transifex/resources/website.json transifex/download/website/en_GB.json",
|
||||
"d:contributors": "node -r dotenv/config tasks/download_contributors.js",
|
||||
"start": "npm-run-all clean -p start:*",
|
||||
"start:static": "onchange -i -k 'src/static/**/*' -- npm run build:static",
|
||||
"start:scripts": "onchange -i -k 'src/js/**/*' -- npm run build:scripts",
|
||||
"start:styles": "onchange -i -k 'src/css/**/*' -- npm run build:styles",
|
||||
"start:html": "onchange -i -k 'src/{html,json}/**/*' 'tasks/{render_html,util}.js' -- npm run build:html",
|
||||
"start:vtt": "onchange -i -k 'src/vtt/**/*' 'tasks/{render_vtt,util}.js' -- npm run build:vtt",
|
||||
"start:serve": "browser-sync start --no-open --watch --server dist",
|
||||
"build": "npm-run-all clean -p build:*",
|
||||
"build:static": "cp -rT src/static dist",
|
||||
"build:scripts": "cp -r src/js dist",
|
||||
"build:styles": "cp -r src/css dist",
|
||||
"build:html": "node tasks/render_html.js",
|
||||
"build:vtt": "node tasks/render_vtt.js",
|
||||
"optimize": "npm-run-all -p optimize:*",
|
||||
"optimize:styles": "csso dist/css/styles.css --output dist/css/styles.css",
|
||||
"optimize:page-styles": "csso dist/css/page-styles.css --output dist/css/page-styles.css",
|
||||
"prod": "NODE_ENV=production npm-run-all build optimize",
|
||||
"netlify": "npm run init && npm run prod"
|
||||
},
|
||||
"keywords": [
|
||||
"BTCPayServer"
|
||||
],
|
||||
"devDependencies": {
|
||||
"browser-sync": "3.0.2",
|
||||
"csso-cli": "4.0.2",
|
||||
"dotenv": "16.4.5",
|
||||
"npm-run-all": "4.1.5",
|
||||
"onchange": "7.1.0",
|
||||
"rimraf": "5.0.5",
|
||||
"sync-request": "6.1.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@transifex/api": "7.1.0"
|
||||
}
|
||||
}
|
||||
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="Serwer BTCPay jest z ogromną dumą darmowy i open-source, zbudowany i utrzymywany przez ogólnoświatową społeczność pasjonatów.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="Serwer BTCPay jest z ogromną dumą darmowy i open-source, zbudowany i utrzymywany przez ogólnoświatową społeczność pasjonatów.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Wesprzyj projekt | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumenty" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumenty</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
pl <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
pl <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Wesprzyj BTCPay Project</h1>
|
||||
<p>BTCPay Server to samoobsługowy procesor płatności kryptowalutowych typu open-source. Jest bezpieczny, prywatny, odporny na cenzurę i bezpłatny.</p>
|
||||
|
||||
<div>
|
||||
<h2>Darowizny korporacyjne</h2>
|
||||
|
||||
<p>Podmioty korporacyjne, które chcą pomóc wesprzeć przyszłość projektu, powinny odwiedzić Fundację BTCPay Server i stać się oficjalnym wspierającym, kontaktując się z nami poprzez naszą stronę kontaktową.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fundacja BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Wprowadzenie" href="https://docs.btcpayserver.org/Guide/">Wprowadzenie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Przykłady" href="https://docs.btcpayserver.org/UseCase/">Przykłady</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplikacje"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplikacje</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Rozlokowanie" href="https://docs.btcpayserver.org/Deployment/">Rozlokowanie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Pierwsze Kroki" href="https://docs.btcpayserver.org/RegisterAccount/">Pierwsze Kroki</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Zasoby</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentacja" href="https://docs.btcpayserver.org/">Dokumentacja</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Rozwój" href="https://docs.btcpayserver.org/Development/">Rozwój</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Pomoc Techniczna" href="https://docs.btcpayserver.org/Support/">Pomoc Techniczna</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Społeczność</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Czat" href="https://chat.btcpayserver.org">Czat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Słownik" href="https://directory.btcpayserver.org">Słownik</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Kontrubuuj" href="https://docs.btcpayserver.org/Contribute/">Kontrubuuj</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Wesprzyj projekt" href="/pl/donate">Wesprzyj projekt</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Strona zbudowana z ⚡ przez Flat 18</a>
|
||||
<br>
|
||||
Treść wydana na licencji MIT.
|
||||
<br>
|
||||
Ta strona nie używa plików cookie ani nie gromadzi danych osobowych.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
pl/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="O BTCPay Server é grátis e open-source, com orgulho, criado e mantido por uma comunidade global de contribuidores apaixonados.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="O BTCPay Server é grátis e open-source, com orgulho, criado e mantido por uma comunidade global de contribuidores apaixonados.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Doe | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Manual" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Manual</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
pt <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
pt <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Ajude o Projeto BTCPay</h1>
|
||||
<p>O BTCPay Server é uma solução de código aberto para processamento de pagamentos de moedas digitais. É seguro, privado, incensurável e gratuito.</p>
|
||||
|
||||
<div>
|
||||
<h2>Doações corporativas</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introdução" href="https://docs.btcpayserver.org/Guide/">Introdução</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Soluções" href="https://docs.btcpayserver.org/UseCase/">Soluções</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Apps"
|
||||
href="https://docs.btcpayserver.org/Apps/">Apps</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Deployment" href="https://docs.btcpayserver.org/Deployment/">Deployment</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Começando" href="https://docs.btcpayserver.org/RegisterAccount/">Começando</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Recursos</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Manual" href="https://docs.btcpayserver.org/">Manual</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Desenvolvimento" href="https://docs.btcpayserver.org/Development/">Desenvolvimento</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Ajuda" href="https://docs.btcpayserver.org/Support/">Ajuda</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Perguntas Frequentes" href="https://docs.btcpayserver.org/FAQ/">Perguntas Frequentes</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Comunidade</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Diretório" href="https://directory.btcpayserver.org">Diretório</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribua" href="https://docs.btcpayserver.org/Contribute/">Contribua</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Doe" href="/pt_BR/donate">Doe</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Website feito com ⚡ pela Flat 18</a>
|
||||
<br>
|
||||
Conteúdo publicado de acordo com a licença MIT.
|
||||
<br>
|
||||
Este website não usa cookies nem coleta dados pessoais.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
pt_BR/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="O BTCPay Server é orgulhosamente gratuito e de código aberto, criado e mantido por uma comunidade mundial de colaboradores apaixonados.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="O BTCPay Server é orgulhosamente gratuito e de código aberto, criado e mantido por uma comunidade mundial de colaboradores apaixonados.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Doar | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Documentos" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Documentos</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blogue" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blogue</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
pt <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demonstração ao vivo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demonstração ao vivo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demonstração ao vivo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demonstração ao vivo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
pt <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Apoiar o Projeto BTCPay</h1>
|
||||
<p>O BTCPay Server é um processador de pagamento de criptomoeda de código aberto, auto-hospedado. É seguro, privado, resistente a censura e gratuito.</p>
|
||||
|
||||
<div>
|
||||
<h2>Doações Corporativas</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fundação BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introdução" href="https://docs.btcpayserver.org/Guide/">Introdução</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Caso de uso" href="https://docs.btcpayserver.org/UseCase/">Caso de uso</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplicações"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplicações</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Implantação" href="https://docs.btcpayserver.org/Deployment/">Implantação</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Começar" href="https://docs.btcpayserver.org/RegisterAccount/">Começar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Recursos</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentação" href="https://docs.btcpayserver.org/">Documentação</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Desenvolvimento" href="https://docs.btcpayserver.org/Development/">Desenvolvimento</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Apoiar" href="https://docs.btcpayserver.org/Support/">Apoiar</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Comunidade</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blogue" href="https://blog.btcpayserver.org">Blogue</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Diretório" href="https://directory.btcpayserver.org">Diretório</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribuir" href="https://docs.btcpayserver.org/Contribute/">Contribuir</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Doar" href="/pt_PT/donate">Doar</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Website construído com ⚡ por Flat 18.</a>
|
||||
<br>
|
||||
Conteúdo Lançado sob licença MIT.
|
||||
<br>
|
||||
Este site não usa cookies nem coleciona dados pessoais.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
pt_PT/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="Suntem mândri că Serverul BTCPay este gratuit și open-source, construit și întreținut de o comunitate globală de contribuitori pasionați.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="Suntem mândri că Serverul BTCPay este gratuit și open-source, construit și întreținut de o comunitate globală de contribuitori pasionați.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Donează | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Documentație " class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Documentație </span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ro <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Live Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Live Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ro <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Susțineți proiectul BTCPay</h1>
|
||||
<p>Serverul BTCPay este un procesator de plăți de criptomonede open-source gazduit de sine stătător. Este sigur, privat, rezistent la cenzură și gratuit.</p>
|
||||
|
||||
<div>
|
||||
<h2>Donații corporative</h2>
|
||||
|
||||
<p>Entitățile corporative care doresc să susțină viitorul acestui proiect ar trebui să viziteze Fundația BTCPay Server și să devină un susținător oficial contactându-ne prin pagina noastră de contact.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Fundația BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Software</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Introducere" href="https://docs.btcpayserver.org/Guide/">Introducere</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Cazuri de utilizare" href="https://docs.btcpayserver.org/UseCase/">Cazuri de utilizare</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplicații"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplicații</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Implementare" href="https://docs.btcpayserver.org/Deployment/">Implementare</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Noțiuni introductive" href="https://docs.btcpayserver.org/RegisterAccount/">Noțiuni introductive</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Resurse</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Documentație" href="https://docs.btcpayserver.org/">Documentație</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Dezvoltare" href="https://docs.btcpayserver.org/Development/">Dezvoltare</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Suport" href="https://docs.btcpayserver.org/Support/">Suport</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="FAQ" href="https://docs.btcpayserver.org/FAQ/">FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Comunitate</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Registru" href="https://directory.btcpayserver.org">Registru</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Contribuiți" href="https://docs.btcpayserver.org/Contribute/">Contribuiți</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Donează" href="/ro/donate">Donează</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Site web construit cu ⚡ de Flat 18</a>
|
||||
<br>
|
||||
Conținut publicat sub licență MIT.
|
||||
<br>
|
||||
Acest site web nu utilizează cookie-uri și nici nu colectează date personale.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
ro/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="Команда BTCPay Server с гордостью представляет бесплатный процессор криптовалютных платежей с открытым исходным кодом">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="Команда BTCPay Server с гордостью представляет бесплатный процессор криптовалютных платежей с открытым исходным кодом">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Пожертвовать | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Документация" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Документация</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Блог" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Блог</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ru <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Демонстрационная версия" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Демонстрационная версия</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Демонстрационная версия" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Демонстрационная версия</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
ru <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Поддержать проект BTCPay</h1>
|
||||
<p>BTCPay Server - процессор криптовалютных платежей с открытым исходным кодом и самостоятельным хостингом. Это безопасно, приватно, устойчиво к цензуре и бесплатно.</p>
|
||||
|
||||
<div>
|
||||
<h2>Corporate Donations</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Foundation <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Программное обеспечение</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Введение" href="https://docs.btcpayserver.org/Guide/">Введение</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Способ применения" href="https://docs.btcpayserver.org/UseCase/">Способ применения</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Приложения"
|
||||
href="https://docs.btcpayserver.org/Apps/">Приложения</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Развертывание" href="https://docs.btcpayserver.org/Deployment/">Развертывание</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Начало работы" href="https://docs.btcpayserver.org/RegisterAccount/">Начало работы</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Ресурсы</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Документация" href="https://docs.btcpayserver.org/">Документация</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Разработчиков" href="https://docs.btcpayserver.org/Development/">Разработчиков</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Поддержка" href="https://docs.btcpayserver.org/Support/">Поддержка</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="ЧАВО" href="https://docs.btcpayserver.org/FAQ/">ЧАВО</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Сообщество</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Блог" href="https://blog.btcpayserver.org">Блог</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Чат" href="https://chat.btcpayserver.org">Чат</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Каталог" href="https://directory.btcpayserver.org">Каталог</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Принять участие в разработке" href="https://docs.btcpayserver.org/Contribute/">Принять участие в разработке</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Пожертвовать" href="/ru_RU/donate">Пожертвовать</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Сайт построен с помощью ⚡ by Flat 18</a>
|
||||
<br>
|
||||
Контент выпущен по лицензии MIT.
|
||||
<br>
|
||||
Этот сайт не использует cookies и не собирает персональные данные.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
ru_RU/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPayServer sa hrdí tým, že je zadarmo a Open Source, budovaný a spravovaný celosvetovou komunitou nadšených prispievateľov.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPayServer sa hrdí tým, že je zadarmo a Open Source, budovaný a spravovaný celosvetovou komunitou nadšených prispievateľov.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Darovať | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumenty" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumenty</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
sk <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Živé demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Živé demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Živé demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Živé demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
sk <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Podporiť projekt BTCPay </h1>
|
||||
<p>BTCPay Server je spracovateľ platieb pre kryptomeny, samostatne hosťovaný, s otvoreným zdrojovým kódom. Je bezpečný, súkromný, odolný voči cenzúre a bezplatný.</p>
|
||||
|
||||
<div>
|
||||
<h2>Dary od korporácií.</h2>
|
||||
|
||||
<p>Firemné subjekty, ktoré chcú pomôcť podporiť budúcnosť projektu, by mali navštíviť BTCPay Server Foundation a stať sa oficiálnym podporovateľom pomocou našej kontaktnej stránky.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">Nadácia BTCPay Server <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Softvér</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Úvod" href="https://docs.btcpayserver.org/Guide/">Úvod</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Spôsoby využitia" href="https://docs.btcpayserver.org/UseCase/">Spôsoby využitia</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplikácie"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplikácie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Nasadenie" href="https://docs.btcpayserver.org/Deployment/">Nasadenie</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Začíname" href="https://docs.btcpayserver.org/RegisterAccount/">Začíname</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Zdroje</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentácia" href="https://docs.btcpayserver.org/">Dokumentácia</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Vývoj" href="https://docs.btcpayserver.org/Development/">Vývoj</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Podpora" href="https://docs.btcpayserver.org/Support/">Podpora</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Časté otázky" href="https://docs.btcpayserver.org/FAQ/">Časté otázky</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Komunita</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Chat" href="https://chat.btcpayserver.org">Chat</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Adresár" href="https://directory.btcpayserver.org">Adresár</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Prispieť" href="https://docs.btcpayserver.org/Contribute/">Prispieť</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Darovať" href="/sk_SK/donate">Darovať</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Webové stránky postavené na ⚡ cez Flat 18</a>
|
||||
<br>
|
||||
Obsah vydaný pod licenciou MIT.
|
||||
<br>
|
||||
Táto webová stránka nepoužíva cookies ani nezhromažďuje osobné údaje.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
sk_SK/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay strežnik je brezplačen in odprtokoden, razvija in vzdržuje ga skupnost strastnih sodelavcev po vsem svetu.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay strežnik je brezplačen in odprtokoden, razvija in vzdržuje ga skupnost strastnih sodelavcev po vsem svetu.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Prispevajte | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentacija" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentacija</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
sl <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Predstavitveni strežnik" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Predstavitveni strežnik</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Predstavitveni strežnik" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Predstavitveni strežnik</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
sl <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sr/">српски</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Podprite BTCPay projekt</h1>
|
||||
<p>BTCPay Server je odprtokodni procesor za plačevanje s kripto valutami. Je varen, zaseben, odporen na cenzuro in brezplačen.</p>
|
||||
|
||||
<div>
|
||||
<h2>Prispevki podjetja</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Fundacija <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Programska oprema</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Uvod" href="https://docs.btcpayserver.org/Guide/">Uvod</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Primer uporabe" href="https://docs.btcpayserver.org/UseCase/">Primer uporabe</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplikacije"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplikacije</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Namestitev" href="https://docs.btcpayserver.org/Deployment/">Namestitev</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Kako začeti" href="https://docs.btcpayserver.org/RegisterAccount/">Kako začeti</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Viri</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentacija" href="https://docs.btcpayserver.org/">Dokumentacija</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Za razvijalce" href="https://docs.btcpayserver.org/Development/">Za razvijalce</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Podpora" href="https://docs.btcpayserver.org/Support/">Podpora</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Pogosta vprašanja - FAQ" href="https://docs.btcpayserver.org/FAQ/">Pogosta vprašanja - FAQ</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Skupnost</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Klepet" href="https://chat.btcpayserver.org">Klepet</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Seznam BTCPay trgovin in aplikacij" href="https://directory.btcpayserver.org">Seznam BTCPay trgovin in aplikacij</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Sodelujte v projektu" href="https://docs.btcpayserver.org/Contribute/">Sodelujte v projektu</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Prispevajte" href="/sl_SI/donate">Prispevajte</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Spletna stran ustvarjena z ⚡ by Flat 18</a>
|
||||
<br>
|
||||
Vsebina izdana po licenci MIT.
|
||||
<br>
|
||||
Ta spletna stran ne uporablja piškotkov niti ne zbira osebnih podatkov.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
sl_SI/index.html
@ -1,323 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="ltr" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="BTCPay Server je ponosno besplatan i otvorenog tipa, građen i održavan od strane zajednice strastvenih dobrovoljaca širom sveta.">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="BTCPay Server je ponosno besplatan i otvorenog tipa, građen i održavan od strane zajednice strastvenih dobrovoljaca širom sveta.">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>Doniraj | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-right">
|
||||
<div>
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="Dokumentacija" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>Dokumentacija</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="API" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>API</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="Blog" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>Blog</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="GitHub" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">GitHub</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
sr <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="Demo" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">Demo</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
sr <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
<li><a href="/ar/">العربية</a></li><li><a href="/bg/">български</a></li><li><a href="/bs_BA/">Bosanski (ba)</a></li><li><a href="/cs_CZ/">čeština (cz)</a></li><li><a href="/da_DK/">Dansk (dk)</a></li><li><a href="/de_DE/">Deutsch (de)</a></li><li><a href="/el_GR/">Ελληνικά (gr)</a></li><li><a href="/">English</a></li><li><a href="/es_419/">Spanish (419)</a></li><li><a href="/es_ES/">Español (es)</a></li><li><a href="/fa/">فارسی</a></li><li><a href="/fi_FI/">Suomi (fi)</a></li><li><a href="/fr_FR/">Français (fr)</a></li><li><a href="/he/">עברית</a></li><li><a href="/hi/">हिन्दी</a></li><li><a href="/id/">Indonesian</a></li><li><a href="/it_IT/">Italiano (it)</a></li><li><a href="/ja_JP/">日本語 (jp)</a></li><li><a href="/ko/">한국어</a></li><li><a href="/lt/">Lithuanian</a></li><li><a href="/nl_NL/">Nederlands (nl)</a></li><li><a href="/pl/">Polski</a></li><li><a href="/pt_BR/">Português (br)</a></li><li><a href="/pt_PT/">Português (pt)</a></li><li><a href="/ro/">Română</a></li><li><a href="/ru_RU/">русский (ru)</a></li><li><a href="/sk_SK/">Slovenčina (sk)</a></li><li><a href="/sl_SI/">Slovenščina (si)</a></li><li><a href="/sv/">Svenska</a></li><li><a href="/th_TH/">Thai (th)</a></li><li><a href="/tr/">Türkçe</a></li><li><a href="/zh-Hans/">中文</a></li><li><a href="/zu/">Zulu</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>Podržite BTCPay Projekat</h1>
|
||||
<p>BTCPay Server je procesor za plaćanje, otvorenog koda koji sami hostujete. Siguran je, privatan, otporan na cenzuru i besplatan.</p>
|
||||
|
||||
<div>
|
||||
<h2>Korporativne Donacije</h2>
|
||||
|
||||
<p>Corporate entities wishing to help support the future of the project should visit the BTCPay Server Foundation and become an official supporter by reaching out through our contact page.<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">BTCPay Server Fondacija <i
|
||||
class="fas fa-chevron-right"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">Softver</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="Uvod" href="https://docs.btcpayserver.org/Guide/">Uvod</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Korišćenje" href="https://docs.btcpayserver.org/UseCase/">Korišćenje</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Aplikacije"
|
||||
href="https://docs.btcpayserver.org/Apps/">Aplikacije</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Instalacija" href="https://docs.btcpayserver.org/Deployment/">Instalacija</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Početak" href="https://docs.btcpayserver.org/RegisterAccount/">Početak</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">Resursi</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="Dokumentacija" href="https://docs.btcpayserver.org/">Dokumentacija</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="Razvoj" href="https://docs.btcpayserver.org/Development/">Razvoj</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="GitHub" href="https://github.com/btcpayserver/">GitHub</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Podrška" href="https://docs.btcpayserver.org/Support/">Podrška</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Česta pitanja" href="https://docs.btcpayserver.org/FAQ/">Česta pitanja</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">Zajednica</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="Blog" href="https://blog.btcpayserver.org">Blog</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Ćaskanje" href="https://chat.btcpayserver.org">Ćaskanje</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Direktorijum" href="https://directory.btcpayserver.org">Direktorijum</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Doprinesi" href="https://docs.btcpayserver.org/Contribute/">Doprinesi</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="Doniraj" href="/sr/donate">Doniraj</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">Stranica napravljena sa ⚡od Flat 18</a>
|
||||
<br>
|
||||
Sadržaj objavljen pod MIT licencom.
|
||||
<br>
|
||||
Ovaj sajt ne koristi kolačiće za praćenje niti prikuplja privatne podatke.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
1138
sr/index.html
0
css/fa_.min.css → src/css/fa_.min.css
vendored
123
src/css/page-styles.css
Normal file
@ -0,0 +1,123 @@
|
||||
contents {
|
||||
display: block;
|
||||
text-align: center;
|
||||
max-width: 900px;
|
||||
margin: 40px auto 100px auto;
|
||||
width: 95vw;
|
||||
}
|
||||
contents h2,
|
||||
contents h3 {
|
||||
font-weight: 600;
|
||||
color: var(--black);
|
||||
text-align: left;
|
||||
}
|
||||
contents h1 {
|
||||
color: var(--black);
|
||||
font-weight: 600;
|
||||
text-align: left;
|
||||
}
|
||||
contents h2 {
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
transform: translateY(-12px);
|
||||
background: var(--white);
|
||||
border-radius: 100px;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
contents p {
|
||||
font-size: 18px;
|
||||
color: var(--grey);
|
||||
padding: 20px 0;
|
||||
font-weight: 300;
|
||||
text-align: left;
|
||||
}
|
||||
contents a {
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
color: var(--lime);
|
||||
}
|
||||
.donation-type {
|
||||
margin: 0px auto 50px auto;
|
||||
display: grid;
|
||||
grid-auto-flow: row;
|
||||
padding: 0 20px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.foundation-donation {
|
||||
display: grid;
|
||||
grid-auto-flow: row;
|
||||
}
|
||||
.foundation-donation svg {
|
||||
margin: auto;
|
||||
}
|
||||
.individual-grid {
|
||||
display: flex;
|
||||
flex-flow: row;
|
||||
flex-wrap: nowrap;
|
||||
flex-wrap: wrap;
|
||||
margin: auto auto 30px auto;
|
||||
min-width: 300px;
|
||||
border-color: var(--lighter-grey);
|
||||
}
|
||||
.ind-icon .in-img {
|
||||
background-color: var(--lime-green);
|
||||
height: 80px;
|
||||
width: 80px;
|
||||
margin: 10px auto 0 auto;
|
||||
background-position: 50% 50%;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
transition: 0.2s ease;
|
||||
cursor: pointer;
|
||||
background-image: url(/img/person-01.png);
|
||||
border-radius: 300px;
|
||||
}
|
||||
.in-img:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
.ind-icon {
|
||||
margin: 10px auto 20px auto;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 0 30px;
|
||||
}
|
||||
.in-nom {
|
||||
font-size: 12px;
|
||||
opacity: 0.6;
|
||||
max-width: 100px;
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
color: var(--dark-grey);
|
||||
}
|
||||
.cta-foundation-donation i {
|
||||
transition: 0.2s ease;
|
||||
}
|
||||
.cta-foundation-donation:hover > i {
|
||||
transform: translateX(4px);
|
||||
}
|
||||
.d-g {
|
||||
fill: var(--darkest-green);
|
||||
}
|
||||
.don-iss {
|
||||
color: var(--error) !important;
|
||||
}
|
||||
.genVal_ {
|
||||
text-transform: lowercase !important;
|
||||
}
|
||||
.f-in-cap {
|
||||
text-transform: capitalize !important;
|
||||
}
|
||||
.no-scroll {
|
||||
overflow: hidden;
|
||||
position: fixed;
|
||||
}
|
||||
.js-i-ws-to-sc {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overflow-y: scroll;
|
||||
max-height: calc(calc(var(--vh, 1vh) * 100) - 40px);
|
||||
}
|
||||
2548
src/css/styles.css
Normal file
92
src/html/donate/tmpl.html
Normal file
@ -0,0 +1,92 @@
|
||||
<!DOCTYPE html>
|
||||
<html dir="{{_to}}" data-theme="light">
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
|
||||
<meta name="description" content="{{btcpay-server-is-proudly-free}}">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="{{btcpay-server-is-proudly-free}}">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>{{donate}} | BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-{{_rl}}">
|
||||
<div>
|
||||
{{_menTemp}}
|
||||
</div>
|
||||
|
||||
<!-- START PAGE CONTENTS -->
|
||||
|
||||
<contents>
|
||||
<h1>{{support-the-btcpay}}</h1>
|
||||
<p>{{btcpay-server-is-a-self-hosted}}</p>
|
||||
|
||||
<div>
|
||||
<h2>{{corporate-donations}}</h2>
|
||||
|
||||
<p>{{corporate-entities-wishing}}<br>
|
||||
<a class="cta-foundation-donation button-pri button" href="https://foundation.btcpayserver.org/index.html#membership" target="_blank" rel="noreferrer noopener">{{btcpay-server-foundation}} <i
|
||||
class="fas fa-chevron-{{_rl}}"></i>
|
||||
</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
</contents>
|
||||
|
||||
<!-- END PAGE CONTENTS -->
|
||||
|
||||
<div class="blockGreenFoot">
|
||||
{{_ftblk}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END OF p-nm-co-ho -->
|
||||
</body>
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.3.133",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<script src="/js/scripts.js"></script>
|
||||
</html>
|
||||
75
src/html/footer-tmpl.html
Normal file
@ -0,0 +1,75 @@
|
||||
<div class="footer-parent blockGreenFoot"><div class="footerBlock">
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-0">{{software}}</h3>
|
||||
<ul class="ftb_" id="fBT_-0">
|
||||
<li>
|
||||
<a title="{{introduction}}" href="https://docs.btcpayserver.org/Guide/">{{introduction}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{use-case}}" href="https://docs.btcpayserver.org/UseCase/">{{use-case}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{apps}}"
|
||||
href="https://docs.btcpayserver.org/Apps/">{{apps}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{deployment}}" href="https://docs.btcpayserver.org/Deployment/">{{deployment}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{getting-started}}" href="https://docs.btcpayserver.org/RegisterAccount/">{{getting-started}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-1">{{resources}}</h3>
|
||||
<ul class="ftb_" id="fBT_-1">
|
||||
<li class="">
|
||||
<a class="" title="{{documentation}}" href="https://docs.btcpayserver.org/">{{documentation}}</a>
|
||||
</li>
|
||||
<li class="">
|
||||
<a class="" title="{{development}}" href="https://docs.btcpayserver.org/Development/">{{development}}</a>
|
||||
</li>
|
||||
<li class="nullTrans">
|
||||
<a class="nullTrans" title="{{github}}" href="https://github.com/btcpayserver/">{{github}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{support}}" href="https://docs.btcpayserver.org/Support/">{{support}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{faq}}" href="https://docs.btcpayserver.org/FAQ/">{{faq}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h3 class="ftbTr_" id="fBTrig_-3">{{community}}</h3>
|
||||
<ul class="ftb_" id="fBT_-3">
|
||||
<li>
|
||||
<a title="{{blog}}" href="https://blog.btcpayserver.org">{{blog}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{chat}}" href="https://chat.btcpayserver.org">{{chat}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{directory}}" href="https://directory.btcpayserver.org">{{directory}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{contribute}}" href="https://docs.btcpayserver.org/Contribute/">{{contribute}}</a>
|
||||
</li>
|
||||
<li>
|
||||
<a title="{{donate}}" href="{{_lngst}}donate">{{donate}}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<p class="copyright_">
|
||||
<a class="nullTrans" title="Flat 18 Micro << FLAT18.CO.UK >>"
|
||||
href="https://flat18.co.uk">{{website-built-with}}</a>
|
||||
<br>
|
||||
{{content-released-under}}
|
||||
<br>
|
||||
{{this-website-does}}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
156
src/html/menu-tmpl.html
Normal file
@ -0,0 +1,156 @@
|
||||
<div class="menuBar" id="topMarker" dir='ltr'>
|
||||
<a href="../"><svg class="_Logo" onclick="window.location='/'" version="1.1" id="_Logo_1"
|
||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="200px"
|
||||
height="100px" viewBox="0 0 200 100" enable-background="new 0 0 200 100" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#CEDC21" d="M9.206,91.433c-2.684,0-4.859-2.177-4.859-4.861V13.431c0-2.685,2.176-4.861,4.859-4.861
|
||||
s4.86,2.177,4.86,4.861v73.141C14.066,89.256,11.89,91.433,9.206,91.433" />
|
||||
<path fill="#51B13E"
|
||||
d="M9.209,91.433c-1.818,0-3.561-1.025-4.394-2.777c-1.151-2.424-0.118-5.322,2.308-6.476L36.43,68.274
|
||||
L6.323,46.093c-2.16-1.593-2.621-4.635-1.029-6.796s4.636-2.622,6.795-1.03l36.647,26.999c1.377,1.016,2.12,2.678,1.956,4.381
|
||||
c-0.164,1.7-1.209,3.19-2.755,3.925L11.289,90.964C10.618,91.281,9.907,91.433,9.209,91.433" />
|
||||
<path fill="#CEDC21"
|
||||
d="M9.211,62.684c-1.493,0-2.965-0.685-3.917-1.979c-1.592-2.159-1.131-5.204,1.03-6.795L36.43,31.73
|
||||
L7.123,17.821c-2.426-1.151-3.459-4.05-2.309-6.475c1.152-2.426,4.051-3.459,6.475-2.309l36.648,17.394
|
||||
c1.546,0.733,2.591,2.225,2.755,3.926c0.164,1.702-0.579,3.364-1.956,4.379l-36.647,27C11.22,62.375,10.211,62.684,9.211,62.684" />
|
||||
<polygon fill="#1E7A44" points="14.066,39.725 14.066,60.278 28.01,50.006 " />
|
||||
<rect x="4.347" y="31.106" fill="#FFFFFF" width="9.72" height="23.692" />
|
||||
<path fill="#CEDC21"
|
||||
d="M14.066,13.431c0-2.685-2.177-4.861-4.86-4.861s-4.859,2.177-4.859,4.861v61.165h9.72V13.431z" />
|
||||
<g class="icon-text">
|
||||
<path d="M78.355,49.412c3.114,0.884,4.84,3.704,4.84,7.238c0,5.513-3.368,8.082-7.955,8.082H64.761V35.271h9.259
|
||||
c4.504,0,7.997,2.146,7.997,7.743C82.017,45.835,80.838,48.444,78.355,49.412 M74.062,48.696c3.324,0,6.018-1.179,6.018-5.724
|
||||
c0-4.586-2.776-5.808-6.145-5.808h-7.197v11.531H74.062z M75.114,62.795c3.366,0,6.06-1.768,6.06-6.145
|
||||
c0-4.713-3.072-6.144-6.901-6.144h-7.534v12.288H75.114z" />
|
||||
<polygon points="102.893,35.271 102.893,37.081 94.771,37.081 94.771,64.732 92.792,64.732 92.792,37.081
|
||||
84.669,37.081 84.669,35.271 " />
|
||||
<path
|
||||
d="M116.738,34.85c5.01,0,9.554,2.524,10.987,8.543h-1.895c-1.348-4.923-5.303-6.732-9.134-6.732
|
||||
c-6.944,0-10.605,5.681-10.605,13.341c0,8.08,3.661,13.256,10.646,13.256c4.125,0,7.828-1.85,9.26-7.279h1.895
|
||||
c-1.264,6.271-6.229,9.174-11.154,9.174c-7.87,0-12.583-5.808-12.583-15.15C104.155,41.037,109.124,34.85,116.738,34.85" />
|
||||
<path
|
||||
d="M142.709,35.271c5.091,0,8.795,3.326,8.795,9.764c0,6.06-3.704,9.722-8.795,9.722h-7.746v9.976h-1.935
|
||||
V35.271H142.709z M142.709,52.82c3.745,0,6.816-2.397,6.816-7.827c0-5.429-2.947-7.869-6.816-7.869h-7.746V52.82H142.709z" />
|
||||
<path d="M151.841,64.732v-0.255l11.741-29.29h0.885l11.615,29.29v0.255h-2.062l-3.322-8.501H157.27l-3.324,8.501
|
||||
H151.841z M164.005,38.68l-6.059,15.697h12.078L164.005,38.68z" />
|
||||
<polygon
|
||||
points="193.551,35.271 195.655,35.271 195.655,35.564 186.479,52.484 186.479,64.732 184.459,64.732
|
||||
184.459,52.484 175.243,35.523 175.243,35.271 177.39,35.271 181.387,42.763 185.43,50.549 185.47,50.549 189.551,42.763 " />
|
||||
</g>
|
||||
</g>
|
||||
</svg></a>
|
||||
<input type="checkbox" id="menuTrigger" name="menuTrigger" class="menuTrigger" />
|
||||
<div class="mobileMenuShortcut">
|
||||
<i class="fas fa-bars"></i>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="menuContents menuContentsMobile" id="menuContents">
|
||||
<div class="menuContentsGrid">
|
||||
<div class="menuLinkParent">
|
||||
<a class="tomCL menuLink mobileOnly mobileCloseOpenNOJS nullTrans">
|
||||
<i class="fas fa-times nullTrans"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a title="{{docs}}" class="menuLink" target="blank_" href="http://docs.btcpayserver.org/">
|
||||
<span>{{docs}}</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="{{api}}" class="menuLink" target="blank_" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span>{{api}}</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="{{blog}}" class="menuLink" target="blank_" href="http://blog.btcpayserver.org/">
|
||||
<span>{{blog}}</span></a>
|
||||
</div>
|
||||
<div class="menuLinkParent">
|
||||
<a title="{{github}}" class="menuLink nullTrans" target="blank_" href="https://github.com/btcpayserver">
|
||||
<span class="nullTrans">{{github}}</span></a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
{{_exp0}} <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
{{_lngOpts}}
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="menuLinkParent mobileOnly">
|
||||
<a title="{{live-demo}}" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">{{live-demo}}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="desktop-only -inl-ti">
|
||||
<a title="{{live-demo}}" class="button-light button-pri button" href="https://mainnet.demo.btcpayserver.org"
|
||||
target="blank_">{{live-demo}}</a>
|
||||
<div class="menuLinkParent lnNomPar">
|
||||
|
||||
<div id="lnNom" title="Language" class="menuLink nullTrans" onclick="toggle_('#LanguagePicker')">
|
||||
<span class="nullTrans">
|
||||
{{_exp0}} <i class="fas fa-caret-down nullTrans"></i>
|
||||
</span>
|
||||
|
||||
<ul id="LanguagePicker">
|
||||
{{_lngOpts}}
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="menuLinkParent">
|
||||
<a class="menuLink go_dark" href="#" data-theme-switch="dark">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8"
|
||||
viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M2.72 0c-1.58.53-2.72 2.02-2.72 3.78 0 2.21 1.79 4 4 4 1.76 0 3.25-1.14 3.78-2.72-.4.13-.83.22-1.28.22-2.21 0-4-1.79-4-4 0-.45.08-.88.22-1.28z">
|
||||
</path>
|
||||
</svg></a>
|
||||
<a class="menuLink go_light" href="#" data-theme-switch="light">
|
||||
<svg class="-ab-trig-spec" xmlns="http://www.w3.org/2000/svg" width="8" height="8" viewBox="0 0 8 8">
|
||||
<path fill="transparent"
|
||||
d="M4 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-3.5 1.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-6 2.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm5 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-2.5 1c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z">
|
||||
</path>
|
||||
</svg>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
447
src/html/tmpl.html
Normal file
@ -0,0 +1,447 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{_lnstr}}" dir="{{_to}}" data-theme="light">
|
||||
|
||||
<head>
|
||||
<meta charset=UTF-8>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=1">
|
||||
<meta name="description" content="{{btcpay-server-tag-line}}">
|
||||
<meta name="keywords" content="btcpay">
|
||||
<meta name="author" content="Ed Sinaswee | flat18.co.uk">
|
||||
<meta property="og:title" content="BTCPay Server">
|
||||
<meta property="og:description" content="{{btcpay-server-tag-line}}">
|
||||
<meta property="og:image" content="/card.png">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/site.webmanifest">
|
||||
<meta name="msapplication-TileColor" content="#0f3b21">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<title>BTCPay Server</title>
|
||||
<link rel="stylesheet" type="text/css" href="/css/fa_.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/styles.css">
|
||||
<link rel="stylesheet" type="text/css" href="/css/page-styles.css">
|
||||
<!-- Schema.org JSON-LD Markup for Search Engine Optimization -->
|
||||
<script type='application/ld+json'>
|
||||
{
|
||||
"@context": "https://schema.org/",
|
||||
"@type": "SoftwareApplication",
|
||||
"applicationCategory": "FinanceApplication",
|
||||
"name": "BTCPay Server",
|
||||
"image": "https://btcpayserver.org/img/favicon.png",
|
||||
"availableOnDevice": "Desktop",
|
||||
"author": {
|
||||
"@type": "Organization",
|
||||
"url": "https://foundation.btcpayserver.org/",
|
||||
"name": "BTCPay Server Foundation",
|
||||
"sameAs": ["https://twitter.com/BtcpayServer", "https://t.me/btcpayserver", "http://chat.btcpayserver.org/"]
|
||||
},
|
||||
"downloadUrl": "https://github.com/btcpayserver/btcpayserver/releases",
|
||||
"fileSize": "6MB",
|
||||
"operatingSystem": [
|
||||
"Windows", "Linux"
|
||||
],
|
||||
"releaseNotes": "https://blog.btcpayserver.org/changelog/",
|
||||
"screenshot": "https://blog.btcpayserver.org/wp-content/uploads/2019/05/BTCPay-Invoices-1024x552.gif",
|
||||
"softwareVersion": "1.0.5.2",
|
||||
"aggregateRating": {
|
||||
"@type": "AggregateRating",
|
||||
"ratingValue": "5",
|
||||
"ratingCount": "20"
|
||||
},
|
||||
"offers": {
|
||||
"@type": "Offer",
|
||||
"price": "0",
|
||||
"priceCurrency": "BTC"
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="p-nm-co-ho">
|
||||
<div class="pageContainerTopBackground __fal-{{_rl}}">
|
||||
<div>
|
||||
{{_menTemp}}
|
||||
</div>
|
||||
|
||||
<div class="promoArea" id="promoArea">
|
||||
<div class="promoDetails __fal-{{_rl}}">
|
||||
<h1 title="{{start-accepting-bitcoin}}">{{start-accepting-bitcoin}}</h1>
|
||||
<p>{{btcpay-server-tag-line}}</p>
|
||||
|
||||
<div class="prpmpLinkOrg {{_align}}" dir="{{_to}}">
|
||||
<a title="{{live-demo}}" class="button-pri button" href="#watchVideo" target="blank_">{{learn-more}} <i
|
||||
class="fas fa-play-circle"></i>
|
||||
</a>
|
||||
|
||||
<a href="{{_lngst}}donate" class="button-sec button">{{donate}} <i class="fas fa-arrow-{{_rl}}"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pos-rel">
|
||||
<div class="dotted-back dots1"></div>
|
||||
|
||||
<div class="hero-artwork">
|
||||
<img alt="Server" id="server-image" src="/img/server-light.png" class="i-a" />
|
||||
<img alt="Invoice" id="invoice-image" src="/img/invoice-light.svg" class="i-b" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="pageContainer __fal-{{_rl}}" id="pageContainer">
|
||||
<div class="pageItem">
|
||||
<div class="blockTrioMP">
|
||||
<div class="trioMPBlockItem">
|
||||
<p class="inParagraphLink">{{launch-a-server}}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="trioMPBlockItem">
|
||||
<p>{{connect-your-e-commerce}}</p>
|
||||
</div>
|
||||
|
||||
<div class="trioMPBlockItem">
|
||||
<p>{{funds-arrive-directly}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="features-section-parent">
|
||||
<div class="features-section __fal-{{_rl}}">
|
||||
<ul>
|
||||
<li>
|
||||
<input class="selector-no-js" name="z" type="radio" checked />
|
||||
<div class="preview-selector-">
|
||||
<h3>{{essential-apps-built-in}}</h3>
|
||||
</div>
|
||||
|
||||
<div class="payload-no-js">
|
||||
<div class="payload-inner-aligner">
|
||||
<p>{{features-you-use}}</p>
|
||||
<p>{{create-a-point-of-sale}}</p>
|
||||
<a title="{{learn-more}}" class="modernLink featuresBlockLink"
|
||||
href="https://docs.btcpayserver.org/Apps/" target="blank_">{{learn-more}} <i
|
||||
class="fas fa-long-arrow-alt-{{_rl}}"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<input class="selector-no-js" name="z" type="radio" />
|
||||
<div class="preview-selector-">
|
||||
<h3>{{great-for-invoicing}}</h3>
|
||||
</div>
|
||||
|
||||
<div class="payload-no-js">
|
||||
<div class="payload-inner-aligner">
|
||||
<p>{{generate-and-manage}}</p>
|
||||
<p>{{get-notified-when}}</p>
|
||||
<a title="{{learn-more}}" class="modernLink featuresBlockLink"
|
||||
href="https://docs.btcpayserver.org/Invoices/" target="blank_">{{learn-more}} <i
|
||||
class="fas fa-long-arrow-alt-{{_rl}}"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<!-- condensed -->
|
||||
<li>
|
||||
<input class="selector-no-js" name="z" type="radio" />
|
||||
<div class="preview-selector-">
|
||||
<h3>{{native-wallet-management}}</h3>
|
||||
</div>
|
||||
|
||||
<div class="payload-no-js">
|
||||
<div class="payload-inner-aligner">
|
||||
<p>{{manage-your-incoming}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<!-- condensed -->
|
||||
|
||||
<li>
|
||||
<input class="selector-no-js" name="z" type="radio" />
|
||||
<div class="preview-selector-">
|
||||
<h3>{{self-host-or-use}}</h3>
|
||||
</div>
|
||||
|
||||
<div class="payload-no-js">
|
||||
<div class="payload-inner-aligner">
|
||||
<p>{{use-a-shared}}</p>
|
||||
<p>{{by-sharing-your}}</p>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<input class="selector-no-js" name="z" type="radio" />
|
||||
<div class="preview-selector-">
|
||||
<h3>{{automation-via-api}}</h3>
|
||||
</div>
|
||||
|
||||
<div class="payload-no-js">
|
||||
<div class="payload-inner-aligner">
|
||||
<p>{{automation-via-api-text}}</p>
|
||||
<a title="{{learn-more}}" class="modernLink featuresBlockLink"
|
||||
href="https://docs.btcpayserver.org/API/Greenfield/v1/" target="blank_">{{learn-more}} <i
|
||||
class="fas fa-long-arrow-alt-{{_rl}}"></i>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-item case-studies -bg-grey-l" id="caseStudies">
|
||||
<h2>{{case-studies}}</h2>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://blog.btcpayserver.org/case-study-namecheap/" target="_blank">
|
||||
<img src="/img/case-studies/namecheap-featured.png" alt="BTCPay Server Namecheap Study" />
|
||||
</a>
|
||||
<h3>Namecheap</h3>
|
||||
<p>Namecheap surpasses $73M in BTC revenue with 1.1m transactions through BTCPay</p>
|
||||
<div class="buttons">
|
||||
<a href="https://blog.btcpayserver.org/case-study-namecheap/" target="_blank">{{view-case-study}}</a>
|
||||
<a href="/case-studies/namecheap.pdf" target="_blank">{{download-pdf}}</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://blog.btcpayserver.org/case-study-bitcoin-atlantis/" target="_blank">
|
||||
<img src="/img/case-studies/bitcoin-atlantis-featured.png" alt="Bitcoin Atlantis" />
|
||||
</a>
|
||||
<h3>Bitcoin Atlantis</h3>
|
||||
<p>€115,100 from 8,750 Transactions in 3 Days, Showcasing Bitcoin's Role as a Payment Method.</p>
|
||||
<div class="buttons">
|
||||
<a href="https://blog.btcpayserver.org/case-study-bitcoin-atlantis/" target="_blank">{{view-case-study}}</a>
|
||||
<a href="/case-studies/BitcoinAtlantis.pdf" target="_blank">{{download-pdf}}</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://blog.btcpayserver.org/case-study-bitcoin-people/" target="_blank">
|
||||
<img src="/img/case-studies/bitcoin-people.jpg" alt="BTCPay Server Bitcoin People Case Study" />
|
||||
</a>
|
||||
<h3>Bitcoin People</h3>
|
||||
<p>Bitcoin People built a mobile app on top of BTCPay's API to scale bitcoin to 270 merchants.</p>
|
||||
<div class="buttons">
|
||||
<a href="https://blog.btcpayserver.org/case-study-bitcoin-people/" target="_blank">{{view-case-study}}</a>
|
||||
<a href="/case-studies/BitcoinPeople2024.pdf" target="_blank">{{download-pdf}}</a>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://blog.btcpayserver.org/case-study-bitcoin-jungle-cr/" target="_blank">
|
||||
<img src="/img/case-studies/bitcoin-jungle.jpg" alt="BTCPay Server Bitcoin Jungle Case Study" />
|
||||
</a>
|
||||
<h3>Bitcoin Jungle</h3>
|
||||
<p>Bitcoin Jungle enables 200+ stores in Costa Rica to embrace Bitcoin.</p>
|
||||
<div class="buttons">
|
||||
<a href="https://blog.btcpayserver.org/case-study-bitcoin-jungle-cr/" target="_blank">{{view-case-study}}</a>
|
||||
<a href="/case-studies/BitcoinJungleCR2023.pdf" target="_blank">{{download-pdf}}</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
<a title="{{view-all-case-studies}}" class="modernLink featuresBlockLink"
|
||||
href="https://blog.btcpayserver.org/category/case-studies/" target="blank_">{{view-all-case-studies}} <i
|
||||
class="fas fa-long-arrow-alt-{{_rl}}"></i>
|
||||
</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="page-item-free -bg-grey" id="po0">
|
||||
<div class="pageItemInnerSpacer -ta-c">
|
||||
<h2 class="desktop-only">{{integrations-and-plugins}}</h2>
|
||||
|
||||
<div class="integrations-grid">
|
||||
|
||||
<a class="svg-link opencart" href="https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=44269">
|
||||
<span class="opencart">{{opencart}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link odoo" href="https://docs.btcpayserver.org/Odoo">
|
||||
<span class="odoo">{{odoo}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link wix" href="https://docs.btcpayserver.org/Wix/">
|
||||
<span class="wix">{{wix}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link pretix" href="https://docs.btcpayserver.org/Pretix/">
|
||||
<span class="pretix">{{pretix}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link bigcommerce" href="https://docs.btcpayserver.org/BigCommerce/">
|
||||
<span class="bigcommerce">{{bigcommerce}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link api" href="https://docs.btcpayserver.org/API/Greenfield/v1/">
|
||||
<span class="api">{{api}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link xenforo" href="https://docs.btcpayserver.org/Xenforo/">
|
||||
<span class="xenforo">{{xenforo}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link woo" href="https://wordpress.org/plugins/btcpay-greenfield-for-woocommerce/">
|
||||
<span class="woo">{{woocommerce}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link phocacart" href="https://docs.btcpayserver.org/PhocaCart/">
|
||||
<span class="phocacart">{{phocacart}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link drupal" href="https://docs.btcpayserver.org/Drupal/">
|
||||
<span class="drupal">{{drupal}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link shopify" href="https://docs.btcpayserver.org/ShopifyV2/">
|
||||
<span class="shopify">{{shopify}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link joomla" href="https://extensions.joomla.org/extension/vm-payment-btcpay-for-virtuemart/">
|
||||
<span class="joomla">{{joomla}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link nopcommerce" href="https://www.nopcommerce.com/en/btcpay-server-accept-bitcoin-payments">
|
||||
<span class="nopcommerce">{{nopcommerce}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link grandnode" href="https://grandnode.com/btcpay-server-accept-bitcoin-payments">
|
||||
<span class="grandnode">{{grandnode}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link smartstore" href="https://docs.btcpayserver.org/Smartstore/">
|
||||
<span class="smartstore">{{smartstore}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link ecwid" href="https://docs.btcpayserver.org/Ecwid/">
|
||||
<span class="ecwid">{{ecwid}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link ghost" href="https://docs.btcpayserver.org/Ghost/">
|
||||
<span class="ghost">{{ghost}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link easywebshop" href="https://docs.btcpayserver.org/easywebshop/">
|
||||
<span class="easywebshop">{{easywebshop}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link custom" href="https://docs.btcpayserver.org/CustomIntegration/">
|
||||
<span class="custom">{{custom-integration}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link whmcs" href="https://marketplace.whmcs.com/product/7348-accept-bitcoin-payments-with-ease-and-no-fees-btcpay-server-for-whmcs">
|
||||
<span class="whmcs">{{whmcs}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link mag" href="https://docs.btcpayserver.org/Magento/"><span class="mag">{{magento}}</span></a>
|
||||
|
||||
<a class="svg-link presta" href="https://docs.btcpayserver.org/PrestaShop/">
|
||||
<span class="presta">{{prestashop}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link zapier" href="https://zapier.com/apps/btcpay-server/integrations"><span class="zapier">{{zapier}}</span></a>
|
||||
|
||||
<a class="svg-link edd" href="https://docs.btcpayserver.org/EasyDigitalDownloads/">
|
||||
<span class="edd">{{edd}}</span>
|
||||
</a>
|
||||
|
||||
<a class="svg-link invoiceninja" href="https://docs.btcpayserver.org/InvoiceNinja/">
|
||||
<span class="invoiceninja">{{invoiceninja}}</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<h2 class="mobile-only">{{integrations-and-plugins}}</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-item video-holder-watch-video -bg-grey-l" id="watchVideo">
|
||||
<h3>{{what-is-btcpay}}</h3>
|
||||
<figure>
|
||||
<iframe class="unfetteredVideoFrame" src="https://www.youtube-nocookie.com/embed/XHj7EVUunJ4" title="What is BTCPay Server"></iframe>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<div class="page-item video-holder-watch-video -bg-grey-l">
|
||||
<h3>{{btcpay-for-communities}}</h3>
|
||||
<figure>
|
||||
<iframe class="unfetteredVideoFrame" src="https://www.youtube-nocookie.com/embed/9n81qnzlPf8" title="BTCPay Server for local communities"></iframe>
|
||||
</figure>
|
||||
</div>
|
||||
|
||||
<div class="page-item-free -bg-grey">
|
||||
<div class="pageItemInnerSpacer">
|
||||
<div class="pageItemTextContent floatContentLeft">
|
||||
<h2>{{docs}}</h2>
|
||||
<p>{{need-help-using}}</p>
|
||||
<a title="{{read-docs}}" class="modernLink" href="http://docs.btcpayserver.org/" target="blank_">{{read-docs}} <i
|
||||
class="fas fa-long-arrow-alt-{{_rl}}"></i>
|
||||
</a>
|
||||
|
||||
<p>{{having-a-technical}}</p>
|
||||
<a title="{{contribute}}" class="modernLink" href="https://github.com/btcpayserver"
|
||||
target="blank_">{{contribute}} <i class="fas fa-long-arrow-alt-{{_rl}}"></i>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<img class="floatContentRight standalone __fal-{{_rl}}" src="/img/docs.png" alt="Screenshot - docs.png">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="pageItem" id="communityCTA">
|
||||
<div class="pageItemInnerSpacer -ta-c">
|
||||
<div class="pageItemTextContent floatContentLeft">
|
||||
<h2>{{join-the-community}}</h2>
|
||||
<p>{{btcpay-server-is-an-open-source}}</p>
|
||||
<div class="linkOrg-3 -ta-c">
|
||||
<a title="Community on Mattermost" class="modernLink_Cluster" href="http://chat.btcpayserver.org/"
|
||||
target="blank_">
|
||||
<svg class="svgPseudoIcon mattermost" enable-background="new 0 0 500 500" height="500"
|
||||
viewBox="0 0 500 500" width="500" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill="var(--dark-grey)"
|
||||
d="m256.258 2.758c-11.193 13.246-21.75 25.869-32.526 38.301-1.11 1.28-3.477 1.629-5.339 2.076-70.773 16.96-118.985 58.864-137.218 130.136-16.03 62.655 1.301 118.252 44.825 165.322 32.698 35.359 74.059 54.639 121.803 58.979 90.408 8.216 175.685-48.88 193.982-140.602 11.32-56.738-3.984-107.076-40.658-151.239-2.241-2.698-3.311-5.263-3.426-8.792-.484-14.831-1.311-29.653-2.001-44.479-.028-.603.094-1.216.157-1.946 73.405 49.462 129.388 164.069 87.006 283.188-43.143 121.244-174.348 189.369-298.59 154.835-126.519-35.168-201.923-160.523-177.046-286.019 27.257-137.502 149.647-204.741 249.031-199.76z" />
|
||||
<path fill="var(--dark-grey)"
|
||||
d="m334.119 214.47c-.152 31.185-21.701 57.792-48.973 65.99-33.039 9.935-82.484-8.558-90.773-52.303-4.492-23.715 2.165-43.55 16.509-63.536 45.787-63.793 106.727-132.5 106.727-132.5 1.905-2.118 5.166-4.817 8.177-3.813 3.128 1.046 4.313 2.913 4.603 8.187 0 .002 4.253 71.293 3.73 177.975z" />
|
||||
</svg>
|
||||
{{mattermost}}</a>
|
||||
<a title="Community on GitHub" class="modernLink_Cluster nullTrans" href="https://github.com/btcpayserver"
|
||||
target="blank_">
|
||||
<i class="fab fa-github"></i>{{github}}</a>
|
||||
<a title="{{telegram}}" class="modernLink_Cluster" href="https://t.me/btcpayserver" target="blank_">
|
||||
<i class="fab fa-telegram"></i>{{telegram}}</a>
|
||||
|
||||
<a title="Twitter" class="modernLink_Cluster" href="https://twitter.com/BtcpayServer" target="blank_">
|
||||
<i class="fab fa-twitter"></i>Twitter</a>
|
||||
|
||||
<a title="Youtube" class="modernLink_Cluster"
|
||||
href="https://www.youtube.com/channel/UCpG9WL6TJuoNfFVkaDMp9ug" target="blank_">
|
||||
<i class="fab fa-youtube"></i>YouTube</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="pageItem" id="contributors">
|
||||
<div class="pageItemInnerSpacer -ta-c">
|
||||
<div class="pageItemTextContent floatContentLeft">
|
||||
<div class="donation-type">
|
||||
<h2>Contributors</h2>
|
||||
<div class="individual-grid" id="donGr" style=" max-height: 50vh;overflow: auto; margin:0 auto auto">
|
||||
{{_contributorsBlock}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{_ftblk}}
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- END OF THEME CONTAINER -->
|
||||
<script src="/js/scripts.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 8.9 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 388 B After Width: | Height: | Size: 388 B |
|
Before Width: | Height: | Size: 768 B After Width: | Height: | Size: 768 B |
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.0 KiB |