Compare commits
No commits in common. "master" and "gh-pages" have entirely different histories.
41
.github/workflows/build.yml
vendored
@ -1,41 +0,0 @@
|
||||
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
@ -1,6 +0,0 @@
|
||||
/dist
|
||||
/node_modules
|
||||
/transifex/download
|
||||
/github
|
||||
.env
|
||||
.idea
|
||||
21
LICENSE
@ -1,21 +0,0 @@
|
||||
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
@ -1,68 +0,0 @@
|
||||
# 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
|
||||
```
|
||||
|
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 |
323
ar/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
bg/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
bs_BA/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
323
cs_CZ/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
0
src/css/fa_.min.css → css/fa_.min.css
vendored
1
css/page-styles.css
Normal file
@ -0,0 +1 @@
|
||||
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
css/styles.css
Normal file
323
da_DK/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
de_DE/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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>
|
||||
323
el_GR/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
es_419/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
es_ES/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
fa/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
|
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 |
323
fi_FI/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
|
Before Width: | Height: | Size: 697 KiB After Width: | Height: | Size: 697 KiB |
|
Before Width: | Height: | Size: 137 KiB After Width: | Height: | Size: 137 KiB |
|
Before Width: | Height: | Size: 729 KiB After Width: | Height: | Size: 729 KiB |
323
fr_FR/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
he/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
hi/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
323
id/donate/index.html
Normal file
@ -0,0 +1,323 @@
|
||||
<!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
Normal file
|
Before Width: | Height: | Size: 931 B After Width: | Height: | Size: 931 B |
|
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 413 KiB After Width: | Height: | Size: 413 KiB |
|
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 18 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 21 KiB |
|
Before Width: | Height: | Size: 565 KiB After Width: | Height: | Size: 565 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 4.9 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 450 B After Width: | Height: | Size: 450 B |