Fix all files with pre-commit

This commit is contained in:
Reckless_Satoshi 2022-10-25 11:04:12 -07:00
parent 7c901da04d
commit 7643e524f1
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
119 changed files with 36669 additions and 36715 deletions

View File

@ -1,22 +1,22 @@
# .editorconfig http://editorconfig.org/
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# 4 space indentation
[*.{py,rst,ini}]
indent_style = space
indent_size = 4
# 2 space indentation
[*.{html,css,scss,json,yml}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
# .editorconfig http://editorconfig.org/
root = true
[*]
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
# 4 space indentation
[*.{py,rst,ini}]
indent_style = space
indent_size = 4
# 2 space indentation
[*.{html,css,scss,json,yml}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false

View File

@ -16,7 +16,7 @@ on:
jobs:
build-android:
runs-on: ubuntu-latest
steps:
steps:
- name: 'Checkout'
uses: actions/checkout@v3
@ -45,7 +45,7 @@ jobs:
with:
distribution: temurin
java-version: 11
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
@ -99,7 +99,7 @@ jobs:
prerelease: true
- name: 'Upload Pre-release APK Release Asset'
id: upload-release-apk-asset
id: upload-release-apk-asset
if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
uses: actions/upload-release-asset@v1
env:
@ -111,7 +111,7 @@ jobs:
asset_content_type: application/apk
- name: 'Upload Pre-release APK Debug Asset'
id: upload-debug-apk-asset
id: upload-debug-apk-asset
if: inputs.semver == '' # only if this workflow is not called from a push to tag (a Release)
uses: actions/upload-release-asset@v1
env:

View File

@ -34,7 +34,7 @@ jobs:
workflow_conclusion: success
name: web-main-js
path: nodeapp/static/frontend/
- name: 'Download main.js Artifact for a release'
if: inputs.semver != '' # Only if fired as job in release.yml
uses: actions/download-artifact@v3
@ -50,7 +50,7 @@ jobs:
workflow_conclusion: success
name: web-pro-js
path: nodeapp/static/frontend/
- name: 'Download pro.js Artifact for a release'
if: inputs.semver != '' # Only if fired as job in release.yml
uses: actions/download-artifact@v3
@ -75,17 +75,17 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=sha,enable=true,priority=100,prefix=,suffix=,format=short
type=raw,value=latest
- name: 'Get Commit Hash'
id: commit
uses: pr-mpt/actions-commit-hash@v1
- name: 'Set up QEMU'
uses: docker/setup-qemu-action@v2
- name: 'Set up Docker Buildx'
uses: docker/setup-buildx-action@v2
- name: 'Build and push Docker image'
uses: docker/build-push-action@v3
with:

View File

@ -51,11 +51,11 @@ jobs:
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
@ -64,7 +64,7 @@ jobs:
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |

View File

@ -50,11 +50,11 @@ jobs:
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
@ -63,7 +63,7 @@ jobs:
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# - run: |

View File

@ -23,7 +23,7 @@ jobs:
workflow_conclusion: success
name: web-main-js
path: nodeapp/static/frontend/
- name: 'Download Basic main.js Artifact for a release'
if: inputs.semver != '' # Only if fired as job in release.yml
uses: actions/download-artifact@v3
@ -39,7 +39,7 @@ jobs:
workflow_conclusion: success
name: web-pro-js
path: nodeapp/static/frontend/
- name: 'Download pro.js Artifact for a release'
if: inputs.semver != '' # Only if fired as job in release.yml
uses: actions/download-artifact@v3

View File

@ -13,7 +13,7 @@ on:
# concurrency:
# group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
# cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
@ -37,13 +37,13 @@ jobs:
pip install -r requirements.txt
- name: 'Install LND gRPC Dependencies'
run: |
cd api/lightning
cd api/lightning
git clone https://github.com/googleapis/googleapis.git
curl -o lightning.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/lightning.proto
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. lightning.proto
curl -o invoices.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/invoicesrpc/invoices.proto
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. invoices.proto
curl -o router.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/routerrpc/router.proto
curl -o router.proto -s https://raw.githubusercontent.com/lightningnetwork/lnd/master/lnrpc/routerrpc/router.proto
python3 -m grpc_tools.protoc --proto_path=googleapis:. --python_out=. --grpc_python_out=. router.proto
sed -i 's/^import .*_pb2 as/from . \0/' router_pb2.py
sed -i 's/^import .*_pb2 as/from . \0/' invoices_pb2.py

View File

@ -41,7 +41,7 @@ jobs:
with:
prettier: true
prettier_dir: frontend
## Disabled due to error
# eslint: true
# eslint_dir: frontend

View File

@ -34,8 +34,8 @@ jobs:
else
echo "Versions do not match! You might have forgotten to update the version on a component."; exit $ERRCODE;
fi
django-test:
uses: reckless-satoshi/robosats/.github/workflows/django-test.yml@main
needs: check-versions
@ -45,27 +45,27 @@ jobs:
needs: check-versions
with:
semver: ${{ needs.check-versions.outputs.semver }}
coordinator-image:
uses: reckless-satoshi/robosats/.github/workflows/coordinator-image.yml@main
needs: [django-test, frontend-build]
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}
client-image:
uses: reckless-satoshi/robosats/.github/workflows/client-image.yml@main
needs: frontend-build
secrets: inherit
with:
semver: ${{ needs.check-versions.outputs.semver }}
android-build:
uses: reckless-satoshi/robosats/.github/workflows/android-build.yml@main
needs: [frontend-build, check-versions]
with:
semver: ${{ needs.check-versions.outputs.semver }}
release:
needs: [check-versions, coordinator-image, client-image, android-build]
runs-on: ubuntu-latest

View File

@ -5,18 +5,18 @@
[![AGPL-3.0 license](https://img.shields.io/badge/license-AGPL--3.0-blue)](https://github.com/Reckless-Satoshi/robosats/blob/main/LICENSE)
[![Telegram](https://img.shields.io/badge/chat-telegram-brightgreen)](https://t.me/robosats)
RoboSats is a simple and private way to exchange bitcoin for national currencies. Robosats simplifies the peer-to-peer user experience and uses lightning hold invoices to minimize custody and trust requirements. The deterministically generated avatars help users stick to best privacy practices.
RoboSats is a simple and private way to exchange bitcoin for national currencies. Robosats simplifies the peer-to-peer user experience and uses lightning hold invoices to minimize custody and trust requirements. The deterministically generated avatars help users stick to best privacy practices.
<div align="center">
<img width="75%" src="https://raw.githubusercontent.com/Reckless-Satoshi/robosats/main/frontend/static/assets/images/robosats-0.1.1-banner.png">
</div>
## Try it out!
## Try it out!
### **Bitcoin Mainnet**
- **TOR URL:** [**RoboSats**6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion](http://robosats6tkf3eva7x2voqso3a5wcorsnw34jveyxfqi2fu7oyheasid.onion) ( Open with [Tor Browser](https://www.torproject.org/download/))
- Clearnet URL: [unsafe.robosats.com](https://unsafe.robosats.com) (not recommended!)
- Clearnet Mirrors: [unsafe2](https://unsafe2.robosats.com) || [unsafe3](https://unsafe3.robosats.com) (not recommended!)
- Clearnet URL: [unsafe.robosats.com](https://unsafe.robosats.com) (not recommended!)
- Clearnet Mirrors: [unsafe2](https://unsafe2.robosats.com) || [unsafe3](https://unsafe3.robosats.com) (not recommended!)
*Always use [Tor Browser](https://www.torproject.org/download/) and .onion for best privacy. The Clearnet URL redirects to a third party Tor2web service. Your privacy cannot be guaranteed to be respected. Use clearnet only to check around the app, never use for trading!*
@ -59,7 +59,7 @@ Check out our [Contribution Guide](https://learn.robosats.com/contribute/) to fi
### ⚡Developer Rewards ⚡
Check out the [Developer Rewards Panel](https://github.com/users/Reckless-Satoshi/projects/2/views/5) for tasks paid in Sats.
## Sponsors
## Sponsors
<div align="center">
<img src="https://raw.githubusercontent.com/Reckless-Satoshi/robosats/main/docs/assets/images/sponsors/hrf.png" width="300px">
</div>

View File

@ -1,11 +1,13 @@
from django.contrib import admin, messages
from django_admin_relation_links import AdminChangeLinksMixin
from django.contrib.auth.models import Group, User
from django.contrib.auth.admin import UserAdmin
from api.models import OnchainPayment, Order, LNPayment, Profile, MarketTick, Currency
from api.logics import Logics
from statistics import median
from django.contrib import admin, messages
from django.contrib.auth.admin import UserAdmin
from django.contrib.auth.models import Group, User
from django_admin_relation_links import AdminChangeLinksMixin
from api.logics import Logics
from api.models import Currency, LNPayment, MarketTick, OnchainPayment, Order, Profile
admin.site.unregister(Group)
admin.site.unregister(User)

View File

@ -1,6 +1,8 @@
import hashlib
import os
import random
import secrets
import time
from base64 import b64decode
from datetime import datetime, timedelta
@ -16,8 +18,6 @@ from . import lightning_pb2_grpc as lightningstub
from . import router_pb2 as routerrpc
from . import router_pb2_grpc as routerstub
import time, random
#######
# Should work with LND (c-lightning in the future if there are features that deserve the work)
#######

View File

@ -1,10 +1,11 @@
from django.core.management.base import BaseCommand
import time
from api.models import Order
from api.logics import Logics
from django.core.management.base import BaseCommand
from django.utils import timezone
from api.logics import Logics
from api.models import Order
class Command(BaseCommand):
help = "Follows all active hold invoices"

View File

@ -1,16 +1,15 @@
import time
from base64 import b64decode
from datetime import timedelta
from decouple import config
from django.core.management.base import BaseCommand
from django.utils import timezone
from api.lightning.node import LNNode
from api.tasks import follow_send_payment
from api.models import LNPayment, Order
from api.logics import Logics
from api.tasks import send_message
from django.utils import timezone
from datetime import timedelta
from decouple import config
from base64 import b64decode
import time
from api.models import LNPayment, Order
from api.tasks import follow_send_payment, send_message
MACAROON = b64decode(config("LND_MACAROON_BASE64"))

View File

@ -1,10 +1,11 @@
import time
from decouple import config
from django.core.management.base import BaseCommand
from api.models import Profile
from api.messages import Telegram
from api.models import Profile
from api.utils import get_session
from decouple import config
import time
class Command(BaseCommand):

View File

@ -1,5 +1,7 @@
from decouple import config
from secrets import token_urlsafe
from decouple import config
from api.models import Order
from api.utils import get_session

View File

@ -1,21 +1,21 @@
from django.db import models
import json
import uuid
from pathlib import Path
from decouple import config
from django.conf import settings
from django.contrib.auth.models import User
from django.core.validators import (
MaxValueValidator,
MinValueValidator,
validate_comma_separated_integer_list,
)
from django.utils import timezone
from django.db import models
from django.db.models.signals import post_save, pre_delete
from django.template.defaultfilters import truncatechars
from django.dispatch import receiver
from django.template.defaultfilters import truncatechars
from django.utils import timezone
from django.utils.html import mark_safe
import uuid
from django.conf import settings
from decouple import config
from pathlib import Path
import json
from control.models import BalanceLog

File diff suppressed because it is too large Load Diff

View File

@ -1,452 +1,452 @@
adverbs = [
"Utterly",
"Rapturously",
"Most",
"Unfairly",
"Always",
"Up",
"Patiently",
"Nearby",
"Fortunately",
"Potentially",
"Astonishingly",
"Conceivably",
"Excitedly",
"Hungrily",
"Badly",
"About",
"Certainly",
"Tenderly",
"Predictably",
"Sedately",
"Equally",
"Truthfully",
"Formerly",
"Restfully",
"Jokingly",
"Unexpectedly",
"However",
"Extremely",
"Amazingly",
"Quite",
"Lawfully",
"Emptily",
"Affectionately",
"Nevertheless",
"Nicely",
"Seriously",
"Hardly",
"Justly",
"Sternly",
"Cruelly",
"Today",
"Understandingly",
"Backwards",
"Powerfully",
"Understandably",
"Accusingly",
"Irritably",
"Violently",
"Commonly",
"How",
"Wrongly",
"Loudly",
"Innocently",
"Probably",
"Meaningfully",
"Conspicuously",
"Rightly",
"Overseas",
"Wildly",
"Awkwardly",
"Finally",
"Absently",
"Inwardly",
"Likely",
"Greedily",
"Breathlessly",
"Ideally",
"Miserably",
"Deceivingly",
"Tonight",
"Simply",
"Yet",
"Compassionately",
"Crisply",
"Decidedly",
"Last",
"Inadequately",
"Perpetually",
"Lots",
"Busily",
"Fervently",
"Late",
"Solemnly",
"Enviously",
"Not",
"Happily",
"Wearily",
"Nearly",
"Before",
"Openly",
"Intensely",
"Much",
"Fiercely",
"Enormously",
"Separately",
"Helpfully",
"Tremendously",
"Blindly",
"Long",
"First",
"Energetically",
"Partially",
"Lately",
"Incredibly",
"Awfully",
"Regularly",
"Now",
"Crossly",
"Increasingly",
"Indeed",
"Practically",
"Famously",
"Down",
"Over",
"Spitefully",
"Desperately",
"Harshly",
"Distinctly",
"Confidentially",
"Inadvertently",
"Best",
"Disgustingly",
"Sleepily",
"Ferociously",
"Incidentally",
"Naturally",
"Selfishly",
"Rightfully",
"Lightly",
"Shyly",
"Longingly",
"Superstitiously",
"Too",
"Suspiciously",
"Especially",
"Stingily",
"Rarely",
"Curiously",
"Poorly",
"Very",
"Downstairs",
"Briskly",
"Thus",
"Exactly",
"Yearly",
"Evenly",
"Clumsily",
"Daintily",
"Heartily",
"Gratefully",
"Elegantly",
"Quick",
"Terribly",
"Never",
"Already",
"Behind",
"Frenetically",
"Unlike",
"Obviously",
"Meekly",
"Wonderingly",
"Brightly",
"Thoroughly",
"Doubtfully",
"Wrong",
"Sheepishly",
"Moreover",
"Messily",
"Wisely",
"Wonderfully",
"Properly",
"Tightly",
"Slow",
"Absolutely",
"Closely",
"Repeatedly",
"Underground",
"Mockingly",
"Abroad",
"Positively",
"Briefly",
"Reproachfully",
"Lazily",
"Hopefully",
"Continually",
"Generally",
"Theoretically",
"Just",
"Freely",
"Playfully",
"Carefully",
"Intently",
"Slowly",
"Mysteriously",
"There",
"Fairly",
"Pleasantly",
"Madly",
"Speedily",
"Off",
"Calmly",
"Deliberately",
"Hard",
"Clearly",
"Frankly",
"Quintessentially",
"Tensely",
"East",
"Quaveringly",
"Mentally",
"Consequently",
"Less",
"Determinedly",
"Grumpily",
"Searchingly",
"Stubbornly",
"Unwillingly",
"Bravely",
"Neatly",
"Generously",
"Eventually",
"Gleefully",
"Anyway",
"Dangerously",
"Highly",
"Presumably",
"Cheerfully",
"Quietly",
"So",
"Fearlessly",
"Low",
"Angrily",
"Therefore",
"Rather",
"Easily",
"Ultimately",
"Earlier",
"Again",
"Early",
"Ravenously",
"Cautiously",
"Perfectly",
"Foolishly",
"Evidently",
"Carelessly",
"Warmly",
"Stupidly",
"Daringly",
"Where",
"Unbelievably",
"Abruptly",
"Ever",
"Wholly",
"Obediently",
"Gladly",
"Otherwise",
"Strangely",
"Slyly",
"Instantly",
"Hopelessly",
"Far",
"Impulsively",
"Greatly",
"Loosely",
"Definitely",
"Solidly",
"Here",
"Out",
"Proudly",
"Coaxingly",
"Strictly",
"Darkly",
"Roughly",
"Venomously",
"Interestingly",
"Purely",
"Later",
"Even",
"Better",
"Accidentally",
"Likewise",
"Righteously",
"Besides",
"Until",
"Usually",
"Willfully",
"Doubtlessly",
"Previously",
"Totally",
"Intermittently",
"Eagerly",
"Anywhere",
"Rigidly",
"Mechanically",
"Straight",
"Inside",
"Safely",
"Regretfully",
"Hurriedly",
"Enough",
"Least",
"Surprisingly",
"Thoughtfully",
"Quarterly",
"Regrettably",
"Completely",
"Correctly",
"Fortnightly",
"Joyously",
"Marvelously",
"Outside",
"Weekly",
"Almost",
"Delicately",
"On",
"Readily",
"Seemingly",
"Basically",
"Seldom",
"Soon",
"Sometimes",
"Reluctantly",
"Upstairs",
"Ever",
"Furthermore",
"Occasionally",
"Somewhat",
"Reassuringly",
"Faithfully",
"Unfortunately",
"Diligently",
"Afterward",
"Strongly",
"Oddly",
"Urgently",
"Softly",
"Doggedly",
"Somewhere",
"Back",
"Recklessly",
"Suddenly",
"Arrogantly",
"Knowingly",
"Tomorrow",
"Mostly",
"Coolly",
"Really",
"Successfully",
"Normally",
"Monthly",
"Importantly",
"Additionally",
"Professionally",
"Outwardly",
"Apparently",
"Fully",
"Frantically",
"Right",
"Cleanly",
"Backward",
"Undoubtedly",
"Pleasingly",
"Cleverly",
"Worriedly",
"Inquisitively",
"Heavily",
"Away",
"Hourly",
"Swiftly",
"Hastily",
"Entirely",
"Dearly",
"Deeply",
"Cheaply",
"Little",
"Noisily",
"Adversely",
"Delightfully",
"Negatively",
"Unhappily",
"Similarly",
"Infrequently",
"Vastly",
"Daily",
"Promptly",
"Rudely",
"Actually",
"Rapidly",
"Next",
"Viciously",
"Sympathetically",
"Well",
"Luckily",
"Frequently",
"Honestly",
"Often",
"Under",
"Elsewhere",
"Then",
"Pretty",
"Queerly",
"More",
"Frightfully",
"Painfully",
"Below",
"Constantly",
"Towards",
"Periodically",
"In",
"Recently",
"Furiously",
"Guiltily",
"Ironically",
"Since",
"Hatefully",
"Thankfully",
"Indoors",
"Barely",
"Truly",
"Along",
"Scarcely",
"Bashfully",
"Fast",
"Anxiously",
"Sharply",
"Immediately",
"Helplessly",
"Politely",
"Yesterday",
"Nonetheless",
"Sadly",
"Kindly",
"Triumphantly",
"Quickly",
"Still",
"Nervously",
"Above",
"Enticingly",
"Near",
"Meanwhile",
"Expertly",
"Mindfully",
"Dreamily",
"Virtually",
"Annually",
"Beautifully",
"Gently",
"Exclusively",
"Passionately",
"Boldly",
]
adverbs = [
"Utterly",
"Rapturously",
"Most",
"Unfairly",
"Always",
"Up",
"Patiently",
"Nearby",
"Fortunately",
"Potentially",
"Astonishingly",
"Conceivably",
"Excitedly",
"Hungrily",
"Badly",
"About",
"Certainly",
"Tenderly",
"Predictably",
"Sedately",
"Equally",
"Truthfully",
"Formerly",
"Restfully",
"Jokingly",
"Unexpectedly",
"However",
"Extremely",
"Amazingly",
"Quite",
"Lawfully",
"Emptily",
"Affectionately",
"Nevertheless",
"Nicely",
"Seriously",
"Hardly",
"Justly",
"Sternly",
"Cruelly",
"Today",
"Understandingly",
"Backwards",
"Powerfully",
"Understandably",
"Accusingly",
"Irritably",
"Violently",
"Commonly",
"How",
"Wrongly",
"Loudly",
"Innocently",
"Probably",
"Meaningfully",
"Conspicuously",
"Rightly",
"Overseas",
"Wildly",
"Awkwardly",
"Finally",
"Absently",
"Inwardly",
"Likely",
"Greedily",
"Breathlessly",
"Ideally",
"Miserably",
"Deceivingly",
"Tonight",
"Simply",
"Yet",
"Compassionately",
"Crisply",
"Decidedly",
"Last",
"Inadequately",
"Perpetually",
"Lots",
"Busily",
"Fervently",
"Late",
"Solemnly",
"Enviously",
"Not",
"Happily",
"Wearily",
"Nearly",
"Before",
"Openly",
"Intensely",
"Much",
"Fiercely",
"Enormously",
"Separately",
"Helpfully",
"Tremendously",
"Blindly",
"Long",
"First",
"Energetically",
"Partially",
"Lately",
"Incredibly",
"Awfully",
"Regularly",
"Now",
"Crossly",
"Increasingly",
"Indeed",
"Practically",
"Famously",
"Down",
"Over",
"Spitefully",
"Desperately",
"Harshly",
"Distinctly",
"Confidentially",
"Inadvertently",
"Best",
"Disgustingly",
"Sleepily",
"Ferociously",
"Incidentally",
"Naturally",
"Selfishly",
"Rightfully",
"Lightly",
"Shyly",
"Longingly",
"Superstitiously",
"Too",
"Suspiciously",
"Especially",
"Stingily",
"Rarely",
"Curiously",
"Poorly",
"Very",
"Downstairs",
"Briskly",
"Thus",
"Exactly",
"Yearly",
"Evenly",
"Clumsily",
"Daintily",
"Heartily",
"Gratefully",
"Elegantly",
"Quick",
"Terribly",
"Never",
"Already",
"Behind",
"Frenetically",
"Unlike",
"Obviously",
"Meekly",
"Wonderingly",
"Brightly",
"Thoroughly",
"Doubtfully",
"Wrong",
"Sheepishly",
"Moreover",
"Messily",
"Wisely",
"Wonderfully",
"Properly",
"Tightly",
"Slow",
"Absolutely",
"Closely",
"Repeatedly",
"Underground",
"Mockingly",
"Abroad",
"Positively",
"Briefly",
"Reproachfully",
"Lazily",
"Hopefully",
"Continually",
"Generally",
"Theoretically",
"Just",
"Freely",
"Playfully",
"Carefully",
"Intently",
"Slowly",
"Mysteriously",
"There",
"Fairly",
"Pleasantly",
"Madly",
"Speedily",
"Off",
"Calmly",
"Deliberately",
"Hard",
"Clearly",
"Frankly",
"Quintessentially",
"Tensely",
"East",
"Quaveringly",
"Mentally",
"Consequently",
"Less",
"Determinedly",
"Grumpily",
"Searchingly",
"Stubbornly",
"Unwillingly",
"Bravely",
"Neatly",
"Generously",
"Eventually",
"Gleefully",
"Anyway",
"Dangerously",
"Highly",
"Presumably",
"Cheerfully",
"Quietly",
"So",
"Fearlessly",
"Low",
"Angrily",
"Therefore",
"Rather",
"Easily",
"Ultimately",
"Earlier",
"Again",
"Early",
"Ravenously",
"Cautiously",
"Perfectly",
"Foolishly",
"Evidently",
"Carelessly",
"Warmly",
"Stupidly",
"Daringly",
"Where",
"Unbelievably",
"Abruptly",
"Ever",
"Wholly",
"Obediently",
"Gladly",
"Otherwise",
"Strangely",
"Slyly",
"Instantly",
"Hopelessly",
"Far",
"Impulsively",
"Greatly",
"Loosely",
"Definitely",
"Solidly",
"Here",
"Out",
"Proudly",
"Coaxingly",
"Strictly",
"Darkly",
"Roughly",
"Venomously",
"Interestingly",
"Purely",
"Later",
"Even",
"Better",
"Accidentally",
"Likewise",
"Righteously",
"Besides",
"Until",
"Usually",
"Willfully",
"Doubtlessly",
"Previously",
"Totally",
"Intermittently",
"Eagerly",
"Anywhere",
"Rigidly",
"Mechanically",
"Straight",
"Inside",
"Safely",
"Regretfully",
"Hurriedly",
"Enough",
"Least",
"Surprisingly",
"Thoughtfully",
"Quarterly",
"Regrettably",
"Completely",
"Correctly",
"Fortnightly",
"Joyously",
"Marvelously",
"Outside",
"Weekly",
"Almost",
"Delicately",
"On",
"Readily",
"Seemingly",
"Basically",
"Seldom",
"Soon",
"Sometimes",
"Reluctantly",
"Upstairs",
"Ever",
"Furthermore",
"Occasionally",
"Somewhat",
"Reassuringly",
"Faithfully",
"Unfortunately",
"Diligently",
"Afterward",
"Strongly",
"Oddly",
"Urgently",
"Softly",
"Doggedly",
"Somewhere",
"Back",
"Recklessly",
"Suddenly",
"Arrogantly",
"Knowingly",
"Tomorrow",
"Mostly",
"Coolly",
"Really",
"Successfully",
"Normally",
"Monthly",
"Importantly",
"Additionally",
"Professionally",
"Outwardly",
"Apparently",
"Fully",
"Frantically",
"Right",
"Cleanly",
"Backward",
"Undoubtedly",
"Pleasingly",
"Cleverly",
"Worriedly",
"Inquisitively",
"Heavily",
"Away",
"Hourly",
"Swiftly",
"Hastily",
"Entirely",
"Dearly",
"Deeply",
"Cheaply",
"Little",
"Noisily",
"Adversely",
"Delightfully",
"Negatively",
"Unhappily",
"Similarly",
"Infrequently",
"Vastly",
"Daily",
"Promptly",
"Rudely",
"Actually",
"Rapidly",
"Next",
"Viciously",
"Sympathetically",
"Well",
"Luckily",
"Frequently",
"Honestly",
"Often",
"Under",
"Elsewhere",
"Then",
"Pretty",
"Queerly",
"More",
"Frightfully",
"Painfully",
"Below",
"Constantly",
"Towards",
"Periodically",
"In",
"Recently",
"Furiously",
"Guiltily",
"Ironically",
"Since",
"Hatefully",
"Thankfully",
"Indoors",
"Barely",
"Truly",
"Along",
"Scarcely",
"Bashfully",
"Fast",
"Anxiously",
"Sharply",
"Immediately",
"Helplessly",
"Politely",
"Yesterday",
"Nonetheless",
"Sadly",
"Kindly",
"Triumphantly",
"Quickly",
"Still",
"Nervously",
"Above",
"Enticingly",
"Near",
"Meanwhile",
"Expertly",
"Mindfully",
"Dreamily",
"Virtually",
"Annually",
"Beautifully",
"Gently",
"Exclusively",
"Passionately",
"Boldly",
]

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,225 +1,225 @@
from .utils import human_format
import hashlib
import time
"""
Deterministic nick generator from SHA256 hash.
It builds Nicknames as:
Adverb + Adjective + Noun + Numeric(0-999)
With the current English dictionaries there
is a total of to 450*4800*12500*1000 =
28 Trillion deterministic nicks
"""
class NickGenerator:
def __init__(
self,
lang="English",
use_adv=True,
use_adj=True,
use_noun=True,
max_num=999,
verbose=False,
):
"""
used_adv: bool , True if adverbs are used in the nick.
used_adj: bool , True if adjectives are used in the nick.
use_noun: bool , True if nouns are used in the nick.
max_num: int, max integer to be used in nick (at least 1)
"""
if lang == "English":
from .dicts.en.adverbs import adverbs
from .dicts.en.adjectives import adjectives
from .dicts.en.nouns import nouns
elif lang == "Spanish":
from .dicts.es.adverbs import adverbs
from .dicts.es.adjectives import adjectives
from .dicts.es.nouns import nouns
else:
raise ValueError("Language not implemented.")
if verbose:
print(
f"{lang} SHA256 Nick Generator initialized with:"
+ f"\nUp to {len(adverbs)} adverbs."
+ f"\nUp to {len(adjectives)} adjectives."
+ f"\nUp to {len(nouns)} nouns."
+ f"\nUp to {max_num+1} numerics.\n"
)
self.use_adv = use_adv
self.use_adj = use_adj
self.use_noun = use_noun
self.max_num = max_num
self.verbose = verbose
self.adverbs = adverbs
self.adjectives = adjectives
self.nouns = nouns
def from_SHA256(self, hash=None):
"""
Converts hash to int, min-max scales it
to the pool size of nicks, uses it as
index to construct the nick element by
element.
hash; SHA256 hash as bytes
"""
# Get size of dictionaries for each element
num_adv = len(self.adverbs) if self.use_adv else 1
num_adj = len(self.adjectives) if self.use_adj else 1
num_nouns = len(self.nouns) if self.use_noun else 1
# Compute pool size by combinatorics
pool_size = self.max_num * num_nouns * num_adj * num_adv
# Min-Max scale the hash relative to the pool size
max_int_hash = 2**256
int_hash = int(hash, 16)
nick_id = int((int_hash / max_int_hash) * pool_size)
# Compute adverb id
if self.use_adv:
adv_id = int(nick_id / (self.max_num * num_nouns * num_adj))
adv = self.adverbs[adv_id]
remainder = nick_id - adv_id * self.max_num * num_nouns * num_adj
if self.verbose:
print(f"Adverb: {adv}, id {adv_id}.")
else:
adv_id, adv, remainder = 0, "", nick_id
# Compute adjective id
if self.use_adj:
adj_id = int(remainder / (self.max_num * num_nouns))
adj = self.adjectives[adj_id]
remainder = remainder - adj_id * self.max_num * num_nouns
if self.verbose:
print(f"Adjective: {adj}, id {adj_id}.")
else:
adj_id, adj = 0, ""
# Compute noun id
if self.use_noun:
noun_id = int(remainder / self.max_num)
noun = self.nouns[noun_id]
if self.verbose:
print(f"Noun: {noun}, id {noun_id}.\n")
else:
noun_id, noun = 0, ""
# Remainder is the numeric element
if self.max_num > 0:
num_id = remainder - noun_id * self.max_num
number = str(num_id)
else:
num_id, number = 0, ""
# Build nick
nick = adv + adj + noun + number
return nick, nick_id, pool_size
def short_from_SHA256(
self,
primer_hash=None,
max_length=25,
max_iter=10000,
):
"""
Generates Nicks that are short.
Iterates trough hashes deterministically
until it finds a nick that satisfies
the lenght restriction.
"""
hash = primer_hash
i = 0
while i < max_iter:
nick, nick_id, pool_size = self.from_SHA256(hash)
if len(nick) <= max_length:
return nick, nick_id, pool_size, i
else:
string = str(hash) + str(42)
hash = hashlib.sha256(str.encode(string)).hexdigest()
i = i + 1
return "", 0, 0, i
def compute_pool_size_loss(self, max_length=22, max_iter=1000000, num_runs=5000):
"""
Computes median an average loss of
nick pool diversity due to max_lenght
restrictions.
"""
import random
import statistics
attempts = []
for i in range(num_runs):
string = str(random.uniform(0, 1000000))
hash = hashlib.sha256(str.encode(string)).hexdigest()
_, _, pool_size, tries = self.short_from_SHA256(hash, max_length)
attempts.append(tries)
median = statistics.median(attempts)
mean = statistics.mean(attempts)
print(f"\nFor max_length of {max_length}:")
print(f"Median loss of entropy factor is {median}.")
print(f"Mean loss of entropy factor is {mean}.")
print(
f"Approximate real pool is {human_format( int(pool_size/(mean+1)))} nicks in size."
)
if __name__ == "__main__":
# Just for code timming
t0 = time.time()
# Hardcoded example text and hashing
nick_lang = "English" # Spanish
hash = hashlib.sha256(b"No one expected such cool nick!!").hexdigest()
max_length = 22
max_iter = 100000000
# Initialized nick generator
GenNick = NickGenerator(lang=nick_lang)
# Generates a short nick with length limit from SHA256
nick, nick_id, pool_size, iterations = GenNick.short_from_SHA256(
hash, max_length, max_iter
)
# Output
print(
f"Nick number {nick_id} has been selected among"
+ f" {human_format(pool_size)} possible nicks.\n"
+ f"Needed {iterations} iterations to find one "
+ f"this short.\nYour nick is {nick} !\n"
)
print(f"Nick lenght is {len(nick)} characters.")
print(f"Nick landed at height {nick_id/(pool_size+1)} on the pool.")
print(f"Took {time.time()-t0} secs.\n")
# Print many nicks
import random
random.seed(1)
for i in range(100):
string = str(random.uniform(0, 1000000))
hash = hashlib.sha256(str.encode(string)).hexdigest()
print(
GenNick.short_from_SHA256(hash, max_length=max_length, max_iter=max_iter)[0]
)
# Other analysis
GenNick.compute_pool_size_loss(max_length, max_iter, 200)
import hashlib
import time
from .utils import human_format
"""
Deterministic nick generator from SHA256 hash.
It builds Nicknames as:
Adverb + Adjective + Noun + Numeric(0-999)
With the current English dictionaries there
is a total of to 450*4800*12500*1000 =
28 Trillion deterministic nicks
"""
class NickGenerator:
def __init__(
self,
lang="English",
use_adv=True,
use_adj=True,
use_noun=True,
max_num=999,
verbose=False,
):
"""
used_adv: bool , True if adverbs are used in the nick.
used_adj: bool , True if adjectives are used in the nick.
use_noun: bool , True if nouns are used in the nick.
max_num: int, max integer to be used in nick (at least 1)
"""
if lang == "English":
from .dicts.en.adjectives import adjectives
from .dicts.en.adverbs import adverbs
from .dicts.en.nouns import nouns
elif lang == "Spanish":
from .dicts.es.adjectives import adjectives
from .dicts.es.adverbs import adverbs
from .dicts.es.nouns import nouns
else:
raise ValueError("Language not implemented.")
if verbose:
print(
f"{lang} SHA256 Nick Generator initialized with:"
+ f"\nUp to {len(adverbs)} adverbs."
+ f"\nUp to {len(adjectives)} adjectives."
+ f"\nUp to {len(nouns)} nouns."
+ f"\nUp to {max_num+1} numerics.\n"
)
self.use_adv = use_adv
self.use_adj = use_adj
self.use_noun = use_noun
self.max_num = max_num
self.verbose = verbose
self.adverbs = adverbs
self.adjectives = adjectives
self.nouns = nouns
def from_SHA256(self, hash=None):
"""
Converts hash to int, min-max scales it
to the pool size of nicks, uses it as
index to construct the nick element by
element.
hash; SHA256 hash as bytes
"""
# Get size of dictionaries for each element
num_adv = len(self.adverbs) if self.use_adv else 1
num_adj = len(self.adjectives) if self.use_adj else 1
num_nouns = len(self.nouns) if self.use_noun else 1
# Compute pool size by combinatorics
pool_size = self.max_num * num_nouns * num_adj * num_adv
# Min-Max scale the hash relative to the pool size
max_int_hash = 2**256
int_hash = int(hash, 16)
nick_id = int((int_hash / max_int_hash) * pool_size)
# Compute adverb id
if self.use_adv:
adv_id = int(nick_id / (self.max_num * num_nouns * num_adj))
adv = self.adverbs[adv_id]
remainder = nick_id - adv_id * self.max_num * num_nouns * num_adj
if self.verbose:
print(f"Adverb: {adv}, id {adv_id}.")
else:
adv_id, adv, remainder = 0, "", nick_id
# Compute adjective id
if self.use_adj:
adj_id = int(remainder / (self.max_num * num_nouns))
adj = self.adjectives[adj_id]
remainder = remainder - adj_id * self.max_num * num_nouns
if self.verbose:
print(f"Adjective: {adj}, id {adj_id}.")
else:
adj_id, adj = 0, ""
# Compute noun id
if self.use_noun:
noun_id = int(remainder / self.max_num)
noun = self.nouns[noun_id]
if self.verbose:
print(f"Noun: {noun}, id {noun_id}.\n")
else:
noun_id, noun = 0, ""
# Remainder is the numeric element
if self.max_num > 0:
num_id = remainder - noun_id * self.max_num
number = str(num_id)
else:
num_id, number = 0, ""
# Build nick
nick = adv + adj + noun + number
return nick, nick_id, pool_size
def short_from_SHA256(
self,
primer_hash=None,
max_length=25,
max_iter=10000,
):
"""
Generates Nicks that are short.
Iterates trough hashes deterministically
until it finds a nick that satisfies
the lenght restriction.
"""
hash = primer_hash
i = 0
while i < max_iter:
nick, nick_id, pool_size = self.from_SHA256(hash)
if len(nick) <= max_length:
return nick, nick_id, pool_size, i
else:
string = str(hash) + str(42)
hash = hashlib.sha256(str.encode(string)).hexdigest()
i = i + 1
return "", 0, 0, i
def compute_pool_size_loss(self, max_length=22, max_iter=1000000, num_runs=5000):
"""
Computes median an average loss of
nick pool diversity due to max_lenght
restrictions.
"""
import random
import statistics
attempts = []
for i in range(num_runs):
string = str(random.uniform(0, 1000000))
hash = hashlib.sha256(str.encode(string)).hexdigest()
_, _, pool_size, tries = self.short_from_SHA256(hash, max_length)
attempts.append(tries)
median = statistics.median(attempts)
mean = statistics.mean(attempts)
print(f"\nFor max_length of {max_length}:")
print(f"Median loss of entropy factor is {median}.")
print(f"Mean loss of entropy factor is {mean}.")
print(
f"Approximate real pool is {human_format( int(pool_size/(mean+1)))} nicks in size."
)
if __name__ == "__main__":
# Just for code timming
t0 = time.time()
# Hardcoded example text and hashing
nick_lang = "English" # Spanish
hash = hashlib.sha256(b"No one expected such cool nick!!").hexdigest()
max_length = 22
max_iter = 100000000
# Initialized nick generator
GenNick = NickGenerator(lang=nick_lang)
# Generates a short nick with length limit from SHA256
nick, nick_id, pool_size, iterations = GenNick.short_from_SHA256(
hash, max_length, max_iter
)
# Output
print(
f"Nick number {nick_id} has been selected among"
+ f" {human_format(pool_size)} possible nicks.\n"
+ f"Needed {iterations} iterations to find one "
+ f"this short.\nYour nick is {nick} !\n"
)
print(f"Nick lenght is {len(nick)} characters.")
print(f"Nick landed at height {nick_id/(pool_size+1)} on the pool.")
print(f"Took {time.time()-t0} secs.\n")
# Print many nicks
import random
random.seed(1)
for i in range(100):
string = str(random.uniform(0, 1000000))
hash = hashlib.sha256(str.encode(string)).hexdigest()
print(
GenNick.short_from_SHA256(hash, max_length=max_length, max_iter=max_iter)[0]
)
# Other analysis
GenNick.compute_pool_size_loss(max_length, max_iter, 200)

View File

@ -1,8 +1,8 @@
from math import log, floor
def human_format(number):
units = ["", " Thousand", " Million", " Billion", " Trillion", " Quatrillion"]
k = 1000.0
magnitude = int(floor(log(number, k)))
return "%.2f%s" % (number / k**magnitude, units[magnitude])
from math import floor, log
def human_format(number):
units = ["", " Thousand", " Million", " Billion", " Trillion", " Quatrillion"]
k = 1000.0
magnitude = int(floor(log(number, k)))
return "%.2f%s" % (number / k**magnitude, units[magnitude])

View File

@ -1,6 +1,7 @@
from rest_framework import serializers
from .models import MarketTick, Order
from decouple import config
from rest_framework import serializers
from .models import MarketTick, Order
RETRY_TIME = int(config("RETRY_TIME"))
MIN_PUBLIC_ORDER_DURATION_SECS = 60 * 60 * float(config("MIN_PUBLIC_ORDER_DURATION"))

View File

@ -6,12 +6,14 @@ def users_cleansing():
"""
Deletes users never used 12 hours after creation
"""
from datetime import timedelta
from django.contrib.auth.models import User
from django.db.models import Q
from api.logics import Logics
from datetime import timedelta
from django.utils import timezone
from api.logics import Logics
# Users who's last login has not been in the last 6 hours
active_time_range = (timezone.now() - timedelta(hours=6), timezone.now())
queryset = User.objects.filter(~Q(last_login__range=active_time_range))
@ -75,11 +77,12 @@ def give_rewards():
def follow_send_payment(hash):
"""Sends sats to buyer, continuous update"""
from decouple import config
from django.utils import timezone
from datetime import timedelta
from api.lightning.node import LNNode, MACAROON
from decouple import config
from django.utils import timezone
from api.lightning.node import MACAROON, LNNode
from api.models import LNPayment, Order
lnpayment = LNPayment.objects.get(payment_hash=hash)
@ -188,12 +191,13 @@ def payments_cleansing():
Deletes 'cancelled' or 'create' onchain_payments
"""
from django.db.models import Q
from api.models import LNPayment
from api.models import OnchainPayment
from datetime import timedelta
from django.db.models import Q
from django.utils import timezone
from api.models import LNPayment, OnchainPayment
# Orders that have expired more than -3 days ago
# Usually expiry is 1 day for every finished order. So ~4 days until
# a never locked hodl invoice is removed.
@ -244,11 +248,11 @@ def payments_cleansing():
@shared_task(name="cache_external_market_prices", ignore_result=True)
def cache_market():
from django.utils import timezone
from .models import Currency
from .utils import get_exchange_rates
from django.utils import timezone
currency_codes = list(Currency.currency_dict.values())
exchange_rates = get_exchange_rates(currency_codes)

View File

@ -1,19 +1,21 @@
from django.urls import path
from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView
from chat.views import ChatView
from .views import (
BookView,
HistoricalView,
InfoView,
LimitView,
MakerView,
OrderView,
UserView,
BookView,
InfoView,
RewardView,
PriceView,
LimitView,
HistoricalView,
TickView,
RewardView,
StealthView,
TickView,
UserView,
)
from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView
from chat.views import ChatView
urlpatterns = [
path("schema/", SpectacularAPIView.as_view(), name="schema"),

View File

@ -1,12 +1,26 @@
from django.db.models import Sum, Q
import hashlib
from datetime import datetime, timedelta
from math import log2
from pathlib import Path
from secrets import token_urlsafe
from decouple import config
from django.conf import settings
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.models import User
from django.db.models import Q, Sum
from django.utils import timezone
from drf_spectacular.utils import extend_schema
from rest_framework import status, viewsets
from rest_framework.generics import CreateAPIView, ListAPIView, UpdateAPIView
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework.views import APIView
from robohash import Robohash
from scipy.stats import entropy
from django.contrib.auth import authenticate, login, logout
from django.contrib.auth.models import User
from api.logics import Logics
from api.messages import Telegram
from api.models import Currency, LNPayment, MarketTick, OnchainPayment, Order, Profile
from api.oas_schemas import (
BookViewSchema,
HistoricalViewSchema,
@ -20,43 +34,29 @@ from api.oas_schemas import (
TickViewSchema,
UserViewSchema,
)
from chat.views import ChatView
from api.serializers import (
ClaimRewardSerializer,
InfoSerializer,
ListOrderSerializer,
MakeOrderSerializer,
OrderPublicSerializer,
UpdateOrderSerializer,
ClaimRewardSerializer,
PriceSerializer,
UserGenSerializer,
TickSerializer,
StealthSerializer,
TickSerializer,
UpdateOrderSerializer,
UserGenSerializer,
)
from api.models import LNPayment, MarketTick, OnchainPayment, Order, Currency, Profile
from control.models import AccountingDay, BalanceLog
from api.logics import Logics
from api.messages import Telegram
from secrets import token_urlsafe
from api.utils import (
compute_avg_premium,
compute_premium_percentile,
get_lnd_version,
get_robosats_commit,
get_robosats_version,
compute_premium_percentile,
compute_avg_premium,
)
from chat.views import ChatView
from control.models import AccountingDay, BalanceLog
from .nick_generator.nick_generator import NickGenerator
from robohash import Robohash
from scipy.stats import entropy
from math import log2
import hashlib
from pathlib import Path
from datetime import timedelta, datetime
from django.utils import timezone
from django.conf import settings
from decouple import config
EXP_MAKER_BOND_INVOICE = int(config("EXP_MAKER_BOND_INVOICE"))
RETRY_TIME = int(config("RETRY_TIME"))

View File

@ -1,5 +1,6 @@
from django.contrib import admin
from django_admin_relation_links import AdminChangeLinksMixin
from chat.models import ChatRoom, Message
# Register your models here.

View File

@ -1,10 +1,11 @@
from channels.generic.websocket import AsyncWebsocketConsumer
import json
from channels.db import database_sync_to_async
from channels.generic.websocket import AsyncWebsocketConsumer
from api.models import Order
from chat.models import ChatRoom, Message
import json
class ChatRoomConsumer(AsyncWebsocketConsumer):
@database_sync_to_async

View File

@ -1,7 +1,8 @@
from django.db import models
from api.models import User, Order
from django.utils import timezone
from api.models import Order, User
class ChatRoom(models.Model):
"""

View File

@ -1,4 +1,5 @@
from django.urls import re_path
from . import consumers
websocket_urlpatterns = [

View File

@ -1,4 +1,5 @@
from rest_framework import serializers
from chat.models import Message

View File

@ -8,10 +8,12 @@ def chatrooms_cleansing():
that have completely finished more than 3 days ago.
"""
from datetime import timedelta
from django.utils import timezone
from api.models import Order
from chat.models import ChatRoom
from datetime import timedelta
from django.utils import timezone
finished_states = [
Order.Status.SUC,

View File

@ -1,13 +1,14 @@
from rest_framework import status, viewsets
from chat.serializers import ChatSerializer, PostMessageSerializer
from chat.models import Message, ChatRoom
from api.models import Order, User
from rest_framework.response import Response
from datetime import timedelta
from django.utils import timezone
from asgiref.sync import async_to_sync
from channels.layers import get_channel_layer
from django.utils import timezone
from rest_framework import status, viewsets
from rest_framework.response import Response
from api.models import Order, User
from chat.models import ChatRoom, Message
from chat.serializers import ChatSerializer, PostMessageSerializer
class ChatView(viewsets.ViewSet):

View File

@ -1,7 +1,8 @@
from django.contrib import admin
from control.models import AccountingDay, BalanceLog
from import_export.admin import ImportExportModelAdmin
from control.models import AccountingDay, BalanceLog
# Register your models here.

View File

@ -7,12 +7,14 @@ def do_accounting():
Does all accounting from the beginning of time
"""
from api.models import Order, LNPayment, OnchainPayment, Profile, MarketTick
from control.models import AccountingDay
from django.utils import timezone
from datetime import timedelta
from django.db.models import Sum
from decouple import config
from django.db.models import Sum
from django.utils import timezone
from api.models import LNPayment, MarketTick, OnchainPayment, Order, Profile
from control.models import AccountingDay
all_payments = LNPayment.objects.all()
all_ticks = MarketTick.objects.all()

View File

@ -7,7 +7,7 @@ services:
volumes:
- .:/usr/src/robosats
command: bash -c "cd /usr/src/robosats/docs/
&& bundle install
&& bundle install
&& bundle exec jekyll serve --force_polling -H 0.0.0.0 -P 4000"
ports:
- 4000:4000
@ -105,7 +105,7 @@ services:
- redis
network_mode: service:tor
celery-beat:
celery-beat:
image: backend
container_name: cele-beat-dev
restart: always
@ -174,7 +174,7 @@ services:
- ./node/tor/data:/var/lib/tor:ro
- ./node/tor/config:/etc/tor:ro
- ./node/bitcoin:/home/bitcoin/.bitcoin
postgres:
image: postgres:14.2-alpine
container_name: sql-dev

View File

@ -28,9 +28,9 @@ teaser : # path of fallback teaser image, e.g. "/assets/images
logo : # path of logo image to display in the masthead, e.g. "/assets/images/88x88.png"
masthead_title : # overrides the website title displayed in the masthead, use " " for no title
# breadcrumbs : false # true, false (default)
words_per_minute :
words_per_minute :
robosats:
node_id : 0282eb467bc073833a039940392592bf10cf338a830ba4e392c1667d7697654c7e
node_id : 0282eb467bc073833a039940392592bf10cf338a830ba4e392c1667d7697654c7e
donation_address : bc1qj3p8k9dufx8f9r4hc5dmls2letgcya48q2jart
maker_fee : 0.025 # In percent (%)
taker_fee : 0.175 # In percent (%)

View File

@ -63,7 +63,7 @@ docs:
- title: '<span class="side-bar-item">&nbsp;&nbsp;<img id="side-icon-small" src="/assets/vector/cloud.svg"/>API</span>'
url: /docs/api-v0.1/
- title: '<span class="side-bar-item"><img id="side-icon-big" src="/assets/vector/hand-peace.svg"/>Best Practices</span>'
- title: '<span class="side-bar-item"><img id="side-icon-big" src="/assets/vector/hand-peace.svg"/>Best Practices</span>'
url: /docs/best-practices/
children:
- title: '<span class="side-bar-item">&nbsp;&nbsp;<img id="side-icon-small" src="/assets/vector/fingerprint.svg"/>PGP Encryption</span>'
@ -100,7 +100,7 @@ tutorial:
url: "/read/es/"
- title: '<span class="side-bar-item">&nbsp;&nbsp;<img style="width:22px;height:13px" src="/assets/vector/german.svg"/> Deutsch</span>'
url: "/read/de/"
contribute:
- title: '<span class="side-bar-item"><img id="side-icon-big" src="/assets/vector/handshake-angle.svg"/>Contribute</span>'
url: /contribute/

View File

@ -19,18 +19,18 @@
</div>
<div class="page__footer-copyright">
&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered with" }}
&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered with" }}
<a href="https://bitcoin.org/bitcoin.pdf" rel="nofollow">
<svg style="width:20px;height:20px;vertical-align:middle;fill:currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path d="M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-141.651-35.33c4.937-32.999-20.191-50.739-54.55-62.573l11.146-44.702-27.213-6.781-10.851 43.524c-7.154-1.783-14.502-3.464-21.803-5.13l10.929-43.81-27.198-6.781-11.153 44.686c-5.922-1.349-11.735-2.682-17.377-4.084l.031-.14-37.53-9.37-7.239 29.062s20.191 4.627 19.765 4.913c11.022 2.751 13.014 10.044 12.68 15.825l-12.696 50.925c.76.194 1.744.473 2.829.907-.907-.225-1.876-.473-2.876-.713l-17.796 71.338c-1.349 3.348-4.767 8.37-12.471 6.464.271.395-19.78-4.937-19.78-4.937l-13.51 31.147 35.414 8.827c6.588 1.651 13.045 3.379 19.4 5.006l-11.262 45.213 27.182 6.781 11.153-44.733a1038.209 1038.209 0 0 0 21.687 5.627l-11.115 44.523 27.213 6.781 11.262-45.128c46.404 8.781 81.299 5.239 95.986-36.727 11.836-33.79-.589-53.281-25.004-65.991 17.78-4.098 31.174-15.792 34.747-39.949zm-62.177 87.179c-8.41 33.79-65.308 15.523-83.755 10.943l14.944-59.899c18.446 4.603 77.6 13.717 68.811 48.956zm8.417-87.667c-7.673 30.736-55.031 15.12-70.393 11.292l13.548-54.327c15.363 3.828 64.836 10.973 56.845 43.035z"/>
</svg>
</svg>
Bitcoin
</a>
&amp;
</a>
&amp;
<a href="https://lightning.network/lightning-network-paper.pdf" rel="nofollow">
<svg style="width:20px;height:20px;vertical-align:middle;fill:currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512">
<path d="M240.5 224H352C365.3 224 377.3 232.3 381.1 244.7C386.6 257.2 383.1 271.3 373.1 280.1L117.1 504.1C105.8 513.9 89.27 514.7 77.19 505.9C65.1 497.1 60.7 481.1 66.59 467.4L143.5 288H31.1C18.67 288 6.733 279.7 2.044 267.3C-2.645 254.8 .8944 240.7 10.93 231.9L266.9 7.918C278.2-1.92 294.7-2.669 306.8 6.114C318.9 14.9 323.3 30.87 317.4 44.61L240.5 224z"/>
</svg>
</svg>
Lightning
</a>
.

View File

@ -12,4 +12,4 @@ This page is under construction. Learn.RoboSats is a joint effort of the RoboSat
**ProTip:** You can directly [edit this page <i class="fa-brands fa-github-alt"></i>](https://github.com/Reckless-Satoshi/robosats/blob/main/docs/{{page.src}}) and open a [Pull Request <i class="fa-solid fa-code-pull-request"/>](https://github.com/Reckless-Satoshi/robosats/pulls). Your changes will show right here.
{: .notice--primary}
If you have already used RoboSats, you are an expert! If you understand how it works behind the scenes, you are a master! Please, consider contributing to the Learn.RoboSats' guides and platform documentation.
If you have already used RoboSats, you are an expert! If you understand how it works behind the scenes, you are a master! Please, consider contributing to the Learn.RoboSats' guides and platform documentation.

View File

@ -6,7 +6,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/handshake-angle.svg"/>Contribute'
nav: contribute
src: "_pages/contribute/00-contribute.md"
---
---
RoboSats is a fully community driven project. You can help RoboSats get better in many different ways.

View File

@ -8,7 +8,7 @@ sidebar:
toc: true
toc_sticky: true
src: "_pages/contribute/01-development.md"
---
---
Everyone can contribute to the development of the Robotic Satoshis Open Source Project. If you're looking for somewhere to start contributing, check out the [good first issue](https://github.com/reckless-satoshi/robosats/issues?q=is%3Aopen+is%3Aissue+label%3A"good+first+issue") list.
@ -68,7 +68,7 @@ At the moment RoboSats is a young and unfunded project. However, it has shown th
2. An offer/negotiation takes place to set an amount of Sats until agreement. Everyone is welcome to express opinion on whether the compensation is right for the PR.
3. The work happens: buidl, buidl, buidl!
4. The review takes place. Once maintainers give the OK for the merge...
5. The developer submits a LN invoice (with a long expiration time). The invoice is paid at merge.
5. The developer submits a LN invoice (with a long expiration time). The invoice is paid at merge.
Every step (negotiation, code submission, review and invoice submission) must take place publicly in GitHub (i.e., no private messaging). Please contact the team lead for development (@reckless-satoshi) upfront if you have doubts whether your contribution is suitable for compensation. Currently, only contributions to the frontend or backend core functionality and maintainence are eligible for compensations (that excludes, for the time being, art, translations, etc...).

View File

@ -8,7 +8,7 @@ sidebar:
toc: true
toc_sticky: true
src: "_pages/contribute/02-languages.md"
---
---
RoboSats is a way to exchange BTC for **any currency of the world**. As such, for many users this tool might only be useful if it is available in a language they can understand. Translating RoboSats into a new language is one of the most valuable contributions to the project, as it makes it available to new audience, increasing the reach of this cool freedom tool.
@ -17,25 +17,25 @@ There isn't a lot of text in RoboSats, however it might be best to split the wor
### How to contribute a new translation.
Simply create a new translation file in `frontend/src/static/locales` [Link to GitHub](https://github.com/Reckless-Satoshi/robosats/tree/main/frontend/static/locales). In `locales` there is a single file with a json dictionary for every language. In order to create a new translation, simply copy `en.json` (the master text) into a new file named after the language's [ISO 639 two character code](https://www.loc.gov/standards/iso639-2/php/English_list.php).
Simply create a new translation file in `frontend/src/static/locales` [Link to GitHub](https://github.com/Reckless-Satoshi/robosats/tree/main/frontend/static/locales). In `locales` there is a single file with a json dictionary for every language. In order to create a new translation, simply copy `en.json` (the master text) into a new file named after the language's [ISO 639 two character code](https://www.loc.gov/standards/iso639-2/php/English_list.php).
### Guidelines
Each language `.json` dictionary contains pairs of keys and values in the following format { "key1":"value1", "key2":"value2", ...}. Most keys are the literal English sentence. These simply have to be translated on the right side, for example, in order to translate the `Make Order` button to Spanish we edit the json file to look like this `{... "Make Order":"Crear Orden",...}`.
#### 1. **Not all keys are explicit sentences.**
Some keys are not the English senstence but a variable names e.g. "phone_unsafe_alert". In this case you must take a look at the value originally in `en.json`.
#### 1. **Not all keys are explicit sentences.**
Some keys are not the English senstence but a variable names e.g. "phone_unsafe_alert". In this case you must take a look at the value originally in `en.json`.
#### 2. **The language dictionary is split into 9 sections.**
#### 2. **The language dictionary is split into 9 sections.**
The first key of each section is a reference and does not need to be translated. For example, the second section starts with the key:value `"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation"` . It does not need to be translated, it is just information for the translator to understand what part of the app he will be working on.
#### 3. **Try to keep a similar length to the original sentence.**
#### 3. **Try to keep a similar length to the original sentence.**
In most cases it will be okay if the translation is shorter. However, translations that result in a higher character count might break the UI! It might not always be possible to stick to the length of the English sentence. In those cases the UI might have to be changed, contact the responsible person for such a change.
#### 4. **Some sentences contain variables**
For example, {{currencyCode}}. It will insert the currency code where the variable is found. E.g., `"Pay 30 {{currencyCode}}"` will render as "Pay 30 USD".
#### 5. **Some sentences contain HTML tags**
#### 5. **Some sentences contain HTML tags**
These tags are usually hyperlinks. For example in `{"phone_unsafe_alert": "Use <1>Tor Browser</1> and visit the <3>Onion</3> site."}` the children text of <1> (Tor Browser) will link to the Tor Download website, and the children of <3> will link to the RoboSats Onion site.
#### 6. **It is best to translate from top to bottom of the .json file**
@ -47,7 +47,7 @@ Yes, please ;)
#### 8. **Understand the context, where will this string be displayed?**
Literal translations might not work well in some languages. While in English the wording is always similar regardless of the position in the UI, in some languages it might be very different if you are translating a button (the user is taking an action) or if you are simply translating a tooltip. It might be clever to translate the strings while looking at the app. However, many strings can only be found while trading. The testnet RoboSats site is great for this use, as you can explore the whole app simply interacting with it with a testnet lightning wallet. However, if you cannot find where a string is displayed, it might be faster to simply write a message on the telegram group @robosats.
#### 9. **Congratulate yourself**
#### 9. **Congratulate yourself**
Seriously. It's so awesome you are helping build freedom tools!

View File

@ -6,6 +6,6 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/circle-nodes.svg"/>LN liquidity'
nav: contribute
src: "_pages/contribute/03-liquidity.md"
---
---
{% include wip %}

View File

@ -6,6 +6,6 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/graduation-cap.svg"/>Guides'
nav: contribute
src: "_pages/contribute/04-guides.md"
---
---
{% include wip %}

View File

@ -6,6 +6,6 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/palette.svg"/>Art'
nav: contribute
src: "_pages/contribute/05-art.md"
---
---
{% include wip %}

View File

@ -6,6 +6,6 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/bullhorn.svg"/>Outreach'
nav: contribute
src: "_pages/contribute/06-outreach.md"
---
---
{% include wip %}

View File

@ -7,11 +7,11 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/bitcoin.svg"/>Donate'
nav: contribute
src: "_pages/contribute/07-donate.md"
---
---
We do not think RoboSats should rely on donations in order to stay alive. The objective of the project is to generate enough revenue to cover for development, server, liquidity and promotional costs. The **best way to donate to RoboSats is to actively make use of the tool** and tell your friends.
We do, however, get approached by very enthusiastic bitcoiners who want to boots RoboSats' development and longevity further. We very much appreciate these donations, specially since the platform is still very young and still runs at net loss.
We do, however, get approached by very enthusiastic bitcoiners who want to boots RoboSats' development and longevity further. We very much appreciate these donations, specially since the platform is still very young and still runs at net loss.
You can donate in three ways:
@ -19,12 +19,12 @@ You can donate in three ways:
2. **Tip the platform node via KeySend** to RoboSats node: [{{site.robosats.node_id}}](https://amboss.space/node/{{site.robosats.node_id}})
3. **Send an on-chain** transaction to: *{{site.robosats.donation_address}}*
3. **Send an on-chain** transaction to: *{{site.robosats.donation_address}}*
4. **Tip the lead developer**
<div>
<lightning-widget name="Reckless Satoshi (Lead Dev)" accent="#9c27b0" to="02ce13573f6ab577088cead4379dc64f300ffbeca2ae040beee9f3541ccc4427c7" image="https://pbs.twimg.com/profile_images/1501319536477282305/M7De9qEE_400x400.jpg"/>
<script src="https://embed.twentyuno.net/js/app.js"></script>
</div>
You can tip anonymously or send us a message so we can acknowledge your contribution!

View File

@ -5,7 +5,7 @@ permalink: /docs/quick-start/
sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/rocket.svg"/>Quick Start'
nav: docs
---
---
RoboSats is an easy way to privately exchange Bitcoin for national currencies It simplifies the peer-to-peer experience and makes use lightning hold invoices to minimize custody and trust requirements.
**Let's go!** To start using RoboSats you only need a [<i class='fa-solid fa-wallet'></i> Lightning Wallet](/docs/wallets/) and a [TOR enabled browser](/docs/tor/).

View File

@ -6,5 +6,5 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/bolt.svg"/>Lightning Network'
nav: docs
src: "_pages/docs/00-quick-start/01-lightning.md"
---
---
{% include wip %}

View File

@ -6,5 +6,5 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/tor.svg"/>TOR'
nav: docs
src: "_pages/docs/00-quick-start/02-tor.md"
---
---
{% include wip %}

View File

@ -8,7 +8,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/arrow-up-right-from-square.svg"/>Access'
nav: docs
src: "_pages/docs/00-quick-start/03-access.md"
---
---
## <img style='width:32px;height:32px' src='/assets/vector/tor.svg'/> Privately with TOR
A safe and very private way to use RoboSats is through the Onion address. You need [Tor Browser](/docs/tor/).
@ -67,7 +67,7 @@ There are several tor2web services that serve as mirrors in case one of them is
> [unsafe2.robosats.com](https://unsafe2.robosats.com/) <br/>
> [unsafe3.robosats.com](https://unsafe3.robosats.com/) <br/>
> [unsafe.testnet.robosats.com](http://unsafe.testnet.robosats.com/) <br/>
> [unsafe2.testnet.robosats.com](http://unsafe2.testnet.robosats.com/)
> [unsafe2.testnet.robosats.com](http://unsafe2.testnet.robosats.com/)
{% include improve %}

View File

@ -6,7 +6,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/hand-peace.svg"/>Best Practices'
nav: docs
src: "_pages/docs/01-best-practices/00-best-practices.md"
---
---
Although RoboSats is very private and safe from the get go. There are always some further steps you can follow to improve your privacy and minimize your risks.

View File

@ -8,7 +8,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/fingerprint.svg"/>PGP Encryption'
nav: docs
src: "_pages/docs/01-best-practices/01-pgp-guide.md"
---
---
All comunications in RoboSats are PGP encrypted. The client app is fully transparent and offers an easy way to copy and export the PGP keys.
@ -36,7 +36,7 @@ It will look like this:
<img src="/assets/images/sensitive-data-PGP-guide/gpg-1.png" width="450"/>
</div>
You will be prompt to enter the passphrase of the private key. We use our *supersecret* robot **token** to decrypt it, you are the only one who knows the robot token.
You will be prompt to enter the passphrase of the private key. We use our *supersecret* robot **token** to decrypt it, you are the only one who knows the robot token.
<div align="center">
<img src="/assets/images/sensitive-data-PGP-guide/gpg-2.png" width="350"/>
@ -59,7 +59,7 @@ echo "<paste_peer_public_key>" | gpg --import
<img src="/assets/images/sensitive-data-PGP-guide/gpg-4.png" width="650"/>
</div>
We are all set. We have imported our encrypted private key and our peer's public key into GPG. So far everything seems to be right.
We are all set. We have imported our encrypted private key and our peer's public key into GPG. So far everything seems to be right.
### Decrypting and verifying messages with GnuPG
#### Decrypt message
@ -94,7 +94,7 @@ Voilà! Here it is. We can be guaranteed that:
Since messages are signed by the robots keeping the log our robot token is very useful in case of a dispute. If your peer tries to cheat on you and then lies to the staff that is in charge of solving the dispute, you can prove it! It is useful to export the full chat log as Json (click export button) or, at least conserve your robot token. With those you can provide very excellent evidence that he said something different in the private chat with you.
The frontend application of RoboSats that runs on your browser does the job of encrypting, decrypting an verifying every message. But in this tutorial we have independently verified it works as intended: we have verified that **only the person with access to the robot token can read (decrypt) and sign messages** during a RoboSats trade.
The frontend application of RoboSats that runs on your browser does the job of encrypting, decrypting an verifying every message. But in this tutorial we have independently verified it works as intended: we have verified that **only the person with access to the robot token can read (decrypt) and sign messages** during a RoboSats trade.
**ProTip:** In order to independently verify that your token is absolutely secret and never sent to a third party you will need to run a HTTP request packet sniffer. You can also check by yourself the [frontend source code](https://github.com/Reckless-Satoshi/robosats/tree/main/frontend/src).
{: .notice--secondary}

View File

@ -8,7 +8,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/fingerprint.svg"/>Encriptación PGP'
nav: docs
src: "_pages/docs/01-best-practices/01-pgp-guide_es.md"
---
---
Cómo usar OpenKeychain para cifrar datos sensibles al usar RoboSats.

View File

@ -8,7 +8,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/hand-peace.svg"/>Fiat Best Practices'
nav: docs
src: "_pages/docs/01-best-practices/02-payment-methods.md"
---
---
Currently, there are no restrictions on the fiat payment method. You can pay with any method that both you and your peer agree on. This includes the higher risk method such as PayPal, Venmo, and Cash apps. However, the payment method with lower risk is recommended, you can learn more details about the characteristics and differences of each fiat payment method from <a href = "https://bisq.wiki/Payment_methods#Payment_method_guides">Bisq wiki</a>. The Bisq guidelines apply as the default guidelines for RoboSats.
@ -55,7 +55,7 @@ Find more details on [Amazon eGift card Bisq guidelines](https://bisq.wiki/Amazo
The best practice for users trying to transact with a payment method with a high risk of losing funds is discussed in this section.
### Paypal
Paypal is one of the widely used fiat payment methods. However, with <a href="https://www.paypal.com/us/webapps/mpp/ua/buyer-protection">PayPal buyer protection policy</a>, buyer can do fraudulent action by creating a refund request in PayPal after the trading process in RoboSats is finished and therefore taking both fiat and bitcoin all by themselves.
Paypal is one of the widely used fiat payment methods. However, with <a href="https://www.paypal.com/us/webapps/mpp/ua/buyer-protection">PayPal buyer protection policy</a>, buyer can do fraudulent action by creating a refund request in PayPal after the trading process in RoboSats is finished and therefore taking both fiat and bitcoin all by themselves.
This fraud can be prevented by agreeing with the buyer to have them send money using the “send money to a friend or family member” option. This will make the buyer become the one liable for the transaction fee and make it less likely for them to request a refund.

View File

@ -6,6 +6,6 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/route.svg"/>Proxy Wallets'
nav: docs
src: "_pages/docs/01-best-practices/03-proxy-wallets.md"
---
---
{% include wip %}

View File

@ -6,7 +6,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/circle-nodes.svg"/>Lightning Channels'
nav: docs
src: "_pages/docs/01-best-practices/04-channels.md"
---
---
<!-- TODO: Should you open a channel to RoboSats node? Depends. Establish the 3 cases: 1) as a seller (good idea, cheap and reliable, but they might get closed eventually if unsused), 2) as a buyer (it does not matter, buyers do not pay routing fees. Privacy is the same) 3) as a routing node (Woah, super useful! Yet we cannot guarantee robosats will be a good routing partner: 1) locked many small HTLCs for long periods 2) has high fees 3) yet, it does generate lot of legit movement of Sats, and double routing the same order is possible. 4) sats will always be on your side, and that's ok! By desing it is how liquidity is the most useful!) -->

View File

@ -25,7 +25,7 @@ The combination of these features makes trading in RoboSats as private as it can
<img src="/assets/images/private/usergen-pipeline.png" width="650"/>
</div>
Only your trading peer can get to know things about you while you chat. Keep the chat short and concise and avoid providing more information than strictly necessary for the fiat exchange.
Only your trading peer can get to know things about you while you chat. Keep the chat short and concise and avoid providing more information than strictly necessary for the fiat exchange.
**ProTip** You can step up your privacy by using a lightning [proxy wallet](/docs/proxy-wallets/) when you buy Sats in RoboSats.
{: .notice--primary}

View File

@ -7,7 +7,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/timeline.svg"/>Trade Pipeline'
nav: docs
src: "_pages/docs/03-understand/01-trade-pipeline.md"
---
---
Alice wants to buy Sats privately. This is step-by-step what happens when she buys using RoboSats.

View File

@ -31,7 +31,7 @@ If buying bitcoin, then a higher premium increases the chances an order is fulfi
In short:
* **Positive** premium: trade BTC at an overprice with respect to the average price in centralized exchanges.
* **Negative** premium: trade BTC at a discount with respect to the average price in centralized exchanges.
* **Zero** premium: trade BTC at no price difference with respect to the average price in centralized exchanges.
* **Zero** premium: trade BTC at no price difference with respect to the average price in centralized exchanges.
* **Relative** pricing method: let the price premium move with the bitcoin-fiat market rate.
* **Explicit** pricing method: set a price premium using a fixed amount of satoshis.
* **Premium Rank**: indicates how your order premium ranks among all public orders with the same currency, ranging from 0% (smallest premium) to 100% (largest premium).

View File

@ -32,7 +32,7 @@ After the trade is completed and both robots are satisfied, the maker and taker
Your wallet may take a while for funds to show as unlocked on your account balance. Some wallets have difficulty with recognizing the Lightning hold invoice as a temporary hold on your funds.
If the issue persists, please reach out to the RoboSats Telegram group; but beware of scammers that may directly contact you and impersonate RoboSats staff! RoboSats staff will never directly contact you first. See [Contribute > Code > Communication Channels](https://learn.robosats.com/contribute/code/#communication-channels) for available Telegram groups.
If the issue persists, please reach out to the RoboSats Telegram group; but beware of scammers that may directly contact you and impersonate RoboSats staff! RoboSats staff will never directly contact you first. See [Contribute > Code > Communication Channels](https://learn.robosats.com/contribute/code/#communication-channels) for available Telegram groups.
## **Losing Your Bond**
@ -53,7 +53,7 @@ If you received fiat but neglect to click "Confirm Fiat Received" on your end, t
Due to the time limits involved in the order process, it is recommended to use instant fiat payment methods which help reduce the chances of losing your bond. Refer to [Best Practices > Payment Methods](https://learn.robosats.com/docs/payment-methods/) for additional information.
Opening a dispute just to cancel an order is not recommended because one of the two traders will lose their fidelity bond, barring exceptional cases that are up to the discretion of the RoboSats staff.
Opening a dispute just to cancel an order is not recommended because one of the two traders will lose their fidelity bond, barring exceptional cases that are up to the discretion of the RoboSats staff.
As a sidenote, if RoboSats suddenly vanished or was shutdown, then bonds are automatically unlocked since they technically never left your wallet.

View File

@ -74,7 +74,7 @@ It is an interface to LND, CLN and Eclair. It works as expected. It is extremely
Muun plays same nicely with hold invoices as Blixt or LND. You can be a seller in RoboSats using Muun and the user experience will be great. However, in order to be a buyer, you need to submit an onchain address for the payout, a lightning invoice won't work. Muun is _fee siphoning attacking_ any sender to Muun wallet. There is a mandatory hop trough a private channel with a fee of +1500ppm. RoboSats will strictly not route a buyer payout for a net loss. Given that RoboSats trading fees are 0.2% and it needs to cover the routing fees, **RoboSats will never find a suitable route to a Muun wallet user**. At the moment, RoboSats will scan your invoice for routing hints that can potentially encode a _fee siphoning attack_.If this trick is found, the invoice will be rejected: submit an onchain address instead for an on-the-fly swap.
### Phoenix (Mobile)
Phoenix works very well as an order taker. Phoenix will also work well as an order maker as long as the order settings `public duration` + `deposit duration` are lower than 10 hours. Otherwise you might have problems locking the maker bond. If the total duraton of bonds/escrow invoices exceeds 450 blocks, Phoenix will not allow users to lock the bond (`Cannot add htlc (...) reason=expiry too big`).
Phoenix works very well as an order taker. Phoenix will also work well as an order maker as long as the order settings `public duration` + `deposit duration` are lower than 10 hours. Otherwise you might have problems locking the maker bond. If the total duraton of bonds/escrow invoices exceeds 450 blocks, Phoenix will not allow users to lock the bond (`Cannot add htlc (...) reason=expiry too big`).
### Bluewallet (Mobile)
It works well. But they are having issues in the custodial mode. Escrows that RoboSats returns are charged to users (so Bluewallet is keeping that balance?). Bonds that are slashed...are charged twice by Blue! More info once they reply to us. EDIT: Blue has confirmed they are working to soon solve these accounting bugs!

View File

@ -54,7 +54,7 @@ feature_row:
excerpt: 'RoboSats is fully open source and will always be. Built by Robots just like you!{::nomarkdown}<div style="content-align:center"><p style="margin-top: -5px;margin-bottom: 0px"><iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=reckless-satoshi&repo=robosats&type=star&count=true&size=large" frameborder="0" scrolling="0" width="150px" height="30px"></iframe><iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=reckless-satoshi&repo=robosats&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="150px" height="30px"></iframe></p></div>{:/nomarkdown}'
url: "https://github.com/Reckless-Satoshi/robosats/blob/main/LICENSE"
btn_class: "btn--primary"
btn_label: "See License"
btn_label: "See License"
---
{% include feature_row %}

View File

@ -7,7 +7,7 @@ sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/chart-column.svg"/> Stats'
nav: docs
src: "_pages/stats.md"
---
---
<div class="flourish-embed" data-src="story/1599170"><script src="https://public.flourish.studio/resources/embed.js"></script></div>
Maintained by [AntonopulosL](https://twitter.com/antonopulosl)

View File

@ -8,7 +8,7 @@ excerpt: "Guide: How to use RoboSats. A complete walkthrough RoboSats P2P Exchan
sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/chalkboard-user.svg"/>How to use'
nav: tutorial
---
---
Full tutorial in tweets by @simplestBTCbook
<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Enjoy this detailed new <a href="https://twitter.com/RoboSats">@RoboSats</a> Tutorial! <a href="https://t.co/CiizGINQ4f">pic.twitter.com/CiizGINQ4f</a></p>&mdash; SimplestBitcoinBook -Get ur 🔑&#39;s into Cold Storage (@SimplestBTCBook) <a href="https://twitter.com/SimplestBTCBook/status/1584103026733633537">October 23, 2022</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
@ -30,14 +30,14 @@ RoboSats welcomes you right away with your unique robot avatar. The robot is det
The tokens are generated in your own browser. However, if you do not trust your machine randomness, you can also input your own entropy token. *Note that low entropy tokens are not valid.*
I was really not happy of being "HomelessCash"! :D So I just click on the dice icon to generate a new token and tap "Generate avatar" to get a new one
<div align="center">
<img src="/assets/images/how-to-use/homepage-2.png" width="370" />
</div>
Ah, "JoyfulPain", so much better!! :)
The token will live in your browser memory for some time, so you still might have a chance to copy it later by tapping in the profile icon in the bottom left corner. However, your browser will forget your token if you refresh or close it!
Ah, "JoyfulPain", so much better!! :)
The token will live in your browser memory for some time, so you still might have a chance to copy it later by tapping in the profile icon in the bottom left corner. However, your browser will forget your token if you refresh or close it!
<div align="center">
<img src="/assets/images/how-to-use/homepage-3.png" width="370" />
</div>
@ -98,7 +98,7 @@ Every order has an expiration counter. By default, in RoboSats v0.1.0 new orders
### Walkthrough-1: Taking an order as a buyer
When you are decided for an order to take simply tap the "Take Order" button. You will see the contract box. Follow the contract box indications until you complete the trade! :)
When you are decided for an order to take simply tap the "Take Order" button. You will see the contract box. Follow the contract box indications until you complete the trade! :)
First thing is to lock a small fidelity bond (just {{site.robosats.default_bond_size}}% of the trade amount by default), so the seller knows you can be trusted. The satoshis in this bond will just freeze in your wallet. If you try to cheat or cancel unilaterally, you will lose the satoshis locked in the bond.
@ -112,13 +112,13 @@ Scan or copy the invoice into your lightning wallet. It might show as a payment
<img src="/assets/images/how-to-use/contract-box-2.png" width="370" />
</div>
As soon as our bond is locked, RoboSats will ask you to provide a lightning invoice to send you the satoshis. Generate an invoice with the exact amount in your lightning wallet and submit it.
As soon as our bond is locked, RoboSats will ask you to provide a lightning invoice to send you the satoshis. Generate an invoice with the exact amount in your lightning wallet and submit it.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-3.png" width="370" />
</div>
While you are submitting your payout invoice, the seller is asked to lock the trade escrow hold invoice. If you are faster than him, you would have to wait. Otherwise, you would already be able to chat with him.
While you are submitting your payout invoice, the seller is asked to lock the trade escrow hold invoice. If you are faster than him, you would have to wait. Otherwise, you would already be able to chat with him.
There is a time limit of 3 hours to submit the invoice (buyer) and lock the trade escrow (seller). If the time runs out, the order will expire and the robot who did not follow with the contract obligations will lose the bond. This is a mechanism that helps prevent fake order spamming, wasting time of counterparts and DDOSing the order book.
@ -127,7 +127,7 @@ There is a time limit of 3 hours to submit the invoice (buyer) and lock the trad
</div>
As soon as the seller locks the satoshis, it is safe to send the fiat currency! As a buyer, you will have to ask the seller for the details to send fiat. Only share the strictly needed information about yourself to not compromise your privacy. Remember, in RoboSats v0.1.0 this chat is memoryless, so the conversation will be lost if you refresh the browser.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-5.png" width="370" />
</div>
@ -145,13 +145,13 @@ Rating the platform and leaving tips for improvement in our Telegram group or Gi
### Walkthrough-2: Making an order as a seller
It might happen that there are no active orders for the positioning and currency you want. In this case, there is no orders to SELL bitcoin for GBP.
<div align="center">
<img src="/assets/images/how-to-use/book-no-orders.png" width="370" />
</div>
We can create the order exactly has we want it. But mind that you need to publish an order that others want to take too!
We can create the order exactly has we want it. But mind that you need to publish an order that others want to take too!
<div align="center">
<img src="/assets/images/how-to-use/maker-page.png" width="370" />
</div>
@ -214,7 +214,7 @@ All done!! :D
## Collaborative cancellation
After the trade escrow has been posted and before the buyer confirms he sent the fiat it is possible to cancel the order. It might just happen that you both do not have a common way to send and receive fiat after all. You can agree to tap on the "Collaborative cancel" button. After the "Fiat sent" button is pressed by the buyer, the only way to cancel an order is by opening a dispute and involving the staff.
After the trade escrow has been posted and before the buyer confirms he sent the fiat it is possible to cancel the order. It might just happen that you both do not have a common way to send and receive fiat after all. You can agree to tap on the "Collaborative cancel" button. After the "Fiat sent" button is pressed by the buyer, the only way to cancel an order is by opening a dispute and involving the staff.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-15.png" width="370" />
@ -224,7 +224,7 @@ This is totally not recommended, one of the two traders would lose his fidelity
## Disputes
Misunderstandings happen. But also, there might be people willing to try to scam others. In this case *MakeshiftSource875* thought he could get away by not confirming he received the fiat, as if he was going to be able to keep the satoshis.
Misunderstandings happen. But also, there might be people willing to try to scam others. In this case *MakeshiftSource875* thought he could get away by not confirming he received the fiat, as if he was going to be able to keep the satoshis.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-16.png" width="370" />

View File

@ -7,7 +7,7 @@ toc_sticky: true
sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/chalkboard-user.svg"/>Wie benutzt'
nav: tutorial
---
---
RoboSats ist auf Benutzerfreundlichkeit ausgerichtet. Die Plattform ist im Prinzip selbsterklärend, so dass man sagen könnte, ein Tutorial ist wirklich nicht notwendig. Allerdings hilft es wirklich, sich beim Handel wohl zu fühlen, wenn du bereits weißt was die nächsten Schritte sind, so dass dich nichts überrascht. Schließlich sind Bitcoin-P2P-Börsen sehr einschüchternd! Keine Angst, RoboSats hält es wirklich einfach und du kannst einfach nichts falsch machen! :D
@ -27,14 +27,14 @@ RoboSats begrüßt dich sofort mit deinem einzigartigen Roboter-Avatar. Der Robo
Die Token werden in deinem eigenen Browser generiert. Wenn du jedoch der Zufälligkeit deines Rechners nicht traust, kannst du auch deinen eigenen Entropie-Token eingeben. *Beachte, dass Token mit geringer Entropie nicht gültig sind.
Ich war wirklich nicht glücklich darüber, "HomelessCash" zu sein :D Also klicke ich einfach auf das Würfelsymbol, um einen neuen Token zu generieren, und tippe auf "Avatar generieren", um einen neuen zu bekommen.
<div align="center">
<img src="/assets/images/how-to-use/homepage-2.png" width="370" />
</div>
Ah, "JoyfulPain", so viel besser!! :)
Der Token bleibt einige Zeit im Speicher deines Browsers, du kannst ihn also später noch kopieren, indem du auf das Profilsymbol in der unteren linken Ecke tippst. Allerdings vergisst dein Browser dein Token, wenn du ihn aktualisierst oder schließt!
Ah, "JoyfulPain", so viel besser!! :)
Der Token bleibt einige Zeit im Speicher deines Browsers, du kannst ihn also später noch kopieren, indem du auf das Profilsymbol in der unteren linken Ecke tippst. Allerdings vergisst dein Browser dein Token, wenn du ihn aktualisierst oder schließt!
<div align="center">
<img src="/assets/images/how-to-use/homepage-3.png" width="370" />
</div>
@ -95,7 +95,7 @@ Jedes Angebot hat einen Verfallszähler. In RoboSats v0.1.0 bleiben neue Angebot
### Beispiel-1: Ein Angebot als Käufer annehmen
Wenn du dich für ein Angebot entschieden hast, tippe einfach auf die Schaltfläche "Take Order". Du siehst dann die Kontraktbox. Folge den Anweisungen der Kontraktbox, bis du den Handel abgeschlossen hast! :)
Wenn du dich für ein Angebot entschieden hast, tippe einfach auf die Schaltfläche "Take Order". Du siehst dann die Kontraktbox. Folge den Anweisungen der Kontraktbox, bis du den Handel abgeschlossen hast! :)
Als erstes musst du eine kleine Kaution hinterlegen (nur {{site.robosats.default_bond_size}}% des Handelsbetrags), damit der Verkäufer weiß, dass du vertrauenswürdig bist. Die Satoshis in dieser Kaution werden einfach in deiner Wallet eingefroren. Wenn du versuchst zu betrügen oder einseitig zu kündigen, verlierst du die in der Kaution enthaltenen Satoshis.
@ -109,13 +109,13 @@ Scanne oder kopiere die Invoice in deine Lightning Wallet. Sie könnte als Zahlu
<img src="/assets/images/how-to-use/contract-box-2.png" width="370" />
</div>
Sobald deine Kaution gesperrt ist, wird RoboSats dich bitten, eine Lightning-Invoice zu erstellen, um dir die Satoshis zu schicken. Erstelle eine Invoice mit dem genauen Betrag in deiner Lightning Wallet und schicke sie ab.
Sobald deine Kaution gesperrt ist, wird RoboSats dich bitten, eine Lightning-Invoice zu erstellen, um dir die Satoshis zu schicken. Erstelle eine Invoice mit dem genauen Betrag in deiner Lightning Wallet und schicke sie ab.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-3.png" width="370" />
</div>
Während du deine Auszahlungsinvoice einreichst, wird der Verkäufer aufgefordert, die Invoice für den Handelskredit zu sperren. Wenn Sie schneller sind als er, müssen Sie warten. Ansonsten können Sie bereits mit ihm chatten.
Während du deine Auszahlungsinvoice einreichst, wird der Verkäufer aufgefordert, die Invoice für den Handelskredit zu sperren. Wenn Sie schneller sind als er, müssen Sie warten. Ansonsten können Sie bereits mit ihm chatten.
Es gibt ein Zeitlimit von 3 Stunden, um die Invoice einzureichen (Käufer) und das Treuhandkonto zu schließen (Verkäufer). Läuft die Zeit ab, verfällt die Bestellung und der Roboter, der sich nicht an die Vertragsverpflichtungen gehalten hat, verliert die Kaution. Dies ist ein Mechanismus, der dazu beiträgt, das Spammen von gefälschten Aufträgen, die Zeitverschwendung der Gegenparteien und das DDOSing des Auftragsbuchs zu verhindern.
@ -124,7 +124,7 @@ Es gibt ein Zeitlimit von 3 Stunden, um die Invoice einzureichen (Käufer) und d
</div>
Sobald der Verkäufer die Satoshis sperrt, ist es sicher, die Fiat-Währung zu senden! Als Käufer musst du den Verkäufer nach den Details zum senden des Fiats fragen. Gib nur die unbedingt notwendigen Informationen über dich weiter, um deine Privatsphäre nicht zu gefährden. Denkt daran, dass in RoboSats v0.1.0 der Chat ohne Speicher funktioniert, so dass die Unterhaltung verloren geht, wenn ihr den Browser aktualisiert.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-5.png" width="370" />
</div>
@ -142,13 +142,13 @@ Die Plattform zu bewerten und Tipps zur Verbesserung in unserer Telegram-Gruppe
### Beispiel-2: Ein Angebot als Verkäufer aufgeben
Es kann vorkommen, dass es keine aktiven Angebote für die gewünschte Position und Währung gibt. In diesem Fall gibt es keine Angebote zum VERKAUF von Bitcoin für GBP.
<div align="center">
<img src="/assets/images/how-to-use/book-no-orders.png" width="370" />
</div>
Wir können das Angebot genau so erstellen, wie wir es haben wollen. Aber denke daran, dass du ein Angebot veröffentlichen solltest, das die andere auch annehmen wollen!
Wir können das Angebot genau so erstellen, wie wir es haben wollen. Aber denke daran, dass du ein Angebot veröffentlichen solltest, das die andere auch annehmen wollen!
<div align="center">
<img src="/assets/images/how-to-use/maker-page.png" width="370" />
</div>
@ -211,7 +211,7 @@ All done!! :D
## Kollaborative Stornierung
Nach der Buchung der Handelskaution und bevor der Käufer bestätigt, dass er das Fiat geschickt hat, ist es möglich, die Order zu stornieren. Es könnte ja sein, dass ihr beide doch keine gemeinsame Methode zum Senden und Empfangen von Fiat habt. Du kannst dich darauf einigen, auf die Schaltfläche " Collaborative cancel " zu tippen. Nachdem der Käufer auf die Schaltfläche "Fiat sent" (Fiat gesendet) geklickt hat, ist die einzige Möglichkeit, einen Handel zu stornieren, die Eröffnung eines Streitfalls und die Einschaltung des Teams.
Nach der Buchung der Handelskaution und bevor der Käufer bestätigt, dass er das Fiat geschickt hat, ist es möglich, die Order zu stornieren. Es könnte ja sein, dass ihr beide doch keine gemeinsame Methode zum Senden und Empfangen von Fiat habt. Du kannst dich darauf einigen, auf die Schaltfläche " Collaborative cancel " zu tippen. Nachdem der Käufer auf die Schaltfläche "Fiat sent" (Fiat gesendet) geklickt hat, ist die einzige Möglichkeit, einen Handel zu stornieren, die Eröffnung eines Streitfalls und die Einschaltung des Teams.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-15.png" width="370" />
@ -221,7 +221,7 @@ Dies ist absolut nicht empfehlenswert, da einer der beiden Händler seine Kautio
## Rechtsstreitigkeiten
Missverständnisse kommen vor. Es kann aber auch Leute geben, die versuchen, andere zu betrügen. In diesem Fall dachte *MakeshiftSource875*, er käme davon, indem er den Erhalt des Fiats nicht bestätigte und er die Satoshis behalten könnte.
Missverständnisse kommen vor. Es kann aber auch Leute geben, die versuchen, andere zu betrügen. In diesem Fall dachte *MakeshiftSource875*, er käme davon, indem er den Erhalt des Fiats nicht bestätigte und er die Satoshis behalten könnte.
<div align="center">
<img src="/assets/images/how-to-use/contract-box-16.png" width="370" />

View File

@ -7,7 +7,7 @@ toc_sticky: true
sidebar:
title: '<img id="side-icon-verybig" src="/assets/vector/chalkboard-user.svg"/>Tutorial'
nav: tutorial
---
---
Uno de los puntos en los que se centra RoboSats es la facilidad de uso. La plataforma es totalmente autoexplicativa, por lo que se podría decir que no es necesario un tutorial. Sin embargo, este tutorial te ayudará a sentirse más cómodo. Después de todo, las plataformas p2p de bitcoin intimidan muchísimo. ¡Sin miedo! RoboSats es superfácil y con este tutorial serás todo un experto :D
Este documento contiene dos compraventas completas: 1) como comprador y tomador de una orden; 2) como vendedor y creador de la orden. Ya que la plataforma explica todo en los menús, voy a dedicar algunas líneas por todo el documento para dar trucos y consejos para que te mantengas seguro y anónimo.
@ -165,7 +165,7 @@ Debes copiar o escanear la factura con tu billetera lightning para bloquear tu f
<img src="/assets/images/how-to-use/contract-box-8.png" width="370" />
</div>
Tu orden permanecerá publicada durante {{site.robosats.hours_public_default}} horas por defecto. Puedes comprobar cuánto tiempo le queda consultando la pestaña "Order". Se puede cancelar en cualquier momento sin penalización antes de que otro robot tome tu orden. Mantén abierta la pestaña del contrato para recibir notificaciones [con este sonido](https://github.com/Reckless-Satoshi/robosats/raw/main/frontend/static/assets/sounds/taker-found.mp3). Es aconsejable hacer esto en un ordenador o portátil con el volumen encendido para enterarte cuando alguien tome tu orden porque puede transcurrir bastante tiempo. ¡Quizás incluso olvides que tienes publicada una orden! También puedes activar las notificaciones de telegram. Simplemente pulsa en "Enable Telegram Notifications" y presiona "Start" en la conversación con el bot de RoboSats. Te llegará un mensaje de bienvenida y cuando alguien tome la orden te avisará con un mensaje.
Tu orden permanecerá publicada durante {{site.robosats.hours_public_default}} horas por defecto. Puedes comprobar cuánto tiempo le queda consultando la pestaña "Order". Se puede cancelar en cualquier momento sin penalización antes de que otro robot tome tu orden. Mantén abierta la pestaña del contrato para recibir notificaciones [con este sonido](https://github.com/Reckless-Satoshi/robosats/raw/main/frontend/static/assets/sounds/taker-found.mp3). Es aconsejable hacer esto en un ordenador o portátil con el volumen encendido para enterarte cuando alguien tome tu orden porque puede transcurrir bastante tiempo. ¡Quizás incluso olvides que tienes publicada una orden! También puedes activar las notificaciones de telegram. Simplemente pulsa en "Enable Telegram Notifications" y presiona "Start" en la conversación con el bot de RoboSats. Te llegará un mensaje de bienvenida y cuando alguien tome la orden te avisará con un mensaje.
*Nota: Si no estás pendiente de tu orden y un robot la toma y bloquea su fianza, corres el riesgo de perder tu fianza por no cumplir con los siguientes pasos del contrato.*

View File

@ -5,6 +5,6 @@ title: "Welcome to Learn.RoboSats!"
date: 2022-05-18 06:28:14 -0500
categories: robosats update
---
Sovereignty is scary at first, then liberating. Buying your first Sats from a peer might seem intimidating, but it is very empowering. In Learn.RoboSats you can find all of the documentation and resources so you feel comfortable using the RoboSats P2P exchange. From easy to follow video tutorials, to technical deep-dives into how the exchange works.
Sovereignty is scary at first, then liberating. Buying your first Sats from a peer might seem intimidating, but it is very empowering. In Learn.RoboSats you can find all of the documentation and resources so you feel comfortable using the RoboSats P2P exchange. From easy to follow video tutorials, to technical deep-dives into how the exchange works.
This site is under construction, just like the exchange itself. Check around, you probably can write up and complete some of the missing pages. Have fun!

View File

@ -1,7 +1,7 @@
/*!
* jQuery throttle / debounce - v1.1 - 3/7/2010
* http://benalman.com/projects/jquery-throttle-debounce-plugin/
*
*
* Copyright (c) 2010 "Cowboy" Ben Alman
* Dual licensed under the MIT and GPL licenses.
* http://benalman.com/about/license/
@ -10,51 +10,51 @@
// Script: jQuery throttle / debounce: Sometimes, less is more!
//
// *Version: 1.1, Last updated: 3/7/2010*
//
//
// Project Home - http://benalman.com/projects/jquery-throttle-debounce-plugin/
// GitHub - http://github.com/cowboy/jquery-throttle-debounce/
// Source - http://github.com/cowboy/jquery-throttle-debounce/raw/master/jquery.ba-throttle-debounce.js
// (Minified) - http://github.com/cowboy/jquery-throttle-debounce/raw/master/jquery.ba-throttle-debounce.min.js (0.7kb)
//
//
// About: License
//
//
// Copyright (c) 2010 "Cowboy" Ben Alman,
// Dual licensed under the MIT and GPL licenses.
// http://benalman.com/about/license/
//
//
// About: Examples
//
//
// These working examples, complete with fully commented code, illustrate a few
// ways in which this plugin can be used.
//
//
// Throttle - http://benalman.com/code/projects/jquery-throttle-debounce/examples/throttle/
// Debounce - http://benalman.com/code/projects/jquery-throttle-debounce/examples/debounce/
//
//
// About: Support and Testing
//
//
// Information about what version or versions of jQuery this plugin has been
// tested with, what browsers it has been tested in, and where the unit tests
// reside (so you can test it yourself).
//
//
// jQuery Versions - none, 1.3.2, 1.4.2
// Browsers Tested - Internet Explorer 6-8, Firefox 2-3.6, Safari 3-4, Chrome 4-5, Opera 9.6-10.1.
// Unit Tests - http://benalman.com/code/projects/jquery-throttle-debounce/unit/
//
//
// About: Release History
//
//
// 1.1 - (3/7/2010) Fixed a bug in <jQuery.throttle> where trailing callbacks
// executed later than they should. Reworked a fair amount of internal
// logic as well.
// 1.0 - (3/6/2010) Initial release as a stand-alone project. Migrated over
// from jquery-misc repo v0.4 to jquery-throttle repo v1.0, added the
// no_trailing throttle parameter and debounce functionality.
//
//
// Topic: Note for non-jQuery users
//
//
// jQuery isn't actually required for this plugin, because nothing internal
// uses any jQuery methods or properties. jQuery is just used as a namespace
// under which these methods can exist.
//
//
// Since jQuery isn't actually required for this plugin, if jQuery doesn't exist
// when this plugin is loaded, the method described below will be created in
// the `Cowboy` namespace. Usage will be exactly the same, but instead of
@ -62,47 +62,47 @@
(function(window,undefined){
'$:nomunge'; // Used by YUI compressor.
// Since jQuery really isn't required for this plugin, use `jQuery` as the
// namespace only if it already exists, otherwise use the `Cowboy` namespace,
// creating it if necessary.
var $ = window.jQuery || window.Cowboy || ( window.Cowboy = {} ),
// Internal method reference.
jq_throttle;
// Method: jQuery.throttle
//
//
// Throttle execution of a function. Especially useful for rate limiting
// execution of handlers on events like resize and scroll. If you want to
// rate-limit execution of a function to a single time, see the
// <jQuery.debounce> method.
//
//
// In this visualization, | is a throttled-function call and X is the actual
// callback execution:
//
//
// > Throttled with `no_trailing` specified as false or unspecified:
// > ||||||||||||||||||||||||| (pause) |||||||||||||||||||||||||
// > X X X X X X X X X X X X
// >
// >
// > Throttled with `no_trailing` specified as true:
// > ||||||||||||||||||||||||| (pause) |||||||||||||||||||||||||
// > X X X X X X X X X X
//
//
// Usage:
//
//
// > var throttled = jQuery.throttle( delay, [ no_trailing, ] callback );
// >
// >
// > jQuery('selector').bind( 'someevent', throttled );
// > jQuery('selector').unbind( 'someevent', throttled );
//
//
// This also works in jQuery 1.4+:
//
//
// > jQuery('selector').bind( 'someevent', jQuery.throttle( delay, [ no_trailing, ] callback ) );
// > jQuery('selector').unbind( 'someevent', callback );
//
//
// Arguments:
//
//
// delay - (Number) A zero-or-greater delay in milliseconds. For event
// callbacks, values around 100 or 250 (or even higher) are most useful.
// no_trailing - (Boolean) Optional, defaults to false. If no_trailing is
@ -114,27 +114,27 @@
// callback - (Function) A function to be executed after delay milliseconds.
// The `this` context and all arguments are passed through, as-is, to
// `callback` when the throttled-function is executed.
//
//
// Returns:
//
//
// (Function) A new, throttled, function.
$.throttle = jq_throttle = function( delay, no_trailing, callback, debounce_mode ) {
// After wrapper has stopped being called, this timeout ensures that
// `callback` is executed at the proper times in `throttle` and `end`
// debounce modes.
var timeout_id,
// Keep track of the last time `callback` was executed.
last_exec = 0;
// `no_trailing` defaults to falsy.
if ( typeof no_trailing !== 'boolean' ) {
debounce_mode = callback;
callback = no_trailing;
no_trailing = undefined;
}
// The `wrapper` function encapsulates all of the throttling / debouncing
// functionality and when executed will limit the rate at which `callback`
// is executed.
@ -142,91 +142,91 @@
var that = this,
elapsed = +new Date() - last_exec,
args = arguments;
// Execute `callback` and update the `last_exec` timestamp.
function exec() {
last_exec = +new Date();
callback.apply( that, args );
};
// If `debounce_mode` is true (at_begin) this is used to clear the flag
// to allow future `callback` executions.
function clear() {
timeout_id = undefined;
};
if ( debounce_mode && !timeout_id ) {
// Since `wrapper` is being called for the first time and
// `debounce_mode` is true (at_begin), execute `callback`.
exec();
}
// Clear any existing timeout.
timeout_id && clearTimeout( timeout_id );
if ( debounce_mode === undefined && elapsed > delay ) {
// In throttle mode, if `delay` time has been exceeded, execute
// `callback`.
exec();
} else if ( no_trailing !== true ) {
// In trailing throttle mode, since `delay` time has not been
// exceeded, schedule `callback` to execute `delay` ms after most
// recent execution.
//
//
// If `debounce_mode` is true (at_begin), schedule `clear` to execute
// after `delay` ms.
//
//
// If `debounce_mode` is false (at end), schedule `callback` to
// execute after `delay` ms.
timeout_id = setTimeout( debounce_mode ? clear : exec, debounce_mode === undefined ? delay - elapsed : delay );
}
};
// Set the guid of `wrapper` function to the same of original callback, so
// it can be removed in jQuery 1.4+ .unbind or .die by using the original
// callback as a reference.
if ( $.guid ) {
wrapper.guid = callback.guid = callback.guid || $.guid++;
}
// Return the wrapper function.
return wrapper;
};
// Method: jQuery.debounce
//
//
// Debounce execution of a function. Debouncing, unlike throttling,
// guarantees that a function is only executed a single time, either at the
// very beginning of a series of calls, or at the very end. If you want to
// simply rate-limit execution of a function, see the <jQuery.throttle>
// method.
//
//
// In this visualization, | is a debounced-function call and X is the actual
// callback execution:
//
//
// > Debounced with `at_begin` specified as false or unspecified:
// > ||||||||||||||||||||||||| (pause) |||||||||||||||||||||||||
// > X X
// >
// >
// > Debounced with `at_begin` specified as true:
// > ||||||||||||||||||||||||| (pause) |||||||||||||||||||||||||
// > X X
//
//
// Usage:
//
//
// > var debounced = jQuery.debounce( delay, [ at_begin, ] callback );
// >
// >
// > jQuery('selector').bind( 'someevent', debounced );
// > jQuery('selector').unbind( 'someevent', debounced );
//
//
// This also works in jQuery 1.4+:
//
//
// > jQuery('selector').bind( 'someevent', jQuery.debounce( delay, [ at_begin, ] callback ) );
// > jQuery('selector').unbind( 'someevent', callback );
//
//
// Arguments:
//
//
// delay - (Number) A zero-or-greater delay in milliseconds. For event
// callbacks, values around 100 or 250 (or even higher) are most useful.
// at_begin - (Boolean) Optional, defaults to false. If at_begin is false or
@ -238,15 +238,15 @@
// callback - (Function) A function to be executed after delay milliseconds.
// The `this` context and all arguments are passed through, as-is, to
// `callback` when the debounced-function is executed.
//
//
// Returns:
//
//
// (Function) A new, debounced, function.
$.debounce = function( delay, at_begin, callback ) {
return callback === undefined
? jq_throttle( delay, at_begin, false )
: jq_throttle( delay, callback, at_begin !== false );
};
})(this);

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
<desc>Flag of Germany</desc>
<rect id="black_stripe" width="5" height="3" y="0" x="0" fill="#000"/>
<rect id="red_stripe" width="5" height="2" y="1" x="0" fill="#D00"/>
<rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="#FFCE00"/>
</svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" width="1000" height="600" viewBox="0 0 5 3">
<desc>Flag of Germany</desc>
<rect id="black_stripe" width="5" height="3" y="0" x="0" fill="#000"/>
<rect id="red_stripe" width="5" height="2" y="1" x="0" fill="#D00"/>
<rect id="gold_stripe" width="5" height="1" y="2" x="0" fill="#FFCE00"/>
</svg>

Before

Width:  |  Height:  |  Size: 502 B

After

Width:  |  Height:  |  Size: 493 B

View File

@ -1,67 +1,124 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="400">
<rect width="600" height="400" fill="#f00"/>
<rect width="240" height="400" fill="#060"/>
<g fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="0.573" stroke-linecap="round" stroke-linejoin="round">
<path d="m318.24,262.04c-30.21-0.91-168.74-87.38-169.69-101.15l7.6496-12.757c13.741,19.966,155.36,104.06,169.27,101.08l-7.2299,12.823"/>
<path d="m154.59,146.4c-2.7101,7.2937,36.149,31.318,82.903,59.754,46.752,28.434,87.065,46.006,90.053,43.486,0.18256-0.32544,1.4701-2.5409,1.352-2.5232-0.56001,0.84402-1.9234,1.1104-4.0506,0.49741-12.631-3.6433-45.575-18.765-86.374-43.506-40.798-24.743-76.294-47.544-81.811-57.232-0.38363-0.67116-0.65702-1.8962-0.60146-2.8487l-0.13405-0.002-1.1747,2.0532-0.16139,0.32191h-0.00088zm164.36,116.04c-0.51238,0.92957-1.4675,0.96044-3.2816,0.76112-11.3-1.2506-45.589-17.925-86.162-42.213-47.21-28.26-86.2-54.01-81.97-60.74l1.1509-2.0346,0.22665,0.0706c-3.8037,11.405,76.948,57.578,81.702,60.522,46.724,28.947,86.115,45.851,89.601,41.458l-1.2682,2.181v-0.002z"/>
<path d="m240.17,169.23c30.237-0.23901,67.55-4.1319,89.023-12.69l-4.6265-7.5168c-12.692,7.0247-50.21,11.644-84.652,12.335-40.736-0.37483-69.49-4.1681-83.897-13.835l-4.3672,8.0045c26.484,11.207,53.623,13.587,88.52,13.703"/>
<path d="m330.44,156.71c-0.73904,1.1818-14.743,6.0113-35.373,9.5753-13.988,2.1325-32.234,3.9555-55.004,3.9776-21.633,0.0203-39.305-1.5196-52.684-3.3329-21.656-3.3955-32.833-8.1201-36.965-9.7896,0.39509-0.78581,0.64908-1.337,1.0301-2.0708,11.895,4.736,23.124,7.5918,36.279,9.6158,13.291,1.8,30.75,3.362,52.276,3.3417,22.664-0.0229,40.709-1.9844,54.616-4.0534,21.155-3.4122,32.711-7.8034,34.334-9.8425l1.494,2.5788h-0.002zm-4.0603-7.6226c-2.293,1.8415-13.718,5.8932-33.819,9.1034-13.415,1.9226-30.472,3.6433-52.265,3.6645-20.704,0.0203-37.619-1.375-50.485-3.2491-20.414-2.6661-31.279-7.4754-35.196-8.8776,0.3898-0.67381,0.78666-1.3423,1.1941-2.0135,3.0479,1.5346,13.533,5.7909,34.226,8.7224,12.72,1.8036,29.661,3.1477,50.262,3.1265,21.69-0.0221,38.553-1.7762,51.883-3.6883,20.205-2.7799,31.077-7.9472,32.728-9.241l1.4728,2.4509v0.002z"/>
<path d="m140.88,205.66c18.598,10.003,59.905,15.044,98.994,15.391,35.591,0.0564,81.958-5.5016,99.297-14.69l-0.47712-10.012c-5.4246,8.4773-55.113,16.609-99.206,16.276-44.093-0.3325-85.038-7.1429-98.687-15.959l0.0794,8.9914"/>
<path d="m340.12,204.22,0.00088,2.3874c-2.606,3.1159-18.946,7.8255-39.437,11.142-15.595,2.391-35.927,4.1945-61.262,4.1945-24.069,0-43.263-1.7163-58.148-4.0014-23.529-3.4264-38.579-9.4262-41.6-11.217l0.0132-2.7852c9.0748,6.0334,33.661,10.447,41.917,11.798,14.788,2.2701,33.868,3.9732,57.817,3.9732,25.216,0,45.434-1.7912,60.931-4.1663,14.701-2.1237,35.644-7.6465,39.767-11.324h0.00088zm0.01-8.4922,0.00088,2.3874c-2.606,3.1142-18.946,7.8237-39.437,11.14-15.595,2.391-35.927,4.1945-61.262,4.1945-24.069,0-43.263-1.7145-58.148-4.0014-23.529-3.4246-38.579-9.4245-41.6-11.216l0.0132-2.7852c9.0748,6.0325,33.661,10.447,41.917,11.796,14.788,2.2719,33.868,3.9758,57.817,3.9758,25.216,0,45.434-1.7921,60.931-4.169,14.701-2.1237,35.644-7.6465,39.767-11.324l0.00088,0.002z"/>
<path d="m239.79,260.32c-42.772-0.25489-79.421-11.659-87.16-13.544l5.6433,8.8344c13.67,5.7503,49.424,14.32,81.927,13.371,32.504-0.94809,60.91-3.466,80.928-13.211l5.7862-9.1555c-13.642,6.425-60.068,13.639-87.125,13.705"/>
<path stroke-width="0.55" d="m323.3,253.72c-0.85016,1.2991-1.7171,2.5823-2.5963,3.8294-9.4417,3.3293-24.319,6.8245-30.597,7.844-12.824,2.6423-32.665,4.594-50.274,4.6029-37.89-0.55474-68.905-7.9719-83.496-14.299l-1.1773-2.0241,0.19225-0.30427,1.9966,0.77435c25.948,9.2834,55.091,12.987,82.698,13.652,17.538,0.0617,35.095-2.01,49.292-4.5491,21.771-4.3621,30.574-7.65,33.275-9.1405l0.68701-0.38541h-0.00088zm5.0172-8.2753c0.022,0.0256,0.0441,0.0503,0.0653,0.0776-0.63585,1.0733-1.2911,2.1652-1.9622,3.2623-5.0357,1.8-18.702,5.7988-38.659,8.5893-13.149,1.7912-21.322,3.526-47.479,4.034-49.015-1.2471-80.75-10.831-88.289-13.195l-1.1174-2.1431c28.406,7.4154,57.422,12.592,89.408,13.121,23.931-0.50976,34.112-2.2719,47.152-4.0499,23.271-3.6186,34.996-7.4498,38.515-8.5558-0.0441-0.0635-0.0961-0.13053-0.15433-0.19932l2.5231-0.9428-0.002,0.002z"/>
<path d="m328.83,197.76c0.13873,28.137-14.26,53.386-25.858,64.525-16.408,15.759-38.163,25.896-63.569,26.363-28.37,0.52117-55.12-17.974-62.295-26.099-14.028-15.885-25.449-36.057-25.815-63.243,1.7376-30.709,13.793-52.1,31.268-66.769s40.743-21.813,60.121-21.302c22.358,0.59003,48.475,11.558,66.521,33.332,11.823,14.266,16.943,29.748,19.627,53.193zm-89.186-96.342c54.485,0,99.296,44.338,99.296,98.703,0,54.364-44.811,98.704-99.296,98.704s-98.924-44.339-98.924-98.704,44.439-98.703,98.924-98.703"/>
<path d="m239.91,101.08c54.534,0,99.011,44.483,99.011,99.022,0,54.538-44.478,99.02-99.011,99.02-54.534,0-99.011-44.481-99.011-99.02s44.478-99.022,99.011-99.022zm-96.832,99.0224c0,53.26,43.736,96.842,96.832,96.842,53.097,0,96.833-43.582,96.833-96.842,0-53.262-43.737-96.844-96.833-96.844s-96.832,43.584-96.832,96.844z"/>
<path d="m239.99,109.31c49.731,0,90.693,40.821,90.693,90.704,0,49.884-40.963,90.703-90.693,90.703s-90.693-40.819-90.693-90.703c0-49.883,40.964-90.704,90.693-90.704zm-88.515,90.7034c0,48.685,39.979,88.524,88.515,88.524s88.515-39.839,88.515-88.524c0-48.686-39.978-88.525-88.515-88.525-48.536,0-88.515,39.839-88.515,88.525z"/>
<path d="m243.98,100.68-8.48545,0,0.01,198.96,8.51455,0z"/>
<path d="m243.13,99.546h2.1598l0.0185,201.25h-2.1616l-0.0159-201.25zm-8.4213,0.0018h2.1766l0.003,201.25h-2.1783v-201.25z"/>
<path d="m338.99,203.935,0-7.3554-5.99-5.58-34-9-49-5-59,3-42,10-8.48,6.28,0,7.3572l21.48-9.637,51-8h49l36,4,25,6z"/>
<path d="m239.95,184.77c23.383-0.0432,46.07,2.2154,64.065,5.7194,18.569,3.7121,31.637,8.3556,36.105,13.571l-0.005,2.5823c-5.3884-6.4902-22.973-11.248-36.518-13.968-17.858-3.474-40.393-5.7168-63.647-5.6736-24.538,0.0459-47.387,2.3698-64.984,5.8032-14.12,2.8019-32.951,8.3679-35.302,13.858v-2.689c1.2911-3.8003,15.313-9.4792,34.984-13.417,17.729-3.4572,40.62-5.7415,65.302-5.7864zm0.01-8.4922c23.383-0.0423,46.07,2.2172,64.065,5.7194,18.569,3.7139,31.637,8.3556,36.105,13.571l-0.005,2.5823c-5.3884-6.4885-22.973-11.247-36.518-13.966-17.858-3.4757-40.393-5.7185-63.647-5.6736-24.538,0.0441-47.276,2.3698-64.875,5.8014-13.626,2.5832-33.226,8.3696-35.412,13.86v-2.6908c1.2911-3.7588,15.597-9.6414,34.985-13.417,17.729-3.4572,40.62-5.7397,65.302-5.7864z"/>
<path d="m239.48,132.96c36.849-0.18433,68.99,5.1523,83.695,12.685l5.3638,9.279c-12.781-6.888-47.456-14.05-89.005-12.979-33.854,0.20814-70.027,3.7271-88.176,13.41l6.4035-10.709c14.895-7.7241,50.022-11.643,81.72-11.684"/>
<path d="m239.97,140.62c21.017-0.0556,41.325,1.1298,57.476,4.0437,15.041,2.7993,29.385,7.0009,31.436,9.2604l1.5901,2.8099c-4.9881-3.257-17.401-6.8836-33.339-9.906-16.006-3.0083-36.3-4.0049-57.2-3.9502-23.722-0.0811-42.152,1.1712-57.969,3.9291-16.728,3.13-28.334,7.6015-31.197,9.7261l1.5583-2.9704c5.5631-2.8381,14.39-6.2592,29.223-8.9297,16.357-2.988,34.983-3.8841,58.423-4.0128h-0.00088zm-0.009-8.4843c20.113-0.0529,39.972,1.068,55.452,3.8506,12.209,2.3768,24.283,6.0872,28.704,9.3892l2.3256,3.6954c-3.9536-4.3947-18.836-8.5593-31.974-10.892-15.361-2.6494-34.395-3.698-54.508-3.8656-21.108,0.0591-40.615,1.352-55.752,4.1081-14.441,2.7481-23.76,6.0016-27.703,8.5425l2.0451-3.0868c5.4414-2.8646,14.232-5.4954,25.303-7.6465,15.249-2.7764,34.876-4.0358,56.108-4.0949z"/>
<path d="m289.15,241.26c-18.218-3.4008-36.469-3.8947-49.217-3.7447-61.407,0.71967-81.244,12.609-83.665,16.209l-4.5894-7.4815c15.634-11.332,49.073-17.687,88.587-17.037,20.518,0.33602,38.224,1.6986,53.119,4.5835l-4.2358,7.4727"/>
<path stroke-width="0.55" d="m239.58,236.46c17.082,0.25488,33.849,0.96044,50.033,3.9784l-1.172,2.069c-15.031-2.7746-31.055-3.8365-48.803-3.75-22.663-0.17727-45.585,1.9394-65.541,7.6668-6.2968,1.7524-16.721,5.8006-17.784,9.1458l-1.1659-1.9226c0.33601-1.9773,6.6363-6.081,18.414-9.3901,22.858-6.5458,44.239-7.6491,66.019-7.799v0.002zm0.77519-8.5963c17.698,0.33073,35.975,1.1492,53.74,4.6681l-1.2206,2.1537c-16.042-3.1847-31.369-4.2466-52.415-4.5702-22.735,0.0414-46.851,1.6625-68.778,8.0372-7.0791,2.062-19.297,6.5202-19.704,10.05l-1.1659-2.0655c0.26545-3.2059,10.842-7.388,20.358-10.156,22.096-6.4241,46.275-8.076,69.186-8.1174z"/>
<path d="M327.58,247.38,320.201,258.829,299,240,244,203,182,169,149.81,157.99,156.67,145.27,159,144l20,5,66,34,38,24,32,23,13,15z"/>
<path d="m148.65,158.29c5.646-3.8294,47.139,14.655,90.555,40.834,43.301,26.254,84.677,55.921,80.942,61.473l-1.2285,1.9323-0.56354,0.4445c0.12083-0.0864,0.74345-0.84755-0.0609-2.906-1.8449-6.0704-31.195-29.491-79.894-58.895-47.475-28.309-87.041-45.371-90.997-40.494l1.247-2.3892h-0.00089zm180.44,88.927c3.57-7.052-34.916-36.044-82.632-64.272-48.813-27.666-83.994-43.951-90.42-39.095l-1.4278,2.5991c-0.0124,0.14287,0.052-0.17727,0.35364-0.4101,1.1685-1.0195,3.1052-0.95074,3.9792-0.96662,11.065,0.16581,42.667,14.709,87.006,40.128,19.428,11.315,82.071,51.491,81.832,62.789,0.0168,0.97102,0.0803,1.1712-0.28485,1.6519l1.5936-2.4236v-0.002z"/>
</g>
<g>
<path fill="#fff" stroke="#000" stroke-width="0.67037" d="m180.6,211.01c0,16.271,6.6628,30.987,17.457,41.742,10.815,10.778,25.512,17.579,41.809,17.579,16.381,0,31.247-6.6525,42.016-17.389,10.769-10.735,17.443-25.552,17.446-41.88h-0.002v-79.189l-118.74-0.14111,0.0123,79.278h0.002z"/>
<path fill="#f00" stroke="#000" stroke-width="0.50734" d="m182.82,211.12v0.045c0,15.557,6.4414,29.724,16.775,40.009,10.354,10.305,24.614,16.712,40.214,16.712,15.681,0,29.912-6.3606,40.222-16.626,10.308-10.265,16.697-24.433,16.699-40.044h-0.002v-76.826l-113.84-0.0185-0.0697,76.748m91.022-53.747,0.004,48.891-0.0414,5.1717h0.00088c0,1.3608-0.082,2.9122-0.24076,4.2333-0.92512,7.7294-4.4801,14.467-9.7451,19.708-6.1636,6.1357-14.671,9.9413-24.047,9.9413-9.327,0-17.639-3.9379-23.829-10.1-6.3497-6.32-10.03-14.986-10.03-23.947l-0.0132-54.023,67.94,0.12259,0.002,0.002z"/>
<g id="castle3">
<g id="castle" fill="#ff0" stroke="#000" stroke-width="0.5">
<path stroke="none" d="m190.19,154.43c0.13493-5.521,4.0524-6.828,4.0806-6.8474,0.0282-0.0185,4.2314,1.4076,4.2173,6.8986l-8.2978-0.0512"/>
<path d="m186.81,147.69-0.68172,6.3447,4.1406,0.009c0.0397-5.2493,3.9739-6.1225,4.0691-6.1031,0.0891-0.005,3.9889,1.1606,4.0929,6.1031h4.1511l-0.74962-6.3932-15.022,0.0379v0.002z"/>
<path d="m185.85,154.06h16.946c0.35717,0,0.64908,0.35277,0.64908,0.78404,0,0.43039-0.29191,0.78141-0.64908,0.78141h-16.946c-0.35717,0-0.64908-0.35102-0.64908-0.78141,0-0.43127,0.29191-0.78404,0.64908-0.78404z"/>
<path d="m192.01,154.03c0.0185-3.3126,2.2621-4.2501,2.2736-4.2483,0.00088,0,2.3423,0.96661,2.3609,4.2483h-4.6344"/>
<path d="m186.21,145.05h16.245c0.34218,0,0.62263,0.31839,0.62263,0.70468,0,0.38717-0.28045,0.70467-0.62263,0.70467h-16.245c-0.34218,0-0.62263-0.31573-0.62263-0.70467,0-0.38629,0.28045-0.70468,0.62263-0.70468z"/>
<path d="m186.55,146.47h15.538c0.32719,0,0.59529,0.31662,0.59529,0.70379,0,0.38805-0.2681,0.70467-0.59529,0.70467h-15.538c-0.32719,0-0.59529-0.31662-0.59529-0.70467,0-0.38717,0.2681-0.70379,0.59529-0.70379z"/>
<path d="m191.57,135.88,1.2267,0.002v0.87136h0.89513v-0.89076l1.2567,0.004v0.88723h0.89778v-0.89076h1.2576l-0.002,2.0117c0,0.31574-0.25398,0.52035-0.54854,0.52035h-4.4113c-0.29633,0-0.56972-0.23724-0.5706-0.52652l-0.003-1.9879h0.00088z"/>
<path d="m196.19,138.57,0.27691,6.4514-4.3028-0.0159,0.28486-6.4523,3.741,0.0168"/>
<path id="cp1" d="m190.94,141.56,0.13141,3.4775-4.1256,0.002,0.11641-3.4793h3.8786-0.00089z"/>
<use xlink:href="#cp1" x="10.609"/>
<path id="cp2" d="m186.3,139.04,1.1994,0.003v0.87224h0.8775v-0.89253l1.2294,0.004v0.889h0.87926v-0.89253l1.2302,0.002-0.002,2.0117c0,0.31398-0.2487,0.51859-0.5362,0.51859h-4.3169c-0.28926,0-0.55824-0.23548-0.55913-0.52564l-0.003-1.9888h0.00088z"/>
<use xlink:href="#cp2" x="10.609"/>
<path fill="#000" stroke="none" d="m193.9,140.61c-0.0265-0.62706,0.87661-0.63411,0.86603,0v1.5364h-0.866v-1.536"/>
<path id="cp3" fill="#000" stroke="none" d="m188.57,142.84c-0.003-0.6059,0.83693-0.61824,0.82635,0v1.1871h-0.826v-1.187"/>
<use xlink:href="#cp3" x="10.641"/>
</g>
<use xlink:href="#castle" y="46.3198"/>
<use xlink:href="#castle" transform="matrix(0.70460892,-0.70959585,0.70959585,0.70460892,-35.341459,275.10898)"/>
</g>
<use xlink:href="#castle" x="45.7138"/>
<use xlink:href="#castle3" transform="matrix(-1,0,0,1,479.79195,0)"/>
<g id="quina" fill="#fff">
<path fill="#039" d="m232.636,202.406v0.005c0,2.2119,0.84927,4.2272,2.2118,5.6894,1.3652,1.4667,3.2454,2.3777,5.302,2.3777,2.0672,0,3.9439-0.90487,5.3029-2.3654,1.3581-1.4587,2.2021-3.47219,2.2021-5.693v-10.768l-14.992-0.0123-0.0273,10.766"/>
<circle cx="236.074" cy="195.735" r="1.486"/>
<circle cx="244.392" cy="195.742" r="1.486"/>
<circle cx="240.225" cy="199.735" r="1.486"/>
<circle cx="236.074" cy="203.916" r="1.486"/>
<circle cx="244.383" cy="203.905" r="1.486"/>
</g>
<use xlink:href="#quina" y="-26.016"/>
<use xlink:href="#quina" x="-20.799"/>
<use xlink:href="#quina" x="20.745"/>
<use xlink:href="#quina" y="25.784"/>
</g>
</svg>
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="600" height="400">
<rect width="600" height="400" fill="#f00"/>
<rect width="240" height="400" fill="#060"/>
<g fill="#ff0" fill-rule="evenodd" stroke="#000" stroke-width="0.573" stroke-linecap="round" stroke-linejoin="round">
<path d="m318.24,262.04c-30.21-0.91-168.74-87.38-169.69-101.15l7.6496-12.757c13.741,19.966,155.36,104.06,169.27,101.08l-7.2299,12.823"/>
<path d="m154.59,146.4c-2.7101,7.2937,36.149,31.318,82.903,59.754,46.752,28.434,87.065,46.006,90.053,43.486,0.18256-0.32544,1.4701-2.5409,1.352-2.5232-0.56001,0.84402-1.9234,1.1104-4.0506,0.49741-12.631-3.6433-45.575-18.765-86.374-43.506-40.798-24.743-76.294-47.544-81.811-57.232-0.38363-0.67116-0.65702-1.8962-0.60146-2.8487l-0.13405-0.002-1.1747,2.0532-0.16139,0.32191h-0.00088zm164.36,116.04c-0.51238,0.92957-1.4675,0.96044-3.2816,0.76112-11.3-1.2506-45.589-17.925-86.162-42.213-47.21-28.26-86.2-54.01-81.97-60.74l1.1509-2.0346,0.22665,0.0706c-3.8037,11.405,76.948,57.578,81.702,60.522,46.724,28.947,86.115,45.851,89.601,41.458l-1.2682,2.181v-0.002z"/>
<path d="m240.17,169.23c30.237-0.23901,67.55-4.1319,89.023-12.69l-4.6265-7.5168c-12.692,7.0247-50.21,11.644-84.652,12.335-40.736-0.37483-69.49-4.1681-83.897-13.835l-4.3672,8.0045c26.484,11.207,53.623,13.587,88.52,13.703"/>
<path d="m330.44,156.71c-0.73904,1.1818-14.743,6.0113-35.373,9.5753-13.988,2.1325-32.234,3.9555-55.004,3.9776-21.633,0.0203-39.305-1.5196-52.684-3.3329-21.656-3.3955-32.833-8.1201-36.965-9.7896,0.39509-0.78581,0.64908-1.337,1.0301-2.0708,11.895,4.736,23.124,7.5918,36.279,9.6158,13.291,1.8,30.75,3.362,52.276,3.3417,22.664-0.0229,40.709-1.9844,54.616-4.0534,21.155-3.4122,32.711-7.8034,34.334-9.8425l1.494,2.5788h-0.002zm-4.0603-7.6226c-2.293,1.8415-13.718,5.8932-33.819,9.1034-13.415,1.9226-30.472,3.6433-52.265,3.6645-20.704,0.0203-37.619-1.375-50.485-3.2491-20.414-2.6661-31.279-7.4754-35.196-8.8776,0.3898-0.67381,0.78666-1.3423,1.1941-2.0135,3.0479,1.5346,13.533,5.7909,34.226,8.7224,12.72,1.8036,29.661,3.1477,50.262,3.1265,21.69-0.0221,38.553-1.7762,51.883-3.6883,20.205-2.7799,31.077-7.9472,32.728-9.241l1.4728,2.4509v0.002z"/>
<path d="m140.88,205.66c18.598,10.003,59.905,15.044,98.994,15.391,35.591,0.0564,81.958-5.5016,99.297-14.69l-0.47712-10.012c-5.4246,8.4773-55.113,16.609-99.206,16.276-44.093-0.3325-85.038-7.1429-98.687-15.959l0.0794,8.9914"/>
<path d="m340.12,204.22,0.00088,2.3874c-2.606,3.1159-18.946,7.8255-39.437,11.142-15.595,2.391-35.927,4.1945-61.262,4.1945-24.069,0-43.263-1.7163-58.148-4.0014-23.529-3.4264-38.579-9.4262-41.6-11.217l0.0132-2.7852c9.0748,6.0334,33.661,10.447,41.917,11.798,14.788,2.2701,33.868,3.9732,57.817,3.9732,25.216,0,45.434-1.7912,60.931-4.1663,14.701-2.1237,35.644-7.6465,39.767-11.324h0.00088zm0.01-8.4922,0.00088,2.3874c-2.606,3.1142-18.946,7.8237-39.437,11.14-15.595,2.391-35.927,4.1945-61.262,4.1945-24.069,0-43.263-1.7145-58.148-4.0014-23.529-3.4246-38.579-9.4245-41.6-11.216l0.0132-2.7852c9.0748,6.0325,33.661,10.447,41.917,11.796,14.788,2.2719,33.868,3.9758,57.817,3.9758,25.216,0,45.434-1.7921,60.931-4.169,14.701-2.1237,35.644-7.6465,39.767-11.324l0.00088,0.002z"/>
<path d="m239.79,260.32c-42.772-0.25489-79.421-11.659-87.16-13.544l5.6433,8.8344c13.67,5.7503,49.424,14.32,81.927,13.371,32.504-0.94809,60.91-3.466,80.928-13.211l5.7862-9.1555c-13.642,6.425-60.068,13.639-87.125,13.705"/>
<path stroke-width="0.55" d="m323.3,253.72c-0.85016,1.2991-1.7171,2.5823-2.5963,3.8294-9.4417,3.3293-24.319,6.8245-30.597,7.844-12.824,2.6423-32.665,4.594-50.274,4.6029-37.89-0.55474-68.905-7.9719-83.496-14.299l-1.1773-2.0241,0.19225-0.30427,1.9966,0.77435c25.948,9.2834,55.091,12.987,82.698,13.652,17.538,0.0617,35.095-2.01,49.292-4.5491,21.771-4.3621,30.574-7.65,33.275-9.1405l0.68701-0.38541h-0.00088zm5.0172-8.2753c0.022,0.0256,0.0441,0.0503,0.0653,0.0776-0.63585,1.0733-1.2911,2.1652-1.9622,3.2623-5.0357,1.8-18.702,5.7988-38.659,8.5893-13.149,1.7912-21.322,3.526-47.479,4.034-49.015-1.2471-80.75-10.831-88.289-13.195l-1.1174-2.1431c28.406,7.4154,57.422,12.592,89.408,13.121,23.931-0.50976,34.112-2.2719,47.152-4.0499,23.271-3.6186,34.996-7.4498,38.515-8.5558-0.0441-0.0635-0.0961-0.13053-0.15433-0.19932l2.5231-0.9428-0.002,0.002z"/>
<path d="m328.83,197.76c0.13873,28.137-14.26,53.386-25.858,64.525-16.408,15.759-38.163,25.896-63.569,26.363-28.37,0.52117-55.12-17.974-62.295-26.099-14.028-15.885-25.449-36.057-25.815-63.243,1.7376-30.709,13.793-52.1,31.268-66.769s40.743-21.813,60.121-21.302c22.358,0.59003,48.475,11.558,66.521,33.332,11.823,14.266,16.943,29.748,19.627,53.193zm-89.186-96.342c54.485,0,99.296,44.338,99.296,98.703,0,54.364-44.811,98.704-99.296,98.704s-98.924-44.339-98.924-98.704,44.439-98.703,98.924-98.703"/>
<path d="m239.91,101.08c54.534,0,99.011,44.483,99.011,99.022,0,54.538-44.478,99.02-99.011,99.02-54.534,0-99.011-44.481-99.011-99.02s44.478-99.022,99.011-99.022zm-96.832,99.0224c0,53.26,43.736,96.842,96.832,96.842,53.097,0,96.833-43.582,96.833-96.842,0-53.262-43.737-96.844-96.833-96.844s-96.832,43.584-96.832,96.844z"/>
<path d="m239.99,109.31c49.731,0,90.693,40.821,90.693,90.704,0,49.884-40.963,90.703-90.693,90.703s-90.693-40.819-90.693-90.703c0-49.883,40.964-90.704,90.693-90.704zm-88.515,90.7034c0,48.685,39.979,88.524,88.515,88.524s88.515-39.839,88.515-88.524c0-48.686-39.978-88.525-88.515-88.525-48.536,0-88.515,39.839-88.515,88.525z"/>
<path d="m243.98,100.68-8.48545,0,0.01,198.96,8.51455,0z"/>
<path d="m243.13,99.546h2.1598l0.0185,201.25h-2.1616l-0.0159-201.25zm-8.4213,0.0018h2.1766l0.003,201.25h-2.1783v-201.25z"/>
<path d="m338.99,203.935,0-7.3554-5.99-5.58-34-9-49-5-59,3-42,10-8.48,6.28,0,7.3572l21.48-9.637,51-8h49l36,4,25,6z"/>
<path d="m239.95,184.77c23.383-0.0432,46.07,2.2154,64.065,5.7194,18.569,3.7121,31.637,8.3556,36.105,13.571l-0.005,2.5823c-5.3884-6.4902-22.973-11.248-36.518-13.968-17.858-3.474-40.393-5.7168-63.647-5.6736-24.538,0.0459-47.387,2.3698-64.984,5.8032-14.12,2.8019-32.951,8.3679-35.302,13.858v-2.689c1.2911-3.8003,15.313-9.4792,34.984-13.417,17.729-3.4572,40.62-5.7415,65.302-5.7864zm0.01-8.4922c23.383-0.0423,46.07,2.2172,64.065,5.7194,18.569,3.7139,31.637,8.3556,36.105,13.571l-0.005,2.5823c-5.3884-6.4885-22.973-11.247-36.518-13.966-17.858-3.4757-40.393-5.7185-63.647-5.6736-24.538,0.0441-47.276,2.3698-64.875,5.8014-13.626,2.5832-33.226,8.3696-35.412,13.86v-2.6908c1.2911-3.7588,15.597-9.6414,34.985-13.417,17.729-3.4572,40.62-5.7397,65.302-5.7864z"/>
<path d="m239.48,132.96c36.849-0.18433,68.99,5.1523,83.695,12.685l5.3638,9.279c-12.781-6.888-47.456-14.05-89.005-12.979-33.854,0.20814-70.027,3.7271-88.176,13.41l6.4035-10.709c14.895-7.7241,50.022-11.643,81.72-11.684"/>
<path d="m239.97,140.62c21.017-0.0556,41.325,1.1298,57.476,4.0437,15.041,2.7993,29.385,7.0009,31.436,9.2604l1.5901,2.8099c-4.9881-3.257-17.401-6.8836-33.339-9.906-16.006-3.0083-36.3-4.0049-57.2-3.9502-23.722-0.0811-42.152,1.1712-57.969,3.9291-16.728,3.13-28.334,7.6015-31.197,9.7261l1.5583-2.9704c5.5631-2.8381,14.39-6.2592,29.223-8.9297,16.357-2.988,34.983-3.8841,58.423-4.0128h-0.00088zm-0.009-8.4843c20.113-0.0529,39.972,1.068,55.452,3.8506,12.209,2.3768,24.283,6.0872,28.704,9.3892l2.3256,3.6954c-3.9536-4.3947-18.836-8.5593-31.974-10.892-15.361-2.6494-34.395-3.698-54.508-3.8656-21.108,0.0591-40.615,1.352-55.752,4.1081-14.441,2.7481-23.76,6.0016-27.703,8.5425l2.0451-3.0868c5.4414-2.8646,14.232-5.4954,25.303-7.6465,15.249-2.7764,34.876-4.0358,56.108-4.0949z"/>
<path d="m289.15,241.26c-18.218-3.4008-36.469-3.8947-49.217-3.7447-61.407,0.71967-81.244,12.609-83.665,16.209l-4.5894-7.4815c15.634-11.332,49.073-17.687,88.587-17.037,20.518,0.33602,38.224,1.6986,53.119,4.5835l-4.2358,7.4727"/>
<path stroke-width="0.55" d="m239.58,236.46c17.082,0.25488,33.849,0.96044,50.033,3.9784l-1.172,2.069c-15.031-2.7746-31.055-3.8365-48.803-3.75-22.663-0.17727-45.585,1.9394-65.541,7.6668-6.2968,1.7524-16.721,5.8006-17.784,9.1458l-1.1659-1.9226c0.33601-1.9773,6.6363-6.081,18.414-9.3901,22.858-6.5458,44.239-7.6491,66.019-7.799v0.002zm0.77519-8.5963c17.698,0.33073,35.975,1.1492,53.74,4.6681l-1.2206,2.1537c-16.042-3.1847-31.369-4.2466-52.415-4.5702-22.735,0.0414-46.851,1.6625-68.778,8.0372-7.0791,2.062-19.297,6.5202-19.704,10.05l-1.1659-2.0655c0.26545-3.2059,10.842-7.388,20.358-10.156,22.096-6.4241,46.275-8.076,69.186-8.1174z"/>
<path d="M327.58,247.38,320.201,258.829,299,240,244,203,182,169,149.81,157.99,156.67,145.27,159,144l20,5,66,34,38,24,32,23,13,15z"/>
<path d="m148.65,158.29c5.646-3.8294,47.139,14.655,90.555,40.834,43.301,26.254,84.677,55.921,80.942,61.473l-1.2285,1.9323-0.56354,0.4445c0.12083-0.0864,0.74345-0.84755-0.0609-2.906-1.8449-6.0704-31.195-29.491-79.894-58.895-47.475-28.309-87.041-45.371-90.997-40.494l1.247-2.3892h-0.00089zm180.44,88.927c3.57-7.052-34.916-36.044-82.632-64.272-48.813-27.666-83.994-43.951-90.42-39.095l-1.4278,2.5991c-0.0124,0.14287,0.052-0.17727,0.35364-0.4101,1.1685-1.0195,3.1052-0.95074,3.9792-0.96662,11.065,0.16581,42.667,14.709,87.006,40.128,19.428,11.315,82.071,51.491,81.832,62.789,0.0168,0.97102,0.0803,1.1712-0.28485,1.6519l1.5936-2.4236v-0.002z"/>
</g>
<g>
<path fill="#fff" stroke="#000" stroke-width="0.67037" d="m180.6,211.01c0,16.271,6.6628,30.987,17.457,41.742,10.815,10.778,25.512,17.579,41.809,17.579,16.381,0,31.247-6.6525,42.016-17.389,10.769-10.735,17.443-25.552,17.446-41.88h-0.002v-79.189l-118.74-0.14111,0.0123,79.278h0.002z"/>
<path fill="#f00" stroke="#000" stroke-width="0.50734" d="m182.82,211.12v0.045c0,15.557,6.4414,29.724,16.775,40.009,10.354,10.305,24.614,16.712,40.214,16.712,15.681,0,29.912-6.3606,40.222-16.626,10.308-10.265,16.697-24.433,16.699-40.044h-0.002v-76.826l-113.84-0.0185-0.0697,76.748m91.022-53.747,0.004,48.891-0.0414,5.1717h0.00088c0,1.3608-0.082,2.9122-0.24076,4.2333-0.92512,7.7294-4.4801,14.467-9.7451,19.708-6.1636,6.1357-14.671,9.9413-24.047,9.9413-9.327,0-17.639-3.9379-23.829-10.1-6.3497-6.32-10.03-14.986-10.03-23.947l-0.0132-54.023,67.94,0.12259,0.002,0.002z"/>
<g id="castle3">
<g id="castle" fill="#ff0" stroke="#000" stroke-width="0.5">
<path stroke="none" d="m190.19,154.43c0.13493-5.521,4.0524-6.828,4.0806-6.8474,0.0282-0.0185,4.2314,1.4076,4.2173,6.8986l-8.2978-0.0512"/>
<path d="m186.81,147.69-0.68172,6.3447,4.1406,0.009c0.0397-5.2493,3.9739-6.1225,4.0691-6.1031,0.0891-0.005,3.9889,1.1606,4.0929,6.1031h4.1511l-0.74962-6.3932-15.022,0.0379v0.002z"/>
<path d="m185.85,154.06h16.946c0.35717,0,0.64908,0.35277,0.64908,0.78404,0,0.43039-0.29191,0.78141-0.64908,0.78141h-16.946c-0.35717,0-0.64908-0.35102-0.64908-0.78141,0-0.43127,0.29191-0.78404,0.64908-0.78404z"/>
<path d="m192.01,154.03c0.0185-3.3126,2.2621-4.2501,2.2736-4.2483,0.00088,0,2.3423,0.96661,2.3609,4.2483h-4.6344"/>
<path d="m186.21,145.05h16.245c0.34218,0,0.62263,0.31839,0.62263,0.70468,0,0.38717-0.28045,0.70467-0.62263,0.70467h-16.245c-0.34218,0-0.62263-0.31573-0.62263-0.70467,0-0.38629,0.28045-0.70468,0.62263-0.70468z"/>
<path d="m186.55,146.47h15.538c0.32719,0,0.59529,0.31662,0.59529,0.70379,0,0.38805-0.2681,0.70467-0.59529,0.70467h-15.538c-0.32719,0-0.59529-0.31662-0.59529-0.70467,0-0.38717,0.2681-0.70379,0.59529-0.70379z"/>
<path d="m191.57,135.88,1.2267,0.002v0.87136h0.89513v-0.89076l1.2567,0.004v0.88723h0.89778v-0.89076h1.2576l-0.002,2.0117c0,0.31574-0.25398,0.52035-0.54854,0.52035h-4.4113c-0.29633,0-0.56972-0.23724-0.5706-0.52652l-0.003-1.9879h0.00088z"/>
<path d="m196.19,138.57,0.27691,6.4514-4.3028-0.0159,0.28486-6.4523,3.741,0.0168"/>
<path id="cp1" d="m190.94,141.56,0.13141,3.4775-4.1256,0.002,0.11641-3.4793h3.8786-0.00089z"/>
<use xlink:href="#cp1" x="10.609"/>
<path id="cp2" d="m186.3,139.04,1.1994,0.003v0.87224h0.8775v-0.89253l1.2294,0.004v0.889h0.87926v-0.89253l1.2302,0.002-0.002,2.0117c0,0.31398-0.2487,0.51859-0.5362,0.51859h-4.3169c-0.28926,0-0.55824-0.23548-0.55913-0.52564l-0.003-1.9888h0.00088z"/>
<use xlink:href="#cp2" x="10.609"/>
<path fill="#000" stroke="none" d="m193.9,140.61c-0.0265-0.62706,0.87661-0.63411,0.86603,0v1.5364h-0.866v-1.536"/>
<path id="cp3" fill="#000" stroke="none" d="m188.57,142.84c-0.003-0.6059,0.83693-0.61824,0.82635,0v1.1871h-0.826v-1.187"/>
<use xlink:href="#cp3" x="10.641"/>
</g>
<use xlink:href="#castle" y="46.3198"/>
<use xlink:href="#castle" transform="matrix(0.70460892,-0.70959585,0.70959585,0.70460892,-35.341459,275.10898)"/>
</g>
<use xlink:href="#castle" x="45.7138"/>
<use xlink:href="#castle3" transform="matrix(-1,0,0,1,479.79195,0)"/>
<g id="quina" fill="#fff">
<path fill="#039" d="m232.636,202.406v0.005c0,2.2119,0.84927,4.2272,2.2118,5.6894,1.3652,1.4667,3.2454,2.3777,5.302,2.3777,2.0672,0,3.9439-0.90487,5.3029-2.3654,1.3581-1.4587,2.2021-3.47219,2.2021-5.693v-10.768l-14.992-0.0123-0.0273,10.766"/>
<circle cx="236.074" cy="195.735" r="1.486"/>
<circle cx="244.392" cy="195.742" r="1.486"/>
<circle cx="240.225" cy="199.735" r="1.486"/>
<circle cx="236.074" cy="203.916" r="1.486"/>
<circle cx="244.383" cy="203.905" r="1.486"/>
</g>
<use xlink:href="#quina" y="-26.016"/>
<use xlink:href="#quina" x="-20.799"/>
<use xlink:href="#quina" x="20.745"/>
<use xlink:href="#quina" y="25.784"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -7,7 +7,7 @@ services:
volumes:
- .:/usr/src/docs
command: bash -c "cd /usr/src/docs/
&& bundle install
&& bundle install
&& bundle exec jekyll serve --force_polling -H 0.0.0.0 -P 4000"
ports:
- 4000:4000

View File

@ -7,20 +7,20 @@ export default function BuySatsIcon(props) {
<g>
<polygon
fill={props.color}
points='178.391,189.96 174.934,186.875 169.489,182.018 166.596,179.436 161.154,174.579 158.645,172.34
157.717,171.51 152.893,176.918 155.712,179.436 161.154,184.291 164.049,186.875 169.491,191.73 172.947,194.816
points='178.391,189.96 174.934,186.875 169.489,182.018 166.596,179.436 161.154,174.579 158.645,172.34
157.717,171.51 152.893,176.918 155.712,179.436 161.154,184.291 164.049,186.875 169.491,191.73 172.947,194.816
177.943,199.271 180.826,197.5 184.389,195.311 183.834,194.816 '
/>
<polygon
fill={props.color}
points='166.034,194.816 160.588,189.96 157.695,187.377 152.256,182.521 150.52,180.975 149.592,180.145
144.766,185.551 146.813,187.377 152.256,192.232 155.146,194.814 160.59,199.672 164.049,202.756 167.4,205.748 173.85,201.787
points='166.034,194.816 160.588,189.96 157.695,187.377 152.256,182.521 150.52,180.975 149.592,180.145
144.766,185.551 146.813,187.377 152.256,192.232 155.146,194.814 160.59,199.672 164.049,202.756 167.4,205.748 173.85,201.787
169.491,197.9 '
/>
<polygon
fill={props.color}
points='157.695,202.255 152.253,197.398 149.358,194.816 143.916,189.96 142.014,188.26 137.189,193.668
138.476,194.816 143.92,199.672 146.813,202.254 152.256,207.109 155.712,210.195 157.527,211.816 163.973,207.854
points='157.695,202.255 152.253,197.398 149.358,194.816 143.916,189.96 142.014,188.26 137.189,193.668
138.476,194.816 143.92,199.672 146.813,202.254 152.256,207.109 155.712,210.195 157.527,211.816 163.973,207.854
161.154,205.34 '
/>
@ -38,20 +38,20 @@ export default function BuySatsIcon(props) {
/>
<polygon
fill={props.color}
points='186.961,57.038 189.855,59.621 195.298,64.477 198.756,67.562 204.199,72.418 205.449,73.534
210.271,68.126 209.643,67.562 204.199,62.705 200.742,59.621 195.298,54.764 192.402,52.182 186.963,47.326 184.453,45.086
points='186.961,57.038 189.855,59.621 195.298,64.477 198.756,67.562 204.199,72.418 205.449,73.534
210.271,68.126 209.643,67.562 204.199,62.705 200.742,59.621 195.298,54.764 192.402,52.182 186.963,47.326 184.453,45.086
183.525,44.256 178.695,49.665 181.52,52.182 '
/>
<polygon
fill={props.color}
points='178.062,64.979 180.954,67.562 186.398,72.418 189.855,75.503 195.298,80.359 196.396,81.34
197.325,82.166 202.146,76.76 200.742,75.503 195.298,70.648 191.841,67.562 186.398,62.705 183.505,60.124 178.062,55.268
points='178.062,64.979 180.954,67.562 186.398,72.418 189.855,75.503 195.298,80.359 196.396,81.34
197.325,82.166 202.146,76.76 200.742,75.503 195.298,70.648 191.841,67.562 186.398,62.705 183.505,60.124 178.062,55.268
176.328,53.72 175.396,52.89 170.572,58.299 172.618,60.124 '
/>
<polygon
fill={props.color}
points='169.723,72.418 172.618,75 178.062,79.856 181.52,82.941 186.962,87.798 188.818,89.456
189.747,90.282 194.57,84.875 192.402,82.942 186.962,78.085 183.505,75 178.062,70.144 175.167,67.562 169.723,62.705
points='169.723,72.418 172.618,75 178.062,79.856 181.52,82.941 186.962,87.798 188.818,89.456
189.747,90.282 194.57,84.875 192.402,82.942 186.962,78.085 183.505,75 178.062,70.144 175.167,67.562 169.723,62.705
167.82,61.006 162.998,66.415 164.282,67.562 '
/>
@ -69,17 +69,17 @@ export default function BuySatsIcon(props) {
/>
<polygon
fill={props.color}
points='88.684,102.6 87.755,101.77 82.927,107.177 105.743,127.533 109.679,131.046 114.503,125.64
points='88.684,102.6 87.755,101.77 82.927,107.177 105.743,127.533 109.679,131.046 114.503,125.64
112.599,123.938 '
/>
<polygon
fill={props.color}
points='80.557,111.232 79.631,110.403 74.803,115.811 94.669,133.537 100.627,138.853 101.553,139.68
points='80.557,111.232 79.631,110.403 74.803,115.811 94.669,133.537 100.627,138.853 101.553,139.68
106.378,134.272 101.42,129.848 '
/>
<polygon
fill={props.color}
points='72.049,118.52 67.228,123.928 84.469,139.311 92.184,146.195 93.051,146.968 93.978,147.795
points='72.049,118.52 67.228,123.928 84.469,139.311 92.184,146.195 93.051,146.968 93.978,147.795
98.659,142.548 98.802,142.389 91.107,135.525 '
/>

View File

@ -6,7 +6,7 @@ export default function GoldIcon(props) {
<SvgIcon {...props} x='0px' y='0px' viewBox='0 0 511.882 511.882'>
<polygon
style={{ fill: '#F6BB42' }}
points='350.216,176.572 278.374,158.615 37.038,264.123 0,338.207 125.753,374.324 386.13,258.531
points='350.216,176.572 278.374,158.615 37.038,264.123 0,338.207 125.753,374.324 386.13,258.531
'
/>
<polygon
@ -19,7 +19,7 @@ export default function GoldIcon(props) {
/>
<polygon
style={{ fill: '#F6BB42' }}
points='475.969,212.682 404.127,194.717 162.791,300.232 125.753,374.324 251.504,410.41
points='475.969,212.682 404.127,194.717 162.791,300.232 125.753,374.324 251.504,410.41
511.882,294.625 '
/>
<polygon
@ -32,7 +32,7 @@ export default function GoldIcon(props) {
/>
<polygon
style={{ fill: '#F6BB42' }}
points='396.316,119.429 324.488,101.473 103.867,198.435 66.843,272.519 192.596,308.621
points='396.316,119.429 324.488,101.473 103.867,198.435 66.843,272.519 192.596,308.621
432.245,201.379 '
/>
<polygon

View File

@ -7,19 +7,19 @@ export default function SellSatsIcon(props) {
<g>
<polygon
fill={props.color}
points='121.609,110.04 125.066,113.125 130.511,117.982 133.404,120.564 138.846,125.421 141.355,127.66
142.283,128.49 147.107,123.082 144.288,120.564 138.846,115.709 135.951,113.125 130.509,108.27 127.053,105.184
points='121.609,110.04 125.066,113.125 130.511,117.982 133.404,120.564 138.846,125.421 141.355,127.66
142.283,128.49 147.107,123.082 144.288,120.564 138.846,115.709 135.951,113.125 130.509,108.27 127.053,105.184
122.057,100.729 119.174,102.5 115.611,104.689 116.166,105.184 '
/>
<polygon
fill={props.color}
points='133.966,105.184 139.412,110.04 142.305,112.623 147.744,117.479 149.48,119.025 150.408,119.855
155.234,114.449 153.188,112.623 147.744,107.768 144.854,105.186 139.41,100.328 135.951,97.244 132.6,94.252 126.15,98.213
points='133.966,105.184 139.412,110.04 142.305,112.623 147.744,117.479 149.48,119.025 150.408,119.855
155.234,114.449 153.188,112.623 147.744,107.768 144.854,105.186 139.41,100.328 135.951,97.244 132.6,94.252 126.15,98.213
130.509,102.1 '
/>
<polygon
fill={props.color}
points='142.305,97.745 147.747,102.602 150.643,105.184 156.084,110.04 157.986,111.74 162.811,106.332
points='142.305,97.745 147.747,102.602 150.643,105.184 156.084,110.04 157.986,111.74 162.811,106.332
161.523,105.184 156.08,100.328 153.188,97.746 147.744,92.891 144.288,89.805 142.473,88.184 136.027,92.146 138.846,94.66 '
/>
@ -37,20 +37,20 @@ export default function SellSatsIcon(props) {
/>
<polygon
fill={props.color}
points='113.039,242.962 110.145,240.379 104.702,235.523 101.244,232.438 95.801,227.582 94.551,226.466
89.729,231.874 90.357,232.438 95.801,237.295 99.258,240.379 104.702,245.236 107.598,247.818 113.037,252.674 115.547,254.914
points='113.039,242.962 110.145,240.379 104.702,235.523 101.244,232.438 95.801,227.582 94.551,226.466
89.729,231.874 90.357,232.438 95.801,237.295 99.258,240.379 104.702,245.236 107.598,247.818 113.037,252.674 115.547,254.914
116.475,255.744 121.305,250.335 118.48,247.818 '
/>
<polygon
fill={props.color}
points='121.938,235.021 119.046,232.438 113.602,227.582 110.145,224.497 104.702,219.641
103.604,218.66 102.675,217.834 97.854,223.24 99.258,224.497 104.702,229.352 108.159,232.438 113.602,237.295 116.495,239.876
points='121.938,235.021 119.046,232.438 113.602,227.582 110.145,224.497 104.702,219.641
103.604,218.66 102.675,217.834 97.854,223.24 99.258,224.497 104.702,229.352 108.159,232.438 113.602,237.295 116.495,239.876
121.938,244.732 123.672,246.279 124.604,247.109 129.428,241.701 127.382,239.876 '
/>
<polygon
fill={props.color}
points='130.277,227.582 127.382,225 121.938,220.145 118.48,217.059 113.038,212.202 111.182,210.544
110.253,209.718 105.43,215.125 107.598,217.059 113.038,221.915 116.495,225 121.938,229.855 124.833,232.438 130.277,237.295
points='130.277,227.582 127.382,225 121.938,220.145 118.48,217.059 113.038,212.202 111.182,210.544
110.253,209.718 105.43,215.125 107.598,217.059 113.038,221.915 116.495,225 121.938,229.855 124.833,232.438 130.277,237.295
132.18,238.994 137.002,233.585 135.718,232.438 '
/>
@ -68,17 +68,17 @@ export default function SellSatsIcon(props) {
/>
<polygon
fill={props.color}
points='211.316,197.4 212.245,198.23 217.073,192.823 194.257,172.467 190.32,168.954 185.497,174.359
points='211.316,197.4 212.245,198.23 217.073,192.823 194.257,172.467 190.32,168.954 185.497,174.359
187.4,176.062 '
/>
<polygon
fill={props.color}
points='219.443,188.768 220.369,189.598 225.197,184.189 205.331,166.463 199.373,161.146
points='219.443,188.768 220.369,189.598 225.197,184.189 205.331,166.463 199.373,161.146
198.447,160.32 193.622,165.729 198.58,170.152 '
/>
<polygon
fill={props.color}
points='227.951,181.48 232.771,176.072 215.531,160.689 207.816,153.805 206.949,153.032
points='227.951,181.48 232.771,176.072 215.531,160.689 207.816,153.805 206.949,153.032
206.021,152.205 201.341,157.452 201.198,157.611 208.893,164.475 '
/>
@ -92,7 +92,7 @@ export default function SellSatsIcon(props) {
/>
<polygon
fill={props.color}
points='230.471,156.062 227.62,153.475 225.578,151.619 219.378,158.445 219.086,158.766 223.98,163.208
points='230.471,156.062 227.62,153.475 225.578,151.619 219.378,158.445 219.086,158.766 223.98,163.208
'
/>
<path

View File

@ -8,7 +8,7 @@ code="{\n"
html=""
cd webp && for f in *.webp
do
title=$(echo $f | sed 's/\.[^.]*$//')
title=$(echo $f | sed 's/\.[^.]*$//')
key=$(echo $title | sed 's/.*/\L&/' | sed 's/ //' | sed 's/[^[:alnum:]]//g')
if [ "$OS" = "Darwin" ]; then

View File

@ -1,29 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g>
<path d="M602.336,731.51c16.747-16.94,29.249-35.524,37.504-56.694c18.792-48.193,16.967-94.996-10.46-139.81
c-10.255-16.756-24.983-29.293-39.461-42.103c-67.731-59.932-135.412-119.919-203.104-179.895
c-0.368-0.326-0.644-0.755-1.331-1.579c18.529-12.477,36.983-24.903,55.872-37.62c-9.61-6.799-18.917-13.385-28.648-20.27
c11.763-14.483,23.273-28.656,34.738-42.773c13.313,7.081,24.784,5.523,32.075-4.132c6.395-8.467,5.794-20.59-1.412-28.52
c-7.011-7.713-19.494-9.295-28.343-3.592c-10.274,6.623-12.651,17.652-6.576,31.65c-22.681,16.451-45.436,32.955-68.921,49.989
c9.33,6.786,18.246,13.271,27.611,20.084c-9.232,8.573-18.09,16.797-27.064,25.131c-68.348-47.917-134.895-38.158-199.771,10.745
c0-100.562,0-201.3,0-302.535c1.811-0.082,3.562-0.23,5.313-0.23c97.991-0.011,195.983-0.214,293.973,0.094
c37.661,0.119,75.351,1.898,112.093,11.01c52.81,13.096,95.741,40.904,125.379,87.462c13.802,21.681,20.643,45.764,23.136,71.039
c3.595,36.436,1.313,72.517-8.858,107.873c-11.943,41.515-37.09,74.011-69.641,101.357c-16.133,13.552-33.803,24.811-52.581,34.343
c-1.3,0.659-2.533,1.445-4.148,2.375c80.735,102.152,161.255,204.034,242.318,306.6C761.843,731.51,682.637,731.51,602.336,731.51z
"/>
<path d="M282.877,389.186c25.706-0.109,46.42,20.376,46.55,46.038c0.131,25.994-20.404,46.852-46.238,46.96
c-25.588,0.108-46.928-21.172-46.758-46.627C236.602,409.95,257.291,389.295,282.877,389.186z"/>
<path d="M445.93,607.736c0.705-26.031,21.515-46.381,46.915-45.881c26.295,0.52,46.657,21.756,45.918,47.887
c-0.721,25.455-21.862,45.67-47.178,45.104C465.779,654.273,445.244,633.082,445.93,607.736z"/>
<path d="M175.223,550.758c23.365,20.689,46.15,40.865,69.337,61.396c-4.974,5.619-9.792,11.063-14.91,16.846
c-5.634-4.988-11.167-9.738-16.519-14.684c-3.131-2.896-5.343-2.492-8.415,0.467c-9.944,9.58-20.234,18.801-29.493,27.332
C175.223,613.414,175.223,582.512,175.223,550.758z"/>
<path d="M379.124,731.533c-30.045,0-59.057,0-89.151,0c8.955-9.23,17.236-17.769,25.724-26.519
c-6.368-5.709-12.409-11.127-18.739-16.803c4.904-5.559,9.594-10.877,14.65-16.608C334.013,691.492,356.2,711.186,379.124,731.533z
"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g>
<path d="M602.336,731.51c16.747-16.94,29.249-35.524,37.504-56.694c18.792-48.193,16.967-94.996-10.46-139.81
c-10.255-16.756-24.983-29.293-39.461-42.103c-67.731-59.932-135.412-119.919-203.104-179.895
c-0.368-0.326-0.644-0.755-1.331-1.579c18.529-12.477,36.983-24.903,55.872-37.62c-9.61-6.799-18.917-13.385-28.648-20.27
c11.763-14.483,23.273-28.656,34.738-42.773c13.313,7.081,24.784,5.523,32.075-4.132c6.395-8.467,5.794-20.59-1.412-28.52
c-7.011-7.713-19.494-9.295-28.343-3.592c-10.274,6.623-12.651,17.652-6.576,31.65c-22.681,16.451-45.436,32.955-68.921,49.989
c9.33,6.786,18.246,13.271,27.611,20.084c-9.232,8.573-18.09,16.797-27.064,25.131c-68.348-47.917-134.895-38.158-199.771,10.745
c0-100.562,0-201.3,0-302.535c1.811-0.082,3.562-0.23,5.313-0.23c97.991-0.011,195.983-0.214,293.973,0.094
c37.661,0.119,75.351,1.898,112.093,11.01c52.81,13.096,95.741,40.904,125.379,87.462c13.802,21.681,20.643,45.764,23.136,71.039
c3.595,36.436,1.313,72.517-8.858,107.873c-11.943,41.515-37.09,74.011-69.641,101.357c-16.133,13.552-33.803,24.811-52.581,34.343
c-1.3,0.659-2.533,1.445-4.148,2.375c80.735,102.152,161.255,204.034,242.318,306.6C761.843,731.51,682.637,731.51,602.336,731.51z
"/>
<path d="M282.877,389.186c25.706-0.109,46.42,20.376,46.55,46.038c0.131,25.994-20.404,46.852-46.238,46.96
c-25.588,0.108-46.928-21.172-46.758-46.627C236.602,409.95,257.291,389.295,282.877,389.186z"/>
<path d="M445.93,607.736c0.705-26.031,21.515-46.381,46.915-45.881c26.295,0.52,46.657,21.756,45.918,47.887
c-0.721,25.455-21.862,45.67-47.178,45.104C465.779,654.273,445.244,633.082,445.93,607.736z"/>
<path d="M175.223,550.758c23.365,20.689,46.15,40.865,69.337,61.396c-4.974,5.619-9.792,11.063-14.91,16.846
c-5.634-4.988-11.167-9.738-16.519-14.684c-3.131-2.896-5.343-2.492-8.415,0.467c-9.944,9.58-20.234,18.801-29.493,27.332
C175.223,613.414,175.223,582.512,175.223,550.758z"/>
<path d="M379.124,731.533c-30.045,0-59.057,0-89.151,0c8.955-9.23,17.236-17.769,25.724-26.519
c-6.368-5.709-12.409-11.127-18.739-16.803c4.904-5.559,9.594-10.877,14.65-16.608C334.013,691.492,356.2,711.186,379.124,731.533z
"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View File

@ -1,78 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g>
<path d="M602.336,731.51c16.747-16.94,29.249-35.524,37.504-56.694c18.792-48.193,16.967-94.996-10.46-139.81
c-10.255-16.756-24.983-29.293-39.461-42.103c-67.731-59.932-135.412-119.919-203.104-179.895
c-0.368-0.326-0.644-0.755-1.331-1.579c18.529-12.477,36.983-24.903,55.872-37.62c-9.61-6.799-18.917-13.385-28.648-20.27
c11.763-14.483,23.273-28.656,34.738-42.773c13.313,7.081,24.784,5.523,32.075-4.132c6.395-8.467,5.794-20.59-1.412-28.52
c-7.011-7.713-19.494-9.295-28.343-3.592c-10.274,6.623-12.651,17.652-6.576,31.65c-22.681,16.451-45.436,32.955-68.921,49.989
c9.33,6.786,18.246,13.271,27.611,20.084c-9.232,8.573-18.09,16.797-27.064,25.131c-68.348-47.917-134.895-38.158-199.771,10.745
c0-100.562,0-201.3,0-302.535c1.811-0.082,3.562-0.23,5.313-0.23c97.991-0.011,195.983-0.214,293.973,0.094
c37.661,0.119,75.351,1.898,112.093,11.01c52.81,13.096,95.741,40.904,125.379,87.462c13.802,21.681,20.643,45.764,23.136,71.039
c3.595,36.436,1.313,72.517-8.858,107.873c-11.943,41.515-37.09,74.011-69.641,101.357c-16.133,13.552-33.803,24.811-52.581,34.343
c-1.3,0.659-2.533,1.445-4.148,2.375c80.735,102.152,161.255,204.034,242.318,306.6C761.843,731.51,682.637,731.51,602.336,731.51z
"/>
<path d="M282.877,389.186c25.706-0.109,46.42,20.376,46.55,46.038c0.131,25.994-20.404,46.852-46.238,46.96
c-25.588,0.108-46.928-21.172-46.758-46.627C236.602,409.95,257.291,389.295,282.877,389.186z"/>
<path d="M445.93,607.736c0.705-26.031,21.515-46.381,46.915-45.881c26.295,0.52,46.657,21.756,45.918,47.887
c-0.721,25.455-21.862,45.67-47.178,45.104C465.779,654.273,445.244,633.082,445.93,607.736z"/>
<path d="M175.223,550.758c23.365,20.689,46.15,40.865,69.337,61.396c-4.974,5.619-9.792,11.063-14.91,16.846
c-5.634-4.988-11.167-9.738-16.519-14.684c-3.131-2.896-5.343-2.492-8.415,0.467c-9.944,9.58-20.234,18.801-29.493,27.332
C175.223,613.414,175.223,582.512,175.223,550.758z"/>
<path d="M379.124,731.533c-30.045,0-59.057,0-89.151,0c8.955-9.23,17.236-17.769,25.724-26.519
c-6.368-5.709-12.409-11.127-18.739-16.803c4.904-5.559,9.594-10.877,14.65-16.608C334.013,691.492,356.2,711.186,379.124,731.533z
"/>
</g>
<g>
<path d="M208.875,819.362h-15.495v34.557h-19.45v-94.397h35.075c11.151,0,19.752,2.485,25.804,7.455
c6.051,4.972,9.077,11.995,9.077,21.071c0,6.44-1.394,11.811-4.182,16.111s-7.013,7.727-12.675,10.276l20.422,38.576v0.907h-20.876
L208.875,819.362z M193.379,803.608h15.69c4.884,0,8.666-1.242,11.346-3.729c2.68-2.484,4.02-5.91,4.02-10.276
c0-4.451-1.264-7.952-3.792-10.503c-2.529-2.55-6.409-3.825-11.638-3.825h-15.625V803.608z"/>
<path d="M336.208,808.859c0,9.294-1.643,17.44-4.927,24.442c-3.285,7.002-7.985,12.405-14.101,16.209
c-6.117,3.804-13.129,5.705-21.039,5.705c-7.824,0-14.805-1.881-20.941-5.641c-6.138-3.761-10.892-9.131-14.263-16.111
c-3.372-6.979-5.08-15.009-5.122-24.086v-4.668c0-9.292,1.674-17.473,5.024-24.539c3.349-7.067,8.082-12.491,14.199-16.273
c6.116-3.781,13.106-5.673,20.974-5.673c7.866,0,14.857,1.892,20.974,5.673c6.116,3.782,10.849,9.206,14.199,16.273
c3.349,7.066,5.024,15.226,5.024,24.475V808.859z M316.499,804.58c0-9.896-1.773-17.418-5.316-22.562
c-3.545-5.144-8.602-7.716-15.171-7.716c-6.527,0-11.563,2.54-15.106,7.618c-3.545,5.079-5.339,12.524-5.381,22.335v4.604
c0,9.639,1.772,17.116,5.316,22.433c3.543,5.316,8.644,7.975,15.301,7.975c6.526,0,11.541-2.561,15.042-7.683
s5.272-12.588,5.316-22.4V804.58z"/>
<path d="M350.342,853.919v-94.397h33.065c11.453,0,20.141,2.193,26.063,6.58c5.921,4.388,8.882,10.817,8.882,19.288
c0,4.626-1.189,8.699-3.566,12.222c-2.377,3.522-5.684,6.105-9.919,7.747c4.84,1.211,8.655,3.653,11.443,7.326
c2.788,3.675,4.182,8.169,4.182,13.485c0,9.077-2.896,15.949-8.688,20.617c-5.792,4.668-14.047,7.046-24.767,7.132H350.342z
M369.792,799.069h14.393c9.811-0.172,14.717-4.084,14.717-11.734c0-4.279-1.243-7.358-3.728-9.239
c-2.486-1.88-6.408-2.82-11.767-2.82h-13.615V799.069z M369.792,812.814v25.479h16.662c4.581,0,8.158-1.091,10.73-3.274
c2.571-2.182,3.858-5.196,3.858-9.044c0-8.645-4.474-13.031-13.421-13.161H369.792z"/>
<path d="M512.621,808.859c0,9.294-1.645,17.44-4.928,24.442c-3.285,7.002-7.986,12.405-14.102,16.209
c-6.117,3.804-13.129,5.705-21.039,5.705c-7.824,0-14.805-1.881-20.941-5.641c-6.138-3.761-10.892-9.131-14.263-16.111
c-3.372-6.979-5.08-15.009-5.122-24.086v-4.668c0-9.292,1.674-17.473,5.024-24.539c3.349-7.067,8.082-12.491,14.199-16.273
c6.116-3.781,13.106-5.673,20.974-5.673c7.866,0,14.857,1.892,20.974,5.673c6.116,3.782,10.849,9.206,14.199,16.273
c3.35,7.066,5.025,15.226,5.025,24.475V808.859z M492.911,804.58c0-9.896-1.773-17.418-5.316-22.562
c-3.545-5.144-8.602-7.716-15.171-7.716c-6.527,0-11.563,2.54-15.106,7.618c-3.545,5.079-5.339,12.524-5.381,22.335v4.604
c0,9.639,1.772,17.116,5.316,22.433c3.543,5.316,8.644,7.975,15.301,7.975c6.526,0,11.541-2.561,15.042-7.683
s5.272-12.588,5.316-22.4V804.58z"/>
<path d="M575.704,829.152c0-3.673-1.297-6.493-3.891-8.461c-2.593-1.966-7.261-4.041-14.004-6.224
c-6.742-2.183-12.081-4.333-16.014-6.451c-10.72-5.791-16.079-13.593-16.079-23.405c0-5.1,1.437-9.648,4.312-13.647
c2.874-3.997,7.002-7.12,12.384-9.368c5.381-2.247,11.421-3.371,18.121-3.371c6.742,0,12.75,1.222,18.023,3.663
c5.272,2.442,9.368,5.89,12.286,10.341c2.917,4.452,4.376,9.509,4.376,15.171h-19.45c0-4.321-1.361-7.683-4.084-10.081
c-2.724-2.399-6.549-3.599-11.476-3.599c-4.756,0-8.451,1.005-11.087,3.015c-2.637,2.01-3.955,4.658-3.955,7.942
c0,3.069,1.545,5.641,4.636,7.715c3.09,2.075,7.64,4.02,13.647,5.835c11.064,3.329,19.126,7.456,24.184,12.384
c5.057,4.927,7.585,11.065,7.585,18.412c0,8.169-3.091,14.578-9.271,19.224c-6.181,4.646-14.501,6.97-24.961,6.97
c-7.261,0-13.874-1.329-19.839-3.987s-10.514-6.299-13.647-10.925c-3.134-4.624-4.7-9.984-4.7-16.078h19.515
c0,10.416,6.225,15.624,18.672,15.624c4.625,0,8.234-0.939,10.827-2.82C574.407,835.149,575.704,832.523,575.704,829.152z"/>
<path d="M661.673,834.469H627.57l-6.483,19.45h-20.682l35.14-94.397h18.023l35.335,94.397h-20.683L661.673,834.469z
M632.822,818.714h23.599l-11.864-35.334L632.822,818.714z"/>
<path d="M760.999,775.275h-28.916v78.644h-19.45v-78.644h-28.526v-15.754h76.893V775.275z"/>
<path d="M819.997,829.152c0-3.673-1.297-6.493-3.891-8.461c-2.593-1.966-7.261-4.041-14.004-6.224
c-6.742-2.183-12.081-4.333-16.014-6.451c-10.72-5.791-16.079-13.593-16.079-23.405c0-5.1,1.437-9.648,4.312-13.647
c2.874-3.997,7.002-7.12,12.384-9.368c5.381-2.247,11.421-3.371,18.121-3.371c6.742,0,12.75,1.222,18.023,3.663
c5.272,2.442,9.368,5.89,12.286,10.341c2.917,4.452,4.376,9.509,4.376,15.171h-19.45c0-4.321-1.361-7.683-4.084-10.081
c-2.724-2.399-6.549-3.599-11.476-3.599c-4.756,0-8.451,1.005-11.087,3.015c-2.637,2.01-3.955,4.658-3.955,7.942
c0,3.069,1.545,5.641,4.636,7.715c3.09,2.075,7.64,4.02,13.647,5.835c11.064,3.329,19.126,7.456,24.184,12.384
c5.057,4.927,7.585,11.065,7.585,18.412c0,8.169-3.091,14.578-9.271,19.224c-6.181,4.646-14.501,6.97-24.961,6.97
c-7.261,0-13.874-1.329-19.839-3.987s-10.514-6.299-13.647-10.925c-3.134-4.624-4.7-9.984-4.7-16.078h19.515
c0,10.416,6.225,15.624,18.672,15.624c4.625,0,8.234-0.939,10.827-2.82C818.7,835.149,819.997,832.523,819.997,829.152z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1000px" height="1000px" viewBox="0 0 1000 1000" enable-background="new 0 0 1000 1000" xml:space="preserve">
<g>
<path d="M602.336,731.51c16.747-16.94,29.249-35.524,37.504-56.694c18.792-48.193,16.967-94.996-10.46-139.81
c-10.255-16.756-24.983-29.293-39.461-42.103c-67.731-59.932-135.412-119.919-203.104-179.895
c-0.368-0.326-0.644-0.755-1.331-1.579c18.529-12.477,36.983-24.903,55.872-37.62c-9.61-6.799-18.917-13.385-28.648-20.27
c11.763-14.483,23.273-28.656,34.738-42.773c13.313,7.081,24.784,5.523,32.075-4.132c6.395-8.467,5.794-20.59-1.412-28.52
c-7.011-7.713-19.494-9.295-28.343-3.592c-10.274,6.623-12.651,17.652-6.576,31.65c-22.681,16.451-45.436,32.955-68.921,49.989
c9.33,6.786,18.246,13.271,27.611,20.084c-9.232,8.573-18.09,16.797-27.064,25.131c-68.348-47.917-134.895-38.158-199.771,10.745
c0-100.562,0-201.3,0-302.535c1.811-0.082,3.562-0.23,5.313-0.23c97.991-0.011,195.983-0.214,293.973,0.094
c37.661,0.119,75.351,1.898,112.093,11.01c52.81,13.096,95.741,40.904,125.379,87.462c13.802,21.681,20.643,45.764,23.136,71.039
c3.595,36.436,1.313,72.517-8.858,107.873c-11.943,41.515-37.09,74.011-69.641,101.357c-16.133,13.552-33.803,24.811-52.581,34.343
c-1.3,0.659-2.533,1.445-4.148,2.375c80.735,102.152,161.255,204.034,242.318,306.6C761.843,731.51,682.637,731.51,602.336,731.51z
"/>
<path d="M282.877,389.186c25.706-0.109,46.42,20.376,46.55,46.038c0.131,25.994-20.404,46.852-46.238,46.96
c-25.588,0.108-46.928-21.172-46.758-46.627C236.602,409.95,257.291,389.295,282.877,389.186z"/>
<path d="M445.93,607.736c0.705-26.031,21.515-46.381,46.915-45.881c26.295,0.52,46.657,21.756,45.918,47.887
c-0.721,25.455-21.862,45.67-47.178,45.104C465.779,654.273,445.244,633.082,445.93,607.736z"/>
<path d="M175.223,550.758c23.365,20.689,46.15,40.865,69.337,61.396c-4.974,5.619-9.792,11.063-14.91,16.846
c-5.634-4.988-11.167-9.738-16.519-14.684c-3.131-2.896-5.343-2.492-8.415,0.467c-9.944,9.58-20.234,18.801-29.493,27.332
C175.223,613.414,175.223,582.512,175.223,550.758z"/>
<path d="M379.124,731.533c-30.045,0-59.057,0-89.151,0c8.955-9.23,17.236-17.769,25.724-26.519
c-6.368-5.709-12.409-11.127-18.739-16.803c4.904-5.559,9.594-10.877,14.65-16.608C334.013,691.492,356.2,711.186,379.124,731.533z
"/>
</g>
<g>
<path d="M208.875,819.362h-15.495v34.557h-19.45v-94.397h35.075c11.151,0,19.752,2.485,25.804,7.455
c6.051,4.972,9.077,11.995,9.077,21.071c0,6.44-1.394,11.811-4.182,16.111s-7.013,7.727-12.675,10.276l20.422,38.576v0.907h-20.876
L208.875,819.362z M193.379,803.608h15.69c4.884,0,8.666-1.242,11.346-3.729c2.68-2.484,4.02-5.91,4.02-10.276
c0-4.451-1.264-7.952-3.792-10.503c-2.529-2.55-6.409-3.825-11.638-3.825h-15.625V803.608z"/>
<path d="M336.208,808.859c0,9.294-1.643,17.44-4.927,24.442c-3.285,7.002-7.985,12.405-14.101,16.209
c-6.117,3.804-13.129,5.705-21.039,5.705c-7.824,0-14.805-1.881-20.941-5.641c-6.138-3.761-10.892-9.131-14.263-16.111
c-3.372-6.979-5.08-15.009-5.122-24.086v-4.668c0-9.292,1.674-17.473,5.024-24.539c3.349-7.067,8.082-12.491,14.199-16.273
c6.116-3.781,13.106-5.673,20.974-5.673c7.866,0,14.857,1.892,20.974,5.673c6.116,3.782,10.849,9.206,14.199,16.273
c3.349,7.066,5.024,15.226,5.024,24.475V808.859z M316.499,804.58c0-9.896-1.773-17.418-5.316-22.562
c-3.545-5.144-8.602-7.716-15.171-7.716c-6.527,0-11.563,2.54-15.106,7.618c-3.545,5.079-5.339,12.524-5.381,22.335v4.604
c0,9.639,1.772,17.116,5.316,22.433c3.543,5.316,8.644,7.975,15.301,7.975c6.526,0,11.541-2.561,15.042-7.683
s5.272-12.588,5.316-22.4V804.58z"/>
<path d="M350.342,853.919v-94.397h33.065c11.453,0,20.141,2.193,26.063,6.58c5.921,4.388,8.882,10.817,8.882,19.288
c0,4.626-1.189,8.699-3.566,12.222c-2.377,3.522-5.684,6.105-9.919,7.747c4.84,1.211,8.655,3.653,11.443,7.326
c2.788,3.675,4.182,8.169,4.182,13.485c0,9.077-2.896,15.949-8.688,20.617c-5.792,4.668-14.047,7.046-24.767,7.132H350.342z
M369.792,799.069h14.393c9.811-0.172,14.717-4.084,14.717-11.734c0-4.279-1.243-7.358-3.728-9.239
c-2.486-1.88-6.408-2.82-11.767-2.82h-13.615V799.069z M369.792,812.814v25.479h16.662c4.581,0,8.158-1.091,10.73-3.274
c2.571-2.182,3.858-5.196,3.858-9.044c0-8.645-4.474-13.031-13.421-13.161H369.792z"/>
<path d="M512.621,808.859c0,9.294-1.645,17.44-4.928,24.442c-3.285,7.002-7.986,12.405-14.102,16.209
c-6.117,3.804-13.129,5.705-21.039,5.705c-7.824,0-14.805-1.881-20.941-5.641c-6.138-3.761-10.892-9.131-14.263-16.111
c-3.372-6.979-5.08-15.009-5.122-24.086v-4.668c0-9.292,1.674-17.473,5.024-24.539c3.349-7.067,8.082-12.491,14.199-16.273
c6.116-3.781,13.106-5.673,20.974-5.673c7.866,0,14.857,1.892,20.974,5.673c6.116,3.782,10.849,9.206,14.199,16.273
c3.35,7.066,5.025,15.226,5.025,24.475V808.859z M492.911,804.58c0-9.896-1.773-17.418-5.316-22.562
c-3.545-5.144-8.602-7.716-15.171-7.716c-6.527,0-11.563,2.54-15.106,7.618c-3.545,5.079-5.339,12.524-5.381,22.335v4.604
c0,9.639,1.772,17.116,5.316,22.433c3.543,5.316,8.644,7.975,15.301,7.975c6.526,0,11.541-2.561,15.042-7.683
s5.272-12.588,5.316-22.4V804.58z"/>
<path d="M575.704,829.152c0-3.673-1.297-6.493-3.891-8.461c-2.593-1.966-7.261-4.041-14.004-6.224
c-6.742-2.183-12.081-4.333-16.014-6.451c-10.72-5.791-16.079-13.593-16.079-23.405c0-5.1,1.437-9.648,4.312-13.647
c2.874-3.997,7.002-7.12,12.384-9.368c5.381-2.247,11.421-3.371,18.121-3.371c6.742,0,12.75,1.222,18.023,3.663
c5.272,2.442,9.368,5.89,12.286,10.341c2.917,4.452,4.376,9.509,4.376,15.171h-19.45c0-4.321-1.361-7.683-4.084-10.081
c-2.724-2.399-6.549-3.599-11.476-3.599c-4.756,0-8.451,1.005-11.087,3.015c-2.637,2.01-3.955,4.658-3.955,7.942
c0,3.069,1.545,5.641,4.636,7.715c3.09,2.075,7.64,4.02,13.647,5.835c11.064,3.329,19.126,7.456,24.184,12.384
c5.057,4.927,7.585,11.065,7.585,18.412c0,8.169-3.091,14.578-9.271,19.224c-6.181,4.646-14.501,6.97-24.961,6.97
c-7.261,0-13.874-1.329-19.839-3.987s-10.514-6.299-13.647-10.925c-3.134-4.624-4.7-9.984-4.7-16.078h19.515
c0,10.416,6.225,15.624,18.672,15.624c4.625,0,8.234-0.939,10.827-2.82C574.407,835.149,575.704,832.523,575.704,829.152z"/>
<path d="M661.673,834.469H627.57l-6.483,19.45h-20.682l35.14-94.397h18.023l35.335,94.397h-20.683L661.673,834.469z
M632.822,818.714h23.599l-11.864-35.334L632.822,818.714z"/>
<path d="M760.999,775.275h-28.916v78.644h-19.45v-78.644h-28.526v-15.754h76.893V775.275z"/>
<path d="M819.997,829.152c0-3.673-1.297-6.493-3.891-8.461c-2.593-1.966-7.261-4.041-14.004-6.224
c-6.742-2.183-12.081-4.333-16.014-6.451c-10.72-5.791-16.079-13.593-16.079-23.405c0-5.1,1.437-9.648,4.312-13.647
c2.874-3.997,7.002-7.12,12.384-9.368c5.381-2.247,11.421-3.371,18.121-3.371c6.742,0,12.75,1.222,18.023,3.663
c5.272,2.442,9.368,5.89,12.286,10.341c2.917,4.452,4.376,9.509,4.376,15.171h-19.45c0-4.321-1.361-7.683-4.084-10.081
c-2.724-2.399-6.549-3.599-11.476-3.599c-4.756,0-8.451,1.005-11.087,3.015c-2.637,2.01-3.955,4.658-3.955,7.942
c0,3.069,1.545,5.641,4.636,7.715c3.09,2.075,7.64,4.02,13.647,5.835c11.064,3.329,19.126,7.456,24.184,12.384
c5.057,4.927,7.585,11.065,7.585,18.412c0,8.169-3.091,14.578-9.271,19.224c-6.181,4.646-14.501,6.97-24.961,6.97
c-7.261,0-13.874-1.329-19.839-3.987s-10.514-6.299-13.647-10.925c-3.134-4.624-4.7-9.984-4.7-16.078h19.515
c0,10.416,6.225,15.624,18.672,15.624c4.625,0,8.234-0.939,10.827-2.82C818.7,835.149,819.997,832.523,819.997,829.152z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.4 KiB

View File

@ -1,73 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="2000px" height="1000px" viewBox="0 0 2000 1000" enable-background="new 0 0 2000 1000" xml:space="preserve">
<g>
<path d="M455.556,849.519c10.487-10.606,18.315-22.243,23.484-35.499c11.767-30.177,10.624-59.483-6.55-87.546
c-6.421-10.492-15.644-18.342-24.709-26.363c-42.412-37.528-84.791-75.089-127.178-112.646c-0.23-0.204-0.403-0.473-0.833-0.988
c11.603-7.813,23.158-15.593,34.985-23.557c-6.017-4.258-11.845-8.382-17.938-12.692c7.366-9.069,14.573-17.943,21.752-26.783
c8.336,4.434,15.519,3.458,20.084-2.588c4.005-5.302,3.629-12.893-0.884-17.858c-4.39-4.829-12.207-5.82-17.747-2.248
c-6.434,4.146-7.922,11.053-4.118,19.817c-14.202,10.302-28.45,20.636-43.156,31.302c5.842,4.249,11.425,8.311,17.289,12.576
c-5.781,5.368-11.328,10.518-16.947,15.736c-42.797-30.003-84.466-23.893-125.09,6.729c0-62.969,0-126.048,0-189.438
c1.134-0.051,2.23-0.144,3.327-0.144c61.359-0.006,122.719-0.134,184.077,0.059c23.582,0.074,47.182,1.188,70.189,6.894
c33.068,8.2,59.95,25.613,78.508,54.766c8.642,13.576,12.927,28.656,14.487,44.482c2.252,22.815,0.823,45.408-5.545,67.547
c-7.479,25.995-23.225,46.343-43.608,63.466c-10.102,8.486-21.167,15.536-32.924,21.505c-0.814,0.413-1.585,0.905-2.597,1.487
c50.553,63.965,100.971,127.76,151.731,191.983C555.434,849.519,505.838,849.519,455.556,849.519z"/>
<path d="M255.521,635.166c16.096-0.067,29.067,12.759,29.148,28.827c0.083,16.276-12.776,29.339-28.953,29.405
c-16.022,0.067-29.385-13.258-29.278-29.196C226.544,648.168,239.5,635.234,255.521,635.166z"/>
<path d="M357.619,772.016c0.441-16.3,13.472-29.043,29.376-28.729c16.465,0.325,29.215,13.623,28.752,29.985
c-0.451,15.939-13.688,28.597-29.541,28.242C370.048,801.155,357.19,787.886,357.619,772.016z"/>
<path d="M188.111,736.337c14.63,12.955,28.898,25.589,43.417,38.445c-3.115,3.519-6.132,6.927-9.336,10.548
c-3.528-3.123-6.993-6.098-10.344-9.194c-1.96-1.813-3.346-1.561-5.269,0.292c-6.227,5.999-12.67,11.772-18.468,17.114
C188.111,775.57,188.111,756.221,188.111,736.337z"/>
<path d="M315.788,849.533c-18.813,0-36.98,0-55.824,0c5.607-5.78,10.793-11.127,16.108-16.606
c-3.987-3.574-7.77-6.967-11.734-10.521c3.071-3.48,6.007-6.811,9.173-10.398C287.54,824.461,301.433,836.792,315.788,849.533z"/>
</g>
<g>
<path d="M766.812,758.155c0,18.361-3.246,34.457-9.734,48.289c-6.49,13.834-15.776,24.51-27.859,32.022
c-12.085,7.516-25.938,11.273-41.564,11.273c-15.458,0-29.249-3.715-41.374-11.145c-12.127-7.429-21.519-18.039-28.181-31.831
c-6.66-13.789-10.035-29.653-10.118-47.584v-9.223c0-18.358,3.308-34.521,9.927-48.481c6.617-13.962,15.968-24.678,28.052-32.15
c12.083-7.471,25.894-11.207,41.437-11.207c15.541,0,29.352,3.735,41.437,11.207c12.083,7.473,21.433,18.188,28.052,32.15
c6.616,13.961,9.926,30.081,9.926,48.354V758.155L766.812,758.155z M727.873,749.701c0-19.553-3.503-34.411-10.504-44.574
c-7.003-10.163-16.993-15.243-29.972-15.243c-12.895,0-22.845,5.017-29.846,15.05c-7.003,10.036-10.546,24.744-10.631,44.127v9.093
c0,19.043,3.5,33.817,10.503,44.319c7,10.504,17.079,15.755,30.229,15.755c12.893,0,22.799-5.059,29.715-15.178
c6.917-10.119,10.418-24.868,10.504-44.255L727.873,749.701L727.873,749.701z"/>
<path d="M794.736,847.177V660.678h65.326c22.627,0,39.791,4.336,51.491,13.001c11.699,8.668,17.549,21.372,17.549,38.107
c0,9.138-2.35,17.187-7.045,24.146c-4.697,6.961-11.23,12.062-19.597,15.307c9.562,2.39,17.1,7.216,22.607,14.474
c5.508,7.259,8.263,16.138,8.263,26.642c0,17.934-5.723,31.51-17.165,40.733c-11.446,9.223-27.754,13.919-48.93,14.089
L794.736,847.177L794.736,847.177z M833.162,738.813h28.437c19.383-0.341,29.076-8.069,29.076-23.186
c0-8.453-2.455-14.538-7.364-18.252c-4.913-3.714-12.662-5.572-23.248-5.572h-26.9V738.813L833.162,738.813z M833.162,765.968
v50.341h32.919c9.051,0,16.118-2.155,21.198-6.469c5.08-4.313,7.621-10.269,7.621-17.868c0-17.078-8.838-25.746-26.514-26.003
L833.162,765.968L833.162,765.968z"/>
<path d="M1115.343,758.155c0,18.361-3.245,34.457-9.734,48.289c-6.492,13.834-15.776,24.51-27.858,32.022
c-12.085,7.516-25.94,11.273-41.567,11.273c-15.457,0-29.246-3.715-41.37-11.145c-12.127-7.429-21.521-18.039-28.182-31.831
c-6.66-13.789-10.035-29.653-10.119-47.584v-9.223c0-18.358,3.309-34.521,9.928-48.481c6.616-13.962,15.966-24.678,28.051-32.15
c12.081-7.471,25.894-11.207,41.436-11.207s29.354,3.735,41.439,11.207c12.079,7.473,21.432,18.188,28.05,32.15
c6.616,13.961,9.926,30.081,9.926,48.354v8.325H1115.343z M1076.405,749.701c0-19.553-3.504-34.411-10.505-44.574
s-16.992-15.243-29.973-15.243c-12.895,0-22.844,5.017-29.845,15.05c-7.004,10.036-10.548,24.744-10.632,44.127v9.093
c0,19.043,3.501,33.817,10.503,44.319c7.002,10.504,17.079,15.755,30.229,15.755c12.896,0,22.802-5.059,29.717-15.178
c6.918-10.119,10.419-24.868,10.505-44.255L1076.405,749.701L1076.405,749.701z"/>
<path d="M1239.975,798.248c0-7.258-2.563-12.829-7.686-16.717c-5.123-3.884-14.346-7.982-27.666-12.296
c-13.323-4.312-23.869-8.561-31.64-12.744c-21.178-11.443-31.766-26.855-31.766-46.241c0-10.075,2.838-19.064,8.517-26.963
c5.679-7.897,13.835-14.067,24.466-18.508c10.631-4.439,22.563-6.66,35.801-6.66c13.323,0,25.191,2.412,35.609,7.236
c10.417,4.826,18.509,11.636,24.272,20.43c5.765,8.796,8.647,18.787,8.647,29.973h-38.426c0-8.536-2.692-15.177-8.071-19.917
s-12.938-7.11-22.672-7.11c-9.395,0-16.695,1.988-21.903,5.957c-5.209,3.972-7.814,9.202-7.814,15.693
c0,6.063,3.053,11.143,9.16,15.241c6.104,4.099,15.091,7.941,26.962,11.528c21.859,6.577,37.786,14.73,47.776,24.465
c9.991,9.735,14.987,21.861,14.987,36.377c0,16.139-6.106,28.8-18.317,37.979c-12.212,9.181-28.649,13.771-49.313,13.771
c-14.347,0-27.411-2.626-39.195-7.878s-20.773-12.444-26.964-21.583c-6.192-9.136-9.286-19.725-9.286-31.767h38.556
c0,20.581,12.296,30.87,36.891,30.87c9.136,0,16.269-1.858,21.391-5.573C1237.414,810.097,1239.975,804.907,1239.975,798.248z"/>
<path d="M1409.822,808.75h-67.376l-12.809,38.427h-40.861l69.424-186.498h35.611l69.809,186.498h-40.861L1409.822,808.75z
M1352.822,777.625h46.624l-23.44-69.809L1352.822,777.625z"/>
<path d="M1606.055,691.805h-57.127v155.372h-38.429V691.805h-56.358v-31.126h151.914V691.805L1606.055,691.805z"/>
<path d="M1722.617,798.248c0-7.258-2.563-12.829-7.687-16.717c-5.123-3.884-14.346-7.982-27.666-12.296
c-13.323-4.312-23.87-8.561-31.639-12.744c-21.179-11.443-31.767-26.855-31.767-46.241c0-10.075,2.837-19.064,8.517-26.963
c5.679-7.897,13.835-14.067,24.466-18.508c10.632-4.439,22.563-6.66,35.801-6.66c13.323,0,25.19,2.412,35.609,7.236
c10.417,4.826,18.509,11.636,24.273,20.43c5.764,8.796,8.646,18.787,8.646,29.973h-38.426c0-8.536-2.692-15.177-8.072-19.917
c-5.379-4.74-12.936-7.11-22.671-7.11c-9.395,0-16.695,1.988-21.904,5.957c-5.208,3.972-7.813,9.202-7.813,15.693
c0,6.063,3.053,11.143,9.16,15.241c6.104,4.099,15.091,7.941,26.962,11.528c21.858,6.577,37.786,14.73,47.776,24.465
c9.991,9.735,14.987,21.861,14.987,36.377c0,16.139-6.106,28.8-18.317,37.979c-12.212,9.181-28.648,13.771-49.313,13.771
c-14.346,0-27.411-2.626-39.195-7.878s-20.774-12.444-26.964-21.583c-6.192-9.136-9.286-19.725-9.286-31.767h38.556
c0,20.581,12.296,30.87,36.891,30.87c9.136,0,16.268-1.858,21.391-5.573C1720.055,810.097,1722.617,804.907,1722.617,798.248z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="2000px" height="1000px" viewBox="0 0 2000 1000" enable-background="new 0 0 2000 1000" xml:space="preserve">
<g>
<path d="M455.556,849.519c10.487-10.606,18.315-22.243,23.484-35.499c11.767-30.177,10.624-59.483-6.55-87.546
c-6.421-10.492-15.644-18.342-24.709-26.363c-42.412-37.528-84.791-75.089-127.178-112.646c-0.23-0.204-0.403-0.473-0.833-0.988
c11.603-7.813,23.158-15.593,34.985-23.557c-6.017-4.258-11.845-8.382-17.938-12.692c7.366-9.069,14.573-17.943,21.752-26.783
c8.336,4.434,15.519,3.458,20.084-2.588c4.005-5.302,3.629-12.893-0.884-17.858c-4.39-4.829-12.207-5.82-17.747-2.248
c-6.434,4.146-7.922,11.053-4.118,19.817c-14.202,10.302-28.45,20.636-43.156,31.302c5.842,4.249,11.425,8.311,17.289,12.576
c-5.781,5.368-11.328,10.518-16.947,15.736c-42.797-30.003-84.466-23.893-125.09,6.729c0-62.969,0-126.048,0-189.438
c1.134-0.051,2.23-0.144,3.327-0.144c61.359-0.006,122.719-0.134,184.077,0.059c23.582,0.074,47.182,1.188,70.189,6.894
c33.068,8.2,59.95,25.613,78.508,54.766c8.642,13.576,12.927,28.656,14.487,44.482c2.252,22.815,0.823,45.408-5.545,67.547
c-7.479,25.995-23.225,46.343-43.608,63.466c-10.102,8.486-21.167,15.536-32.924,21.505c-0.814,0.413-1.585,0.905-2.597,1.487
c50.553,63.965,100.971,127.76,151.731,191.983C555.434,849.519,505.838,849.519,455.556,849.519z"/>
<path d="M255.521,635.166c16.096-0.067,29.067,12.759,29.148,28.827c0.083,16.276-12.776,29.339-28.953,29.405
c-16.022,0.067-29.385-13.258-29.278-29.196C226.544,648.168,239.5,635.234,255.521,635.166z"/>
<path d="M357.619,772.016c0.441-16.3,13.472-29.043,29.376-28.729c16.465,0.325,29.215,13.623,28.752,29.985
c-0.451,15.939-13.688,28.597-29.541,28.242C370.048,801.155,357.19,787.886,357.619,772.016z"/>
<path d="M188.111,736.337c14.63,12.955,28.898,25.589,43.417,38.445c-3.115,3.519-6.132,6.927-9.336,10.548
c-3.528-3.123-6.993-6.098-10.344-9.194c-1.96-1.813-3.346-1.561-5.269,0.292c-6.227,5.999-12.67,11.772-18.468,17.114
C188.111,775.57,188.111,756.221,188.111,736.337z"/>
<path d="M315.788,849.533c-18.813,0-36.98,0-55.824,0c5.607-5.78,10.793-11.127,16.108-16.606
c-3.987-3.574-7.77-6.967-11.734-10.521c3.071-3.48,6.007-6.811,9.173-10.398C287.54,824.461,301.433,836.792,315.788,849.533z"/>
</g>
<g>
<path d="M766.812,758.155c0,18.361-3.246,34.457-9.734,48.289c-6.49,13.834-15.776,24.51-27.859,32.022
c-12.085,7.516-25.938,11.273-41.564,11.273c-15.458,0-29.249-3.715-41.374-11.145c-12.127-7.429-21.519-18.039-28.181-31.831
c-6.66-13.789-10.035-29.653-10.118-47.584v-9.223c0-18.358,3.308-34.521,9.927-48.481c6.617-13.962,15.968-24.678,28.052-32.15
c12.083-7.471,25.894-11.207,41.437-11.207c15.541,0,29.352,3.735,41.437,11.207c12.083,7.473,21.433,18.188,28.052,32.15
c6.616,13.961,9.926,30.081,9.926,48.354V758.155L766.812,758.155z M727.873,749.701c0-19.553-3.503-34.411-10.504-44.574
c-7.003-10.163-16.993-15.243-29.972-15.243c-12.895,0-22.845,5.017-29.846,15.05c-7.003,10.036-10.546,24.744-10.631,44.127v9.093
c0,19.043,3.5,33.817,10.503,44.319c7,10.504,17.079,15.755,30.229,15.755c12.893,0,22.799-5.059,29.715-15.178
c6.917-10.119,10.418-24.868,10.504-44.255L727.873,749.701L727.873,749.701z"/>
<path d="M794.736,847.177V660.678h65.326c22.627,0,39.791,4.336,51.491,13.001c11.699,8.668,17.549,21.372,17.549,38.107
c0,9.138-2.35,17.187-7.045,24.146c-4.697,6.961-11.23,12.062-19.597,15.307c9.562,2.39,17.1,7.216,22.607,14.474
c5.508,7.259,8.263,16.138,8.263,26.642c0,17.934-5.723,31.51-17.165,40.733c-11.446,9.223-27.754,13.919-48.93,14.089
L794.736,847.177L794.736,847.177z M833.162,738.813h28.437c19.383-0.341,29.076-8.069,29.076-23.186
c0-8.453-2.455-14.538-7.364-18.252c-4.913-3.714-12.662-5.572-23.248-5.572h-26.9V738.813L833.162,738.813z M833.162,765.968
v50.341h32.919c9.051,0,16.118-2.155,21.198-6.469c5.08-4.313,7.621-10.269,7.621-17.868c0-17.078-8.838-25.746-26.514-26.003
L833.162,765.968L833.162,765.968z"/>
<path d="M1115.343,758.155c0,18.361-3.245,34.457-9.734,48.289c-6.492,13.834-15.776,24.51-27.858,32.022
c-12.085,7.516-25.94,11.273-41.567,11.273c-15.457,0-29.246-3.715-41.37-11.145c-12.127-7.429-21.521-18.039-28.182-31.831
c-6.66-13.789-10.035-29.653-10.119-47.584v-9.223c0-18.358,3.309-34.521,9.928-48.481c6.616-13.962,15.966-24.678,28.051-32.15
c12.081-7.471,25.894-11.207,41.436-11.207s29.354,3.735,41.439,11.207c12.079,7.473,21.432,18.188,28.05,32.15
c6.616,13.961,9.926,30.081,9.926,48.354v8.325H1115.343z M1076.405,749.701c0-19.553-3.504-34.411-10.505-44.574
s-16.992-15.243-29.973-15.243c-12.895,0-22.844,5.017-29.845,15.05c-7.004,10.036-10.548,24.744-10.632,44.127v9.093
c0,19.043,3.501,33.817,10.503,44.319c7.002,10.504,17.079,15.755,30.229,15.755c12.896,0,22.802-5.059,29.717-15.178
c6.918-10.119,10.419-24.868,10.505-44.255L1076.405,749.701L1076.405,749.701z"/>
<path d="M1239.975,798.248c0-7.258-2.563-12.829-7.686-16.717c-5.123-3.884-14.346-7.982-27.666-12.296
c-13.323-4.312-23.869-8.561-31.64-12.744c-21.178-11.443-31.766-26.855-31.766-46.241c0-10.075,2.838-19.064,8.517-26.963
c5.679-7.897,13.835-14.067,24.466-18.508c10.631-4.439,22.563-6.66,35.801-6.66c13.323,0,25.191,2.412,35.609,7.236
c10.417,4.826,18.509,11.636,24.272,20.43c5.765,8.796,8.647,18.787,8.647,29.973h-38.426c0-8.536-2.692-15.177-8.071-19.917
s-12.938-7.11-22.672-7.11c-9.395,0-16.695,1.988-21.903,5.957c-5.209,3.972-7.814,9.202-7.814,15.693
c0,6.063,3.053,11.143,9.16,15.241c6.104,4.099,15.091,7.941,26.962,11.528c21.859,6.577,37.786,14.73,47.776,24.465
c9.991,9.735,14.987,21.861,14.987,36.377c0,16.139-6.106,28.8-18.317,37.979c-12.212,9.181-28.649,13.771-49.313,13.771
c-14.347,0-27.411-2.626-39.195-7.878s-20.773-12.444-26.964-21.583c-6.192-9.136-9.286-19.725-9.286-31.767h38.556
c0,20.581,12.296,30.87,36.891,30.87c9.136,0,16.269-1.858,21.391-5.573C1237.414,810.097,1239.975,804.907,1239.975,798.248z"/>
<path d="M1409.822,808.75h-67.376l-12.809,38.427h-40.861l69.424-186.498h35.611l69.809,186.498h-40.861L1409.822,808.75z
M1352.822,777.625h46.624l-23.44-69.809L1352.822,777.625z"/>
<path d="M1606.055,691.805h-57.127v155.372h-38.429V691.805h-56.358v-31.126h151.914V691.805L1606.055,691.805z"/>
<path d="M1722.617,798.248c0-7.258-2.563-12.829-7.687-16.717c-5.123-3.884-14.346-7.982-27.666-12.296
c-13.323-4.312-23.87-8.561-31.639-12.744c-21.179-11.443-31.767-26.855-31.767-46.241c0-10.075,2.837-19.064,8.517-26.963
c5.679-7.897,13.835-14.067,24.466-18.508c10.632-4.439,22.563-6.66,35.801-6.66c13.323,0,25.19,2.412,35.609,7.236
c10.417,4.826,18.509,11.636,24.273,20.43c5.764,8.796,8.646,18.787,8.646,29.973h-38.426c0-8.536-2.692-15.177-8.072-19.917
c-5.379-4.74-12.936-7.11-22.671-7.11c-9.395,0-16.695,1.988-21.904,5.957c-5.208,3.972-7.813,9.202-7.813,15.693
c0,6.063,3.053,11.143,9.16,15.241c6.104,4.099,15.091,7.941,26.962,11.528c21.858,6.577,37.786,14.73,47.776,24.465
c9.991,9.735,14.987,21.861,14.987,36.377c0,16.139-6.106,28.8-18.317,37.979c-12.212,9.181-28.648,13.771-49.313,13.771
c-14.346,0-27.411-2.626-39.195-7.878s-20.774-12.444-26.964-21.583c-6.192-9.136-9.286-19.725-9.286-31.767h38.556
c0,20.581,12.296,30.87,36.891,30.87c9.136,0,16.268-1.858,21.391-5.573C1720.055,810.097,1722.617,804.907,1722.617,798.248z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.4 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@ -1,114 +1,114 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<polygon fill="none" points="59.715,174.898 59.715,256.418 94.226,195.484 "/>
<path fill="none" d="M241.417,259.706c0.151-0.657,0.24-1.34,0.24-2.042v-84.453l-36.673,22.176L241.417,259.706z"/>
<path fill="none" d="M149.894,228.697l-47.237-28.182l-37.129,65.557c0.994,0.379,2.065,0.595,3.19,0.595h163.938
c0.462,0,0.913-0.047,1.358-0.114l-37.43-66.088L149.894,228.697z"/>
<path fill="none" d="M141.281,155.85c20.966-11.197,47.131-3.25,58.332,17.717c1.73,3.242,3.001,6.613,3.84,10.029l-7.986,4.907
c-0.578-3.681-1.761-7.325-3.615-10.793c-8.91-16.688-29.74-23.015-46.429-14.103c-14.998,8.013-21.619,25.646-16.333,41.25
c0.031,0.099,0.061,0.197,0.095,0.297l7.14,4.021l13.534,8.071l88.262-53.368c-0.346-0.287-0.719-0.587-1.113-0.899
c-5.804-4.615-16.644-11.92-32.449-20.85c-21.467-12.132-41.92-21.529-53.592-24.637c-2.058,0.273-7.88,2.572-16.25,6.471
c0.035,15.446-8.238,30.423-22.787,38.191c-14.119,7.541-30.589,6.39-43.265-1.563c-2.595,1.757-4.684,3.269-6.238,4.499
l56.336,33.609C116.866,181.674,125.271,164.396,141.281,155.85z M177.532,171.718l4.896,4.442l-6.489,7.148l-4.895-4.442
L177.532,171.718z M147.035,215.203l-5.906-3.326l4.852-5.344l4.896,4.441L147.035,215.203z M157.527,211.816l-1.815-1.621
l-3.456-3.086l-5.443-4.855l-2.893-2.582l-5.444-4.855l-1.287-1.148l4.825-5.408l1.902,1.7l5.442,4.856l2.895,2.582l5.442,4.856
l3.459,3.085l2.818,2.514L157.527,211.816z M167.4,205.748l-3.352-2.992l-3.459-3.084l-5.443-4.857l-2.891-2.582l-5.443-4.855
l-2.047-1.826l4.826-5.406l0.928,0.83l1.736,1.547l5.439,4.855l2.893,2.583l5.446,4.856l3.457,3.084l4.358,3.887L167.4,205.748z
M180.826,197.5l-2.883,1.771l-4.996-4.455l-3.456-3.086l-5.442-4.855l-2.895-2.584l-5.442-4.855l-2.819-2.518l4.824-5.408
l0.928,0.83l2.51,2.239l5.441,4.856l2.894,2.582l5.444,4.857l3.457,3.085l5.443,4.856l0.555,0.494L180.826,197.5z"/>
<path fill="none" d="M77.055,155.18c9.464,4.428,20.827,4.506,30.732-0.785c10.213-5.454,16.535-15.369,17.869-26.066
c0.444-3.549,0.341-7.185-0.357-10.773c-0.635-3.269-1.76-6.499-3.407-9.585c-8.914-16.689-29.741-23.015-46.43-14.101
c-16.688,8.911-23.012,29.735-14.1,46.422c1.82,3.407,4.141,6.373,6.817,8.875C70.829,151.646,73.83,153.668,77.055,155.18z
M80.622,141.554l-6.2,6.827l-2.042-1.856l-2.851-2.587l6.49-7.146l4.895,4.442L80.622,141.554z M107.572,101.972l4.894,4.442
l-6.488,7.148l-4.894-4.442L107.572,101.972z M87.755,101.77l0.929,0.83l23.915,21.338l1.904,1.702l-4.824,5.406l-3.936-3.513
l-22.816-20.356L87.755,101.77z M79.631,110.403l0.926,0.829l20.863,18.616l4.958,4.424l-4.825,5.408l-0.926-0.827l-5.958-5.316
l-19.866-17.726L79.631,110.403z M72.049,118.52l19.058,17.005l7.695,6.864l-0.143,0.159l-4.681,5.247l-0.927-0.827l-0.867-0.773
l-7.715-6.884l-17.241-15.383L72.049,118.52z"/>
<path fill="none" d="M203.559,96.882c16.688-8.912,23.012-29.74,14.104-46.428c-8.916-16.686-29.742-23.011-46.43-14.099
c-16.688,8.913-23.014,29.737-14.104,46.427C166.041,99.468,186.87,105.795,203.559,96.882z M170.193,90.867l-4.896-4.442
l6.491-7.145l4.895,4.44L170.193,90.867z M203.348,44.457l4.893,4.443l-6.492,7.147l-4.893-4.443L203.348,44.457z M183.525,44.256
l0.928,0.83l2.51,2.24l5.439,4.856l2.896,2.582l5.444,4.857l3.457,3.084l5.443,4.857l0.629,0.564l-4.822,5.408l-1.25-1.116
l-5.443-4.856l-3.458-3.085l-5.442-4.856l-2.895-2.583l-5.441-4.856l-2.824-2.517L183.525,44.256z M175.396,52.89l0.932,0.83
l1.734,1.548l5.442,4.856l2.894,2.581l5.442,4.857l3.457,3.086l5.444,4.855l1.404,1.257l-4.821,5.406l-0.929-0.826l-1.099-0.981
l-5.442-4.856l-3.457-3.085l-5.444-4.856l-2.892-2.583l-5.444-4.855l-2.046-1.825L175.396,52.89z M167.82,61.006l1.902,1.699
l5.444,4.857l2.896,2.582L183.505,75l3.457,3.085l5.44,4.857l2.168,1.933l-4.823,5.407l-0.929-0.826l-1.856-1.658l-5.442-4.857
l-3.457-3.085L172.618,75l-2.896-2.582l-5.44-4.856l-1.284-1.147L167.82,61.006z"/>
<path fill="none" d="M269.921,15.586H30.08c-7.992,0-14.494,6.502-14.494,14.494v239.84c0,7.992,6.502,14.494,14.494,14.494
h239.841c7.991,0,14.492-6.502,14.492-14.494V30.08C284.413,22.088,277.912,15.586,269.921,15.586z M143.299,53.225
c3.583-11.796,11.53-21.482,22.377-27.275c6.652-3.553,14.139-5.431,21.648-5.431c17.098,0,32.709,9.342,40.742,24.379
c5.791,10.847,7.009,23.317,3.426,35.113c-3.583,11.797-11.531,21.484-22.379,27.277c-6.652,3.552-14.137,5.43-21.647,5.43
c-17.101,0-32.711-9.342-40.741-24.38C140.933,77.491,139.716,65.021,143.299,53.225z M254.473,257.663
c0,12.028-9.789,21.815-21.818,21.815l-163.938,0.006c-12.03,0-21.817-9.789-21.817-21.819v-91.201
c0-2.379,0.841-4.517,2.646-6.729c1.426-1.743,3.589-3.695,6.706-6.043c-2.033-2.428-3.807-5.054-5.295-7.841
c-5.793-10.846-7.011-23.316-3.428-35.113c3.583-11.797,11.531-21.483,22.378-27.275c6.652-3.552,14.138-5.43,21.646-5.43
c17.099,0,32.711,9.342,40.743,24.379c1.23,2.303,2.263,4.71,3.086,7.188c10.191-4.4,13.895-4.946,15.812-4.946
c0.863,0,1.699,0.101,2.484,0.3c15.838,4.071,41.292,16.888,59.836,27.527c16.43,9.425,27.969,17.124,34.295,22.881
c6.154,5.604,6.668,8.671,6.664,11.104V257.663z"/>
<g>
<polygon fill="#1976D2" points="178.391,189.96 174.934,186.875 169.489,182.018 166.596,179.436 161.154,174.579 158.645,172.34
157.717,171.51 152.893,176.918 155.712,179.436 161.154,184.291 164.049,186.875 169.491,191.73 172.947,194.816
177.943,199.271 180.826,197.5 184.389,195.311 183.834,194.816 "/>
<polygon fill="#1976D2" points="166.034,194.816 160.588,189.96 157.695,187.377 152.256,182.521 150.52,180.975 149.592,180.145
144.766,185.551 146.813,187.377 152.256,192.232 155.146,194.814 160.59,199.672 164.049,202.756 167.4,205.748 173.85,201.787
169.491,197.9 "/>
<polygon fill="#1976D2" points="157.695,202.255 152.253,197.398 149.358,194.816 143.916,189.96 142.014,188.26 137.189,193.668
138.476,194.816 143.92,199.672 146.813,202.254 152.256,207.109 155.712,210.195 157.527,211.816 163.973,207.854
161.154,205.34 "/>
<rect x="173.431" y="172.686" transform="matrix(0.7405 0.672 -0.672 0.7405 165.1439 -72.7109)" fill="#1976D2" width="6.611" height="9.654"/>
<polygon fill="#1976D2" points="141.129,211.877 147.035,215.203 150.877,210.975 145.981,206.533 "/>
<polygon fill="#1976D2" points="186.961,57.038 189.855,59.621 195.298,64.477 198.756,67.562 204.199,72.418 205.449,73.534
210.271,68.126 209.643,67.562 204.199,62.705 200.742,59.621 195.298,54.764 192.402,52.182 186.963,47.326 184.453,45.086
183.525,44.256 178.695,49.665 181.52,52.182 "/>
<polygon fill="#1976D2" points="178.062,64.979 180.954,67.562 186.398,72.418 189.855,75.503 195.298,80.359 196.396,81.34
197.325,82.166 202.146,76.76 200.742,75.503 195.298,70.648 191.841,67.562 186.398,62.705 183.505,60.124 178.062,55.268
176.328,53.72 175.396,52.89 170.572,58.299 172.618,60.124 "/>
<polygon fill="#1976D2" points="169.723,72.418 172.618,75 178.062,79.856 181.52,82.941 186.962,87.798 188.818,89.456
189.747,90.282 194.57,84.875 192.402,82.942 186.962,78.085 183.505,75 178.062,70.144 175.167,67.562 169.723,62.705
167.82,61.006 162.998,66.415 164.282,67.562 "/>
<rect x="199.243" y="45.425" transform="matrix(0.7403 0.6723 -0.6723 0.7403 86.3919 -123.1221)" fill="#1976D2" width="6.609" height="9.656"/>
<polygon fill="#1976D2" points="165.298,86.425 170.193,90.867 176.684,83.72 171.789,79.28 "/>
<polygon fill="#1976D2" points="88.684,102.6 87.755,101.77 82.927,107.177 105.743,127.533 109.679,131.046 114.503,125.64
112.599,123.938 "/>
<polygon fill="#1976D2" points="80.557,111.232 79.631,110.403 74.803,115.811 94.669,133.537 100.627,138.853 101.553,139.68
106.378,134.272 101.42,129.848 "/>
<polygon fill="#1976D2" points="72.049,118.52 67.228,123.928 84.469,139.311 92.184,146.195 93.051,146.968 93.978,147.795
98.659,142.548 98.802,142.389 91.107,135.525 "/>
<rect x="103.471" y="102.94" transform="matrix(0.7405 0.6721 -0.6721 0.7405 100.1373 -43.7934)" fill="#1976D2" width="6.609" height="9.654"/>
<polygon fill="#1976D2" points="69.529,143.938 72.38,146.525 74.422,148.381 80.622,141.554 80.914,141.234 76.019,136.792 "/>
<path fill="#1976D2" d="M187.466,112.718c7.511,0,14.995-1.878,21.647-5.43c10.848-5.793,18.796-15.48,22.379-27.277
c3.583-11.796,2.365-24.266-3.426-35.113c-8.033-15.037-23.645-24.379-40.742-24.379c-7.51,0-14.996,1.878-21.648,5.431
c-10.847,5.793-18.794,15.479-22.377,27.275s-2.366,24.266,3.426,35.113C154.755,103.376,170.365,112.718,187.466,112.718z
M171.232,36.355c16.688-8.912,37.514-2.587,46.43,14.099c8.908,16.688,2.584,37.516-14.104,46.428
c-16.688,8.913-37.518,2.586-46.431-14.1C148.219,66.092,154.544,45.268,171.232,36.355z"/>
<path fill="#1976D2" d="M247.809,155.361c-6.326-5.757-17.865-13.456-34.295-22.881c-18.544-10.639-43.998-23.456-59.836-27.527
c-0.785-0.199-1.621-0.3-2.484-0.3c-1.917,0-5.62,0.546-15.812,4.946c-0.823-2.478-1.856-4.885-3.086-7.188
c-8.032-15.037-23.644-24.379-40.743-24.379c-7.509,0-14.995,1.878-21.646,5.43c-10.847,5.792-18.795,15.478-22.378,27.275
c-3.583,11.797-2.365,24.267,3.428,35.113c1.488,2.787,3.262,5.414,5.295,7.841c-3.117,2.348-5.28,4.3-6.706,6.043
c-1.805,2.213-2.646,4.351-2.646,6.729v91.201c0,12.03,9.787,21.819,21.817,21.819l163.938-0.006
c12.029,0,21.818-9.787,21.818-21.815v-91.197C254.477,164.032,253.963,160.965,247.809,155.361z M150.967,117.492
c11.672,3.108,32.125,12.505,53.592,24.637c15.806,8.93,26.646,16.234,32.449,20.85c0.395,0.312,0.768,0.612,1.113,0.899
l-88.262,53.368l-13.534-8.071l-7.14-4.021c-0.034-0.1-0.064-0.198-0.095-0.297c-5.286-15.604,1.335-33.237,16.333-41.25
c16.688-8.912,37.519-2.586,46.429,14.103c1.854,3.468,3.037,7.112,3.615,10.793l7.986-4.907
c-0.839-3.416-2.109-6.787-3.84-10.029c-11.201-20.967-37.366-28.914-58.332-17.717c-16.01,8.547-24.415,25.824-22.518,42.85
L62.427,165.09c1.554-1.23,3.643-2.742,6.238-4.499c12.676,7.953,29.146,9.104,43.265,1.563
c14.549-7.769,22.822-22.745,22.787-38.191C143.087,120.064,148.909,117.765,150.967,117.492z M241.657,173.211v84.453
c0,0.702-0.089,1.385-0.24,2.042l-36.433-64.319L241.657,173.211z M125.656,128.328c-1.334,10.698-7.656,20.613-17.869,26.066
c-9.905,5.291-21.268,5.213-30.732,0.785c-3.225-1.512-6.226-3.533-8.876-6.014c-2.676-2.502-4.997-5.468-6.817-8.875
c-8.912-16.687-2.588-37.511,14.1-46.422c16.689-8.914,37.516-2.588,46.43,14.101c1.647,3.086,2.772,6.316,3.407,9.585
C125.997,121.143,126.1,124.779,125.656,128.328z M59.715,174.898l34.511,20.586l-34.511,60.934V174.898z M102.657,200.516
l47.237,28.182l46.69-28.232l37.43,66.088c-0.445,0.067-0.896,0.114-1.358,0.114H68.718c-1.125,0-2.196-0.216-3.19-0.595
L102.657,200.516z"/>
<path fill="#1976D2" d="M269.921,0H30.08C13.493,0,0,13.494,0,30.08v239.84C0,286.506,13.493,300,30.08,300h239.841
C286.506,300,300,286.506,300,269.92V30.08C300,13.494,286.506,0,269.921,0z M284.413,269.92c0,7.992-6.501,14.494-14.492,14.494
H30.08c-7.992,0-14.494-6.502-14.494-14.494V30.08c0-7.992,6.502-14.494,14.494-14.494h239.841
c7.991,0,14.492,6.502,14.492,14.494V269.92z"/>
</g>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<polygon fill="none" points="59.715,174.898 59.715,256.418 94.226,195.484 "/>
<path fill="none" d="M241.417,259.706c0.151-0.657,0.24-1.34,0.24-2.042v-84.453l-36.673,22.176L241.417,259.706z"/>
<path fill="none" d="M149.894,228.697l-47.237-28.182l-37.129,65.557c0.994,0.379,2.065,0.595,3.19,0.595h163.938
c0.462,0,0.913-0.047,1.358-0.114l-37.43-66.088L149.894,228.697z"/>
<path fill="none" d="M141.281,155.85c20.966-11.197,47.131-3.25,58.332,17.717c1.73,3.242,3.001,6.613,3.84,10.029l-7.986,4.907
c-0.578-3.681-1.761-7.325-3.615-10.793c-8.91-16.688-29.74-23.015-46.429-14.103c-14.998,8.013-21.619,25.646-16.333,41.25
c0.031,0.099,0.061,0.197,0.095,0.297l7.14,4.021l13.534,8.071l88.262-53.368c-0.346-0.287-0.719-0.587-1.113-0.899
c-5.804-4.615-16.644-11.92-32.449-20.85c-21.467-12.132-41.92-21.529-53.592-24.637c-2.058,0.273-7.88,2.572-16.25,6.471
c0.035,15.446-8.238,30.423-22.787,38.191c-14.119,7.541-30.589,6.39-43.265-1.563c-2.595,1.757-4.684,3.269-6.238,4.499
l56.336,33.609C116.866,181.674,125.271,164.396,141.281,155.85z M177.532,171.718l4.896,4.442l-6.489,7.148l-4.895-4.442
L177.532,171.718z M147.035,215.203l-5.906-3.326l4.852-5.344l4.896,4.441L147.035,215.203z M157.527,211.816l-1.815-1.621
l-3.456-3.086l-5.443-4.855l-2.893-2.582l-5.444-4.855l-1.287-1.148l4.825-5.408l1.902,1.7l5.442,4.856l2.895,2.582l5.442,4.856
l3.459,3.085l2.818,2.514L157.527,211.816z M167.4,205.748l-3.352-2.992l-3.459-3.084l-5.443-4.857l-2.891-2.582l-5.443-4.855
l-2.047-1.826l4.826-5.406l0.928,0.83l1.736,1.547l5.439,4.855l2.893,2.583l5.446,4.856l3.457,3.084l4.358,3.887L167.4,205.748z
M180.826,197.5l-2.883,1.771l-4.996-4.455l-3.456-3.086l-5.442-4.855l-2.895-2.584l-5.442-4.855l-2.819-2.518l4.824-5.408
l0.928,0.83l2.51,2.239l5.441,4.856l2.894,2.582l5.444,4.857l3.457,3.085l5.443,4.856l0.555,0.494L180.826,197.5z"/>
<path fill="none" d="M77.055,155.18c9.464,4.428,20.827,4.506,30.732-0.785c10.213-5.454,16.535-15.369,17.869-26.066
c0.444-3.549,0.341-7.185-0.357-10.773c-0.635-3.269-1.76-6.499-3.407-9.585c-8.914-16.689-29.741-23.015-46.43-14.101
c-16.688,8.911-23.012,29.735-14.1,46.422c1.82,3.407,4.141,6.373,6.817,8.875C70.829,151.646,73.83,153.668,77.055,155.18z
M80.622,141.554l-6.2,6.827l-2.042-1.856l-2.851-2.587l6.49-7.146l4.895,4.442L80.622,141.554z M107.572,101.972l4.894,4.442
l-6.488,7.148l-4.894-4.442L107.572,101.972z M87.755,101.77l0.929,0.83l23.915,21.338l1.904,1.702l-4.824,5.406l-3.936-3.513
l-22.816-20.356L87.755,101.77z M79.631,110.403l0.926,0.829l20.863,18.616l4.958,4.424l-4.825,5.408l-0.926-0.827l-5.958-5.316
l-19.866-17.726L79.631,110.403z M72.049,118.52l19.058,17.005l7.695,6.864l-0.143,0.159l-4.681,5.247l-0.927-0.827l-0.867-0.773
l-7.715-6.884l-17.241-15.383L72.049,118.52z"/>
<path fill="none" d="M203.559,96.882c16.688-8.912,23.012-29.74,14.104-46.428c-8.916-16.686-29.742-23.011-46.43-14.099
c-16.688,8.913-23.014,29.737-14.104,46.427C166.041,99.468,186.87,105.795,203.559,96.882z M170.193,90.867l-4.896-4.442
l6.491-7.145l4.895,4.44L170.193,90.867z M203.348,44.457l4.893,4.443l-6.492,7.147l-4.893-4.443L203.348,44.457z M183.525,44.256
l0.928,0.83l2.51,2.24l5.439,4.856l2.896,2.582l5.444,4.857l3.457,3.084l5.443,4.857l0.629,0.564l-4.822,5.408l-1.25-1.116
l-5.443-4.856l-3.458-3.085l-5.442-4.856l-2.895-2.583l-5.441-4.856l-2.824-2.517L183.525,44.256z M175.396,52.89l0.932,0.83
l1.734,1.548l5.442,4.856l2.894,2.581l5.442,4.857l3.457,3.086l5.444,4.855l1.404,1.257l-4.821,5.406l-0.929-0.826l-1.099-0.981
l-5.442-4.856l-3.457-3.085l-5.444-4.856l-2.892-2.583l-5.444-4.855l-2.046-1.825L175.396,52.89z M167.82,61.006l1.902,1.699
l5.444,4.857l2.896,2.582L183.505,75l3.457,3.085l5.44,4.857l2.168,1.933l-4.823,5.407l-0.929-0.826l-1.856-1.658l-5.442-4.857
l-3.457-3.085L172.618,75l-2.896-2.582l-5.44-4.856l-1.284-1.147L167.82,61.006z"/>
<path fill="none" d="M269.921,15.586H30.08c-7.992,0-14.494,6.502-14.494,14.494v239.84c0,7.992,6.502,14.494,14.494,14.494
h239.841c7.991,0,14.492-6.502,14.492-14.494V30.08C284.413,22.088,277.912,15.586,269.921,15.586z M143.299,53.225
c3.583-11.796,11.53-21.482,22.377-27.275c6.652-3.553,14.139-5.431,21.648-5.431c17.098,0,32.709,9.342,40.742,24.379
c5.791,10.847,7.009,23.317,3.426,35.113c-3.583,11.797-11.531,21.484-22.379,27.277c-6.652,3.552-14.137,5.43-21.647,5.43
c-17.101,0-32.711-9.342-40.741-24.38C140.933,77.491,139.716,65.021,143.299,53.225z M254.473,257.663
c0,12.028-9.789,21.815-21.818,21.815l-163.938,0.006c-12.03,0-21.817-9.789-21.817-21.819v-91.201
c0-2.379,0.841-4.517,2.646-6.729c1.426-1.743,3.589-3.695,6.706-6.043c-2.033-2.428-3.807-5.054-5.295-7.841
c-5.793-10.846-7.011-23.316-3.428-35.113c3.583-11.797,11.531-21.483,22.378-27.275c6.652-3.552,14.138-5.43,21.646-5.43
c17.099,0,32.711,9.342,40.743,24.379c1.23,2.303,2.263,4.71,3.086,7.188c10.191-4.4,13.895-4.946,15.812-4.946
c0.863,0,1.699,0.101,2.484,0.3c15.838,4.071,41.292,16.888,59.836,27.527c16.43,9.425,27.969,17.124,34.295,22.881
c6.154,5.604,6.668,8.671,6.664,11.104V257.663z"/>
<g>
<polygon fill="#1976D2" points="178.391,189.96 174.934,186.875 169.489,182.018 166.596,179.436 161.154,174.579 158.645,172.34
157.717,171.51 152.893,176.918 155.712,179.436 161.154,184.291 164.049,186.875 169.491,191.73 172.947,194.816
177.943,199.271 180.826,197.5 184.389,195.311 183.834,194.816 "/>
<polygon fill="#1976D2" points="166.034,194.816 160.588,189.96 157.695,187.377 152.256,182.521 150.52,180.975 149.592,180.145
144.766,185.551 146.813,187.377 152.256,192.232 155.146,194.814 160.59,199.672 164.049,202.756 167.4,205.748 173.85,201.787
169.491,197.9 "/>
<polygon fill="#1976D2" points="157.695,202.255 152.253,197.398 149.358,194.816 143.916,189.96 142.014,188.26 137.189,193.668
138.476,194.816 143.92,199.672 146.813,202.254 152.256,207.109 155.712,210.195 157.527,211.816 163.973,207.854
161.154,205.34 "/>
<rect x="173.431" y="172.686" transform="matrix(0.7405 0.672 -0.672 0.7405 165.1439 -72.7109)" fill="#1976D2" width="6.611" height="9.654"/>
<polygon fill="#1976D2" points="141.129,211.877 147.035,215.203 150.877,210.975 145.981,206.533 "/>
<polygon fill="#1976D2" points="186.961,57.038 189.855,59.621 195.298,64.477 198.756,67.562 204.199,72.418 205.449,73.534
210.271,68.126 209.643,67.562 204.199,62.705 200.742,59.621 195.298,54.764 192.402,52.182 186.963,47.326 184.453,45.086
183.525,44.256 178.695,49.665 181.52,52.182 "/>
<polygon fill="#1976D2" points="178.062,64.979 180.954,67.562 186.398,72.418 189.855,75.503 195.298,80.359 196.396,81.34
197.325,82.166 202.146,76.76 200.742,75.503 195.298,70.648 191.841,67.562 186.398,62.705 183.505,60.124 178.062,55.268
176.328,53.72 175.396,52.89 170.572,58.299 172.618,60.124 "/>
<polygon fill="#1976D2" points="169.723,72.418 172.618,75 178.062,79.856 181.52,82.941 186.962,87.798 188.818,89.456
189.747,90.282 194.57,84.875 192.402,82.942 186.962,78.085 183.505,75 178.062,70.144 175.167,67.562 169.723,62.705
167.82,61.006 162.998,66.415 164.282,67.562 "/>
<rect x="199.243" y="45.425" transform="matrix(0.7403 0.6723 -0.6723 0.7403 86.3919 -123.1221)" fill="#1976D2" width="6.609" height="9.656"/>
<polygon fill="#1976D2" points="165.298,86.425 170.193,90.867 176.684,83.72 171.789,79.28 "/>
<polygon fill="#1976D2" points="88.684,102.6 87.755,101.77 82.927,107.177 105.743,127.533 109.679,131.046 114.503,125.64
112.599,123.938 "/>
<polygon fill="#1976D2" points="80.557,111.232 79.631,110.403 74.803,115.811 94.669,133.537 100.627,138.853 101.553,139.68
106.378,134.272 101.42,129.848 "/>
<polygon fill="#1976D2" points="72.049,118.52 67.228,123.928 84.469,139.311 92.184,146.195 93.051,146.968 93.978,147.795
98.659,142.548 98.802,142.389 91.107,135.525 "/>
<rect x="103.471" y="102.94" transform="matrix(0.7405 0.6721 -0.6721 0.7405 100.1373 -43.7934)" fill="#1976D2" width="6.609" height="9.654"/>
<polygon fill="#1976D2" points="69.529,143.938 72.38,146.525 74.422,148.381 80.622,141.554 80.914,141.234 76.019,136.792 "/>
<path fill="#1976D2" d="M187.466,112.718c7.511,0,14.995-1.878,21.647-5.43c10.848-5.793,18.796-15.48,22.379-27.277
c3.583-11.796,2.365-24.266-3.426-35.113c-8.033-15.037-23.645-24.379-40.742-24.379c-7.51,0-14.996,1.878-21.648,5.431
c-10.847,5.793-18.794,15.479-22.377,27.275s-2.366,24.266,3.426,35.113C154.755,103.376,170.365,112.718,187.466,112.718z
M171.232,36.355c16.688-8.912,37.514-2.587,46.43,14.099c8.908,16.688,2.584,37.516-14.104,46.428
c-16.688,8.913-37.518,2.586-46.431-14.1C148.219,66.092,154.544,45.268,171.232,36.355z"/>
<path fill="#1976D2" d="M247.809,155.361c-6.326-5.757-17.865-13.456-34.295-22.881c-18.544-10.639-43.998-23.456-59.836-27.527
c-0.785-0.199-1.621-0.3-2.484-0.3c-1.917,0-5.62,0.546-15.812,4.946c-0.823-2.478-1.856-4.885-3.086-7.188
c-8.032-15.037-23.644-24.379-40.743-24.379c-7.509,0-14.995,1.878-21.646,5.43c-10.847,5.792-18.795,15.478-22.378,27.275
c-3.583,11.797-2.365,24.267,3.428,35.113c1.488,2.787,3.262,5.414,5.295,7.841c-3.117,2.348-5.28,4.3-6.706,6.043
c-1.805,2.213-2.646,4.351-2.646,6.729v91.201c0,12.03,9.787,21.819,21.817,21.819l163.938-0.006
c12.029,0,21.818-9.787,21.818-21.815v-91.197C254.477,164.032,253.963,160.965,247.809,155.361z M150.967,117.492
c11.672,3.108,32.125,12.505,53.592,24.637c15.806,8.93,26.646,16.234,32.449,20.85c0.395,0.312,0.768,0.612,1.113,0.899
l-88.262,53.368l-13.534-8.071l-7.14-4.021c-0.034-0.1-0.064-0.198-0.095-0.297c-5.286-15.604,1.335-33.237,16.333-41.25
c16.688-8.912,37.519-2.586,46.429,14.103c1.854,3.468,3.037,7.112,3.615,10.793l7.986-4.907
c-0.839-3.416-2.109-6.787-3.84-10.029c-11.201-20.967-37.366-28.914-58.332-17.717c-16.01,8.547-24.415,25.824-22.518,42.85
L62.427,165.09c1.554-1.23,3.643-2.742,6.238-4.499c12.676,7.953,29.146,9.104,43.265,1.563
c14.549-7.769,22.822-22.745,22.787-38.191C143.087,120.064,148.909,117.765,150.967,117.492z M241.657,173.211v84.453
c0,0.702-0.089,1.385-0.24,2.042l-36.433-64.319L241.657,173.211z M125.656,128.328c-1.334,10.698-7.656,20.613-17.869,26.066
c-9.905,5.291-21.268,5.213-30.732,0.785c-3.225-1.512-6.226-3.533-8.876-6.014c-2.676-2.502-4.997-5.468-6.817-8.875
c-8.912-16.687-2.588-37.511,14.1-46.422c16.689-8.914,37.516-2.588,46.43,14.101c1.647,3.086,2.772,6.316,3.407,9.585
C125.997,121.143,126.1,124.779,125.656,128.328z M59.715,174.898l34.511,20.586l-34.511,60.934V174.898z M102.657,200.516
l47.237,28.182l46.69-28.232l37.43,66.088c-0.445,0.067-0.896,0.114-1.358,0.114H68.718c-1.125,0-2.196-0.216-3.19-0.595
L102.657,200.516z"/>
<path fill="#1976D2" d="M269.921,0H30.08C13.493,0,0,13.494,0,30.08v239.84C0,286.506,13.493,300,30.08,300h239.841
C286.506,300,300,286.506,300,269.92V30.08C300,13.494,286.506,0,269.921,0z M284.413,269.92c0,7.992-6.501,14.494-14.492,14.494
H30.08c-7.992,0-14.494-6.502-14.494-14.494V30.08c0-7.992,6.502-14.494,14.494-14.494h239.841
c7.991,0,14.492,6.502,14.492,14.494V269.92z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,128 +1,128 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<<<<<<< HEAD
<g>
<path fill="#1976D2" d="M269.92,0H30.08C13.493,0,0,13.493,0,30.08v239.84C0,286.507,13.493,300,30.08,300h239.84
c16.585,0,30.08-13.493,30.08-30.079V30.08C300,13.493,286.505,0,269.92,0z M254.579,256.284
c0,12.979-10.558,23.537-23.536,23.537H67.105c-12.978,0-23.536-10.559-23.536-23.537v-91.201c0-2.799,0.964-5.281,3.033-7.817
c1.302-1.593,3.091-3.277,5.593-5.245c-1.646-2.122-3.106-4.376-4.368-6.74c-6.009-11.252-7.271-24.188-3.556-36.423
c3.717-12.236,11.961-22.284,23.214-28.292c6.9-3.685,14.666-5.634,22.457-5.634c17.735,0,33.926,9.69,42.261,25.289
c0.982,1.842,1.844,3.747,2.579,5.699c9.099-3.819,12.69-4.366,14.8-4.366c1.013,0,1.998,0.121,2.924,0.358
c1.293,0.332,2.669,0.742,4.078,1.183c-5.273-4.064-9.735-9.237-12.986-15.327c-6.01-11.251-7.273-24.187-3.557-36.422
c3.716-12.236,11.96-22.283,23.213-28.293c6.901-3.686,14.667-5.634,22.458-5.634c17.735,0,33.928,9.691,42.261,25.29
c12.421,23.263,3.603,52.294-19.659,64.717c-6.899,3.684-14.666,5.633-22.456,5.633l0,0c-1.832,0-3.641-0.128-5.432-0.331
c11.111,5.199,22.66,11.332,32.334,16.882c16.545,9.491,28.185,17.265,34.596,23.103c5.996,5.46,7.224,8.895,7.224,12.371V256.284
z"/>
<path fill="#1976D2" d="M206.09,103.262c20.968-11.197,28.912-37.365,17.719-58.33c-11.199-20.967-37.365-28.914-58.332-17.716
c-20.968,11.197-28.914,37.363-17.717,58.328C158.956,106.511,185.124,114.458,206.09,103.262z M216.051,49.074
c8.908,16.688,2.585,37.516-14.103,46.427c-16.688,8.913-37.516,2.587-46.43-14.099c-8.911-16.69-2.587-37.514,14.103-46.426
C186.31,26.063,207.135,32.388,216.051,49.074z"/>
<polygon fill="#1976D2" points="176.778,188.58 174.823,186.833 173.32,185.495 167.878,180.639 164.984,178.056 164.412,177.544
159.543,173.2 157.033,170.962 156.104,170.131 151.279,175.538 154.101,178.058 159.543,182.911 162.437,185.495 167.88,190.351
171.336,193.436 176.331,197.892 179.214,196.12 182.777,193.931 182.225,193.436 "/>
<polygon fill="#1976D2" points="164.422,193.436 158.979,188.58 156.085,185.997 150.645,181.142 148.908,179.595
147.979,178.765 143.154,184.171 145.199,185.997 150.645,190.853 153.536,193.436 158.979,198.292 162.437,201.378
165.79,204.368 172.238,200.408 167.88,196.521 "/>
<polygon fill="#1976D2" points="156.085,200.876 150.642,196.019 147.746,193.436 142.306,188.58 140.402,186.88 135.577,192.287
136.864,193.436 142.306,198.292 145.199,200.874 150.645,205.73 154.101,208.815 155.916,210.437 162.361,206.475
159.543,203.962 "/>
<polygon fill="#1976D2" points="174.549,181.671 180.818,174.766 175.925,170.325 169.619,177.269 169.436,177.472
174.33,181.913 "/>
<polygon fill="#1976D2" points="139.516,210.497 145.424,213.822 149.264,209.595 144.37,205.153 "/>
<polygon fill="#1976D2" points="185.35,55.658 188.245,58.241 193.688,63.098 197.145,66.182 202.587,71.038 203.838,72.154
208.661,66.746 208.029,66.182 202.587,61.326 200.628,59.578 199.13,58.241 193.688,53.384 190.792,50.803 190.22,50.291
185.352,45.946 182.841,43.707 181.914,42.876 177.086,48.285 179.908,50.803 "/>
<polygon fill="#1976D2" points="171.007,58.744 176.449,63.6 179.342,66.182 184.785,71.038 188.245,74.124 193.688,78.979
194.787,79.96 195.714,80.786 200.535,75.38 199.13,74.124 193.688,69.269 190.229,66.182 184.785,61.326 181.891,58.744
176.451,53.888 174.718,52.34 173.787,51.51 168.96,56.919 "/>
<polygon fill="#1976D2" points="185.352,76.706 181.891,73.62 176.451,68.764 173.555,66.182 168.111,61.326 166.21,59.627
161.387,65.036 162.671,66.182 168.111,71.038 171.007,73.62 176.451,78.478 179.908,81.562 185.352,86.418 187.208,88.076
188.135,88.902 192.959,83.496 190.792,81.562 "/>
<polygon fill="#1976D2" points="200.357,54.416 206.626,47.515 201.734,43.071 195.428,50.016 195.245,50.218 200.135,54.66 "/>
<polygon fill="#1976D2" points="163.687,85.044 168.582,89.487 175.072,82.341 170.179,77.9 "/>
<polygon fill="#1976D2" points="108.067,129.667 112.892,124.26 110.986,122.558 104.858,117.092 94.447,107.804 87.072,101.22
86.142,100.39 81.315,105.798 104.133,126.153 "/>
<polygon fill="#1976D2" points="93.059,132.156 99.017,137.474 99.944,138.3 104.767,132.893 99.809,128.469 78.945,109.853
78.019,109.022 73.191,114.431 "/>
<polygon fill="#1976D2" points="70.438,117.14 65.616,122.548 82.855,137.931 90.572,144.814 91.438,145.587 92.365,146.415
97.047,141.168 97.19,141.009 89.496,134.145 "/>
<polygon fill="#1976D2" points="104.589,111.929 110.856,105.025 105.965,100.584 99.658,107.527 99.475,107.729 104.366,112.173
"/>
<polygon fill="#1976D2" points="67.918,142.558 70.767,145.146 72.811,147 79.012,140.175 79.302,139.854 74.407,135.411 "/>
<path fill="#1976D2" d="M244.178,156.201c-5.157-4.694-14.992-11.727-33.767-22.498c-18.376-10.541-43.545-23.228-59.081-27.22
c-0.542-0.139-1.13-0.21-1.747-0.211c-3.174,0.001-9.96,2.572-17.736,6.077c-0.839-3.375-2.098-6.701-3.808-9.905
c-11.201-20.965-37.366-28.913-58.331-17.716c-20.967,11.195-28.915,37.362-17.717,58.329c1.947,3.647,4.359,6.894,7.106,9.721
c-4.556,3.215-7.271,5.555-8.839,7.473c-1.525,1.869-1.97,3.34-1.97,4.832v91.201c0,10.375,8.443,18.818,18.816,18.818
l163.938-0.001c10.378,0,18.816-8.442,18.816-18.817v-91.201C249.859,163.712,249.856,161.374,244.178,156.201z M120.28,106.589
c1.648,3.086,2.771,6.316,3.407,9.586c0.7,3.587,0.8,7.223,0.357,10.773c-1.334,10.697-7.657,20.613-17.869,26.067
c-9.904,5.29-21.27,5.21-30.732,0.784c-3.226-1.51-6.225-3.533-8.876-6.012c-2.677-2.502-4.998-5.468-6.816-8.875
c-8.913-16.688-2.588-37.513,14.1-46.425C90.539,83.575,111.366,89.9,120.28,106.589z M236.51,162.499l-49.745,30.078
l-10.604,6.412l-2.452,1.482l-7.487,4.527l-3.123,1.89l-9.938,6.009l-4.296,2.596l-0.616,0.373l-12.045-7.184l-1.489-0.888
l-7.139-4.019c-0.035-0.102-0.064-0.199-0.098-0.299c-5.283-15.604,1.336-33.236,16.336-41.249
c16.688-8.912,37.517-2.586,46.428,14.102c1.851,3.467,3.036,7.112,3.615,10.793l7.986-4.908
c-0.839-3.415-2.11-6.786-3.841-10.029c-11.2-20.966-37.364-28.913-58.332-17.717c-16.009,8.549-24.414,25.825-22.518,42.85
l-56.335-33.609c1.554-1.231,3.643-2.743,6.239-4.499c12.674,7.953,29.145,9.104,43.262,1.564
c14.548-7.769,22.821-22.746,22.786-38.191c8.371-3.899,14.193-6.198,16.25-6.473c11.672,3.109,32.127,12.507,53.591,24.638
c15.806,8.931,26.645,16.235,32.453,20.851C235.79,161.911,236.163,162.212,236.51,162.499z M240.046,171.831v84.453
c0,0.703-0.088,1.385-0.24,2.042l-36.433-64.319L240.046,171.831z M58.104,173.519l34.508,20.587l-34.508,60.933V173.519z
M101.044,199.137l47.238,28.181l46.69-28.233l37.431,66.089c-0.447,0.067-0.896,0.114-1.36,0.114H67.105
c-1.124,0-2.195-0.216-3.189-0.595L101.044,199.137z"/>
</g>
<g>
<path fill="#1976D2" d="M269.92,0H30.08C13.493,0,0,13.493,0,30.08v239.84C0,286.507,13.493,300,30.08,300h239.84
c16.585,0,30.08-13.493,30.08-30.079V30.08C300,13.493,286.505,0,269.92,0z M254.579,256.284
c0,12.979-10.558,23.537-23.536,23.537H67.105c-12.978,0-23.536-10.559-23.536-23.537v-91.201c0-2.799,0.964-5.281,3.033-7.817
c1.302-1.593,3.091-3.277,5.593-5.245c-1.646-2.122-3.106-4.376-4.368-6.74c-6.009-11.252-7.271-24.188-3.556-36.423
c3.717-12.236,11.961-22.284,23.214-28.292c6.9-3.685,14.666-5.634,22.457-5.634c17.735,0,33.926,9.69,42.261,25.289
c0.982,1.842,1.844,3.747,2.579,5.699c9.099-3.819,12.69-4.366,14.8-4.366c1.013,0,1.998,0.121,2.924,0.358
c1.293,0.332,2.669,0.742,4.078,1.183c-5.273-4.064-9.735-9.237-12.986-15.327c-6.01-11.251-7.273-24.187-3.557-36.422
c3.716-12.236,11.96-22.283,23.213-28.293c6.901-3.686,14.667-5.634,22.458-5.634c17.735,0,33.928,9.691,42.261,25.29
c12.421,23.263,3.603,52.294-19.659,64.717c-6.899,3.684-14.666,5.633-22.456,5.633l0,0c-1.832,0-3.641-0.128-5.432-0.331
c11.111,5.199,22.66,11.332,32.334,16.882c16.545,9.491,28.185,17.265,34.596,23.103c5.996,5.46,7.224,8.895,7.224,12.371V256.284
z"/>
<path fill="#1976D2" d="M206.09,103.262c20.968-11.197,28.912-37.365,17.719-58.33c-11.199-20.967-37.365-28.914-58.332-17.716
c-20.968,11.197-28.914,37.363-17.717,58.328C158.956,106.511,185.124,114.458,206.09,103.262z M216.051,49.074
c8.908,16.688,2.585,37.516-14.103,46.427c-16.688,8.913-37.516,2.587-46.43-14.099c-8.911-16.69-2.587-37.514,14.103-46.426
C186.31,26.063,207.135,32.388,216.051,49.074z"/>
<polygon fill="#1976D2" points="176.778,188.58 174.823,186.833 173.32,185.495 167.878,180.639 164.984,178.056 164.412,177.544
159.543,173.2 157.033,170.962 156.104,170.131 151.279,175.538 154.101,178.058 159.543,182.911 162.437,185.495 167.88,190.351
171.336,193.436 176.331,197.892 179.214,196.12 182.777,193.931 182.225,193.436 "/>
<polygon fill="#1976D2" points="164.422,193.436 158.979,188.58 156.085,185.997 150.645,181.142 148.908,179.595
147.979,178.765 143.154,184.171 145.199,185.997 150.645,190.853 153.536,193.436 158.979,198.292 162.437,201.378
165.79,204.368 172.238,200.408 167.88,196.521 "/>
<polygon fill="#1976D2" points="156.085,200.876 150.642,196.019 147.746,193.436 142.306,188.58 140.402,186.88 135.577,192.287
136.864,193.436 142.306,198.292 145.199,200.874 150.645,205.73 154.101,208.815 155.916,210.437 162.361,206.475
159.543,203.962 "/>
<polygon fill="#1976D2" points="174.549,181.671 180.818,174.766 175.925,170.325 169.619,177.269 169.436,177.472
174.33,181.913 "/>
<polygon fill="#1976D2" points="139.516,210.497 145.424,213.822 149.264,209.595 144.37,205.153 "/>
<polygon fill="#1976D2" points="185.35,55.658 188.245,58.241 193.688,63.098 197.145,66.182 202.587,71.038 203.838,72.154
208.661,66.746 208.029,66.182 202.587,61.326 200.628,59.578 199.13,58.241 193.688,53.384 190.792,50.803 190.22,50.291
185.352,45.946 182.841,43.707 181.914,42.876 177.086,48.285 179.908,50.803 "/>
<polygon fill="#1976D2" points="171.007,58.744 176.449,63.6 179.342,66.182 184.785,71.038 188.245,74.124 193.688,78.979
194.787,79.96 195.714,80.786 200.535,75.38 199.13,74.124 193.688,69.269 190.229,66.182 184.785,61.326 181.891,58.744
176.451,53.888 174.718,52.34 173.787,51.51 168.96,56.919 "/>
<polygon fill="#1976D2" points="185.352,76.706 181.891,73.62 176.451,68.764 173.555,66.182 168.111,61.326 166.21,59.627
161.387,65.036 162.671,66.182 168.111,71.038 171.007,73.62 176.451,78.478 179.908,81.562 185.352,86.418 187.208,88.076
188.135,88.902 192.959,83.496 190.792,81.562 "/>
<polygon fill="#1976D2" points="200.357,54.416 206.626,47.515 201.734,43.071 195.428,50.016 195.245,50.218 200.135,54.66 "/>
<polygon fill="#1976D2" points="163.687,85.044 168.582,89.487 175.072,82.341 170.179,77.9 "/>
<polygon fill="#1976D2" points="108.067,129.667 112.892,124.26 110.986,122.558 104.858,117.092 94.447,107.804 87.072,101.22
86.142,100.39 81.315,105.798 104.133,126.153 "/>
<polygon fill="#1976D2" points="93.059,132.156 99.017,137.474 99.944,138.3 104.767,132.893 99.809,128.469 78.945,109.853
78.019,109.022 73.191,114.431 "/>
<polygon fill="#1976D2" points="70.438,117.14 65.616,122.548 82.855,137.931 90.572,144.814 91.438,145.587 92.365,146.415
97.047,141.168 97.19,141.009 89.496,134.145 "/>
<polygon fill="#1976D2" points="104.589,111.929 110.856,105.025 105.965,100.584 99.658,107.527 99.475,107.729 104.366,112.173
"/>
<polygon fill="#1976D2" points="67.918,142.558 70.767,145.146 72.811,147 79.012,140.175 79.302,139.854 74.407,135.411 "/>
<path fill="#1976D2" d="M244.178,156.201c-5.157-4.694-14.992-11.727-33.767-22.498c-18.376-10.541-43.545-23.228-59.081-27.22
c-0.542-0.139-1.13-0.21-1.747-0.211c-3.174,0.001-9.96,2.572-17.736,6.077c-0.839-3.375-2.098-6.701-3.808-9.905
c-11.201-20.965-37.366-28.913-58.331-17.716c-20.967,11.195-28.915,37.362-17.717,58.329c1.947,3.647,4.359,6.894,7.106,9.721
c-4.556,3.215-7.271,5.555-8.839,7.473c-1.525,1.869-1.97,3.34-1.97,4.832v91.201c0,10.375,8.443,18.818,18.816,18.818
l163.938-0.001c10.378,0,18.816-8.442,18.816-18.817v-91.201C249.859,163.712,249.856,161.374,244.178,156.201z M120.28,106.589
c1.648,3.086,2.771,6.316,3.407,9.586c0.7,3.587,0.8,7.223,0.357,10.773c-1.334,10.697-7.657,20.613-17.869,26.067
c-9.904,5.29-21.27,5.21-30.732,0.784c-3.226-1.51-6.225-3.533-8.876-6.012c-2.677-2.502-4.998-5.468-6.816-8.875
c-8.913-16.688-2.588-37.513,14.1-46.425C90.539,83.575,111.366,89.9,120.28,106.589z M236.51,162.499l-49.745,30.078
l-10.604,6.412l-2.452,1.482l-7.487,4.527l-3.123,1.89l-9.938,6.009l-4.296,2.596l-0.616,0.373l-12.045-7.184l-1.489-0.888
l-7.139-4.019c-0.035-0.102-0.064-0.199-0.098-0.299c-5.283-15.604,1.336-33.236,16.336-41.249
c16.688-8.912,37.517-2.586,46.428,14.102c1.851,3.467,3.036,7.112,3.615,10.793l7.986-4.908
c-0.839-3.415-2.11-6.786-3.841-10.029c-11.2-20.966-37.364-28.913-58.332-17.717c-16.009,8.549-24.414,25.825-22.518,42.85
l-56.335-33.609c1.554-1.231,3.643-2.743,6.239-4.499c12.674,7.953,29.145,9.104,43.262,1.564
c14.548-7.769,22.821-22.746,22.786-38.191c8.371-3.899,14.193-6.198,16.25-6.473c11.672,3.109,32.127,12.507,53.591,24.638
c15.806,8.931,26.645,16.235,32.453,20.851C235.79,161.911,236.163,162.212,236.51,162.499z M240.046,171.831v84.453
c0,0.703-0.088,1.385-0.24,2.042l-36.433-64.319L240.046,171.831z M58.104,173.519l34.508,20.587l-34.508,60.933V173.519z
M101.044,199.137l47.238,28.181l46.69-28.233l37.431,66.089c-0.447,0.067-0.896,0.114-1.36,0.114H67.105
c-1.124,0-2.195-0.216-3.189-0.595L101.044,199.137z"/>
</g>
=======
<path fill="#1976D2" d="M269.921,0H30.08C13.493,0,0,13.494,0,30.08v239.84C0,286.506,13.493,300,30.08,300h239.841
C286.506,300,300,286.506,300,269.92V30.08C300,13.494,286.506,0,269.921,0z M143.299,53.225
c3.583-11.796,11.53-21.482,22.377-27.275c6.652-3.553,14.139-5.431,21.648-5.431c15.026,0,28.906,7.216,37.501,19.173
c0.573,0.797,1.123,1.615,1.647,2.454c0.56,0.895,1.092,1.812,1.594,2.752c5.791,10.847,7.009,23.317,3.426,35.113
c-3.583,11.797-11.531,21.484-22.379,27.277c-6.652,3.552-14.137,5.43-21.647,5.43c-17.101,0-32.711-9.342-40.741-24.38
C140.933,77.491,139.716,65.021,143.299,53.225z M254.473,166.466v91.196c0,12.027-9.789,21.814-21.817,21.814l-163.938,0.006
c-12.03,0-21.817-9.789-21.817-21.818v-91.2v-0.001c0-1.783,0.473-3.432,1.471-5.078c0.333-0.549,0.724-1.098,1.175-1.65
c1.426-1.743,3.589-3.695,6.706-6.043c-2.033-2.428-3.807-5.054-5.295-7.841c-4.781-8.951-6.437-19.007-4.858-28.879
c0.334-2.09,0.804-4.173,1.43-6.234C51.112,98.94,59.06,89.254,69.907,83.462c6.651-3.552,14.137-5.43,21.646-5.43
c17.099,0,32.711,9.342,40.743,24.379c1.23,2.303,2.263,4.71,3.086,7.188c10.192-4.4,13.895-4.946,15.812-4.946
c0.863,0,1.699,0.101,2.484,0.3c15.838,4.071,41.292,16.888,59.836,27.527c16.43,9.425,27.969,17.124,34.295,22.881
C253.963,160.965,254.477,164.032,254.473,166.466L254.473,166.466z"/>
<path fill="#1976D2" d="M111.93,162.154c-14.119,7.541-30.589,6.39-43.265-1.563c-2.595,1.757-4.684,3.269-6.238,4.499
l56.336,33.61v-0.001c-0.178-1.596-0.265-3.194-0.264-4.787c0.006-8.962,2.806-17.76,8.005-25.075
c0.347-0.488,0.704-0.969,1.072-1.443c0.654-0.843,1.341-1.664,2.061-2.461c0.72-0.796,1.473-1.568,2.257-2.314
c2.746-2.611,5.884-4.899,9.387-6.769c20.966-11.197,47.131-3.25,58.332,17.717c1.73,3.242,3.001,6.613,3.84,10.029l-7.986,4.907
c-0.578-3.681-1.761-7.325-3.615-10.793c-8.91-16.688-29.74-23.015-46.429-14.103c-14.998,8.013-21.619,25.646-16.333,41.25
c0.031,0.099,0.061,0.197,0.095,0.297l7.14,4.021l13.534,8.071l88.262-53.368c-0.346-0.287-0.719-0.587-1.113-0.899
c-5.803-4.615-16.643-11.92-32.449-20.85c-21.467-12.132-41.92-21.529-53.592-24.637c-2.058,0.273-7.88,2.572-16.25,6.471
c0.002,0.965-0.028,1.929-0.09,2.889c-0.117,1.8-0.346,3.588-0.684,5.353C131.576,144.559,123.865,155.78,111.93,162.154z
M177.524,171.709l4.896,4.442l-0.001,0.001l-6.486,7.148l-4.888-4.436l-0.008-0.008L177.524,171.709z M147.035,215.203
l-5.906-3.326l4.852-5.344l4.896,4.441L147.035,215.203z M157.527,211.816l-1.815-1.621l-3.456-3.086l-5.443-4.855l-2.893-2.582
l-5.444-4.855l-1.287-1.148h0l4.825-5.408l1.902,1.7l5.442,4.856l2.895,2.582l5.442,4.856l3.459,3.085l2.818,2.514L157.527,211.816
z M167.4,205.748l-3.352-2.992l-3.459-3.084l-5.443-4.857l-2.891-2.582l-5.443-4.855l-2.047-1.826l0.58-0.649l4.246-4.757
l0.928,0.83l1.736,1.547l5.439,4.855l2.893,2.583l5.446,4.856l3.457,3.084l4.358,3.887L167.4,205.748z M180.826,197.5l-2.883,1.771
l-4.996-4.455l-3.456-3.086l-5.442-4.855l-2.895-2.584l-5.442-4.855l-2.819-2.518l4.824-5.408l0.928,0.83l2.51,2.239l5.441,4.856
l2.894,2.582l5.444,4.857l3.457,3.085l5.443,4.856l0.554,0.493l0.001,0.001L180.826,197.5z"/>
<path fill="#1976D2" d="M187.19,100.922c4.427,0.034,8.908-0.79,13.194-2.546c1.071-0.439,2.131-0.937,3.174-1.494
c16.688-8.912,23.012-29.74,14.104-46.428c-6.13-11.472-17.889-18.046-30.062-18.139c-5.533-0.042-11.152,1.255-16.367,4.04
c-16.688,8.913-23.014,29.737-14.105,46.427C163.255,94.253,175.016,100.829,187.19,100.922z M165.298,86.425l6.491-7.145v0
l4.895,4.44l-6.49,7.147L165.298,86.425z M189.747,90.282l-0.929-0.826l-1.856-1.658l-5.442-4.857l-3.457-3.085L172.618,75
l-2.896-2.582l-5.44-4.856l-1.284-1.147l4.822-5.409l1.902,1.699l5.444,4.857l2.896,2.582L183.505,75l3.457,3.085l5.44,4.857
l2.168,1.933L189.747,90.282z M203.353,44.457l4.893,4.443l-6.492,7.148l-0.003-0.003l-4.89-4.44l6.49-7.146L203.353,44.457z
M183.525,44.256l0.928,0.83l2.51,2.24l5.439,4.856l2.896,2.582l5.444,4.857l3.457,3.084l5.443,4.857l0.629,0.564l-4.822,5.408
l-1.25-1.116l-5.443-4.856l-3.458-3.085l-5.442-4.856l-2.895-2.583l-5.441-4.856l-2.824-2.517L183.525,44.256z M176.328,53.72
l1.734,1.548l5.442,4.856l2.894,2.581l5.442,4.857l3.457,3.086l5.444,4.855l1.404,1.257l-4.821,5.406l-0.001,0l-0.928-0.826
l-1.099-0.981l-5.442-4.856l-3.457-3.085l-5.444-4.856l-2.892-2.583l-5.444-4.855l-2.046-1.825l4.824-5.409L176.328,53.72z"/>
<polygon fill="#1976D2" points="59.715,174.898 59.715,256.418 94.226,195.484 "/>
<path fill="#1976D2" d="M241.417,259.706c0.151-0.657,0.24-1.34,0.24-2.042v-84.453l-36.673,22.176L241.417,259.706z"/>
<path fill="#1976D2" d="M196.584,200.466l-46.69,28.232l-47.237-28.183l-37.129,65.557l0,0.001c0.994,0.379,2.065,0.595,3.19,0.595
h163.938c0.462,0,0.912-0.047,1.357-0.113l-0.001-0.002L196.584,200.466z"/>
<path fill="#1976D2" d="M68.179,149.165c2.65,2.481,5.651,4.502,8.876,6.015c9.464,4.428,20.827,4.506,30.732-0.785
c1.276-0.682,2.492-1.434,3.646-2.247c8.07-5.697,13.056-14.459,14.224-23.819c0.222-1.774,0.307-3.57,0.25-5.371
c-0.058-1.802-0.258-3.608-0.607-5.403c-0.635-3.269-1.76-6.499-3.407-9.585c-8.914-16.688-29.741-23.015-46.43-14.101
c-11.474,6.126-18.048,17.884-18.14,30.057c-0.042,5.533,1.255,11.151,4.04,16.365C63.182,143.697,65.503,146.663,68.179,149.165z
M80.622,141.554l-6.2,6.827l-2.042-1.856l-2.851-2.587l6.49-7.146l4.895,4.442L80.622,141.554z M98.659,142.548l-4.681,5.247
l-0.927-0.827l-0.867-0.773l-7.715-6.884l-17.241-15.383l0,0l4.82-5.408l19.058,17.005l7.695,6.864L98.659,142.548z
M101.553,139.68l-0.926-0.827l-5.958-5.316l-19.866-17.726l4.828-5.408l0.926,0.829l20.863,18.616l4.958,4.424L101.553,139.68z
M109.679,131.046l-3.936-3.513l-22.816-20.356l4.828-5.407l0.929,0.83l23.915,21.338l1.904,1.702L109.679,131.046z
M101.086,109.122l6.486-7.146l4.892,4.44l0.002,0.002l-6.489,7.149l-4.894-4.442L101.086,109.122z"/>
<path fill="#1976D2" d="M269.921,0H30.08C13.493,0,0,13.494,0,30.08v239.84C0,286.506,13.493,300,30.08,300h239.841
C286.506,300,300,286.506,300,269.92V30.08C300,13.494,286.506,0,269.921,0z M143.299,53.225
c3.583-11.796,11.53-21.482,22.377-27.275c6.652-3.553,14.139-5.431,21.648-5.431c15.026,0,28.906,7.216,37.501,19.173
c0.573,0.797,1.123,1.615,1.647,2.454c0.56,0.895,1.092,1.812,1.594,2.752c5.791,10.847,7.009,23.317,3.426,35.113
c-3.583,11.797-11.531,21.484-22.379,27.277c-6.652,3.552-14.137,5.43-21.647,5.43c-17.101,0-32.711-9.342-40.741-24.38
C140.933,77.491,139.716,65.021,143.299,53.225z M254.473,166.466v91.196c0,12.027-9.789,21.814-21.817,21.814l-163.938,0.006
c-12.03,0-21.817-9.789-21.817-21.818v-91.2v-0.001c0-1.783,0.473-3.432,1.471-5.078c0.333-0.549,0.724-1.098,1.175-1.65
c1.426-1.743,3.589-3.695,6.706-6.043c-2.033-2.428-3.807-5.054-5.295-7.841c-4.781-8.951-6.437-19.007-4.858-28.879
c0.334-2.09,0.804-4.173,1.43-6.234C51.112,98.94,59.06,89.254,69.907,83.462c6.651-3.552,14.137-5.43,21.646-5.43
c17.099,0,32.711,9.342,40.743,24.379c1.23,2.303,2.263,4.71,3.086,7.188c10.192-4.4,13.895-4.946,15.812-4.946
c0.863,0,1.699,0.101,2.484,0.3c15.838,4.071,41.292,16.888,59.836,27.527c16.43,9.425,27.969,17.124,34.295,22.881
C253.963,160.965,254.477,164.032,254.473,166.466L254.473,166.466z"/>
<path fill="#1976D2" d="M111.93,162.154c-14.119,7.541-30.589,6.39-43.265-1.563c-2.595,1.757-4.684,3.269-6.238,4.499
l56.336,33.61v-0.001c-0.178-1.596-0.265-3.194-0.264-4.787c0.006-8.962,2.806-17.76,8.005-25.075
c0.347-0.488,0.704-0.969,1.072-1.443c0.654-0.843,1.341-1.664,2.061-2.461c0.72-0.796,1.473-1.568,2.257-2.314
c2.746-2.611,5.884-4.899,9.387-6.769c20.966-11.197,47.131-3.25,58.332,17.717c1.73,3.242,3.001,6.613,3.84,10.029l-7.986,4.907
c-0.578-3.681-1.761-7.325-3.615-10.793c-8.91-16.688-29.74-23.015-46.429-14.103c-14.998,8.013-21.619,25.646-16.333,41.25
c0.031,0.099,0.061,0.197,0.095,0.297l7.14,4.021l13.534,8.071l88.262-53.368c-0.346-0.287-0.719-0.587-1.113-0.899
c-5.803-4.615-16.643-11.92-32.449-20.85c-21.467-12.132-41.92-21.529-53.592-24.637c-2.058,0.273-7.88,2.572-16.25,6.471
c0.002,0.965-0.028,1.929-0.09,2.889c-0.117,1.8-0.346,3.588-0.684,5.353C131.576,144.559,123.865,155.78,111.93,162.154z
M177.524,171.709l4.896,4.442l-0.001,0.001l-6.486,7.148l-4.888-4.436l-0.008-0.008L177.524,171.709z M147.035,215.203
l-5.906-3.326l4.852-5.344l4.896,4.441L147.035,215.203z M157.527,211.816l-1.815-1.621l-3.456-3.086l-5.443-4.855l-2.893-2.582
l-5.444-4.855l-1.287-1.148h0l4.825-5.408l1.902,1.7l5.442,4.856l2.895,2.582l5.442,4.856l3.459,3.085l2.818,2.514L157.527,211.816
z M167.4,205.748l-3.352-2.992l-3.459-3.084l-5.443-4.857l-2.891-2.582l-5.443-4.855l-2.047-1.826l0.58-0.649l4.246-4.757
l0.928,0.83l1.736,1.547l5.439,4.855l2.893,2.583l5.446,4.856l3.457,3.084l4.358,3.887L167.4,205.748z M180.826,197.5l-2.883,1.771
l-4.996-4.455l-3.456-3.086l-5.442-4.855l-2.895-2.584l-5.442-4.855l-2.819-2.518l4.824-5.408l0.928,0.83l2.51,2.239l5.441,4.856
l2.894,2.582l5.444,4.857l3.457,3.085l5.443,4.856l0.554,0.493l0.001,0.001L180.826,197.5z"/>
<path fill="#1976D2" d="M187.19,100.922c4.427,0.034,8.908-0.79,13.194-2.546c1.071-0.439,2.131-0.937,3.174-1.494
c16.688-8.912,23.012-29.74,14.104-46.428c-6.13-11.472-17.889-18.046-30.062-18.139c-5.533-0.042-11.152,1.255-16.367,4.04
c-16.688,8.913-23.014,29.737-14.105,46.427C163.255,94.253,175.016,100.829,187.19,100.922z M165.298,86.425l6.491-7.145v0
l4.895,4.44l-6.49,7.147L165.298,86.425z M189.747,90.282l-0.929-0.826l-1.856-1.658l-5.442-4.857l-3.457-3.085L172.618,75
l-2.896-2.582l-5.44-4.856l-1.284-1.147l4.822-5.409l1.902,1.699l5.444,4.857l2.896,2.582L183.505,75l3.457,3.085l5.44,4.857
l2.168,1.933L189.747,90.282z M203.353,44.457l4.893,4.443l-6.492,7.148l-0.003-0.003l-4.89-4.44l6.49-7.146L203.353,44.457z
M183.525,44.256l0.928,0.83l2.51,2.24l5.439,4.856l2.896,2.582l5.444,4.857l3.457,3.084l5.443,4.857l0.629,0.564l-4.822,5.408
l-1.25-1.116l-5.443-4.856l-3.458-3.085l-5.442-4.856l-2.895-2.583l-5.441-4.856l-2.824-2.517L183.525,44.256z M176.328,53.72
l1.734,1.548l5.442,4.856l2.894,2.581l5.442,4.857l3.457,3.086l5.444,4.855l1.404,1.257l-4.821,5.406l-0.001,0l-0.928-0.826
l-1.099-0.981l-5.442-4.856l-3.457-3.085l-5.444-4.856l-2.892-2.583l-5.444-4.855l-2.046-1.825l4.824-5.409L176.328,53.72z"/>
<polygon fill="#1976D2" points="59.715,174.898 59.715,256.418 94.226,195.484 "/>
<path fill="#1976D2" d="M241.417,259.706c0.151-0.657,0.24-1.34,0.24-2.042v-84.453l-36.673,22.176L241.417,259.706z"/>
<path fill="#1976D2" d="M196.584,200.466l-46.69,28.232l-47.237-28.183l-37.129,65.557l0,0.001c0.994,0.379,2.065,0.595,3.19,0.595
h163.938c0.462,0,0.912-0.047,1.357-0.113l-0.001-0.002L196.584,200.466z"/>
<path fill="#1976D2" d="M68.179,149.165c2.65,2.481,5.651,4.502,8.876,6.015c9.464,4.428,20.827,4.506,30.732-0.785
c1.276-0.682,2.492-1.434,3.646-2.247c8.07-5.697,13.056-14.459,14.224-23.819c0.222-1.774,0.307-3.57,0.25-5.371
c-0.058-1.802-0.258-3.608-0.607-5.403c-0.635-3.269-1.76-6.499-3.407-9.585c-8.914-16.688-29.741-23.015-46.43-14.101
c-11.474,6.126-18.048,17.884-18.14,30.057c-0.042,5.533,1.255,11.151,4.04,16.365C63.182,143.697,65.503,146.663,68.179,149.165z
M80.622,141.554l-6.2,6.827l-2.042-1.856l-2.851-2.587l6.49-7.146l4.895,4.442L80.622,141.554z M98.659,142.548l-4.681,5.247
l-0.927-0.827l-0.867-0.773l-7.715-6.884l-17.241-15.383l0,0l4.82-5.408l19.058,17.005l7.695,6.864L98.659,142.548z
M101.553,139.68l-0.926-0.827l-5.958-5.316l-19.866-17.726l4.828-5.408l0.926,0.829l20.863,18.616l4.958,4.424L101.553,139.68z
M109.679,131.046l-3.936-3.513l-22.816-20.356l4.828-5.407l0.929,0.83l23.915,21.338l1.904,1.702L109.679,131.046z
M101.086,109.122l6.486-7.146l4.892,4.44l0.002,0.002l-6.489,7.149l-4.894-4.442L101.086,109.122z"/>
>>>>>>> add-art-0.1.2
</g>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<path fill="#1976D2" d="M150.021,2.579C68.341,2.579,2.127,68.793,2.127,150.472c0,81.682,66.214,147.895,147.895,147.895
c81.676,0,147.89-66.213,147.89-147.895C297.911,68.793,231.697,2.579,150.021,2.579z M99.195,73.557
c0,0,60.301,60.307,60.306,60.309c4.899,4.895,11.188,13.849,8.663,21.061c-1.835,5.236-6.053,9.546-9.893,13.383
c-0.091,0.093-59.076,59.078-59.076,59.078c-6.26,6.26-16.406,6.26-22.665,0c-6.261-6.256-6.261-16.406,0-22.665l54.247-54.25
L76.53,96.224c-6.261-6.259-6.261-16.407,0-22.667c3.128-3.128,7.23-4.693,11.329-4.693C91.965,68.864,96.065,70.429,99.195,73.557
z M146.365,73.557c3.125-3.128,7.23-4.693,11.33-4.693c4.101,0,8.204,1.565,11.335,4.693c0,0,60.303,60.307,60.308,60.309
c4.895,4.894,11.188,13.849,8.659,21.061c-1.832,5.236-6.05,9.546-9.889,13.383c-0.092,0.094-59.078,59.078-59.078,59.078
c-6.256,6.26-16.405,6.26-22.665,0c-6.258-6.256-6.258-16.406,0-22.665l54.246-54.25l-54.246-54.25
C140.107,89.966,140.107,79.818,146.365,73.557z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<path fill="#1976D2" d="M150.021,2.579C68.341,2.579,2.127,68.793,2.127,150.472c0,81.682,66.214,147.895,147.895,147.895
c81.676,0,147.89-66.213,147.89-147.895C297.911,68.793,231.697,2.579,150.021,2.579z M99.195,73.557
c0,0,60.301,60.307,60.306,60.309c4.899,4.895,11.188,13.849,8.663,21.061c-1.835,5.236-6.053,9.546-9.893,13.383
c-0.091,0.093-59.076,59.078-59.076,59.078c-6.26,6.26-16.406,6.26-22.665,0c-6.261-6.256-6.261-16.406,0-22.665l54.247-54.25
L76.53,96.224c-6.261-6.259-6.261-16.407,0-22.667c3.128-3.128,7.23-4.693,11.329-4.693C91.965,68.864,96.065,70.429,99.195,73.557
z M146.365,73.557c3.125-3.128,7.23-4.693,11.33-4.693c4.101,0,8.204,1.565,11.335,4.693c0,0,60.303,60.307,60.308,60.309
c4.895,4.894,11.188,13.849,8.659,21.061c-1.832,5.236-6.05,9.546-9.889,13.383c-0.092,0.094-59.078,59.078-59.078,59.078
c-6.256,6.26-16.405,6.26-22.665,0c-6.258-6.256-6.258-16.406,0-22.665l54.246-54.25l-54.246-54.25
C140.107,89.966,140.107,79.818,146.365,73.557z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -1,199 +1,199 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<<<<<<< HEAD
<path fill="none" d="M204.978,104.543l36.731,22.209V42.164c0-0.703-0.089-1.386-0.243-2.045L204.978,104.543z"/>
<path fill="none" d="M136.219,90.727l-7.157,4.03c-0.035,0.099-0.063,0.2-0.098,0.299c-5.293,15.628,1.34,33.29,16.36,41.313
c16.715,8.927,37.576,2.591,46.502-14.125c1.855-3.472,3.04-7.123,3.621-10.81l7.997,4.915c-0.839,3.424-2.111,6.796-3.847,10.047
c-11.215,20.999-37.423,28.958-58.424,17.744c-16.032-8.562-24.451-25.865-22.551-42.916l-56.425,33.661
c1.679,1.332,3.981,2.986,6.874,4.926c12.635-7.719,28.914-8.758,42.894-1.293c14.382,7.68,22.642,22.389,22.824,37.643
c8.247,3.836,14.003,6.102,16.098,6.395c11.693-3.115,32.171-12.527,53.664-24.672c15.829-8.945,26.685-16.262,32.501-20.884
c0.393-0.313,0.769-0.614,1.115-0.902l-88.403-53.453L136.219,90.727z M144.284,128.455l-4.903-4.451l6.502-7.155l4.901,4.447
L144.284,128.455z M163.87,127.87l-0.932-0.83l-25.861-23.076l4.829-5.418l26.796,23.908L163.87,127.87z M153.931,85.924
l26.85,16.499l3.647,3.255l-4.832,5.415l-26.794-23.906L153.931,85.924z M176.29,114.325l-4.832,5.416l-0.929-0.828l-25.864-23.078
l4.835-5.417l0.928,0.833L176.29,114.325z"/>
<path fill="none" d="M269.92,12.587H30.078c-9.646,0-17.491,7.847-17.491,17.492V269.92c0,9.646,7.846,17.493,17.491,17.493H269.92
c9.646,0,17.493-7.847,17.493-17.493V30.079C287.413,20.434,279.566,12.587,269.92,12.587z M225.446,253.853
c-11.215,20.998-37.423,28.958-58.422,17.743c-21.002-11.214-28.961-37.422-17.746-58.421
c11.217-20.999,37.422-28.961,58.422-17.744C228.699,206.645,236.658,232.852,225.446,253.853z M251.541,133.511
c0,1.373-0.006,3.715-5.691,8.894c-5.167,4.703-15.018,11.745-33.822,22.534c-18.405,10.561-43.613,23.266-59.174,27.264
c-0.544,0.14-1.132,0.21-1.751,0.21c-3.134,0-9.79-2.505-17.445-5.941c-0.836,3.567-2.139,7.086-3.944,10.47
c-11.215,20.999-37.422,28.958-58.423,17.743c-21-11.214-28.96-37.422-17.745-58.421c2.027-3.797,4.552-7.161,7.442-10.07
c-4.879-3.405-7.738-5.85-9.364-7.844c-1.527-1.869-1.972-3.344-1.972-4.838V42.164c0-10.392,8.453-18.846,18.846-18.846h164.195
c10.391,0,18.849,8.455,18.849,18.846V133.511z"/>
<path fill="none" d="M149.8,71.178l46.764,28.277l37.489-66.194c-0.444-0.068-0.897-0.113-1.36-0.113l-164.195,0
c-1.126,0-2.201,0.215-3.195,0.595l37.187,65.661L149.8,71.178z"/>
<path fill="none" d="M107.816,146.289c-9.734-5.197-20.869-5.211-30.239-1.023c-3.288,1.47-6.356,3.455-9.072,5.921
c-2.834,2.573-5.284,5.662-7.188,9.227c-8.928,16.713-2.592,37.574,14.123,46.5c16.713,8.928,37.574,2.591,46.5-14.123
c1.744-3.268,2.899-6.693,3.513-10.157c0.646-3.629,0.691-7.3,0.179-10.877C124.125,161.289,117.838,151.643,107.816,146.289z
M101.56,159.163l6.043-6.654l4.903,4.449l-4.957,5.454l-1.544,1.704l-4.903-4.449L101.56,159.163z M74.399,198.999l-4.903-4.449
l6.5-7.157l4.903,4.448L74.399,198.999z M93.985,198.413l-0.933-0.83L67.19,174.509l4.832-5.418l26.792,23.908L93.985,198.413z
M101.573,190.283l-0.93-0.827L74.781,166.38l4.831-5.418l0.93,0.831l25.86,23.078L101.573,190.283z M113.954,176.88l-4.245,4.758
l-19.934-17.786l-6.858-6.12l4.834-5.416l0.929,0.832l25.863,23.076L113.954,176.88z"/>
<polygon fill="none" points="59.48,43.412 59.48,125.062 94.046,104.44 "/>
<path fill="none" d="M203.548,203.2c-16.711-8.924-37.569-2.589-46.497,14.124c-8.926,16.716-2.589,37.573,14.123,46.5
c16.716,8.926,37.574,2.591,46.501-14.124C226.601,232.988,220.266,212.127,203.548,203.2z M203.336,209.42l4.903,4.449
l-6.501,7.158l-4.903-4.449L203.336,209.42z M170.133,255.911l-4.9-4.451l6.499-7.156l4.903,4.449L170.133,255.911z
M189.719,255.325l-0.932-0.829l-25.861-23.077l4.832-5.418l26.792,23.909L189.719,255.325z M197.307,247.196l-0.931-0.828
l-25.864-23.078l4.836-5.417l0.93,0.832l25.861,23.076L197.307,247.196z M205.443,238.549l-26.791-23.907l4.832-5.416l0.931,0.831
l25.861,23.077L205.443,238.549z"/>
<path fill="#9C27B0" d="M232.692,23.318H68.497c-10.393,0-18.846,8.455-18.846,18.846v91.347c0,1.494,0.444,2.969,1.972,4.838
c1.626,1.994,4.485,4.438,9.364,7.844c-2.891,2.909-5.415,6.273-7.442,10.07C42.33,177.262,50.29,203.47,71.29,214.684
c21.001,11.215,47.208,3.256,58.423-17.743c1.806-3.384,3.108-6.902,3.944-10.47c7.655,3.437,14.312,5.941,17.445,5.941
c0.619,0,1.207-0.07,1.751-0.21c15.561-3.998,40.769-16.703,59.174-27.264c18.805-10.789,28.655-17.831,33.822-22.534
c5.686-5.179,5.691-7.521,5.691-8.894V42.164C251.541,31.772,243.083,23.318,232.692,23.318z M68.497,33.147l164.195,0
c0.463,0,0.916,0.045,1.36,0.113l-37.489,66.194L149.8,71.178l-47.312,28.226L65.302,33.743
C66.296,33.363,67.371,33.147,68.497,33.147z M59.48,125.062v-81.65l34.565,61.028L59.48,125.062z M125.453,182.633
c-0.613,3.464-1.769,6.89-3.513,10.157c-8.926,16.714-29.787,23.051-46.5,14.123c-16.715-8.926-23.051-29.787-14.123-46.5
c1.903-3.564,4.354-6.653,7.188-9.227c2.716-2.466,5.784-4.451,9.072-5.921c9.37-4.188,20.505-4.174,30.239,1.023
c10.021,5.354,16.309,15,17.815,25.467C126.145,175.333,126.099,179.004,125.453,182.633z M237.053,137
c-5.816,4.622-16.672,11.938-32.501,20.884c-21.493,12.145-41.971,21.557-53.664,24.672c-2.095-0.293-7.851-2.559-16.098-6.395
c-0.183-15.254-8.442-29.963-22.824-37.643c-13.979-7.465-30.259-6.426-42.894,1.293c-2.893-1.939-5.195-3.594-6.874-4.926
l56.425-33.661c-1.9,17.051,6.519,34.354,22.551,42.916c21.001,11.214,47.209,3.255,58.424-17.744
c1.735-3.251,3.008-6.623,3.847-10.047l-7.997-4.915c-0.581,3.687-1.766,7.338-3.621,10.81
c-8.926,16.715-29.787,23.051-46.502,14.125c-15.021-8.023-21.653-25.686-16.36-41.313c0.034-0.1,0.062-0.201,0.098-0.299
l7.157-4.03l13.546-8.082l88.403,53.453C237.821,136.386,237.445,136.687,237.053,137z M241.709,126.752l-36.731-22.209
l36.488-64.424c0.154,0.659,0.243,1.342,0.243,2.045V126.752z"/>
<polygon fill="#9C27B0" points="184.428,105.678 180.78,102.423 153.931,85.924 152.802,87.187 179.596,111.093 "/>
<polygon fill="#9C27B0" points="144.665,95.834 170.529,118.912 171.458,119.74 176.29,114.325 150.428,91.25 149.5,90.417 "/>
<polygon fill="#9C27B0" points="137.077,103.964 162.938,127.04 163.87,127.87 168.702,122.454 141.906,98.546 "/>
<polygon fill="#9C27B0" points="139.381,124.004 144.284,128.455 150.784,121.296 145.883,116.849 "/>
<polygon fill="#9C27B0" points="87.751,152.315 82.917,157.731 89.775,163.852 109.709,181.638 113.954,176.88 114.543,176.224
88.68,153.147 "/>
<polygon fill="#9C27B0" points="79.612,160.962 74.781,166.38 100.644,189.456 101.573,190.283 106.402,184.871 80.542,161.793
"/>
<polygon fill="#9C27B0" points="67.19,174.509 93.053,197.583 93.985,198.413 98.814,192.999 72.022,169.091 "/>
<polygon fill="#9C27B0" points="107.549,162.412 112.506,156.958 107.603,152.509 101.56,159.163 101.102,159.667 106.005,164.116
"/>
<rect x="71.887" y="188.361" transform="matrix(-0.7406 -0.672 0.672 -0.7406 1.0629 386.801)" fill="#9C27B0" width="6.621" height="9.669"/>
<path fill="#9C27B0" d="M207.7,195.431c-21-11.217-47.205-3.255-58.422,17.744c-11.215,20.999-3.256,47.207,17.746,58.421
c20.999,11.215,47.207,3.255,58.422-17.743C236.658,232.852,228.699,206.645,207.7,195.431z M217.675,249.7
c-8.927,16.715-29.785,23.05-46.501,14.124c-16.712-8.927-23.049-29.784-14.123-46.5c8.928-16.713,29.786-23.048,46.497-14.124
C220.266,212.127,226.601,232.988,217.675,249.7z"/>
<polygon fill="#9C27B0" points="183.484,209.226 178.652,214.642 205.443,238.549 210.276,233.134 184.415,210.057 "/>
<polygon fill="#9C27B0" points="175.348,217.873 170.512,223.29 196.376,246.368 197.307,247.196 202.139,241.781 176.277,218.705
"/>
<polygon fill="#9C27B0" points="162.926,231.419 188.787,254.496 189.719,255.325 194.55,249.91 167.758,226.001 "/>
<rect x="199.227" y="210.389" transform="matrix(0.7406 0.672 -0.672 0.7406 197.1713 -80.2653)" fill="#9C27B0" width="6.621" height="9.67"/>
<rect x="167.624" y="245.271" transform="matrix(-0.7402 -0.6724 0.6724 -0.7402 129.2995 550.17)" fill="#9C27B0" width="6.62" height="9.67"/>
<path fill="#9C27B0" d="M269.92,0H30.078C13.492,0,0,13.493,0,30.079V269.92C0,286.505,13.492,300,30.078,300H269.92
c16.586,0,30.08-13.495,30.08-30.08V30.079C300,13.492,286.506,0,269.92,0z M287.413,269.92c0,9.646-7.847,17.493-17.493,17.493
H30.078c-9.646,0-17.491-7.847-17.491-17.493V30.079c0-9.646,7.846-17.492,17.491-17.492H269.92
c9.646,0,17.493,7.847,17.493,17.492V269.92z"/>
<path fill="none" d="M204.978,104.543l36.731,22.209V42.164c0-0.703-0.089-1.386-0.243-2.045L204.978,104.543z"/>
<path fill="none" d="M136.219,90.727l-7.157,4.03c-0.035,0.099-0.063,0.2-0.098,0.299c-5.293,15.628,1.34,33.29,16.36,41.313
c16.715,8.927,37.576,2.591,46.502-14.125c1.855-3.472,3.04-7.123,3.621-10.81l7.997,4.915c-0.839,3.424-2.111,6.796-3.847,10.047
c-11.215,20.999-37.423,28.958-58.424,17.744c-16.032-8.562-24.451-25.865-22.551-42.916l-56.425,33.661
c1.679,1.332,3.981,2.986,6.874,4.926c12.635-7.719,28.914-8.758,42.894-1.293c14.382,7.68,22.642,22.389,22.824,37.643
c8.247,3.836,14.003,6.102,16.098,6.395c11.693-3.115,32.171-12.527,53.664-24.672c15.829-8.945,26.685-16.262,32.501-20.884
c0.393-0.313,0.769-0.614,1.115-0.902l-88.403-53.453L136.219,90.727z M144.284,128.455l-4.903-4.451l6.502-7.155l4.901,4.447
L144.284,128.455z M163.87,127.87l-0.932-0.83l-25.861-23.076l4.829-5.418l26.796,23.908L163.87,127.87z M153.931,85.924
l26.85,16.499l3.647,3.255l-4.832,5.415l-26.794-23.906L153.931,85.924z M176.29,114.325l-4.832,5.416l-0.929-0.828l-25.864-23.078
l4.835-5.417l0.928,0.833L176.29,114.325z"/>
<path fill="none" d="M269.92,12.587H30.078c-9.646,0-17.491,7.847-17.491,17.492V269.92c0,9.646,7.846,17.493,17.491,17.493H269.92
c9.646,0,17.493-7.847,17.493-17.493V30.079C287.413,20.434,279.566,12.587,269.92,12.587z M225.446,253.853
c-11.215,20.998-37.423,28.958-58.422,17.743c-21.002-11.214-28.961-37.422-17.746-58.421
c11.217-20.999,37.422-28.961,58.422-17.744C228.699,206.645,236.658,232.852,225.446,253.853z M251.541,133.511
c0,1.373-0.006,3.715-5.691,8.894c-5.167,4.703-15.018,11.745-33.822,22.534c-18.405,10.561-43.613,23.266-59.174,27.264
c-0.544,0.14-1.132,0.21-1.751,0.21c-3.134,0-9.79-2.505-17.445-5.941c-0.836,3.567-2.139,7.086-3.944,10.47
c-11.215,20.999-37.422,28.958-58.423,17.743c-21-11.214-28.96-37.422-17.745-58.421c2.027-3.797,4.552-7.161,7.442-10.07
c-4.879-3.405-7.738-5.85-9.364-7.844c-1.527-1.869-1.972-3.344-1.972-4.838V42.164c0-10.392,8.453-18.846,18.846-18.846h164.195
c10.391,0,18.849,8.455,18.849,18.846V133.511z"/>
<path fill="none" d="M149.8,71.178l46.764,28.277l37.489-66.194c-0.444-0.068-0.897-0.113-1.36-0.113l-164.195,0
c-1.126,0-2.201,0.215-3.195,0.595l37.187,65.661L149.8,71.178z"/>
<path fill="none" d="M107.816,146.289c-9.734-5.197-20.869-5.211-30.239-1.023c-3.288,1.47-6.356,3.455-9.072,5.921
c-2.834,2.573-5.284,5.662-7.188,9.227c-8.928,16.713-2.592,37.574,14.123,46.5c16.713,8.928,37.574,2.591,46.5-14.123
c1.744-3.268,2.899-6.693,3.513-10.157c0.646-3.629,0.691-7.3,0.179-10.877C124.125,161.289,117.838,151.643,107.816,146.289z
M101.56,159.163l6.043-6.654l4.903,4.449l-4.957,5.454l-1.544,1.704l-4.903-4.449L101.56,159.163z M74.399,198.999l-4.903-4.449
l6.5-7.157l4.903,4.448L74.399,198.999z M93.985,198.413l-0.933-0.83L67.19,174.509l4.832-5.418l26.792,23.908L93.985,198.413z
M101.573,190.283l-0.93-0.827L74.781,166.38l4.831-5.418l0.93,0.831l25.86,23.078L101.573,190.283z M113.954,176.88l-4.245,4.758
l-19.934-17.786l-6.858-6.12l4.834-5.416l0.929,0.832l25.863,23.076L113.954,176.88z"/>
<polygon fill="none" points="59.48,43.412 59.48,125.062 94.046,104.44 "/>
<path fill="none" d="M203.548,203.2c-16.711-8.924-37.569-2.589-46.497,14.124c-8.926,16.716-2.589,37.573,14.123,46.5
c16.716,8.926,37.574,2.591,46.501-14.124C226.601,232.988,220.266,212.127,203.548,203.2z M203.336,209.42l4.903,4.449
l-6.501,7.158l-4.903-4.449L203.336,209.42z M170.133,255.911l-4.9-4.451l6.499-7.156l4.903,4.449L170.133,255.911z
M189.719,255.325l-0.932-0.829l-25.861-23.077l4.832-5.418l26.792,23.909L189.719,255.325z M197.307,247.196l-0.931-0.828
l-25.864-23.078l4.836-5.417l0.93,0.832l25.861,23.076L197.307,247.196z M205.443,238.549l-26.791-23.907l4.832-5.416l0.931,0.831
l25.861,23.077L205.443,238.549z"/>
<path fill="#9C27B0" d="M232.692,23.318H68.497c-10.393,0-18.846,8.455-18.846,18.846v91.347c0,1.494,0.444,2.969,1.972,4.838
c1.626,1.994,4.485,4.438,9.364,7.844c-2.891,2.909-5.415,6.273-7.442,10.07C42.33,177.262,50.29,203.47,71.29,214.684
c21.001,11.215,47.208,3.256,58.423-17.743c1.806-3.384,3.108-6.902,3.944-10.47c7.655,3.437,14.312,5.941,17.445,5.941
c0.619,0,1.207-0.07,1.751-0.21c15.561-3.998,40.769-16.703,59.174-27.264c18.805-10.789,28.655-17.831,33.822-22.534
c5.686-5.179,5.691-7.521,5.691-8.894V42.164C251.541,31.772,243.083,23.318,232.692,23.318z M68.497,33.147l164.195,0
c0.463,0,0.916,0.045,1.36,0.113l-37.489,66.194L149.8,71.178l-47.312,28.226L65.302,33.743
C66.296,33.363,67.371,33.147,68.497,33.147z M59.48,125.062v-81.65l34.565,61.028L59.48,125.062z M125.453,182.633
c-0.613,3.464-1.769,6.89-3.513,10.157c-8.926,16.714-29.787,23.051-46.5,14.123c-16.715-8.926-23.051-29.787-14.123-46.5
c1.903-3.564,4.354-6.653,7.188-9.227c2.716-2.466,5.784-4.451,9.072-5.921c9.37-4.188,20.505-4.174,30.239,1.023
c10.021,5.354,16.309,15,17.815,25.467C126.145,175.333,126.099,179.004,125.453,182.633z M237.053,137
c-5.816,4.622-16.672,11.938-32.501,20.884c-21.493,12.145-41.971,21.557-53.664,24.672c-2.095-0.293-7.851-2.559-16.098-6.395
c-0.183-15.254-8.442-29.963-22.824-37.643c-13.979-7.465-30.259-6.426-42.894,1.293c-2.893-1.939-5.195-3.594-6.874-4.926
l56.425-33.661c-1.9,17.051,6.519,34.354,22.551,42.916c21.001,11.214,47.209,3.255,58.424-17.744
c1.735-3.251,3.008-6.623,3.847-10.047l-7.997-4.915c-0.581,3.687-1.766,7.338-3.621,10.81
c-8.926,16.715-29.787,23.051-46.502,14.125c-15.021-8.023-21.653-25.686-16.36-41.313c0.034-0.1,0.062-0.201,0.098-0.299
l7.157-4.03l13.546-8.082l88.403,53.453C237.821,136.386,237.445,136.687,237.053,137z M241.709,126.752l-36.731-22.209
l36.488-64.424c0.154,0.659,0.243,1.342,0.243,2.045V126.752z"/>
<polygon fill="#9C27B0" points="184.428,105.678 180.78,102.423 153.931,85.924 152.802,87.187 179.596,111.093 "/>
<polygon fill="#9C27B0" points="144.665,95.834 170.529,118.912 171.458,119.74 176.29,114.325 150.428,91.25 149.5,90.417 "/>
<polygon fill="#9C27B0" points="137.077,103.964 162.938,127.04 163.87,127.87 168.702,122.454 141.906,98.546 "/>
<polygon fill="#9C27B0" points="139.381,124.004 144.284,128.455 150.784,121.296 145.883,116.849 "/>
<polygon fill="#9C27B0" points="87.751,152.315 82.917,157.731 89.775,163.852 109.709,181.638 113.954,176.88 114.543,176.224
88.68,153.147 "/>
<polygon fill="#9C27B0" points="79.612,160.962 74.781,166.38 100.644,189.456 101.573,190.283 106.402,184.871 80.542,161.793
"/>
<polygon fill="#9C27B0" points="67.19,174.509 93.053,197.583 93.985,198.413 98.814,192.999 72.022,169.091 "/>
<polygon fill="#9C27B0" points="107.549,162.412 112.506,156.958 107.603,152.509 101.56,159.163 101.102,159.667 106.005,164.116
"/>
<rect x="71.887" y="188.361" transform="matrix(-0.7406 -0.672 0.672 -0.7406 1.0629 386.801)" fill="#9C27B0" width="6.621" height="9.669"/>
<path fill="#9C27B0" d="M207.7,195.431c-21-11.217-47.205-3.255-58.422,17.744c-11.215,20.999-3.256,47.207,17.746,58.421
c20.999,11.215,47.207,3.255,58.422-17.743C236.658,232.852,228.699,206.645,207.7,195.431z M217.675,249.7
c-8.927,16.715-29.785,23.05-46.501,14.124c-16.712-8.927-23.049-29.784-14.123-46.5c8.928-16.713,29.786-23.048,46.497-14.124
C220.266,212.127,226.601,232.988,217.675,249.7z"/>
<polygon fill="#9C27B0" points="183.484,209.226 178.652,214.642 205.443,238.549 210.276,233.134 184.415,210.057 "/>
<polygon fill="#9C27B0" points="175.348,217.873 170.512,223.29 196.376,246.368 197.307,247.196 202.139,241.781 176.277,218.705
"/>
<polygon fill="#9C27B0" points="162.926,231.419 188.787,254.496 189.719,255.325 194.55,249.91 167.758,226.001 "/>
<rect x="199.227" y="210.389" transform="matrix(0.7406 0.672 -0.672 0.7406 197.1713 -80.2653)" fill="#9C27B0" width="6.621" height="9.67"/>
<rect x="167.624" y="245.271" transform="matrix(-0.7402 -0.6724 0.6724 -0.7402 129.2995 550.17)" fill="#9C27B0" width="6.62" height="9.67"/>
<path fill="#9C27B0" d="M269.92,0H30.078C13.492,0,0,13.493,0,30.079V269.92C0,286.505,13.492,300,30.078,300H269.92
c16.586,0,30.08-13.495,30.08-30.08V30.079C300,13.492,286.506,0,269.92,0z M287.413,269.92c0,9.646-7.847,17.493-17.493,17.493
H30.078c-9.646,0-17.491-7.847-17.491-17.493V30.079c0-9.646,7.846-17.492,17.491-17.492H269.92
c9.646,0,17.493,7.847,17.493,17.492V269.92z"/>
=======
<polygon fill="none" points="240.285,125.102 240.285,43.582 205.773,104.516 "/>
<path fill="none" d="M58.583,40.294c-0.151,0.657-0.24,1.34-0.24,2.042v84.453l36.673-22.176L58.583,40.294z"/>
<path fill="none" d="M150.105,71.303l47.237,28.182l37.13-65.557c-0.994-0.379-2.065-0.595-3.19-0.595H67.344
c-0.462,0-0.912,0.047-1.357,0.114l37.43,66.088L150.105,71.303z"/>
<path fill="none" d="M158.719,144.15c-20.966,11.197-47.131,3.25-58.332-17.717c-1.729-3.242-3.001-6.613-3.84-10.029l7.986-4.907
c0.578,3.681,1.761,7.325,3.615,10.793c8.91,16.688,29.74,23.015,46.429,14.103c14.998-8.013,21.618-25.646,16.333-41.25
c-0.031-0.099-0.061-0.197-0.096-0.297l-7.14-4.021l-13.534-8.071l-88.262,53.368c0.346,0.287,0.719,0.587,1.113,0.899
c5.804,4.614,16.644,11.92,32.449,20.85c21.467,12.132,41.92,21.529,53.592,24.637c2.058-0.273,7.88-2.572,16.25-6.471
c-0.035-15.446,8.238-30.423,22.787-38.191c14.119-7.541,30.589-6.39,43.265,1.563c2.595-1.757,4.685-3.269,6.238-4.499
l-56.337-33.609C183.134,118.326,174.729,135.604,158.719,144.15z M122.468,128.282l-4.896-4.442l6.488-7.148l4.896,4.442
L122.468,128.282z M152.965,84.797l5.906,3.326l-4.852,5.344l-4.896-4.441L152.965,84.797z M142.473,88.184l1.815,1.621
l3.456,3.086l5.443,4.855l2.893,2.582l5.443,4.855l1.287,1.147l-4.824,5.408l-1.902-1.7l-5.441-4.855l-2.896-2.582l-5.442-4.856
l-3.459-3.085l-2.818-2.514L142.473,88.184z M132.6,94.252l3.353,2.992l3.459,3.084l5.442,4.857l2.892,2.582l5.442,4.854
l2.047,1.826l-4.825,5.405l-0.929-0.83l-1.735-1.547l-5.438-4.854l-2.894-2.583l-5.446-4.855l-3.457-3.084l-4.357-3.888
L132.6,94.252z M119.174,102.5l2.883-1.771l4.996,4.455l3.456,3.086l5.442,4.855l2.895,2.584l5.442,4.855l2.819,2.518l-4.824,5.408
l-0.928-0.83l-2.51-2.239l-5.441-4.856l-2.895-2.582l-5.443-4.856l-3.457-3.085l-5.443-4.855l-0.555-0.494L119.174,102.5z"/>
<path fill="none" d="M222.945,144.82c-9.465-4.428-20.827-4.506-30.732,0.785c-10.213,5.453-16.535,15.369-17.869,26.065
c-0.443,3.55-0.341,7.185,0.357,10.772c0.635,3.27,1.76,6.5,3.406,9.586c8.914,16.688,29.742,23.015,46.431,14.101
c16.688-8.911,23.012-29.735,14.101-46.422c-1.82-3.407-4.142-6.373-6.818-8.875C229.171,148.354,226.17,146.332,222.945,144.82z
M219.378,158.445l6.2-6.826l2.042,1.855l2.851,2.588l-6.49,7.146l-4.895-4.442L219.378,158.445z M192.428,198.027l-4.894-4.441
l6.487-7.148l4.895,4.442L192.428,198.027z M212.245,198.23l-0.929-0.83L187.4,176.062l-1.903-1.703l4.823-5.405l3.937,3.513
l22.816,20.356L212.245,198.23z M220.369,189.598l-0.926-0.83l-20.863-18.615l-4.958-4.424l4.825-5.408l0.926,0.826l5.958,5.316
l19.866,17.727L220.369,189.598z M227.951,181.48l-19.059-17.006l-7.694-6.863l0.143-0.159l4.681-5.247l0.928,0.827l0.867,0.772
l7.715,6.885l17.24,15.383L227.951,181.48z"/>
<path fill="none" d="M96.441,203.118c-16.688,8.911-23.012,29.739-14.104,46.428c8.916,16.687,29.742,23.011,46.431,14.099
c16.688-8.912,23.014-29.736,14.104-46.427C133.959,200.532,113.13,194.205,96.441,203.118z M129.807,209.133l4.896,4.442
l-6.491,7.146l-4.896-4.441L129.807,209.133z M96.652,255.543l-4.894-4.443l6.492-7.146l4.894,4.443L96.652,255.543z
M116.475,255.744l-0.928-0.83l-2.51-2.24l-5.439-4.855l-2.896-2.582l-5.444-4.857l-3.457-3.084l-5.443-4.857l-0.629-0.563
l4.822-5.408l1.25,1.116l5.443,4.855l3.458,3.086l5.442,4.855l2.895,2.583l5.441,4.856l2.824,2.517L116.475,255.744z
M124.604,247.109l-0.932-0.83l-1.734-1.547l-5.441-4.856l-2.895-2.581l-5.441-4.857l-3.457-3.086l-5.444-4.854l-1.403-1.257
l4.82-5.406l0.93,0.826l1.099,0.98l5.442,4.856l3.457,3.085l5.443,4.855l2.893,2.584l5.443,4.854l2.047,1.825L124.604,247.109z
M132.18,238.994l-1.902-1.699l-5.443-4.857l-2.896-2.582L116.495,225l-3.457-3.085l-5.44-4.856l-2.168-1.934l4.823-5.407
l0.929,0.826l1.856,1.658l5.442,4.856l3.457,3.086l5.444,4.855l2.896,2.582l5.44,4.855l1.284,1.147L132.18,238.994z"/>
<path fill="none" d="M30.079,284.414H269.92c7.992,0,14.494-6.502,14.494-14.494V30.08c0-7.992-6.502-14.494-14.494-14.494H30.079
c-7.991,0-14.492,6.502-14.492,14.494v239.84C15.587,277.912,22.088,284.414,30.079,284.414z M156.701,246.775
c-3.583,11.795-11.53,21.481-22.377,27.274c-6.652,3.554-14.139,5.431-21.648,5.431c-17.098,0-32.709-9.342-40.742-24.379
c-5.791-10.847-7.009-23.316-3.426-35.112c3.583-11.798,11.531-21.484,22.379-27.277c6.652-3.552,14.137-5.43,21.647-5.43
c17.101,0,32.711,9.342,40.741,24.38C159.066,222.509,160.284,234.979,156.701,246.775z M45.527,42.337
c0-12.028,9.789-21.815,21.817-21.815l163.938-0.006c12.029,0,21.816,9.789,21.816,21.819v91.201c0,2.379-0.841,4.517-2.646,6.729
c-1.427,1.742-3.589,3.694-6.706,6.043c2.033,2.428,3.807,5.053,5.295,7.84c5.793,10.847,7.012,23.316,3.428,35.113
c-3.582,11.797-11.531,21.483-22.378,27.275c-6.651,3.552-14.138,5.43-21.646,5.43c-17.1,0-32.711-9.342-40.743-24.379
c-1.229-2.303-2.263-4.71-3.086-7.188c-10.191,4.399-13.896,4.945-15.812,4.945c-0.863,0-1.699-0.101-2.484-0.3
c-15.838-4.071-41.292-16.888-59.836-27.526c-16.43-9.426-27.969-17.125-34.295-22.881c-6.154-5.604-6.668-8.672-6.664-11.104
V42.337L45.527,42.337z"/>
<g>
<polygon fill="#9C27B0" points="121.609,110.04 125.066,113.125 130.511,117.982 133.404,120.564 138.846,125.421 141.355,127.66
142.283,128.49 147.107,123.082 144.288,120.564 138.846,115.709 135.951,113.125 130.509,108.27 127.053,105.184
122.057,100.729 119.174,102.5 115.611,104.689 116.166,105.184 "/>
<polygon fill="#9C27B0" points="133.966,105.184 139.412,110.04 142.305,112.623 147.744,117.479 149.48,119.025 150.408,119.855
155.234,114.449 153.188,112.623 147.744,107.768 144.854,105.186 139.41,100.328 135.951,97.244 132.6,94.252 126.15,98.213
130.509,102.1 "/>
<polygon fill="#9C27B0" points="142.305,97.745 147.747,102.602 150.643,105.184 156.084,110.04 157.986,111.74 162.811,106.332
161.523,105.184 156.08,100.328 153.188,97.746 147.744,92.891 144.288,89.805 142.473,88.184 136.027,92.146 138.846,94.66 "/>
<rect x="119.966" y="117.668" transform="matrix(0.7405 0.672 -0.672 0.7405 114.3002 -51.0573)" fill="#9C27B0" width="6.611" height="9.654"/>
<polygon fill="#9C27B0" points="158.871,88.123 152.965,84.797 149.123,89.025 154.02,93.467 "/>
<polygon fill="#9C27B0" points="113.039,242.962 110.145,240.379 104.702,235.523 101.244,232.438 95.801,227.582 94.551,226.466
89.729,231.874 90.357,232.438 95.801,237.295 99.258,240.379 104.702,245.236 107.598,247.818 113.037,252.674 115.547,254.914
116.475,255.744 121.305,250.335 118.48,247.818 "/>
<polygon fill="#9C27B0" points="121.938,235.021 119.046,232.438 113.602,227.582 110.145,224.497 104.702,219.641
103.604,218.66 102.675,217.834 97.854,223.24 99.258,224.497 104.702,229.352 108.159,232.438 113.602,237.295 116.495,239.876
121.938,244.732 123.672,246.279 124.604,247.109 129.428,241.701 127.382,239.876 "/>
<polygon fill="#9C27B0" points="130.277,227.582 127.382,225 121.938,220.145 118.48,217.059 113.038,212.202 111.182,210.544
110.253,209.718 105.43,215.125 107.598,217.059 113.038,221.915 116.495,225 121.938,229.855 124.833,232.438 130.277,237.295
132.18,238.994 137.002,233.585 135.718,232.438 "/>
<rect x="94.143" y="244.919" transform="matrix(0.7403 0.6723 -0.6723 0.7403 193.2158 -0.6485)" fill="#9C27B0" width="6.609" height="9.657"/>
<polygon fill="#9C27B0" points="134.702,213.575 129.807,209.133 123.316,216.279 128.211,220.721 "/>
<polygon fill="#9C27B0" points="211.316,197.4 212.245,198.23 217.073,192.823 194.257,172.467 190.32,168.954 185.497,174.359
187.4,176.062 "/>
<polygon fill="#9C27B0" points="219.443,188.768 220.369,189.598 225.197,184.189 205.331,166.463 199.373,161.146
198.447,160.32 193.622,165.729 198.58,170.152 "/>
<polygon fill="#9C27B0" points="227.951,181.48 232.771,176.072 215.531,160.689 207.816,153.805 206.949,153.032
206.021,152.205 201.341,157.452 201.198,157.611 208.893,164.475 "/>
<rect x="189.921" y="187.4" transform="matrix(0.7405 0.6721 -0.6721 0.7405 179.3349 -79.9756)" fill="#9C27B0" width="6.609" height="9.655"/>
<polygon fill="#9C27B0" points="230.471,156.062 227.62,153.475 225.578,151.619 219.378,158.445 219.086,158.766 223.98,163.208
"/>
<path fill="#9C27B0" d="M112.534,187.282c-7.511,0-14.995,1.878-21.647,5.43c-10.848,5.793-18.796,15.479-22.379,27.277
c-3.583,11.796-2.365,24.266,3.426,35.112c8.033,15.037,23.646,24.379,40.742,24.379c7.51,0,14.996-1.877,21.648-5.431
c10.847-5.793,18.794-15.479,22.377-27.274c3.583-11.797,2.365-24.267-3.426-35.113
C145.245,196.624,129.635,187.282,112.534,187.282z M128.768,263.645c-16.688,8.912-37.514,2.588-46.43-14.099
c-8.908-16.688-2.584-37.517,14.104-46.428c16.688-8.913,37.519-2.586,46.432,14.1
C151.781,233.908,145.456,254.732,128.768,263.645z"/>
<path fill="#9C27B0" d="M52.191,144.639c6.326,5.757,17.865,13.457,34.295,22.881c18.544,10.64,43.998,23.457,59.836,27.527
c0.785,0.199,1.621,0.301,2.484,0.301c1.916,0,5.619-0.547,15.812-4.947c0.823,2.479,1.856,4.886,3.086,7.188
c8.032,15.037,23.644,24.379,40.743,24.379c7.509,0,14.994-1.878,21.646-5.43c10.847-5.792,18.796-15.478,22.378-27.274
c3.583-11.798,2.365-24.268-3.428-35.113c-1.488-2.787-3.262-5.414-5.295-7.842c3.117-2.348,5.279-4.3,6.706-6.043
c1.805-2.213,2.646-4.351,2.646-6.729V42.336c0-12.029-9.787-21.818-21.816-21.818L67.345,20.523
c-12.028,0-21.817,9.787-21.817,21.814v91.197C45.523,135.968,46.037,139.035,52.191,144.639z M149.033,182.508
c-11.672-3.107-32.125-12.505-53.592-24.637c-15.807-8.93-26.646-16.234-32.449-20.85c-0.395-0.312-0.768-0.612-1.113-0.899
l88.262-53.368l13.534,8.071l7.14,4.021c0.035,0.1,0.064,0.198,0.096,0.297c5.285,15.604-1.335,33.237-16.333,41.25
c-16.688,8.912-37.519,2.586-46.429-14.103c-1.854-3.468-3.037-7.112-3.615-10.793l-7.986,4.907
c0.839,3.416,2.109,6.787,3.84,10.029c11.201,20.967,37.366,28.914,58.332,17.717c16.01-8.547,24.415-25.824,22.518-42.851
l56.337,33.61c-1.554,1.23-3.644,2.742-6.238,4.499c-12.676-7.953-29.146-9.104-43.265-1.563
c-14.549,7.77-22.822,22.745-22.787,38.191C156.913,179.936,151.091,182.234,149.033,182.508z M58.343,126.789V42.336
c0-0.702,0.089-1.385,0.24-2.042l36.433,64.319L58.343,126.789z M174.344,171.672c1.334-10.697,7.656-20.613,17.869-26.066
c9.905-5.291,21.268-5.213,30.732-0.785c3.225,1.513,6.226,3.533,8.875,6.015c2.677,2.502,4.998,5.468,6.818,8.875
c8.911,16.687,2.588,37.511-14.101,46.422c-16.688,8.914-37.517,2.588-46.431-14.101c-1.646-3.086-2.771-6.316-3.406-9.586
C174.003,178.857,173.9,175.221,174.344,171.672z M240.285,125.102l-34.512-20.586l34.512-60.934V125.102z M197.343,99.484
l-47.237-28.183l-46.689,28.232l-37.43-66.089c0.445-0.066,0.896-0.113,1.357-0.113h163.938c1.125,0,2.196,0.216,3.19,0.595
L197.343,99.484z"/>
<path fill="#9C27B0" d="M30.079,300H269.92c16.587,0,30.08-13.494,30.08-30.08V30.08C300,13.494,286.507,0,269.92,0H30.079
C13.494,0,0,13.494,0,30.08v239.84C0,286.506,13.494,300,30.079,300z M15.587,30.08c0-7.992,6.501-14.494,14.492-14.494H269.92
c7.992,0,14.494,6.502,14.494,14.494v239.84c0,7.992-6.502,14.494-14.494,14.494H30.079c-7.991,0-14.492-6.502-14.492-14.494
V30.08z"/>
</g>
<polygon fill="none" points="240.285,125.102 240.285,43.582 205.773,104.516 "/>
<path fill="none" d="M58.583,40.294c-0.151,0.657-0.24,1.34-0.24,2.042v84.453l36.673-22.176L58.583,40.294z"/>
<path fill="none" d="M150.105,71.303l47.237,28.182l37.13-65.557c-0.994-0.379-2.065-0.595-3.19-0.595H67.344
c-0.462,0-0.912,0.047-1.357,0.114l37.43,66.088L150.105,71.303z"/>
<path fill="none" d="M158.719,144.15c-20.966,11.197-47.131,3.25-58.332-17.717c-1.729-3.242-3.001-6.613-3.84-10.029l7.986-4.907
c0.578,3.681,1.761,7.325,3.615,10.793c8.91,16.688,29.74,23.015,46.429,14.103c14.998-8.013,21.618-25.646,16.333-41.25
c-0.031-0.099-0.061-0.197-0.096-0.297l-7.14-4.021l-13.534-8.071l-88.262,53.368c0.346,0.287,0.719,0.587,1.113,0.899
c5.804,4.614,16.644,11.92,32.449,20.85c21.467,12.132,41.92,21.529,53.592,24.637c2.058-0.273,7.88-2.572,16.25-6.471
c-0.035-15.446,8.238-30.423,22.787-38.191c14.119-7.541,30.589-6.39,43.265,1.563c2.595-1.757,4.685-3.269,6.238-4.499
l-56.337-33.609C183.134,118.326,174.729,135.604,158.719,144.15z M122.468,128.282l-4.896-4.442l6.488-7.148l4.896,4.442
L122.468,128.282z M152.965,84.797l5.906,3.326l-4.852,5.344l-4.896-4.441L152.965,84.797z M142.473,88.184l1.815,1.621
l3.456,3.086l5.443,4.855l2.893,2.582l5.443,4.855l1.287,1.147l-4.824,5.408l-1.902-1.7l-5.441-4.855l-2.896-2.582l-5.442-4.856
l-3.459-3.085l-2.818-2.514L142.473,88.184z M132.6,94.252l3.353,2.992l3.459,3.084l5.442,4.857l2.892,2.582l5.442,4.854
l2.047,1.826l-4.825,5.405l-0.929-0.83l-1.735-1.547l-5.438-4.854l-2.894-2.583l-5.446-4.855l-3.457-3.084l-4.357-3.888
L132.6,94.252z M119.174,102.5l2.883-1.771l4.996,4.455l3.456,3.086l5.442,4.855l2.895,2.584l5.442,4.855l2.819,2.518l-4.824,5.408
l-0.928-0.83l-2.51-2.239l-5.441-4.856l-2.895-2.582l-5.443-4.856l-3.457-3.085l-5.443-4.855l-0.555-0.494L119.174,102.5z"/>
<path fill="none" d="M222.945,144.82c-9.465-4.428-20.827-4.506-30.732,0.785c-10.213,5.453-16.535,15.369-17.869,26.065
c-0.443,3.55-0.341,7.185,0.357,10.772c0.635,3.27,1.76,6.5,3.406,9.586c8.914,16.688,29.742,23.015,46.431,14.101
c16.688-8.911,23.012-29.735,14.101-46.422c-1.82-3.407-4.142-6.373-6.818-8.875C229.171,148.354,226.17,146.332,222.945,144.82z
M219.378,158.445l6.2-6.826l2.042,1.855l2.851,2.588l-6.49,7.146l-4.895-4.442L219.378,158.445z M192.428,198.027l-4.894-4.441
l6.487-7.148l4.895,4.442L192.428,198.027z M212.245,198.23l-0.929-0.83L187.4,176.062l-1.903-1.703l4.823-5.405l3.937,3.513
l22.816,20.356L212.245,198.23z M220.369,189.598l-0.926-0.83l-20.863-18.615l-4.958-4.424l4.825-5.408l0.926,0.826l5.958,5.316
l19.866,17.727L220.369,189.598z M227.951,181.48l-19.059-17.006l-7.694-6.863l0.143-0.159l4.681-5.247l0.928,0.827l0.867,0.772
l7.715,6.885l17.24,15.383L227.951,181.48z"/>
<path fill="none" d="M96.441,203.118c-16.688,8.911-23.012,29.739-14.104,46.428c8.916,16.687,29.742,23.011,46.431,14.099
c16.688-8.912,23.014-29.736,14.104-46.427C133.959,200.532,113.13,194.205,96.441,203.118z M129.807,209.133l4.896,4.442
l-6.491,7.146l-4.896-4.441L129.807,209.133z M96.652,255.543l-4.894-4.443l6.492-7.146l4.894,4.443L96.652,255.543z
M116.475,255.744l-0.928-0.83l-2.51-2.24l-5.439-4.855l-2.896-2.582l-5.444-4.857l-3.457-3.084l-5.443-4.857l-0.629-0.563
l4.822-5.408l1.25,1.116l5.443,4.855l3.458,3.086l5.442,4.855l2.895,2.583l5.441,4.856l2.824,2.517L116.475,255.744z
M124.604,247.109l-0.932-0.83l-1.734-1.547l-5.441-4.856l-2.895-2.581l-5.441-4.857l-3.457-3.086l-5.444-4.854l-1.403-1.257
l4.82-5.406l0.93,0.826l1.099,0.98l5.442,4.856l3.457,3.085l5.443,4.855l2.893,2.584l5.443,4.854l2.047,1.825L124.604,247.109z
M132.18,238.994l-1.902-1.699l-5.443-4.857l-2.896-2.582L116.495,225l-3.457-3.085l-5.44-4.856l-2.168-1.934l4.823-5.407
l0.929,0.826l1.856,1.658l5.442,4.856l3.457,3.086l5.444,4.855l2.896,2.582l5.44,4.855l1.284,1.147L132.18,238.994z"/>
<path fill="none" d="M30.079,284.414H269.92c7.992,0,14.494-6.502,14.494-14.494V30.08c0-7.992-6.502-14.494-14.494-14.494H30.079
c-7.991,0-14.492,6.502-14.492,14.494v239.84C15.587,277.912,22.088,284.414,30.079,284.414z M156.701,246.775
c-3.583,11.795-11.53,21.481-22.377,27.274c-6.652,3.554-14.139,5.431-21.648,5.431c-17.098,0-32.709-9.342-40.742-24.379
c-5.791-10.847-7.009-23.316-3.426-35.112c3.583-11.798,11.531-21.484,22.379-27.277c6.652-3.552,14.137-5.43,21.647-5.43
c17.101,0,32.711,9.342,40.741,24.38C159.066,222.509,160.284,234.979,156.701,246.775z M45.527,42.337
c0-12.028,9.789-21.815,21.817-21.815l163.938-0.006c12.029,0,21.816,9.789,21.816,21.819v91.201c0,2.379-0.841,4.517-2.646,6.729
c-1.427,1.742-3.589,3.694-6.706,6.043c2.033,2.428,3.807,5.053,5.295,7.84c5.793,10.847,7.012,23.316,3.428,35.113
c-3.582,11.797-11.531,21.483-22.378,27.275c-6.651,3.552-14.138,5.43-21.646,5.43c-17.1,0-32.711-9.342-40.743-24.379
c-1.229-2.303-2.263-4.71-3.086-7.188c-10.191,4.399-13.896,4.945-15.812,4.945c-0.863,0-1.699-0.101-2.484-0.3
c-15.838-4.071-41.292-16.888-59.836-27.526c-16.43-9.426-27.969-17.125-34.295-22.881c-6.154-5.604-6.668-8.672-6.664-11.104
V42.337L45.527,42.337z"/>
<g>
<polygon fill="#9C27B0" points="121.609,110.04 125.066,113.125 130.511,117.982 133.404,120.564 138.846,125.421 141.355,127.66
142.283,128.49 147.107,123.082 144.288,120.564 138.846,115.709 135.951,113.125 130.509,108.27 127.053,105.184
122.057,100.729 119.174,102.5 115.611,104.689 116.166,105.184 "/>
<polygon fill="#9C27B0" points="133.966,105.184 139.412,110.04 142.305,112.623 147.744,117.479 149.48,119.025 150.408,119.855
155.234,114.449 153.188,112.623 147.744,107.768 144.854,105.186 139.41,100.328 135.951,97.244 132.6,94.252 126.15,98.213
130.509,102.1 "/>
<polygon fill="#9C27B0" points="142.305,97.745 147.747,102.602 150.643,105.184 156.084,110.04 157.986,111.74 162.811,106.332
161.523,105.184 156.08,100.328 153.188,97.746 147.744,92.891 144.288,89.805 142.473,88.184 136.027,92.146 138.846,94.66 "/>
<rect x="119.966" y="117.668" transform="matrix(0.7405 0.672 -0.672 0.7405 114.3002 -51.0573)" fill="#9C27B0" width="6.611" height="9.654"/>
<polygon fill="#9C27B0" points="158.871,88.123 152.965,84.797 149.123,89.025 154.02,93.467 "/>
<polygon fill="#9C27B0" points="113.039,242.962 110.145,240.379 104.702,235.523 101.244,232.438 95.801,227.582 94.551,226.466
89.729,231.874 90.357,232.438 95.801,237.295 99.258,240.379 104.702,245.236 107.598,247.818 113.037,252.674 115.547,254.914
116.475,255.744 121.305,250.335 118.48,247.818 "/>
<polygon fill="#9C27B0" points="121.938,235.021 119.046,232.438 113.602,227.582 110.145,224.497 104.702,219.641
103.604,218.66 102.675,217.834 97.854,223.24 99.258,224.497 104.702,229.352 108.159,232.438 113.602,237.295 116.495,239.876
121.938,244.732 123.672,246.279 124.604,247.109 129.428,241.701 127.382,239.876 "/>
<polygon fill="#9C27B0" points="130.277,227.582 127.382,225 121.938,220.145 118.48,217.059 113.038,212.202 111.182,210.544
110.253,209.718 105.43,215.125 107.598,217.059 113.038,221.915 116.495,225 121.938,229.855 124.833,232.438 130.277,237.295
132.18,238.994 137.002,233.585 135.718,232.438 "/>
<rect x="94.143" y="244.919" transform="matrix(0.7403 0.6723 -0.6723 0.7403 193.2158 -0.6485)" fill="#9C27B0" width="6.609" height="9.657"/>
<polygon fill="#9C27B0" points="134.702,213.575 129.807,209.133 123.316,216.279 128.211,220.721 "/>
<polygon fill="#9C27B0" points="211.316,197.4 212.245,198.23 217.073,192.823 194.257,172.467 190.32,168.954 185.497,174.359
187.4,176.062 "/>
<polygon fill="#9C27B0" points="219.443,188.768 220.369,189.598 225.197,184.189 205.331,166.463 199.373,161.146
198.447,160.32 193.622,165.729 198.58,170.152 "/>
<polygon fill="#9C27B0" points="227.951,181.48 232.771,176.072 215.531,160.689 207.816,153.805 206.949,153.032
206.021,152.205 201.341,157.452 201.198,157.611 208.893,164.475 "/>
<rect x="189.921" y="187.4" transform="matrix(0.7405 0.6721 -0.6721 0.7405 179.3349 -79.9756)" fill="#9C27B0" width="6.609" height="9.655"/>
<polygon fill="#9C27B0" points="230.471,156.062 227.62,153.475 225.578,151.619 219.378,158.445 219.086,158.766 223.98,163.208
"/>
<path fill="#9C27B0" d="M112.534,187.282c-7.511,0-14.995,1.878-21.647,5.43c-10.848,5.793-18.796,15.479-22.379,27.277
c-3.583,11.796-2.365,24.266,3.426,35.112c8.033,15.037,23.646,24.379,40.742,24.379c7.51,0,14.996-1.877,21.648-5.431
c10.847-5.793,18.794-15.479,22.377-27.274c3.583-11.797,2.365-24.267-3.426-35.113
C145.245,196.624,129.635,187.282,112.534,187.282z M128.768,263.645c-16.688,8.912-37.514,2.588-46.43-14.099
c-8.908-16.688-2.584-37.517,14.104-46.428c16.688-8.913,37.519-2.586,46.432,14.1
C151.781,233.908,145.456,254.732,128.768,263.645z"/>
<path fill="#9C27B0" d="M52.191,144.639c6.326,5.757,17.865,13.457,34.295,22.881c18.544,10.64,43.998,23.457,59.836,27.527
c0.785,0.199,1.621,0.301,2.484,0.301c1.916,0,5.619-0.547,15.812-4.947c0.823,2.479,1.856,4.886,3.086,7.188
c8.032,15.037,23.644,24.379,40.743,24.379c7.509,0,14.994-1.878,21.646-5.43c10.847-5.792,18.796-15.478,22.378-27.274
c3.583-11.798,2.365-24.268-3.428-35.113c-1.488-2.787-3.262-5.414-5.295-7.842c3.117-2.348,5.279-4.3,6.706-6.043
c1.805-2.213,2.646-4.351,2.646-6.729V42.336c0-12.029-9.787-21.818-21.816-21.818L67.345,20.523
c-12.028,0-21.817,9.787-21.817,21.814v91.197C45.523,135.968,46.037,139.035,52.191,144.639z M149.033,182.508
c-11.672-3.107-32.125-12.505-53.592-24.637c-15.807-8.93-26.646-16.234-32.449-20.85c-0.395-0.312-0.768-0.612-1.113-0.899
l88.262-53.368l13.534,8.071l7.14,4.021c0.035,0.1,0.064,0.198,0.096,0.297c5.285,15.604-1.335,33.237-16.333,41.25
c-16.688,8.912-37.519,2.586-46.429-14.103c-1.854-3.468-3.037-7.112-3.615-10.793l-7.986,4.907
c0.839,3.416,2.109,6.787,3.84,10.029c11.201,20.967,37.366,28.914,58.332,17.717c16.01-8.547,24.415-25.824,22.518-42.851
l56.337,33.61c-1.554,1.23-3.644,2.742-6.238,4.499c-12.676-7.953-29.146-9.104-43.265-1.563
c-14.549,7.77-22.822,22.745-22.787,38.191C156.913,179.936,151.091,182.234,149.033,182.508z M58.343,126.789V42.336
c0-0.702,0.089-1.385,0.24-2.042l36.433,64.319L58.343,126.789z M174.344,171.672c1.334-10.697,7.656-20.613,17.869-26.066
c9.905-5.291,21.268-5.213,30.732-0.785c3.225,1.513,6.226,3.533,8.875,6.015c2.677,2.502,4.998,5.468,6.818,8.875
c8.911,16.687,2.588,37.511-14.101,46.422c-16.688,8.914-37.517,2.588-46.431-14.101c-1.646-3.086-2.771-6.316-3.406-9.586
C174.003,178.857,173.9,175.221,174.344,171.672z M240.285,125.102l-34.512-20.586l34.512-60.934V125.102z M197.343,99.484
l-47.237-28.183l-46.689,28.232l-37.43-66.089c0.445-0.066,0.896-0.113,1.357-0.113h163.938c1.125,0,2.196,0.216,3.19,0.595
L197.343,99.484z"/>
<path fill="#9C27B0" d="M30.079,300H269.92c16.587,0,30.08-13.494,30.08-30.08V30.08C300,13.494,286.507,0,269.92,0H30.079
C13.494,0,0,13.494,0,30.08v239.84C0,286.506,13.494,300,30.079,300z M15.587,30.08c0-7.992,6.501-14.494,14.492-14.494H269.92
c7.992,0,14.494,6.502,14.494,14.494v239.84c0,7.992-6.502,14.494-14.494,14.494H30.079c-7.991,0-14.492-6.502-14.492-14.494
V30.08z"/>
</g>
>>>>>>> add-art-0.1.2
</g>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,285 +1,285 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<<<<<<< HEAD
<path fill="#9C27B0" d="M269.92,0H30.079C13.493,0,0,13.494,0,30.08v239.84C0,286.507,13.493,300,30.079,300H269.92
c16.584,0,30.08-13.493,30.08-30.08V30.08C300,13.494,286.504,0,269.92,0z M256.266,133.512c0,3.479-1.229,6.916-7.232,12.383
c-6.419,5.847-18.077,13.633-34.649,23.14c-9.701,5.565-21.283,11.716-32.424,16.928c1.807-0.207,3.633-0.336,5.481-0.336
c7.803,0,15.577,1.95,22.487,5.642c23.296,12.439,32.125,41.512,19.688,64.809c-8.344,15.621-24.561,25.324-42.317,25.324
c-0.001,0,0,0-0.001,0c-7.805,0-15.581-1.95-22.491-5.639c-11.27-6.02-19.524-16.082-23.247-28.335
c-3.721-12.252-2.454-25.206,3.562-36.475c3.263-6.111,7.745-11.302,13.04-15.375c-1.428,0.447-2.82,0.86-4.126,1.198
c-0.931,0.238-1.915,0.358-2.928,0.358c-2.079,0-5.601-0.529-14.444-4.216c-0.776,2.144-1.705,4.232-2.78,6.246
c-8.344,15.622-24.561,25.326-42.319,25.326c-7.804,0-15.58-1.951-22.492-5.642c-11.268-6.017-19.523-16.078-23.245-28.333
c-3.721-12.254-2.457-25.207,3.56-36.475c1.338-2.502,2.891-4.875,4.642-7.094c-2.746-2.127-4.68-3.928-6.057-5.612
c-2.069-2.534-3.034-5.021-3.034-7.823V42.165c0-12.994,10.572-23.565,23.566-23.565h164.194c12.995,0,23.567,10.571,23.567,23.565
V133.512z"/>
<path fill="#9C27B0" d="M232.698,23.318H68.504c-10.393,0-18.847,8.455-18.847,18.847v91.347c0,1.494,0.444,2.969,1.973,4.838
c1.627,1.994,4.484,4.438,9.363,7.844c-2.89,2.908-5.414,6.274-7.441,10.07c-11.215,20.999-3.255,47.208,17.745,58.422
c21,11.215,47.207,3.255,58.422-17.744c1.807-3.383,3.109-6.9,3.945-10.471c7.654,3.438,14.311,5.942,17.444,5.942
c0.619,0,1.208-0.07,1.752-0.21c15.56-3.998,40.771-16.705,59.173-27.263c18.807-10.79,28.657-17.831,33.822-22.535
c5.687-5.179,5.69-7.521,5.69-8.894V42.165C251.546,31.773,243.092,23.318,232.698,23.318z M121.946,192.79
c-8.926,16.714-29.785,23.051-46.499,14.124c-16.715-8.927-23.048-29.786-14.123-46.499c1.903-3.565,4.354-6.653,7.188-9.229
c2.715-2.465,5.784-4.448,9.071-5.919c9.369-4.189,20.505-4.176,30.238,1.023c10.023,5.353,16.308,14.998,17.815,25.465
c0.513,3.578,0.467,7.249-0.177,10.879C124.844,186.098,123.691,189.524,121.946,192.79z M68.504,33.148l164.194,0.001
c0.466,0,0.916,0.045,1.36,0.112l-37.487,66.193l-46.766-28.276l-47.309,28.226L65.308,33.743
C66.302,33.364,67.378,33.148,68.504,33.148z M59.487,43.413l34.562,61.028l-34.562,20.622V43.413z M111.974,138.52
c-13.981-7.465-30.26-6.425-42.895,1.293c-2.893-1.938-5.196-3.594-6.874-4.926l56.425-33.662
c-1.901,17.051,6.519,34.353,22.552,42.916c20.999,11.215,47.207,3.255,58.421-17.743c1.735-3.251,3.009-6.624,3.849-10.047
l-7.998-4.915c-0.581,3.687-1.766,7.338-3.62,10.81c-8.928,16.715-29.785,23.051-46.502,14.125
c-15.021-8.024-21.654-25.686-16.361-41.313c0.035-0.099,0.063-0.2,0.098-0.299l7.155-4.03l13.548-8.081l88.403,53.452
c-0.347,0.288-0.722,0.59-1.116,0.901c-5.816,4.623-16.669,11.94-32.498,20.885c-21.496,12.145-41.973,21.555-53.666,24.673
c-2.095-0.295-7.85-2.56-16.099-6.396C134.613,160.909,126.352,146.199,111.974,138.52z M241.716,126.753l-36.732-22.21
l36.487-64.423c0.155,0.658,0.245,1.34,0.245,2.045V126.753z"/>
<polygon fill="#9C27B0" points="153.936,85.925 152.809,87.188 179.599,111.094 184.434,105.679 180.786,102.424 "/>
<polygon fill="#9C27B0" points="149.506,90.417 144.671,95.835 170.536,118.914 171.465,119.741 176.297,114.326 150.435,91.25
"/>
<polygon fill="#9C27B0" points="137.083,103.965 162.943,127.04 163.876,127.87 168.708,122.454 141.913,98.547 "/>
<polygon fill="#9C27B0" points="139.387,124.005 144.29,128.455 150.79,121.298 145.889,116.85 "/>
<polygon fill="#9C27B0" points="87.757,152.317 82.925,157.732 89.782,163.853 109.717,181.637 113.962,176.881 114.549,176.224
88.687,153.148 "/>
<polygon fill="#9C27B0" points="79.619,160.963 74.787,166.379 100.65,189.457 101.579,190.284 106.411,184.872 80.548,161.794
"/>
<polygon fill="#9C27B0" points="67.199,174.51 93.06,197.584 93.991,198.414 98.821,193 72.029,169.092 "/>
<polygon fill="#9C27B0" points="107.558,162.414 112.512,156.958 107.608,152.51 101.567,159.162 101.108,159.668 106.012,164.117
"/>
<polygon fill="#9C27B0" points="69.502,194.551 74.405,198.998 80.906,191.842 76.004,187.393 "/>
<path fill="#9C27B0" d="M149.284,213.176c-11.215,20.998-3.255,47.205,17.745,58.421c21,11.215,47.207,3.255,58.422-17.744
s3.253-47.207-17.745-58.424C186.707,184.215,160.498,192.176,149.284,213.176z M203.555,203.201
c16.716,8.927,23.051,29.789,14.127,46.5c-8.928,16.715-29.789,23.05-46.502,14.124c-16.714-8.927-23.048-29.784-14.125-46.499
C165.984,200.612,186.84,194.274,203.555,203.201z"/>
<polygon fill="#9C27B0" points="210.281,233.135 184.422,210.058 183.49,209.228 178.657,214.645 205.449,238.55 "/>
<polygon fill="#9C27B0" points="197.313,247.196 202.145,241.783 176.283,218.707 175.354,217.874 170.521,223.291
196.385,246.369 "/>
<polygon fill="#9C27B0" points="189.725,255.324 194.557,249.91 167.764,226.002 162.933,231.42 188.794,254.497 "/>
<rect x="199.234" y="210.39" transform="matrix(0.7404 0.6721 -0.6721 0.7404 197.2291 -80.27)" fill="#9C27B0" width="6.618" height="9.67"/>
<rect x="167.628" y="245.272" transform="matrix(-0.7402 -0.6724 0.6724 -0.7402 129.3073 550.175)" fill="#9C27B0" width="6.62" height="9.67"/>
<path fill="#9C27B0" d="M269.92,0H30.079C13.493,0,0,13.494,0,30.08v239.84C0,286.507,13.493,300,30.079,300H269.92
c16.584,0,30.08-13.493,30.08-30.08V30.08C300,13.494,286.504,0,269.92,0z M256.266,133.512c0,3.479-1.229,6.916-7.232,12.383
c-6.419,5.847-18.077,13.633-34.649,23.14c-9.701,5.565-21.283,11.716-32.424,16.928c1.807-0.207,3.633-0.336,5.481-0.336
c7.803,0,15.577,1.95,22.487,5.642c23.296,12.439,32.125,41.512,19.688,64.809c-8.344,15.621-24.561,25.324-42.317,25.324
c-0.001,0,0,0-0.001,0c-7.805,0-15.581-1.95-22.491-5.639c-11.27-6.02-19.524-16.082-23.247-28.335
c-3.721-12.252-2.454-25.206,3.562-36.475c3.263-6.111,7.745-11.302,13.04-15.375c-1.428,0.447-2.82,0.86-4.126,1.198
c-0.931,0.238-1.915,0.358-2.928,0.358c-2.079,0-5.601-0.529-14.444-4.216c-0.776,2.144-1.705,4.232-2.78,6.246
c-8.344,15.622-24.561,25.326-42.319,25.326c-7.804,0-15.58-1.951-22.492-5.642c-11.268-6.017-19.523-16.078-23.245-28.333
c-3.721-12.254-2.457-25.207,3.56-36.475c1.338-2.502,2.891-4.875,4.642-7.094c-2.746-2.127-4.68-3.928-6.057-5.612
c-2.069-2.534-3.034-5.021-3.034-7.823V42.165c0-12.994,10.572-23.565,23.566-23.565h164.194c12.995,0,23.567,10.571,23.567,23.565
V133.512z"/>
<path fill="#9C27B0" d="M232.698,23.318H68.504c-10.393,0-18.847,8.455-18.847,18.847v91.347c0,1.494,0.444,2.969,1.973,4.838
c1.627,1.994,4.484,4.438,9.363,7.844c-2.89,2.908-5.414,6.274-7.441,10.07c-11.215,20.999-3.255,47.208,17.745,58.422
c21,11.215,47.207,3.255,58.422-17.744c1.807-3.383,3.109-6.9,3.945-10.471c7.654,3.438,14.311,5.942,17.444,5.942
c0.619,0,1.208-0.07,1.752-0.21c15.56-3.998,40.771-16.705,59.173-27.263c18.807-10.79,28.657-17.831,33.822-22.535
c5.687-5.179,5.69-7.521,5.69-8.894V42.165C251.546,31.773,243.092,23.318,232.698,23.318z M121.946,192.79
c-8.926,16.714-29.785,23.051-46.499,14.124c-16.715-8.927-23.048-29.786-14.123-46.499c1.903-3.565,4.354-6.653,7.188-9.229
c2.715-2.465,5.784-4.448,9.071-5.919c9.369-4.189,20.505-4.176,30.238,1.023c10.023,5.353,16.308,14.998,17.815,25.465
c0.513,3.578,0.467,7.249-0.177,10.879C124.844,186.098,123.691,189.524,121.946,192.79z M68.504,33.148l164.194,0.001
c0.466,0,0.916,0.045,1.36,0.112l-37.487,66.193l-46.766-28.276l-47.309,28.226L65.308,33.743
C66.302,33.364,67.378,33.148,68.504,33.148z M59.487,43.413l34.562,61.028l-34.562,20.622V43.413z M111.974,138.52
c-13.981-7.465-30.26-6.425-42.895,1.293c-2.893-1.938-5.196-3.594-6.874-4.926l56.425-33.662
c-1.901,17.051,6.519,34.353,22.552,42.916c20.999,11.215,47.207,3.255,58.421-17.743c1.735-3.251,3.009-6.624,3.849-10.047
l-7.998-4.915c-0.581,3.687-1.766,7.338-3.62,10.81c-8.928,16.715-29.785,23.051-46.502,14.125
c-15.021-8.024-21.654-25.686-16.361-41.313c0.035-0.099,0.063-0.2,0.098-0.299l7.155-4.03l13.548-8.081l88.403,53.452
c-0.347,0.288-0.722,0.59-1.116,0.901c-5.816,4.623-16.669,11.94-32.498,20.885c-21.496,12.145-41.973,21.555-53.666,24.673
c-2.095-0.295-7.85-2.56-16.099-6.396C134.613,160.909,126.352,146.199,111.974,138.52z M241.716,126.753l-36.732-22.21
l36.487-64.423c0.155,0.658,0.245,1.34,0.245,2.045V126.753z"/>
<polygon fill="#9C27B0" points="153.936,85.925 152.809,87.188 179.599,111.094 184.434,105.679 180.786,102.424 "/>
<polygon fill="#9C27B0" points="149.506,90.417 144.671,95.835 170.536,118.914 171.465,119.741 176.297,114.326 150.435,91.25
"/>
<polygon fill="#9C27B0" points="137.083,103.965 162.943,127.04 163.876,127.87 168.708,122.454 141.913,98.547 "/>
<polygon fill="#9C27B0" points="139.387,124.005 144.29,128.455 150.79,121.298 145.889,116.85 "/>
<polygon fill="#9C27B0" points="87.757,152.317 82.925,157.732 89.782,163.853 109.717,181.637 113.962,176.881 114.549,176.224
88.687,153.148 "/>
<polygon fill="#9C27B0" points="79.619,160.963 74.787,166.379 100.65,189.457 101.579,190.284 106.411,184.872 80.548,161.794
"/>
<polygon fill="#9C27B0" points="67.199,174.51 93.06,197.584 93.991,198.414 98.821,193 72.029,169.092 "/>
<polygon fill="#9C27B0" points="107.558,162.414 112.512,156.958 107.608,152.51 101.567,159.162 101.108,159.668 106.012,164.117
"/>
<polygon fill="#9C27B0" points="69.502,194.551 74.405,198.998 80.906,191.842 76.004,187.393 "/>
<path fill="#9C27B0" d="M149.284,213.176c-11.215,20.998-3.255,47.205,17.745,58.421c21,11.215,47.207,3.255,58.422-17.744
s3.253-47.207-17.745-58.424C186.707,184.215,160.498,192.176,149.284,213.176z M203.555,203.201
c16.716,8.927,23.051,29.789,14.127,46.5c-8.928,16.715-29.789,23.05-46.502,14.124c-16.714-8.927-23.048-29.784-14.125-46.499
C165.984,200.612,186.84,194.274,203.555,203.201z"/>
<polygon fill="#9C27B0" points="210.281,233.135 184.422,210.058 183.49,209.228 178.657,214.645 205.449,238.55 "/>
<polygon fill="#9C27B0" points="197.313,247.196 202.145,241.783 176.283,218.707 175.354,217.874 170.521,223.291
196.385,246.369 "/>
<polygon fill="#9C27B0" points="189.725,255.324 194.557,249.91 167.764,226.002 162.933,231.42 188.794,254.497 "/>
<rect x="199.234" y="210.39" transform="matrix(0.7404 0.6721 -0.6721 0.7404 197.2291 -80.27)" fill="#9C27B0" width="6.618" height="9.67"/>
<rect x="167.628" y="245.272" transform="matrix(-0.7402 -0.6724 0.6724 -0.7402 129.3073 550.175)" fill="#9C27B0" width="6.62" height="9.67"/>
=======
<path fill="none" d="M96.547,116.404c0.839,3.416,2.111,6.787,3.84,10.029c7.701,14.415,22.475,22.676,37.769,22.792
c-15.294-0.117-30.068-8.378-37.768-22.792C98.657,123.191,97.387,119.82,96.547,116.404l7.986-4.906v0L96.547,116.404z"/>
<path fill="none" d="M88.658,153.959c-10.801-6.353-18.766-11.687-23.866-15.547C69.891,142.273,77.856,147.606,88.658,153.959z"/>
<path fill="none" d="M231.336,139.408L231.336,139.408c2.596-1.757,4.686-3.269,6.239-4.499l-56.337-33.61c0,0.001,0,0.003,0,0.004
l56.334,33.607C236.02,136.14,233.931,137.651,231.336,139.408z"/>
<path fill="none" d="M231.282,33.333c1.125,0,2.195,0.216,3.189,0.594l0.001-0.001c-0.994-0.379-2.065-0.595-3.19-0.595H67.344
c-0.461,0-0.912,0.047-1.357,0.113l0.002,0.003c0.445-0.067,0.894-0.114,1.355-0.114H231.282z"/>
<polygon fill="none" points="197.343,99.484 207.621,81.336 197.343,99.484 "/>
<polygon fill="none" points="162.81,106.331 162.811,106.33 161.523,105.183 156.08,100.328 161.523,105.184 "/>
<polygon fill="none" points="124.062,116.693 124.06,116.692 117.572,123.84 122.468,128.282 122.468,128.282 117.575,123.842 "/>
<path fill="none" d="M167.704,197.589c-1.229-2.302-2.263-4.709-3.086-7.188h-0.001c0.823,2.479,1.855,4.885,3.085,7.187
c2.511,4.699,5.761,8.843,9.565,12.318C173.464,206.43,170.214,202.287,167.704,197.589z"/>
<polygon fill="none" points="128.956,121.134 126.805,119.182 128.956,121.134 "/>
<polygon fill="none" points="170.814,94.846 163.675,90.825 150.141,82.754 150.141,82.754 163.674,90.825 "/>
<path fill="none" d="M154.577,136.393c-7.823,4.177-16.556,5.006-24.544,2.99C138.022,141.4,146.755,140.571,154.577,136.393
c14.999-8.013,21.618-25.646,16.334-41.25c-0.032-0.099-0.062-0.197-0.097-0.297c0.035,0.1,0.064,0.198,0.096,0.297
C176.195,110.747,169.575,128.38,154.577,136.393z"/>
<polygon fill="none" points="95.801,237.295 90.357,232.438 89.73,231.875 89.729,231.876 90.358,232.439 95.801,237.296
99.258,240.38 104.702,245.236 99.258,240.379 "/>
<path fill="none" d="M45.528,42.337c0-12.027,9.789-21.814,21.817-21.814l163.939-0.005c5.638,0,10.784,2.151,14.66,5.675
c-3.877-3.525-9.023-5.677-14.662-5.677L67.344,20.522C55.316,20.522,45.527,30.309,45.528,42.337h-0.003v91.196
c-0.003,1.976,0.335,4.372,3.764,8.207c-3.426-3.833-3.765-6.229-3.761-8.206V42.337z"/>
<path fill="none" d="M128.768,263.645c-5.215,2.785-10.834,4.082-16.368,4.04C117.934,267.727,123.553,266.43,128.768,263.645z"/>
<path fill="none" d="M158.719,233.341c-0.005,3.743-0.47,7.505-1.402,11.216C158.249,240.846,158.714,237.084,158.719,233.341z"/>
<path fill="none" d="M66.49,233.423c0.004-2.995,0.302-6.001,0.898-8.983C66.792,227.422,66.494,230.428,66.49,233.423z"/>
<polygon fill="none" points="128.211,220.721 128.212,220.721 134.703,213.575 129.807,209.133 134.702,213.575 "/>
<path fill="none" d="M71.934,255.102c8.033,15.037,23.644,24.379,40.742,24.379C95.58,279.48,79.967,270.139,71.934,255.102z"/>
<path fill="none" d="M142.874,217.218c-6.128-11.472-17.889-18.047-30.064-18.14c12.174,0.093,23.934,6.668,30.062,18.14
c3.355,6.285,4.548,13.155,3.843,19.756C147.42,230.373,146.228,223.503,142.874,217.218z"/>
<polygon fill="none" points="98.25,243.954 91.758,251.1 91.762,251.103 98.251,243.957 103.142,248.398 103.144,248.396 "/>
<polygon fill="none" points="130.277,227.582 135.718,232.438 137,233.584 137.001,233.583 135.717,232.436 130.277,227.581
127.381,224.999 126.792,224.475 127.382,225 "/>
<polygon fill="none" points="121.941,235.021 119.048,232.438 113.605,227.582 110.148,224.497 104.706,219.641 103.607,218.661
102.677,217.835 102.676,217.835 103.604,218.66 104.702,219.641 110.145,224.497 113.602,227.582 119.046,232.438
121.938,235.021 127.382,239.876 129.428,241.701 124.604,247.109 129.431,241.7 127.384,239.875 "/>
<polygon fill="none" points="139.41,100.328 144.854,105.186 147.744,107.768 153.188,112.623 155.233,114.448 155.234,114.447
153.188,112.621 147.746,107.767 144.854,105.185 139.412,100.328 135.953,97.244 132.6,94.252 135.951,97.244 "/>
<polygon fill="none" points="154.02,93.467 149.124,89.025 149.123,89.026 "/>
<path fill="none" d="M242.493,179.382c-1.145,10.957-7.525,21.178-17.955,26.747c-16.688,8.914-37.517,2.587-46.431-14.102
c-1.646-3.086-2.771-6.315-3.406-9.586c-0.511-2.625-0.696-5.275-0.588-7.899c-0.108,2.625,0.076,5.276,0.587,7.903
c0.635,3.271,1.76,6.5,3.405,9.587c8.914,16.688,29.744,23.015,46.432,14.101C234.969,200.563,241.35,190.341,242.493,179.382z"/>
<path fill="none" d="M188.072,137.845c2.039-1.089,4.131-1.976,6.249-2.708c-2.12,0.732-4.213,1.619-6.253,2.709
c-14.549,7.768-22.821,22.745-22.786,38.191c-8.369,3.898-14.191,6.197-16.25,6.471c0,0,0,0,0,0
c2.058-0.273,7.88-2.572,16.252-6.472C165.25,160.59,173.523,145.615,188.072,137.845z"/>
<polygon fill="none" points="116.166,105.187 121.609,110.042 125.066,113.127 130.509,117.983 133.404,120.565 138.845,125.421
141.355,127.66 138.846,125.421 133.404,120.564 130.511,117.982 125.066,113.125 121.609,110.04 116.166,105.184 115.613,104.691
115.611,104.693 "/>
<polygon fill="none" points="187.534,193.586 187.534,193.586 192.547,188.062 "/>
<polygon fill="none" points="207.816,153.805 206.95,153.032 206.021,152.205 206.949,153.032 "/>
<polygon fill="none" points="232.771,176.072 215.532,160.689 207.816,153.805 215.531,160.689 "/>
<polygon fill="none" points="194.021,186.438 194.02,186.439 198.914,190.882 197.446,192.499 198.916,190.88 "/>
<polygon fill="none" points="240.285,125.102 240.285,43.582 205.773,104.516 "/>
<path fill="none" d="M58.583,40.294c-0.151,0.657-0.24,1.34-0.24,2.042v84.453l36.673-22.176L58.583,40.294z"/>
<path fill="none" d="M150.106,71.301l47.237,28.183l10.278-18.148l26.851-47.409c-0.994-0.378-2.064-0.594-3.189-0.594H67.344
c-0.461,0-0.91,0.047-1.355,0.114l37.428,66.086L150.106,71.301z"/>
<path fill="none" d="M188.068,137.846c2.04-1.09,4.133-1.977,6.253-2.709c12.551-4.337,26.17-2.534,37.015,4.271
c2.595-1.757,4.684-3.268,6.236-4.498l-56.334-33.607c1.895,17.026-6.509,34.3-22.518,42.847c-6.553,3.5-13.612,5.129-20.564,5.076
c-15.294-0.116-30.068-8.377-37.769-22.792c-1.729-3.242-3.001-6.613-3.84-10.029l7.986-4.907v0l0.001,0
c0.578,3.681,1.761,7.325,3.615,10.793c4.733,8.866,12.831,14.807,21.884,17.093c7.988,2.017,16.721,1.188,24.544-2.99
c14.998-8.013,21.618-25.646,16.333-41.25c-0.031-0.099-0.061-0.197-0.096-0.297l-7.141-4.021l-13.533-8.071l-88.262,53.368
c0.345,0.287,0.718,0.587,1.113,0.899c0.55,0.438,1.159,0.906,1.799,1.391c5.101,3.86,13.065,9.194,23.866,15.547
c2.153,1.267,4.405,2.568,6.783,3.912c21.467,12.132,41.919,21.529,53.592,24.637c2.058-0.273,7.88-2.572,16.25-6.471
C165.247,160.591,173.52,145.614,188.068,137.846z M122.47,128.284l-0.002-0.002l0,0l-4.896-4.442l6.488-7.148l0.001,0.001l0,0
l2.743,2.489l2.151,1.952l0,0l0.002,0.001L122.47,128.284z M149.123,89.025l3.842-4.228l5.906,3.326l-4.852,5.344L149.123,89.025
L149.123,89.025L149.123,89.025z M142.473,88.184l1.815,1.621l3.456,3.086l5.443,4.855l2.893,2.582l5.443,4.855l1.287,1.147
l-0.001,0.001l0.001,0.001l-4.824,5.408l-1.902-1.7l-5.441-4.856l-2.896-2.582l-5.442-4.857l-3.459-3.085l-2.819-2.514
L142.473,88.184z M132.6,94.252l3.353,2.992l3.459,3.084l5.442,4.857l2.892,2.582l5.441,4.854l2.047,1.826l-0.001,0.001
l0.001,0.001l-4.826,5.406l-0.928-0.83l-1.736-1.546l-5.439-4.856l-2.893-2.583l-5.446-4.856l-3.457-3.084l-4.359-3.887
L132.6,94.252z M115.611,104.689l3.563-2.189l2.883-1.771l4.996,4.455l3.456,3.086l5.442,4.855l2.895,2.584l5.442,4.855
l2.819,2.518l-4.824,5.408l-0.928-0.83l-2.51-2.239l-5.441-4.856l-2.895-2.582l-5.443-4.856l-3.457-3.085l-5.443-4.855
l-0.555-0.494l0.002-0.001L115.611,104.689z"/>
<path fill="none" d="M174.701,182.441c0.635,3.271,1.76,6.5,3.406,9.586c8.914,16.688,29.742,23.016,46.431,14.102
c10.43-5.569,16.811-15.79,17.955-26.747c0.686-6.574-0.514-13.413-3.854-19.671c-1.82-3.406-4.142-6.373-6.818-8.875
c-2.649-2.482-5.65-4.502-8.875-6.015c-9.465-4.428-20.827-4.506-30.732,0.785c-10.213,5.453-16.535,15.369-17.869,26.066
c-0.119,0.951-0.191,1.909-0.23,2.87C174.005,177.166,174.19,179.816,174.701,182.441z M192.425,198.031l-4.894-4.441l0.003-0.004
l0,0l5.013-5.523l1.473-1.623l0,0l0.002-0.002l4.895,4.442l-1.47,1.619L192.425,198.031z M219.378,158.445l6.2-6.826l2.042,1.855
l2.851,2.588l-6.49,7.146l-4.895-4.442L219.378,158.445z M201.341,157.452l4.681-5.247l0.929,0.827l0.866,0.772l7.716,6.885
l17.239,15.383l-4.82,5.408l-19.059-17.006l-7.694-6.863L201.341,157.452z M198.447,160.32l0.926,0.826l5.958,5.316l19.866,17.727
l-4.828,5.408l-0.926-0.83l-20.863-18.615l-4.958-4.424L198.447,160.32z M190.32,168.954l3.937,3.513l22.816,20.356l-4.828,5.407
l-0.929-0.83L187.4,176.062l-1.903-1.703L190.32,168.954z"/>
<path fill="none" d="M142.872,217.218c-6.128-11.472-17.888-18.047-30.062-18.14c-5.534-0.042-11.153,1.255-16.368,4.04
c-16.688,8.911-23.012,29.739-14.104,46.428c6.13,11.472,17.889,18.046,30.062,18.139c5.533,0.042,11.152-1.255,16.368-4.04
c0.521-0.278,1.033-0.568,1.534-0.87c1.002-0.603,1.963-1.249,2.882-1.938c7.788-5.829,12.538-14.579,13.53-23.863
C147.42,230.373,146.227,223.503,142.872,217.218z M129.807,209.133l4.896,4.442l-6.491,7.146h0h0l-4.895-4.441L129.807,209.133z
M103.144,248.4l-6.493,7.149l-4.893-4.443l0.003-0.004l-0.004-0.003l6.492-7.146l4.894,4.442l-0.002,0.002L103.144,248.4z
M116.475,255.744l-0.928-0.83l-2.51-2.24l-5.439-4.855l-2.896-2.582l-5.444-4.856l-3.457-3.084l-5.443-4.856l-0.629-0.563
l0.001-0.001l-0.001-0.001l4.822-5.408l1.25,1.116l5.443,4.855l3.458,3.086l5.443,4.855l2.894,2.583l5.441,4.856l2.825,2.517
L116.475,255.744z M124.604,247.109l-0.932-0.83l-1.734-1.547l-5.443-4.856l-2.893-2.581l-5.443-4.857l-3.457-3.086l-5.444-4.854
l-1.404-1.257l4.821-5.406l0.001,0.001h0l0.93,0.826l1.099,0.979l5.442,4.856l3.457,3.085l5.443,4.855l2.893,2.584l5.443,4.854
l2.047,1.825L124.604,247.109z M132.18,238.994l-1.903-1.699l-5.444-4.857l-2.895-2.582L116.495,225l-3.457-3.085l-5.44-4.856
l-2.168-1.934l4.823-5.407l0.929,0.826l1.856,1.658l5.442,4.856l3.458,3.086l4.854,4.33l0.588,0.524l2.896,2.582l5.44,4.854
l1.284,1.147l0,0.001l0.001,0.001L132.18,238.994z"/>
<path fill="none" d="M157.316,244.557c-0.187,0.741-0.392,1.481-0.615,2.219c-3.583,11.795-11.53,21.48-22.377,27.273
c-6.652,3.555-14.138,5.432-21.648,5.432c-17.098,0-32.709-9.342-40.742-24.379c-3.62-6.779-5.453-14.192-5.444-21.679
c0.004-2.995,0.302-6.001,0.898-8.983c0.298-1.491,0.671-2.977,1.119-4.451c3.583-11.797,11.531-21.483,22.379-27.276
c6.652-3.552,14.136-5.43,21.647-5.43c17.101,0,32.711,9.342,40.741,24.38c3.619,6.778,5.452,14.192,5.443,21.679
C158.714,237.084,158.249,240.846,157.316,244.557z M252.471,189.264c-3.582,11.797-11.531,21.482-22.378,27.274
c-6.651,3.552-14.137,5.43-21.646,5.43c-11.757,0-22.81-4.416-31.18-12.062c-3.805-3.476-7.055-7.619-9.565-12.318
c-1.229-2.302-2.262-4.708-3.085-7.187c-10.192,4.4-13.895,4.947-15.811,4.947c-0.863,0-1.699-0.102-2.484-0.301
c-15.838-4.07-41.292-16.887-59.836-27.527c-16.43-9.424-27.969-17.124-34.295-22.88c-1.155-1.052-2.111-2.014-2.902-2.899
c-3.428-3.834-3.767-6.231-3.764-8.207V42.337h0.002c0-12.028,9.789-21.815,21.817-21.815l163.938-0.006
c5.639,0,10.785,2.151,14.662,5.677c4.393,3.994,7.155,9.752,7.155,16.143v91.201c0,2.378-0.841,4.516-2.646,6.729
c-1.427,1.743-3.589,3.695-6.706,6.043c2.033,2.428,3.807,5.055,5.295,7.841C254.836,164.996,256.054,177.466,252.471,189.264z"/>
<g>
<polygon fill="none" points="154.02,93.467 158.871,88.123 152.965,84.797 149.123,89.025 149.124,89.025 "/>
<polygon fill="none" points="142.305,97.745 147.747,102.602 150.643,105.184 156.084,110.04 157.986,111.74 162.811,106.332
162.81,106.331 161.523,105.184 156.08,100.328 153.188,97.746 147.744,92.891 144.288,89.805 142.473,88.184 136.027,92.146
138.846,94.66 "/>
<polygon fill="none" points="113.039,242.962 110.145,240.379 104.702,235.523 101.244,232.438 95.801,227.582 94.551,226.466
89.729,231.874 89.73,231.875 90.357,232.438 95.801,237.295 99.258,240.379 104.702,245.236 107.598,247.818 113.037,252.674
115.547,254.914 116.475,255.744 121.305,250.335 118.48,247.818 "/>
<polygon fill="none" points="133.966,105.184 139.412,110.04 142.305,112.623 147.744,117.479 149.48,119.025 150.408,119.855
155.234,114.449 155.233,114.448 153.188,112.623 147.744,107.768 144.854,105.186 139.41,100.328 135.951,97.244 132.6,94.252
126.15,98.213 130.509,102.1 "/>
<polygon fill="none" points="116.166,105.184 121.609,110.04 125.066,113.125 130.511,117.982 133.404,120.564 138.846,125.421
141.355,127.66 142.283,128.49 147.107,123.082 144.288,120.564 138.846,115.709 135.951,113.125 130.509,108.27 127.053,105.184
122.057,100.729 119.174,102.5 115.611,104.689 115.613,104.691 "/>
<path fill="none" d="M153.275,211.662c-8.03-15.038-23.641-24.38-40.741-24.38c-7.511,0-14.995,1.878-21.647,5.43
c-10.848,5.793-18.796,15.479-22.379,27.276c-0.448,1.475-0.821,2.96-1.119,4.451c-0.597,2.982-0.895,5.988-0.898,8.983
c-0.009,7.486,1.824,14.899,5.444,21.679c8.033,15.037,23.646,24.379,40.742,24.379c7.51,0,14.996-1.877,21.648-5.432
c10.847-5.793,18.794-15.479,22.377-27.273c0.224-0.737,0.429-1.478,0.615-2.219c0.933-3.711,1.397-7.473,1.402-11.216
c0.001-0.936-0.026-1.87-0.083-2.803C158.241,224.011,156.442,217.593,153.275,211.662z M146.715,236.974
c-0.807,7.543-4.094,14.734-9.475,20.292c-1.242,1.282-2.596,2.479-4.056,3.571c-0.919,0.688-1.88,1.335-2.882,1.938
c-0.501,0.302-1.013,0.592-1.534,0.87c-5.215,2.785-10.834,4.082-16.368,4.04c-12.174-0.093-23.933-6.667-30.062-18.139
c-8.908-16.688-2.584-37.517,14.104-46.428c5.215-2.785,10.834-4.082,16.368-4.04c12.175,0.093,23.936,6.668,30.064,18.14
C146.228,223.503,147.42,230.373,146.715,236.974z"/>
<polygon fill="none" points="126.805,119.182 124.062,116.693 124.062,116.693 117.575,123.842 122.468,128.282 122.47,128.284
128.958,121.136 128.956,121.134 "/>
<polygon fill="none" points="121.938,235.021 119.046,232.438 113.602,227.582 110.145,224.497 104.702,219.641 103.604,218.66
102.676,217.835 102.675,217.834 97.854,223.24 99.258,224.497 104.702,229.352 108.159,232.438 113.602,237.295 116.495,239.876
121.938,244.732 123.672,246.279 124.604,247.109 129.428,241.701 127.382,239.876 "/>
<path fill="none" d="M243.748,146.309c3.117-2.348,5.279-4.3,6.706-6.043c1.805-2.213,2.646-4.351,2.646-6.729V42.336
c0-6.391-2.763-12.149-7.155-16.143c-3.876-3.524-9.022-5.675-14.66-5.675L67.345,20.523c-12.028,0-21.817,9.787-21.817,21.814
v91.197c-0.004,1.977,0.334,4.372,3.761,8.206c0.792,0.886,1.748,1.848,2.902,2.899c6.326,5.757,17.865,13.457,34.295,22.88
c18.544,10.641,43.998,23.457,59.836,27.527c0.785,0.199,1.621,0.301,2.484,0.301c1.917,0,5.619-0.547,15.811-4.947h0.001
c0.823,2.479,1.856,4.887,3.086,7.188c2.51,4.698,5.76,8.841,9.563,12.316c8.37,7.646,19.423,12.062,31.18,12.062
c7.509,0,14.994-1.878,21.646-5.43c10.847-5.792,18.796-15.478,22.378-27.274c3.583-11.798,2.365-24.268-3.428-35.113
C247.555,151.364,245.781,148.737,243.748,146.309z M67.344,33.331h163.938c1.125,0,2.196,0.216,3.19,0.595l-0.001,0.001
l-26.851,47.409l-10.278,18.148l-47.237-28.183l-46.689,28.232L65.989,33.447l-0.002-0.003
C66.432,33.378,66.883,33.331,67.344,33.331z M240.285,43.582v81.52l-34.512-20.586L240.285,43.582z M58.343,42.336
c0-0.702,0.089-1.385,0.24-2.042l36.433,64.319l-36.673,22.176V42.336z M165.285,176.036c-8.372,3.899-14.194,6.198-16.252,6.472
c0,0,0,0,0,0c-11.672-3.107-32.125-12.505-53.592-24.637c-2.378-1.344-4.63-2.646-6.783-3.912
c-10.802-6.353-18.767-11.686-23.866-15.547c-0.64-0.485-1.25-0.954-1.799-1.391c-0.395-0.312-0.768-0.612-1.113-0.899
l88.262-53.368l0,0l13.534,8.071l7.14,4.021c0.035,0.1,0.064,0.198,0.097,0.297c5.284,15.604-1.335,33.237-16.333,41.25
c-7.823,4.178-16.556,5.007-24.545,2.99c-9.053-2.286-17.151-8.227-21.884-17.093c-1.854-3.468-3.037-7.112-3.615-10.793l-0.001,0
l-7.985,4.906c0.839,3.416,2.109,6.787,3.84,10.029c7.7,14.415,22.474,22.676,37.768,22.792
c6.952,0.053,14.012-1.576,20.564-5.076c16.009-8.546,24.412-25.821,22.518-42.847c0-0.001,0-0.003,0-0.004l56.337,33.61
c-1.554,1.23-3.644,2.742-6.238,4.499l-0.001,0c-10.845-6.804-24.464-8.608-37.015-4.271c-2.118,0.732-4.21,1.619-6.249,2.708
C173.523,145.615,165.25,160.59,165.285,176.036z M242.493,179.382c-1.144,10.959-7.524,21.182-17.956,26.751
c-16.688,8.914-37.518,2.588-46.432-14.101c-1.646-3.087-2.771-6.316-3.405-9.587c-0.511-2.627-0.695-5.278-0.587-7.903
c0.039-0.961,0.111-1.919,0.23-2.87c1.334-10.697,7.656-20.613,17.869-26.066c9.905-5.291,21.268-5.213,30.732-0.785
c3.225,1.513,6.226,3.533,8.875,6.015c2.677,2.502,4.998,5.469,6.818,8.875C241.979,165.969,243.179,172.808,242.493,179.382z"/>
<polygon fill="none" points="98.251,243.957 91.762,251.103 91.758,251.106 96.651,255.55 103.144,248.4 103.142,248.398 "/>
<polygon fill="none" points="128.211,220.721 134.702,213.575 129.807,209.133 123.316,216.279 128.211,220.721 "/>
<polygon fill="none" points="135.718,232.438 130.277,227.582 127.382,225 126.792,224.475 121.938,220.145 118.48,217.059
113.038,212.202 111.182,210.544 110.253,209.718 105.43,215.125 107.598,217.059 113.038,221.915 116.495,225 121.938,229.855
124.833,232.438 130.277,237.295 132.18,238.994 137.002,233.585 137,233.584 "/>
<polygon fill="none" points="230.471,156.062 227.62,153.475 225.578,151.619 219.378,158.445 219.086,158.766 223.98,163.208
"/>
<polygon fill="none" points="190.32,168.954 185.497,174.359 187.4,176.062 211.316,197.4 212.245,198.23 217.073,192.823
194.257,172.467 "/>
<polygon fill="none" points="192.547,188.062 187.534,193.586 187.531,193.59 192.425,198.031 197.446,192.499 198.914,190.882
194.02,186.439 "/>
<polygon fill="none" points="199.373,161.146 198.447,160.32 193.622,165.729 198.58,170.152 219.443,188.768 220.369,189.598
225.197,184.189 205.331,166.463 "/>
<polygon fill="none" points="207.816,153.805 206.949,153.032 206.021,152.205 201.341,157.452 201.198,157.611 208.893,164.475
227.951,181.48 232.771,176.072 215.531,160.689 "/>
<polygon fill="#9C27B0" points="240.285,125.102 240.285,43.582 205.773,104.516 "/>
<path fill="#9C27B0" d="M58.583,40.294c-0.151,0.657-0.24,1.34-0.24,2.042v84.453l36.673-22.176L58.583,40.294z"/>
<path fill="#9C27B0" d="M112.81,199.078c-5.534-0.042-11.153,1.255-16.368,4.04c-16.688,8.911-23.012,29.739-14.104,46.428
c6.13,11.472,17.889,18.046,30.062,18.139c5.533,0.042,11.152-1.255,16.368-4.04c0.521-0.278,1.033-0.568,1.534-0.87
c1.002-0.603,1.963-1.249,2.882-1.938c1.46-1.093,2.813-2.289,4.056-3.571c5.381-5.558,8.668-12.749,9.475-20.292
c0.706-6.601-0.487-13.471-3.841-19.756C136.746,205.746,124.985,199.171,112.81,199.078z M129.807,209.133l4.895,4.442
l-6.491,7.146h0l-4.895-4.441L129.807,209.133z M96.651,255.55l-4.893-4.443l0.003-0.004l6.489-7.146l4.891,4.441l0.001,0.002
L96.651,255.55z M116.475,255.744l-0.928-0.83l-2.51-2.24l-5.439-4.855l-2.896-2.582l-5.444-4.857l-3.457-3.084l-5.444-4.857
l-0.627-0.562l-0.001-0.001l4.822-5.408l1.25,1.116l5.443,4.855l3.458,3.086l5.443,4.855l2.894,2.583l5.441,4.856l2.825,2.517
L116.475,255.744z M124.604,247.109l-0.932-0.83l-1.734-1.547l-5.443-4.856l-2.893-2.581l-5.443-4.857l-3.457-3.086l-5.444-4.854
l-1.404-1.257l4.821-5.406l0.001,0.001l0.928,0.825l1.098,0.98l5.443,4.856l3.457,3.085l5.444,4.855l2.892,2.584l5.444,4.854
l2.046,1.825L124.604,247.109z M132.18,238.994l-1.903-1.699l-5.444-4.857l-2.895-2.582L116.495,225l-3.457-3.085l-5.44-4.856
l-2.168-1.934l4.823-5.407l0.929,0.826l1.856,1.658l5.442,4.856l3.458,3.086l4.854,4.33l0.589,0.525l2.895,2.582l5.441,4.855
l1.283,1.146l0.001,0.001L132.18,238.994z"/>
<path fill="#9C27B0" d="M103.417,99.533l46.689-28.232l47.237,28.183l10.278-18.148l26.851-47.409l0.001-0.001
c-0.994-0.379-2.065-0.595-3.19-0.595H67.344c-0.461,0-0.912,0.047-1.357,0.113l0.002,0.003L103.417,99.533z"/>
<path fill="#9C27B0" d="M188.072,137.845c2.039-1.089,4.131-1.976,6.249-2.708c12.551-4.337,26.17-2.534,37.015,4.271l0.001,0
c2.595-1.757,4.685-3.269,6.238-4.499l-56.337-33.61c0,0.001,0,0.003,0,0.004c1.895,17.026-6.509,34.3-22.518,42.847
c-6.553,3.5-13.612,5.129-20.564,5.076c-15.294-0.117-30.068-8.378-37.768-22.792c-1.731-3.242-3.001-6.613-3.84-10.029
l7.985-4.906l0.001,0c0.578,3.681,1.761,7.325,3.615,10.793c4.733,8.866,12.831,14.807,21.884,17.093
c7.989,2.017,16.722,1.188,24.545-2.99c14.998-8.013,21.617-25.646,16.333-41.25c-0.032-0.099-0.062-0.197-0.097-0.297
l-7.14-4.021l-13.534-8.071l0,0l-88.262,53.368c0.345,0.287,0.718,0.587,1.113,0.899c0.55,0.438,1.159,0.906,1.799,1.391
c5.1,3.861,13.064,9.194,23.866,15.547c2.153,1.267,4.405,2.568,6.783,3.912c21.467,12.132,41.919,21.529,53.592,24.637
c0,0,0,0,0,0c2.058-0.273,7.88-2.572,16.252-6.472C165.25,160.59,173.523,145.615,188.072,137.845z M122.47,128.284l-0.002-0.002
l-4.893-4.44l6.487-7.148l0,0l2.743,2.489l2.15,1.952l0.002,0.001L122.47,128.284z M152.965,84.797l5.906,3.326l-4.852,5.344
l-4.896-4.441l0,0L152.965,84.797z M142.473,88.184l1.815,1.621l3.456,3.086l5.443,4.855l2.893,2.582l5.443,4.856l1.286,1.147
l0.001,0.001l-4.824,5.408l-1.902-1.7l-5.441-4.856l-2.896-2.582l-5.442-4.857l-3.459-3.085l-2.819-2.514L142.473,88.184z
M132.6,94.252l3.351,2.992l3.459,3.084l5.444,4.858l2.89,2.582l5.443,4.855l2.046,1.825l0.001,0.001l-4.826,5.406l-0.928-0.83
l-1.736-1.546l-5.439-4.856l-2.893-2.583l-5.446-4.856l-3.457-3.084l-4.359-3.887L132.6,94.252z M119.174,102.5l2.883-1.771
l4.996,4.455l3.456,3.086l5.442,4.855l2.895,2.584l5.442,4.855l2.819,2.518l-4.824,5.408l-0.928-0.83l-2.509-2.239l-5.442-4.857
l-2.893-2.582l-5.445-4.857l-3.457-3.085l-5.443-4.856l-0.553-0.493l-0.002-0.002L119.174,102.5z"/>
<path fill="#9C27B0" d="M231.82,150.836c-2.649-2.482-5.65-4.502-8.875-6.015c-9.465-4.428-20.827-4.506-30.732,0.785
c-10.213,5.453-16.535,15.369-17.869,26.066c-0.119,0.951-0.191,1.909-0.23,2.87c-0.108,2.625,0.076,5.276,0.587,7.903
c0.635,3.271,1.76,6.5,3.405,9.587c8.914,16.688,29.744,23.015,46.432,14.101c10.432-5.569,16.812-15.792,17.956-26.751
c0.686-6.574-0.514-13.413-3.854-19.671C236.818,156.305,234.497,153.338,231.82,150.836z M219.378,158.445l6.2-6.826l2.042,1.855
l2.851,2.588l-6.49,7.146l-4.895-4.442L219.378,158.445z M197.446,192.499l-5.021,5.532l-4.894-4.441l0.003-0.004l5.013-5.523
l1.473-1.623l4.895,4.442L197.446,192.499z M212.245,198.23l-0.929-0.83L187.4,176.062l-1.903-1.703l4.823-5.405l3.937,3.513
l22.816,20.356L212.245,198.23z M220.369,189.598l-0.926-0.83l-20.863-18.615l-4.958-4.424l4.825-5.408l0.926,0.826l5.958,5.316
l19.866,17.727L220.369,189.598z M227.951,181.48l-19.059-17.006l-7.694-6.863l0.143-0.159l4.681-5.247l0.928,0.827l0.867,0.772
l7.715,6.885l17.24,15.383L227.951,181.48z"/>
<path fill="#9C27B0" d="M269.92,0H30.079C13.494,0,0,13.494,0,30.08v239.84C0,286.506,13.494,300,30.079,300H269.92
c16.587,0,30.08-13.494,30.08-30.08V30.08C300,13.494,286.507,0,269.92,0z M157.316,244.557c-0.187,0.741-0.392,1.481-0.615,2.219
c-3.583,11.795-11.53,21.48-22.377,27.273c-6.652,3.555-14.138,5.432-21.648,5.432c-17.096,0-32.709-9.342-40.742-24.379
c-3.62-6.779-5.453-14.192-5.444-21.679c0.004-2.995,0.302-6.001,0.898-8.983c0.298-1.491,0.671-2.977,1.119-4.451
c3.583-11.797,11.531-21.483,22.379-27.276c6.652-3.552,14.136-5.43,21.647-5.43c17.101,0,32.711,9.342,40.741,24.38
c3.167,5.931,4.966,12.349,5.36,18.876c0.057,0.933,0.084,1.867,0.083,2.803C158.714,237.084,158.249,240.846,157.316,244.557z
M252.471,189.264c-3.582,11.797-11.531,21.482-22.378,27.274c-6.651,3.552-14.137,5.43-21.646,5.43
c-11.757,0-22.81-4.416-31.18-12.062c-3.804-3.476-7.054-7.618-9.563-12.316c-1.229-2.302-2.263-4.709-3.086-7.188h-0.001
c-10.192,4.4-13.895,4.947-15.811,4.947c-0.863,0-1.699-0.102-2.484-0.301c-15.838-4.07-41.292-16.887-59.836-27.527
c-16.43-9.424-27.969-17.124-34.295-22.88c-1.155-1.052-2.111-2.014-2.902-2.899c-3.426-3.833-3.765-6.229-3.761-8.206V42.337
c0-12.027,9.789-21.814,21.817-21.814l163.939-0.005c5.638,0,10.784,2.151,14.66,5.675c4.393,3.994,7.155,9.752,7.155,16.143
v91.201c0,2.378-0.841,4.516-2.646,6.729c-1.427,1.743-3.589,3.695-6.706,6.043c2.033,2.428,3.807,5.055,5.295,7.841
C254.836,164.996,256.054,177.466,252.471,189.264z"/>
</g>
<path fill="none" d="M96.547,116.404c0.839,3.416,2.111,6.787,3.84,10.029c7.701,14.415,22.475,22.676,37.769,22.792
c-15.294-0.117-30.068-8.378-37.768-22.792C98.657,123.191,97.387,119.82,96.547,116.404l7.986-4.906v0L96.547,116.404z"/>
<path fill="none" d="M88.658,153.959c-10.801-6.353-18.766-11.687-23.866-15.547C69.891,142.273,77.856,147.606,88.658,153.959z"/>
<path fill="none" d="M231.336,139.408L231.336,139.408c2.596-1.757,4.686-3.269,6.239-4.499l-56.337-33.61c0,0.001,0,0.003,0,0.004
l56.334,33.607C236.02,136.14,233.931,137.651,231.336,139.408z"/>
<path fill="none" d="M231.282,33.333c1.125,0,2.195,0.216,3.189,0.594l0.001-0.001c-0.994-0.379-2.065-0.595-3.19-0.595H67.344
c-0.461,0-0.912,0.047-1.357,0.113l0.002,0.003c0.445-0.067,0.894-0.114,1.355-0.114H231.282z"/>
<polygon fill="none" points="197.343,99.484 207.621,81.336 197.343,99.484 "/>
<polygon fill="none" points="162.81,106.331 162.811,106.33 161.523,105.183 156.08,100.328 161.523,105.184 "/>
<polygon fill="none" points="124.062,116.693 124.06,116.692 117.572,123.84 122.468,128.282 122.468,128.282 117.575,123.842 "/>
<path fill="none" d="M167.704,197.589c-1.229-2.302-2.263-4.709-3.086-7.188h-0.001c0.823,2.479,1.855,4.885,3.085,7.187
c2.511,4.699,5.761,8.843,9.565,12.318C173.464,206.43,170.214,202.287,167.704,197.589z"/>
<polygon fill="none" points="128.956,121.134 126.805,119.182 128.956,121.134 "/>
<polygon fill="none" points="170.814,94.846 163.675,90.825 150.141,82.754 150.141,82.754 163.674,90.825 "/>
<path fill="none" d="M154.577,136.393c-7.823,4.177-16.556,5.006-24.544,2.99C138.022,141.4,146.755,140.571,154.577,136.393
c14.999-8.013,21.618-25.646,16.334-41.25c-0.032-0.099-0.062-0.197-0.097-0.297c0.035,0.1,0.064,0.198,0.096,0.297
C176.195,110.747,169.575,128.38,154.577,136.393z"/>
<polygon fill="none" points="95.801,237.295 90.357,232.438 89.73,231.875 89.729,231.876 90.358,232.439 95.801,237.296
99.258,240.38 104.702,245.236 99.258,240.379 "/>
<path fill="none" d="M45.528,42.337c0-12.027,9.789-21.814,21.817-21.814l163.939-0.005c5.638,0,10.784,2.151,14.66,5.675
c-3.877-3.525-9.023-5.677-14.662-5.677L67.344,20.522C55.316,20.522,45.527,30.309,45.528,42.337h-0.003v91.196
c-0.003,1.976,0.335,4.372,3.764,8.207c-3.426-3.833-3.765-6.229-3.761-8.206V42.337z"/>
<path fill="none" d="M128.768,263.645c-5.215,2.785-10.834,4.082-16.368,4.04C117.934,267.727,123.553,266.43,128.768,263.645z"/>
<path fill="none" d="M158.719,233.341c-0.005,3.743-0.47,7.505-1.402,11.216C158.249,240.846,158.714,237.084,158.719,233.341z"/>
<path fill="none" d="M66.49,233.423c0.004-2.995,0.302-6.001,0.898-8.983C66.792,227.422,66.494,230.428,66.49,233.423z"/>
<polygon fill="none" points="128.211,220.721 128.212,220.721 134.703,213.575 129.807,209.133 134.702,213.575 "/>
<path fill="none" d="M71.934,255.102c8.033,15.037,23.644,24.379,40.742,24.379C95.58,279.48,79.967,270.139,71.934,255.102z"/>
<path fill="none" d="M142.874,217.218c-6.128-11.472-17.889-18.047-30.064-18.14c12.174,0.093,23.934,6.668,30.062,18.14
c3.355,6.285,4.548,13.155,3.843,19.756C147.42,230.373,146.228,223.503,142.874,217.218z"/>
<polygon fill="none" points="98.25,243.954 91.758,251.1 91.762,251.103 98.251,243.957 103.142,248.398 103.144,248.396 "/>
<polygon fill="none" points="130.277,227.582 135.718,232.438 137,233.584 137.001,233.583 135.717,232.436 130.277,227.581
127.381,224.999 126.792,224.475 127.382,225 "/>
<polygon fill="none" points="121.941,235.021 119.048,232.438 113.605,227.582 110.148,224.497 104.706,219.641 103.607,218.661
102.677,217.835 102.676,217.835 103.604,218.66 104.702,219.641 110.145,224.497 113.602,227.582 119.046,232.438
121.938,235.021 127.382,239.876 129.428,241.701 124.604,247.109 129.431,241.7 127.384,239.875 "/>
<polygon fill="none" points="139.41,100.328 144.854,105.186 147.744,107.768 153.188,112.623 155.233,114.448 155.234,114.447
153.188,112.621 147.746,107.767 144.854,105.185 139.412,100.328 135.953,97.244 132.6,94.252 135.951,97.244 "/>
<polygon fill="none" points="154.02,93.467 149.124,89.025 149.123,89.026 "/>
<path fill="none" d="M242.493,179.382c-1.145,10.957-7.525,21.178-17.955,26.747c-16.688,8.914-37.517,2.587-46.431-14.102
c-1.646-3.086-2.771-6.315-3.406-9.586c-0.511-2.625-0.696-5.275-0.588-7.899c-0.108,2.625,0.076,5.276,0.587,7.903
c0.635,3.271,1.76,6.5,3.405,9.587c8.914,16.688,29.744,23.015,46.432,14.101C234.969,200.563,241.35,190.341,242.493,179.382z"/>
<path fill="none" d="M188.072,137.845c2.039-1.089,4.131-1.976,6.249-2.708c-2.12,0.732-4.213,1.619-6.253,2.709
c-14.549,7.768-22.821,22.745-22.786,38.191c-8.369,3.898-14.191,6.197-16.25,6.471c0,0,0,0,0,0
c2.058-0.273,7.88-2.572,16.252-6.472C165.25,160.59,173.523,145.615,188.072,137.845z"/>
<polygon fill="none" points="116.166,105.187 121.609,110.042 125.066,113.127 130.509,117.983 133.404,120.565 138.845,125.421
141.355,127.66 138.846,125.421 133.404,120.564 130.511,117.982 125.066,113.125 121.609,110.04 116.166,105.184 115.613,104.691
115.611,104.693 "/>
<polygon fill="none" points="187.534,193.586 187.534,193.586 192.547,188.062 "/>
<polygon fill="none" points="207.816,153.805 206.95,153.032 206.021,152.205 206.949,153.032 "/>
<polygon fill="none" points="232.771,176.072 215.532,160.689 207.816,153.805 215.531,160.689 "/>
<polygon fill="none" points="194.021,186.438 194.02,186.439 198.914,190.882 197.446,192.499 198.916,190.88 "/>
<polygon fill="none" points="240.285,125.102 240.285,43.582 205.773,104.516 "/>
<path fill="none" d="M58.583,40.294c-0.151,0.657-0.24,1.34-0.24,2.042v84.453l36.673-22.176L58.583,40.294z"/>
<path fill="none" d="M150.106,71.301l47.237,28.183l10.278-18.148l26.851-47.409c-0.994-0.378-2.064-0.594-3.189-0.594H67.344
c-0.461,0-0.91,0.047-1.355,0.114l37.428,66.086L150.106,71.301z"/>
<path fill="none" d="M188.068,137.846c2.04-1.09,4.133-1.977,6.253-2.709c12.551-4.337,26.17-2.534,37.015,4.271
c2.595-1.757,4.684-3.268,6.236-4.498l-56.334-33.607c1.895,17.026-6.509,34.3-22.518,42.847c-6.553,3.5-13.612,5.129-20.564,5.076
c-15.294-0.116-30.068-8.377-37.769-22.792c-1.729-3.242-3.001-6.613-3.84-10.029l7.986-4.907v0l0.001,0
c0.578,3.681,1.761,7.325,3.615,10.793c4.733,8.866,12.831,14.807,21.884,17.093c7.988,2.017,16.721,1.188,24.544-2.99
c14.998-8.013,21.618-25.646,16.333-41.25c-0.031-0.099-0.061-0.197-0.096-0.297l-7.141-4.021l-13.533-8.071l-88.262,53.368
c0.345,0.287,0.718,0.587,1.113,0.899c0.55,0.438,1.159,0.906,1.799,1.391c5.101,3.86,13.065,9.194,23.866,15.547
c2.153,1.267,4.405,2.568,6.783,3.912c21.467,12.132,41.919,21.529,53.592,24.637c2.058-0.273,7.88-2.572,16.25-6.471
C165.247,160.591,173.52,145.614,188.068,137.846z M122.47,128.284l-0.002-0.002l0,0l-4.896-4.442l6.488-7.148l0.001,0.001l0,0
l2.743,2.489l2.151,1.952l0,0l0.002,0.001L122.47,128.284z M149.123,89.025l3.842-4.228l5.906,3.326l-4.852,5.344L149.123,89.025
L149.123,89.025L149.123,89.025z M142.473,88.184l1.815,1.621l3.456,3.086l5.443,4.855l2.893,2.582l5.443,4.855l1.287,1.147
l-0.001,0.001l0.001,0.001l-4.824,5.408l-1.902-1.7l-5.441-4.856l-2.896-2.582l-5.442-4.857l-3.459-3.085l-2.819-2.514
L142.473,88.184z M132.6,94.252l3.353,2.992l3.459,3.084l5.442,4.857l2.892,2.582l5.441,4.854l2.047,1.826l-0.001,0.001
l0.001,0.001l-4.826,5.406l-0.928-0.83l-1.736-1.546l-5.439-4.856l-2.893-2.583l-5.446-4.856l-3.457-3.084l-4.359-3.887
L132.6,94.252z M115.611,104.689l3.563-2.189l2.883-1.771l4.996,4.455l3.456,3.086l5.442,4.855l2.895,2.584l5.442,4.855
l2.819,2.518l-4.824,5.408l-0.928-0.83l-2.51-2.239l-5.441-4.856l-2.895-2.582l-5.443-4.856l-3.457-3.085l-5.443-4.855
l-0.555-0.494l0.002-0.001L115.611,104.689z"/>
<path fill="none" d="M174.701,182.441c0.635,3.271,1.76,6.5,3.406,9.586c8.914,16.688,29.742,23.016,46.431,14.102
c10.43-5.569,16.811-15.79,17.955-26.747c0.686-6.574-0.514-13.413-3.854-19.671c-1.82-3.406-4.142-6.373-6.818-8.875
c-2.649-2.482-5.65-4.502-8.875-6.015c-9.465-4.428-20.827-4.506-30.732,0.785c-10.213,5.453-16.535,15.369-17.869,26.066
c-0.119,0.951-0.191,1.909-0.23,2.87C174.005,177.166,174.19,179.816,174.701,182.441z M192.425,198.031l-4.894-4.441l0.003-0.004
l0,0l5.013-5.523l1.473-1.623l0,0l0.002-0.002l4.895,4.442l-1.47,1.619L192.425,198.031z M219.378,158.445l6.2-6.826l2.042,1.855
l2.851,2.588l-6.49,7.146l-4.895-4.442L219.378,158.445z M201.341,157.452l4.681-5.247l0.929,0.827l0.866,0.772l7.716,6.885
l17.239,15.383l-4.82,5.408l-19.059-17.006l-7.694-6.863L201.341,157.452z M198.447,160.32l0.926,0.826l5.958,5.316l19.866,17.727
l-4.828,5.408l-0.926-0.83l-20.863-18.615l-4.958-4.424L198.447,160.32z M190.32,168.954l3.937,3.513l22.816,20.356l-4.828,5.407
l-0.929-0.83L187.4,176.062l-1.903-1.703L190.32,168.954z"/>
<path fill="none" d="M142.872,217.218c-6.128-11.472-17.888-18.047-30.062-18.14c-5.534-0.042-11.153,1.255-16.368,4.04
c-16.688,8.911-23.012,29.739-14.104,46.428c6.13,11.472,17.889,18.046,30.062,18.139c5.533,0.042,11.152-1.255,16.368-4.04
c0.521-0.278,1.033-0.568,1.534-0.87c1.002-0.603,1.963-1.249,2.882-1.938c7.788-5.829,12.538-14.579,13.53-23.863
C147.42,230.373,146.227,223.503,142.872,217.218z M129.807,209.133l4.896,4.442l-6.491,7.146h0h0l-4.895-4.441L129.807,209.133z
M103.144,248.4l-6.493,7.149l-4.893-4.443l0.003-0.004l-0.004-0.003l6.492-7.146l4.894,4.442l-0.002,0.002L103.144,248.4z
M116.475,255.744l-0.928-0.83l-2.51-2.24l-5.439-4.855l-2.896-2.582l-5.444-4.856l-3.457-3.084l-5.443-4.856l-0.629-0.563
l0.001-0.001l-0.001-0.001l4.822-5.408l1.25,1.116l5.443,4.855l3.458,3.086l5.443,4.855l2.894,2.583l5.441,4.856l2.825,2.517
L116.475,255.744z M124.604,247.109l-0.932-0.83l-1.734-1.547l-5.443-4.856l-2.893-2.581l-5.443-4.857l-3.457-3.086l-5.444-4.854
l-1.404-1.257l4.821-5.406l0.001,0.001h0l0.93,0.826l1.099,0.979l5.442,4.856l3.457,3.085l5.443,4.855l2.893,2.584l5.443,4.854
l2.047,1.825L124.604,247.109z M132.18,238.994l-1.903-1.699l-5.444-4.857l-2.895-2.582L116.495,225l-3.457-3.085l-5.44-4.856
l-2.168-1.934l4.823-5.407l0.929,0.826l1.856,1.658l5.442,4.856l3.458,3.086l4.854,4.33l0.588,0.524l2.896,2.582l5.44,4.854
l1.284,1.147l0,0.001l0.001,0.001L132.18,238.994z"/>
<path fill="none" d="M157.316,244.557c-0.187,0.741-0.392,1.481-0.615,2.219c-3.583,11.795-11.53,21.48-22.377,27.273
c-6.652,3.555-14.138,5.432-21.648,5.432c-17.098,0-32.709-9.342-40.742-24.379c-3.62-6.779-5.453-14.192-5.444-21.679
c0.004-2.995,0.302-6.001,0.898-8.983c0.298-1.491,0.671-2.977,1.119-4.451c3.583-11.797,11.531-21.483,22.379-27.276
c6.652-3.552,14.136-5.43,21.647-5.43c17.101,0,32.711,9.342,40.741,24.38c3.619,6.778,5.452,14.192,5.443,21.679
C158.714,237.084,158.249,240.846,157.316,244.557z M252.471,189.264c-3.582,11.797-11.531,21.482-22.378,27.274
c-6.651,3.552-14.137,5.43-21.646,5.43c-11.757,0-22.81-4.416-31.18-12.062c-3.805-3.476-7.055-7.619-9.565-12.318
c-1.229-2.302-2.262-4.708-3.085-7.187c-10.192,4.4-13.895,4.947-15.811,4.947c-0.863,0-1.699-0.102-2.484-0.301
c-15.838-4.07-41.292-16.887-59.836-27.527c-16.43-9.424-27.969-17.124-34.295-22.88c-1.155-1.052-2.111-2.014-2.902-2.899
c-3.428-3.834-3.767-6.231-3.764-8.207V42.337h0.002c0-12.028,9.789-21.815,21.817-21.815l163.938-0.006
c5.639,0,10.785,2.151,14.662,5.677c4.393,3.994,7.155,9.752,7.155,16.143v91.201c0,2.378-0.841,4.516-2.646,6.729
c-1.427,1.743-3.589,3.695-6.706,6.043c2.033,2.428,3.807,5.055,5.295,7.841C254.836,164.996,256.054,177.466,252.471,189.264z"/>
<g>
<polygon fill="none" points="154.02,93.467 158.871,88.123 152.965,84.797 149.123,89.025 149.124,89.025 "/>
<polygon fill="none" points="142.305,97.745 147.747,102.602 150.643,105.184 156.084,110.04 157.986,111.74 162.811,106.332
162.81,106.331 161.523,105.184 156.08,100.328 153.188,97.746 147.744,92.891 144.288,89.805 142.473,88.184 136.027,92.146
138.846,94.66 "/>
<polygon fill="none" points="113.039,242.962 110.145,240.379 104.702,235.523 101.244,232.438 95.801,227.582 94.551,226.466
89.729,231.874 89.73,231.875 90.357,232.438 95.801,237.295 99.258,240.379 104.702,245.236 107.598,247.818 113.037,252.674
115.547,254.914 116.475,255.744 121.305,250.335 118.48,247.818 "/>
<polygon fill="none" points="133.966,105.184 139.412,110.04 142.305,112.623 147.744,117.479 149.48,119.025 150.408,119.855
155.234,114.449 155.233,114.448 153.188,112.623 147.744,107.768 144.854,105.186 139.41,100.328 135.951,97.244 132.6,94.252
126.15,98.213 130.509,102.1 "/>
<polygon fill="none" points="116.166,105.184 121.609,110.04 125.066,113.125 130.511,117.982 133.404,120.564 138.846,125.421
141.355,127.66 142.283,128.49 147.107,123.082 144.288,120.564 138.846,115.709 135.951,113.125 130.509,108.27 127.053,105.184
122.057,100.729 119.174,102.5 115.611,104.689 115.613,104.691 "/>
<path fill="none" d="M153.275,211.662c-8.03-15.038-23.641-24.38-40.741-24.38c-7.511,0-14.995,1.878-21.647,5.43
c-10.848,5.793-18.796,15.479-22.379,27.276c-0.448,1.475-0.821,2.96-1.119,4.451c-0.597,2.982-0.895,5.988-0.898,8.983
c-0.009,7.486,1.824,14.899,5.444,21.679c8.033,15.037,23.646,24.379,40.742,24.379c7.51,0,14.996-1.877,21.648-5.432
c10.847-5.793,18.794-15.479,22.377-27.273c0.224-0.737,0.429-1.478,0.615-2.219c0.933-3.711,1.397-7.473,1.402-11.216
c0.001-0.936-0.026-1.87-0.083-2.803C158.241,224.011,156.442,217.593,153.275,211.662z M146.715,236.974
c-0.807,7.543-4.094,14.734-9.475,20.292c-1.242,1.282-2.596,2.479-4.056,3.571c-0.919,0.688-1.88,1.335-2.882,1.938
c-0.501,0.302-1.013,0.592-1.534,0.87c-5.215,2.785-10.834,4.082-16.368,4.04c-12.174-0.093-23.933-6.667-30.062-18.139
c-8.908-16.688-2.584-37.517,14.104-46.428c5.215-2.785,10.834-4.082,16.368-4.04c12.175,0.093,23.936,6.668,30.064,18.14
C146.228,223.503,147.42,230.373,146.715,236.974z"/>
<polygon fill="none" points="126.805,119.182 124.062,116.693 124.062,116.693 117.575,123.842 122.468,128.282 122.47,128.284
128.958,121.136 128.956,121.134 "/>
<polygon fill="none" points="121.938,235.021 119.046,232.438 113.602,227.582 110.145,224.497 104.702,219.641 103.604,218.66
102.676,217.835 102.675,217.834 97.854,223.24 99.258,224.497 104.702,229.352 108.159,232.438 113.602,237.295 116.495,239.876
121.938,244.732 123.672,246.279 124.604,247.109 129.428,241.701 127.382,239.876 "/>
<path fill="none" d="M243.748,146.309c3.117-2.348,5.279-4.3,6.706-6.043c1.805-2.213,2.646-4.351,2.646-6.729V42.336
c0-6.391-2.763-12.149-7.155-16.143c-3.876-3.524-9.022-5.675-14.66-5.675L67.345,20.523c-12.028,0-21.817,9.787-21.817,21.814
v91.197c-0.004,1.977,0.334,4.372,3.761,8.206c0.792,0.886,1.748,1.848,2.902,2.899c6.326,5.757,17.865,13.457,34.295,22.88
c18.544,10.641,43.998,23.457,59.836,27.527c0.785,0.199,1.621,0.301,2.484,0.301c1.917,0,5.619-0.547,15.811-4.947h0.001
c0.823,2.479,1.856,4.887,3.086,7.188c2.51,4.698,5.76,8.841,9.563,12.316c8.37,7.646,19.423,12.062,31.18,12.062
c7.509,0,14.994-1.878,21.646-5.43c10.847-5.792,18.796-15.478,22.378-27.274c3.583-11.798,2.365-24.268-3.428-35.113
C247.555,151.364,245.781,148.737,243.748,146.309z M67.344,33.331h163.938c1.125,0,2.196,0.216,3.19,0.595l-0.001,0.001
l-26.851,47.409l-10.278,18.148l-47.237-28.183l-46.689,28.232L65.989,33.447l-0.002-0.003
C66.432,33.378,66.883,33.331,67.344,33.331z M240.285,43.582v81.52l-34.512-20.586L240.285,43.582z M58.343,42.336
c0-0.702,0.089-1.385,0.24-2.042l36.433,64.319l-36.673,22.176V42.336z M165.285,176.036c-8.372,3.899-14.194,6.198-16.252,6.472
c0,0,0,0,0,0c-11.672-3.107-32.125-12.505-53.592-24.637c-2.378-1.344-4.63-2.646-6.783-3.912
c-10.802-6.353-18.767-11.686-23.866-15.547c-0.64-0.485-1.25-0.954-1.799-1.391c-0.395-0.312-0.768-0.612-1.113-0.899
l88.262-53.368l0,0l13.534,8.071l7.14,4.021c0.035,0.1,0.064,0.198,0.097,0.297c5.284,15.604-1.335,33.237-16.333,41.25
c-7.823,4.178-16.556,5.007-24.545,2.99c-9.053-2.286-17.151-8.227-21.884-17.093c-1.854-3.468-3.037-7.112-3.615-10.793l-0.001,0
l-7.985,4.906c0.839,3.416,2.109,6.787,3.84,10.029c7.7,14.415,22.474,22.676,37.768,22.792
c6.952,0.053,14.012-1.576,20.564-5.076c16.009-8.546,24.412-25.821,22.518-42.847c0-0.001,0-0.003,0-0.004l56.337,33.61
c-1.554,1.23-3.644,2.742-6.238,4.499l-0.001,0c-10.845-6.804-24.464-8.608-37.015-4.271c-2.118,0.732-4.21,1.619-6.249,2.708
C173.523,145.615,165.25,160.59,165.285,176.036z M242.493,179.382c-1.144,10.959-7.524,21.182-17.956,26.751
c-16.688,8.914-37.518,2.588-46.432-14.101c-1.646-3.087-2.771-6.316-3.405-9.587c-0.511-2.627-0.695-5.278-0.587-7.903
c0.039-0.961,0.111-1.919,0.23-2.87c1.334-10.697,7.656-20.613,17.869-26.066c9.905-5.291,21.268-5.213,30.732-0.785
c3.225,1.513,6.226,3.533,8.875,6.015c2.677,2.502,4.998,5.469,6.818,8.875C241.979,165.969,243.179,172.808,242.493,179.382z"/>
<polygon fill="none" points="98.251,243.957 91.762,251.103 91.758,251.106 96.651,255.55 103.144,248.4 103.142,248.398 "/>
<polygon fill="none" points="128.211,220.721 134.702,213.575 129.807,209.133 123.316,216.279 128.211,220.721 "/>
<polygon fill="none" points="135.718,232.438 130.277,227.582 127.382,225 126.792,224.475 121.938,220.145 118.48,217.059
113.038,212.202 111.182,210.544 110.253,209.718 105.43,215.125 107.598,217.059 113.038,221.915 116.495,225 121.938,229.855
124.833,232.438 130.277,237.295 132.18,238.994 137.002,233.585 137,233.584 "/>
<polygon fill="none" points="230.471,156.062 227.62,153.475 225.578,151.619 219.378,158.445 219.086,158.766 223.98,163.208
"/>
<polygon fill="none" points="190.32,168.954 185.497,174.359 187.4,176.062 211.316,197.4 212.245,198.23 217.073,192.823
194.257,172.467 "/>
<polygon fill="none" points="192.547,188.062 187.534,193.586 187.531,193.59 192.425,198.031 197.446,192.499 198.914,190.882
194.02,186.439 "/>
<polygon fill="none" points="199.373,161.146 198.447,160.32 193.622,165.729 198.58,170.152 219.443,188.768 220.369,189.598
225.197,184.189 205.331,166.463 "/>
<polygon fill="none" points="207.816,153.805 206.949,153.032 206.021,152.205 201.341,157.452 201.198,157.611 208.893,164.475
227.951,181.48 232.771,176.072 215.531,160.689 "/>
<polygon fill="#9C27B0" points="240.285,125.102 240.285,43.582 205.773,104.516 "/>
<path fill="#9C27B0" d="M58.583,40.294c-0.151,0.657-0.24,1.34-0.24,2.042v84.453l36.673-22.176L58.583,40.294z"/>
<path fill="#9C27B0" d="M112.81,199.078c-5.534-0.042-11.153,1.255-16.368,4.04c-16.688,8.911-23.012,29.739-14.104,46.428
c6.13,11.472,17.889,18.046,30.062,18.139c5.533,0.042,11.152-1.255,16.368-4.04c0.521-0.278,1.033-0.568,1.534-0.87
c1.002-0.603,1.963-1.249,2.882-1.938c1.46-1.093,2.813-2.289,4.056-3.571c5.381-5.558,8.668-12.749,9.475-20.292
c0.706-6.601-0.487-13.471-3.841-19.756C136.746,205.746,124.985,199.171,112.81,199.078z M129.807,209.133l4.895,4.442
l-6.491,7.146h0l-4.895-4.441L129.807,209.133z M96.651,255.55l-4.893-4.443l0.003-0.004l6.489-7.146l4.891,4.441l0.001,0.002
L96.651,255.55z M116.475,255.744l-0.928-0.83l-2.51-2.24l-5.439-4.855l-2.896-2.582l-5.444-4.857l-3.457-3.084l-5.444-4.857
l-0.627-0.562l-0.001-0.001l4.822-5.408l1.25,1.116l5.443,4.855l3.458,3.086l5.443,4.855l2.894,2.583l5.441,4.856l2.825,2.517
L116.475,255.744z M124.604,247.109l-0.932-0.83l-1.734-1.547l-5.443-4.856l-2.893-2.581l-5.443-4.857l-3.457-3.086l-5.444-4.854
l-1.404-1.257l4.821-5.406l0.001,0.001l0.928,0.825l1.098,0.98l5.443,4.856l3.457,3.085l5.444,4.855l2.892,2.584l5.444,4.854
l2.046,1.825L124.604,247.109z M132.18,238.994l-1.903-1.699l-5.444-4.857l-2.895-2.582L116.495,225l-3.457-3.085l-5.44-4.856
l-2.168-1.934l4.823-5.407l0.929,0.826l1.856,1.658l5.442,4.856l3.458,3.086l4.854,4.33l0.589,0.525l2.895,2.582l5.441,4.855
l1.283,1.146l0.001,0.001L132.18,238.994z"/>
<path fill="#9C27B0" d="M103.417,99.533l46.689-28.232l47.237,28.183l10.278-18.148l26.851-47.409l0.001-0.001
c-0.994-0.379-2.065-0.595-3.19-0.595H67.344c-0.461,0-0.912,0.047-1.357,0.113l0.002,0.003L103.417,99.533z"/>
<path fill="#9C27B0" d="M188.072,137.845c2.039-1.089,4.131-1.976,6.249-2.708c12.551-4.337,26.17-2.534,37.015,4.271l0.001,0
c2.595-1.757,4.685-3.269,6.238-4.499l-56.337-33.61c0,0.001,0,0.003,0,0.004c1.895,17.026-6.509,34.3-22.518,42.847
c-6.553,3.5-13.612,5.129-20.564,5.076c-15.294-0.117-30.068-8.378-37.768-22.792c-1.731-3.242-3.001-6.613-3.84-10.029
l7.985-4.906l0.001,0c0.578,3.681,1.761,7.325,3.615,10.793c4.733,8.866,12.831,14.807,21.884,17.093
c7.989,2.017,16.722,1.188,24.545-2.99c14.998-8.013,21.617-25.646,16.333-41.25c-0.032-0.099-0.062-0.197-0.097-0.297
l-7.14-4.021l-13.534-8.071l0,0l-88.262,53.368c0.345,0.287,0.718,0.587,1.113,0.899c0.55,0.438,1.159,0.906,1.799,1.391
c5.1,3.861,13.064,9.194,23.866,15.547c2.153,1.267,4.405,2.568,6.783,3.912c21.467,12.132,41.919,21.529,53.592,24.637
c0,0,0,0,0,0c2.058-0.273,7.88-2.572,16.252-6.472C165.25,160.59,173.523,145.615,188.072,137.845z M122.47,128.284l-0.002-0.002
l-4.893-4.44l6.487-7.148l0,0l2.743,2.489l2.15,1.952l0.002,0.001L122.47,128.284z M152.965,84.797l5.906,3.326l-4.852,5.344
l-4.896-4.441l0,0L152.965,84.797z M142.473,88.184l1.815,1.621l3.456,3.086l5.443,4.855l2.893,2.582l5.443,4.856l1.286,1.147
l0.001,0.001l-4.824,5.408l-1.902-1.7l-5.441-4.856l-2.896-2.582l-5.442-4.857l-3.459-3.085l-2.819-2.514L142.473,88.184z
M132.6,94.252l3.351,2.992l3.459,3.084l5.444,4.858l2.89,2.582l5.443,4.855l2.046,1.825l0.001,0.001l-4.826,5.406l-0.928-0.83
l-1.736-1.546l-5.439-4.856l-2.893-2.583l-5.446-4.856l-3.457-3.084l-4.359-3.887L132.6,94.252z M119.174,102.5l2.883-1.771
l4.996,4.455l3.456,3.086l5.442,4.855l2.895,2.584l5.442,4.855l2.819,2.518l-4.824,5.408l-0.928-0.83l-2.509-2.239l-5.442-4.857
l-2.893-2.582l-5.445-4.857l-3.457-3.085l-5.443-4.856l-0.553-0.493l-0.002-0.002L119.174,102.5z"/>
<path fill="#9C27B0" d="M231.82,150.836c-2.649-2.482-5.65-4.502-8.875-6.015c-9.465-4.428-20.827-4.506-30.732,0.785
c-10.213,5.453-16.535,15.369-17.869,26.066c-0.119,0.951-0.191,1.909-0.23,2.87c-0.108,2.625,0.076,5.276,0.587,7.903
c0.635,3.271,1.76,6.5,3.405,9.587c8.914,16.688,29.744,23.015,46.432,14.101c10.432-5.569,16.812-15.792,17.956-26.751
c0.686-6.574-0.514-13.413-3.854-19.671C236.818,156.305,234.497,153.338,231.82,150.836z M219.378,158.445l6.2-6.826l2.042,1.855
l2.851,2.588l-6.49,7.146l-4.895-4.442L219.378,158.445z M197.446,192.499l-5.021,5.532l-4.894-4.441l0.003-0.004l5.013-5.523
l1.473-1.623l4.895,4.442L197.446,192.499z M212.245,198.23l-0.929-0.83L187.4,176.062l-1.903-1.703l4.823-5.405l3.937,3.513
l22.816,20.356L212.245,198.23z M220.369,189.598l-0.926-0.83l-20.863-18.615l-4.958-4.424l4.825-5.408l0.926,0.826l5.958,5.316
l19.866,17.727L220.369,189.598z M227.951,181.48l-19.059-17.006l-7.694-6.863l0.143-0.159l4.681-5.247l0.928,0.827l0.867,0.772
l7.715,6.885l17.24,15.383L227.951,181.48z"/>
<path fill="#9C27B0" d="M269.92,0H30.079C13.494,0,0,13.494,0,30.08v239.84C0,286.506,13.494,300,30.079,300H269.92
c16.587,0,30.08-13.494,30.08-30.08V30.08C300,13.494,286.507,0,269.92,0z M157.316,244.557c-0.187,0.741-0.392,1.481-0.615,2.219
c-3.583,11.795-11.53,21.48-22.377,27.273c-6.652,3.555-14.138,5.432-21.648,5.432c-17.096,0-32.709-9.342-40.742-24.379
c-3.62-6.779-5.453-14.192-5.444-21.679c0.004-2.995,0.302-6.001,0.898-8.983c0.298-1.491,0.671-2.977,1.119-4.451
c3.583-11.797,11.531-21.483,22.379-27.276c6.652-3.552,14.136-5.43,21.647-5.43c17.101,0,32.711,9.342,40.741,24.38
c3.167,5.931,4.966,12.349,5.36,18.876c0.057,0.933,0.084,1.867,0.083,2.803C158.714,237.084,158.249,240.846,157.316,244.557z
M252.471,189.264c-3.582,11.797-11.531,21.482-22.378,27.274c-6.651,3.552-14.137,5.43-21.646,5.43
c-11.757,0-22.81-4.416-31.18-12.062c-3.804-3.476-7.054-7.618-9.563-12.316c-1.229-2.302-2.263-4.709-3.086-7.188h-0.001
c-10.192,4.4-13.895,4.947-15.811,4.947c-0.863,0-1.699-0.102-2.484-0.301c-15.838-4.07-41.292-16.887-59.836-27.527
c-16.43-9.424-27.969-17.124-34.295-22.88c-1.155-1.052-2.111-2.014-2.902-2.899c-3.426-3.833-3.765-6.229-3.761-8.206V42.337
c0-12.027,9.789-21.814,21.817-21.814l163.939-0.005c5.638,0,10.784,2.151,14.66,5.675c4.393,3.994,7.155,9.752,7.155,16.143
v91.201c0,2.378-0.841,4.516-2.646,6.729c-1.427,1.743-3.589,3.695-6.706,6.043c2.033,2.428,3.807,5.055,5.295,7.841
C254.836,164.996,256.054,177.466,252.471,189.264z"/>
</g>
>>>>>>> add-art-0.1.2
</g>
</svg>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 29 KiB

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<path fill="#9C27B0" d="M1.955,150.472c0,81.68,66.214,147.895,147.894,147.895s147.894-66.213,147.894-147.895
c0-81.679-66.215-147.894-147.894-147.894S1.955,68.793,1.955,150.472z M212.009,68.864c4.101,0,8.201,1.565,11.329,4.693
c6.26,6.259,6.26,16.408,0,22.667l-54.247,54.25l54.247,54.25c6.26,6.259,6.26,16.409,0,22.665c-6.258,6.26-16.404,6.26-22.664,0
c0,0-58.988-58.985-59.078-59.078c-3.838-3.837-8.058-8.146-9.892-13.383c-2.526-7.212,3.766-16.167,8.664-21.062
c0.002-0.001,60.306-60.308,60.306-60.308C203.805,70.429,207.903,68.864,212.009,68.864z M153.504,96.224l-54.249,54.249
l54.249,54.25c6.258,6.259,6.258,16.409,0,22.665c-6.259,6.26-16.408,6.26-22.665,0c0,0-58.988-58.985-59.079-59.078
c-3.839-3.836-8.059-8.146-9.892-13.383c-2.526-7.212,3.77-16.167,8.664-21.062c0.002-0.001,60.307-60.308,60.307-60.308
c3.13-3.128,7.231-4.693,11.334-4.693c4.1,0,8.205,1.565,11.331,4.693C159.762,79.817,159.762,89.966,153.504,96.224z"/>
</g>
</svg>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="300px" height="300px" viewBox="0 0 300 300" enable-background="new 0 0 300 300" xml:space="preserve">
<g>
<path fill="#9C27B0" d="M1.955,150.472c0,81.68,66.214,147.895,147.894,147.895s147.894-66.213,147.894-147.895
c0-81.679-66.215-147.894-147.894-147.894S1.955,68.793,1.955,150.472z M212.009,68.864c4.101,0,8.201,1.565,11.329,4.693
c6.26,6.259,6.26,16.408,0,22.667l-54.247,54.25l54.247,54.25c6.26,6.259,6.26,16.409,0,22.665c-6.258,6.26-16.404,6.26-22.664,0
c0,0-58.988-58.985-59.078-59.078c-3.838-3.837-8.058-8.146-9.892-13.383c-2.526-7.212,3.766-16.167,8.664-21.062
c0.002-0.001,60.306-60.308,60.306-60.308C203.805,70.429,207.903,68.864,212.009,68.864z M153.504,96.224l-54.249,54.249
l54.249,54.25c6.258,6.259,6.258,16.409,0,22.665c-6.259,6.26-16.408,6.26-22.665,0c0,0-58.988-58.985-59.079-59.078
c-3.839-3.836-8.059-8.146-9.892-13.383c-2.526-7.212,3.77-16.167,8.664-21.062c0.002-0.001,60.307-60.308,60.307-60.308
c3.13-3.128,7.231-4.693,11.334-4.693c4.1,0,8.205,1.565,11.331,4.693C159.762,79.817,159.762,89.966,153.504,96.224z"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -5,13 +5,13 @@ There isn't a lot of text in RoboSats, however it might be bst to split the work
## How to contribute a new translation.
Simply create a new translation file in `frontend/src/locales` (Same folder where you are reading these instructions). In `locales` there is a single file with a json dictionary for every language. In order to create a new translation, simply copy `en.json` (the master text) into a new file named after the language's [ISO 639 two character code](https://www.loc.gov/standards/iso639-2/php/English_list.php).
Simply create a new translation file in `frontend/src/locales` (Same folder where you are reading these instructions). In `locales` there is a single file with a json dictionary for every language. In order to create a new translation, simply copy `en.json` (the master text) into a new file named after the language's [ISO 639 two character code](https://www.loc.gov/standards/iso639-2/php/English_list.php).
## Guidelines
Each language .json dictionary contains pairs of keys and values in the following format { "key1":"value1", "key2":"value2", ...}. Most keys are the literal English sentence. These simply have to be translated on the right side, for example, in order to translate the `Make Order` button to Spanish we edit the json file to look like this `{... "Make Order":"Crear Orden",...}`.
1. **Not all keys are explicit sentences.** Some keys are not the English senstence but a variable names e.g. "phone_unsafe_alert". In this case you must take a look at the value originally in `en.json`.
1. **Not all keys are explicit sentences.** Some keys are not the English senstence but a variable names e.g. "phone_unsafe_alert". In this case you must take a look at the value originally in `en.json`.
2. **The language dictionary is split into 9 sections.** The first key of each section is a reference and does not need to be translated. For example, the second section starts with the key:value `"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation"` . It does not need to be translated, it is just information for the translator to understand what part of the app he will be working on.

View File

@ -1,15 +1,14 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "No estàs emprant RoboSats de forma privada",
"desktop_unsafe_alert": "Algunes funcions (com el xat) estan deshabilitades per protegir i sense elles no podràs completar un intercanvi. Per protegir la teva privacitat i habilitar RoboSats per complet, fes servir <1>Tor Browser</1> i visita el <3>Onion</3> site.",
"phone_unsafe_alert": "No podràs completar un intercanvi. Fes servir <1>Tor Browser</1> i vista el <3>Onion</3> site.",
"You are not using RoboSats privately": "No est\u00e0s emprant RoboSats de forma privada",
"desktop_unsafe_alert": "Algunes funcions (com el xat) estan deshabilitades per protegir i sense elles no podr\u00e0s completar un intercanvi. Per protegir la teva privacitat i habilitar RoboSats per complet, fes servir <1>Tor Browser</1> i visita el <3>Onion</3> site.",
"phone_unsafe_alert": "No podr\u00e0s completar un intercanvi. Fes servir <1>Tor Browser</1> i vista el <3>Onion</3> site.",
"Hide": "Amagar",
"You are self-hosting RoboSats": "Estàs hostejant RoboSats",
"RoboSats client is served from your own node granting you the strongest security and privacy.": "El client RoboSats és servit pel teu propi node, gaudeixes de la major seguretat i privacitat.",
"You are self-hosting RoboSats": "Est\u00e0s hostejant RoboSats",
"RoboSats client is served from your own node granting you the strongest security and privacy.": "El client RoboSats \u00e9s servit pel teu propi node, gaudeixes de la major seguretat i privacitat.",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Intercanvi LN P2P Fàcil y Privat",
"This is your trading avatar": "Aquest és el teu Robot de compravenda",
"Simple and Private LN P2P Exchange": "Intercanvi LN P2P F\u00e0cil y Privat",
"This is your trading avatar": "Aquest \u00e9s el teu Robot de compravenda",
"Store your token safely": "Guarda el teu token de manera segura",
"A robot avatar was found, welcome back!": "S'ha trobat un Robot, benvingut de nou!",
"Copied!": "Copiat!",
@ -19,11 +18,10 @@
"Make Order": "Crear ordre",
"Info": "Info",
"View Book": "Veure Llibre",
"Learn RoboSats": "Aprèn RoboSats",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Visitaràs la pàgina Learn RoboSats. Ha estat construïda per la comunitat i conté tutorials i documentació que t'ajudarà a aprendre como s'utilitza RoboSats i a entendre com funciona.",
"Learn RoboSats": "Apr\u00e8n RoboSats",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Visitar\u00e0s la p\u00e0gina Learn RoboSats. Ha estat constru\u00efda per la comunitat i cont\u00e9 tutorials i documentaci\u00f3 que t'ajudar\u00e0 a aprendre como s'utilitza RoboSats i a entendre com funciona.",
"Let's go!": "Som-hi!",
"Save token and PGP credentials to file": "Guardar arxiu amb token y credencials PGP",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Ordre",
"Customize": "Personalitzar",
@ -32,16 +30,16 @@
"Sell": "Vendre",
"Amount": "Suma",
"Amount of fiat to exchange for bitcoin": "Suma de fiat a canviar per bitcoin",
"Invalid": "No vàlid",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Introdueix els teus mètodes de pagament. Es recomanen encaridament mètodes ràpids.",
"Must be shorter than 65 characters": "Ha de tenir menys de 65 caràcters",
"Swap Destination(s)": "Destí(ns) del Swap",
"Fiat Payment Method(s)": "Mètode(s) de Pagament Fiat",
"You can add any method": "Pots afegir nous mètodes",
"Invalid": "No v\u00e0lid",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Introdueix els teus m\u00e8todes de pagament. Es recomanen encaridament m\u00e8todes r\u00e0pids.",
"Must be shorter than 65 characters": "Ha de tenir menys de 65 car\u00e0cters",
"Swap Destination(s)": "Dest\u00ed(ns) del Swap",
"Fiat Payment Method(s)": "M\u00e8tode(s) de Pagament Fiat",
"You can add any method": "Pots afegir nous m\u00e8todes",
"Add New": "Afegir nou",
"Choose a Pricing Method": "Escull com Establir el Preu",
"Relative": "Relatiu",
"Let the price move with the market": "El preu es mourà relatiu al mercat",
"Let the price move with the market": "El preu es mour\u00e0 relatiu al mercat",
"Premium over Market (%)": "Prima sobre el mercat (%)",
"Explicit": "Fix",
"Set a fix amount of satoshis": "Estableix una suma fixa de Sats",
@ -49,18 +47,18 @@
"Fixed price:": "Preu fix:",
"Order current rate:": "Preu actual:",
"Your order fixed exchange rate": "La tasa de canvi fixa de la teva ordre",
"Your order's current exchange rate. Rate will move with the market.": "La taxa de canvi de la teva ordre just en aquests moments. Es mourà relativa al mercat.",
"Let the taker chose an amount within the range": "Permet que el prenedor triï una suma dins el rang",
"Your order's current exchange rate. Rate will move with the market.": "La taxa de canvi de la teva ordre just en aquests moments. Es mour\u00e0 relativa al mercat.",
"Let the taker chose an amount within the range": "Permet que el prenedor tri\u00ef una suma dins el rang",
"Enable Amount Range": "Activar Suma amb Rang",
"From": "Des de",
"to": "fins a",
"Expiry Timers": "Temporitzadors",
"Public Duration (HH:mm)": "Duració pública (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "Termini límit dipòsit (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Estableix la implicació requerida (augmentar per a més seguretat)",
"Fidelity Bond Size": "Grandària de la fiança",
"Allow bondless takers": "Permetre prenendors sense fiança",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "PRÒXIMAMENT - Alt risc! Limitat a {{limitSats}}K Sats",
"Public Duration (HH:mm)": "Duraci\u00f3 p\u00fablica (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "Termini l\u00edmit dip\u00f2sit (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Estableix la implicaci\u00f3 requerida (augmentar per a m\u00e9s seguretat)",
"Fidelity Bond Size": "Grand\u00e0ria de la fian\u00e7a",
"Allow bondless takers": "Permetre prenendors sense fian\u00e7a",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "PR\u00d2XIMAMENT - Alt risc! Limitat a {{limitSats}}K Sats",
"You must fill the order correctly": "Has d'omplir l'ordre correctament",
"Create Order": "Crear ordre",
"Back": "Tornar",
@ -72,23 +70,21 @@
" at a {{premium}}% premium": " amb una prima del {{premium}}%",
" at a {{discount}}% discount": " amb descompte del {{discount}}%",
"Must be less than {{max}}%": "Ha de ser menys del {{max}}%",
"Must be more than {{min}}%": "Ha de ser més del {{min}}%",
"Must be more than {{min}}%": "Ha de ser m\u00e9s del {{min}}%",
"Must be less than {{maxSats}": "Ha de ser menys de {{maxSats}}",
"Must be more than {{minSats}}": "Ha de ser més de {{minSats}}",
"Must be more than {{minSats}}": "Ha de ser m\u00e9s de {{minSats}}",
"Store your robot token": "Guarda el teu token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Pot ser que necessitis recuperar el teu avatar robot al futur: fes còpia de seguretat del token. Pots simplement copiar-ho a una altra aplicació.",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Pot ser que necessitis recuperar el teu avatar robot al futur: fes c\u00f2pia de seguretat del token. Pots simplement copiar-ho a una altra aplicaci\u00f3.",
"Done": "Fet",
"You do not have a robot avatar": "No tens un avatar robot",
"You need to generate a robot avatar in order to become an order maker": "Necessites generar un avatar robot abans de crear una ordre",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Sense especificar",
"Instant SEPA": "SEPA Instantània",
"Instant SEPA": "SEPA Instant\u00e0nia",
"Amazon GiftCard": "Targeta Regal d'Amazon",
"Google Play Gift Code": "Targeta Regal de Google Play",
"Cash F2F": "Efectiu en persona",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Ven",
"Buyer": "Compra",
@ -102,15 +98,15 @@
"and use": "i fer servir",
"Select Payment Currency": "Selecciona moneda de pagament",
"Robot": "Robot",
"Is": "És",
"Is": "\u00c9s",
"Currency": "Moneda",
"Payment Method": "Mètode de pagament",
"Payment Method": "M\u00e8tode de pagament",
"Pay": "Pagar",
"Price": "Preu",
"Premium": "Prima",
"You are SELLING BTC for {{currencyCode}}": "VENDRE bitcoin per {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "COMPRAR bitcoin per {{currencyCode}}",
"You are looking at all": "Estàs veient-ho tot",
"You are looking at all": "Est\u00e0s veient-ho tot",
"No orders found to sell BTC for {{currencyCode}}": "No hi ha ordres per vendre bitcoin per {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "No hi ha ordres per comprar bitcoin per {{currencyCode}}",
"Filter has no results": "No hi ha resultats per aquest filtre",
@ -128,29 +124,29 @@
"Hide all": "Ocultar totes",
"Add filter": "Afegir filtre",
"Delete": "Eliminar",
"Logic operator": "Operador lògic",
"Logic operator": "Operador l\u00f2gic",
"Operator": "Operador",
"And": "I",
"Or": "O",
"Value": "Valor",
"Filter value": "Filtrar valor",
"contains": "conté",
"contains": "cont\u00e9",
"equals": "igual a",
"starts with": "comença amb",
"starts with": "comen\u00e7a amb",
"ends with": "acaba amb",
"is": "és",
"is not": "no és",
"is after": "està darrere",
"is on or after": "està a o darrere",
"is before": "està davant",
"is on or before": "està a o davant",
"is empty": "està buit",
"is not empty": "no està buit",
"is any of": "és algun de",
"is": "\u00e9s",
"is not": "no \u00e9s",
"is after": "est\u00e0 darrere",
"is on or after": "est\u00e0 a o darrere",
"is before": "est\u00e0 davant",
"is on or before": "est\u00e0 a o davant",
"is empty": "est\u00e0 buit",
"is not empty": "no est\u00e0 buit",
"is any of": "\u00e9s algun de",
"any": "algun",
"true": "veritat",
"false": "fals",
"Menu": "Menú",
"Menu": "Men\u00fa",
"Show columns": "Mostrar columnes",
"Filter": "Filtrar",
"Unsort": "Desordenar",
@ -160,27 +156,26 @@
"Show filters": "Mostrar filtres",
"yes": "si",
"no": "no",
"Depth chart": "Gràfic de profunditat",
"Chart": "Gràfic",
"Depth chart": "Gr\u00e0fic de profunditat",
"Chart": "Gr\u00e0fic",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Estadístiques per a nerds",
"LND version": "Versió LND",
"Currently running commit hash": "Hash de la versió actual",
"Stats For Nerds": "Estad\u00edstiques per a nerds",
"LND version": "Versi\u00f3 LND",
"Currently running commit hash": "Hash de la versi\u00f3 actual",
"24h contracted volume": "Volum contractat en 24h",
"Lifetime contracted volume": "Volum contractat total",
"Made with": "Fet amb",
"and": "i",
"... somewhere on Earth!": "... en algun indret de la Terra!",
"Community": "Comunitat",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Només sofereix suport a través de canals públics. Uneix-te a la nostra comunitat de Telegram si tens preguntes o vols passar lestona amb altres Robots genials. Si us plau, utilitza el nostre Github per notificar un error o proposar noves funcionalitats.",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Nom\u00e9s s\u2019ofereix suport a trav\u00e9s de canals p\u00fablics. Uneix-te a la nostra comunitat de Telegram si tens preguntes o vols passar l\u2019estona amb altres Robots genials. Si us plau, utilitza el nostre Github per notificar un error o proposar noves funcionalitats.",
"Follow RoboSats in Twitter": "Segueix RoboSats a Twitter",
"Twitter Official Account": "Compte oficial a Twitter",
"RoboSats Telegram Communities": "Comunitats de RoboSats a Telegram",
"Join RoboSats Spanish speaking community!": "Uneix-te a la nostra comunitat de RoboSats en espanyol!",
"Join RoboSats Russian speaking community!": "Uneix-te a la nostra comunitat de RoboSats en rus!",
"Join RoboSats Chinese speaking community!": "Uneix-te a la nostra comunitat de RoboSats en xinès!",
"Join RoboSats English speaking community!": "Uneix-te a la nostra comunitat de RoboSats en anglès!",
"Join RoboSats Chinese speaking community!": "Uneix-te a la nostra comunitat de RoboSats en xin\u00e8s!",
"Join RoboSats English speaking community!": "Uneix-te a la nostra comunitat de RoboSats en angl\u00e8s!",
"Tell us about a new feature or a bug": "Proposa funcionalitats o notifica errors",
"Github Issues - The Robotic Satoshis Open Source Project": "Issues de Github - The Robotic Satoshis Open Source Project",
"Your Profile": "El teu perfil",
@ -188,53 +183,52 @@
"One active order #{{orderID}}": "Anar a ordre activa #{{orderID}}",
"Your current order": "La teva ordre actual",
"No active orders": "No hi ha ordres actives",
"Your token (will not remain here)": "El teu token (no romandrà aquí)",
"Your token (will not remain here)": "El teu token (no romandr\u00e0 aqu\u00ed)",
"Back it up!": "Guarda-ho!",
"Cannot remember": "No es pot recordar",
"Rewards and compensations": "Recompenses i compensacions",
"Share to earn 100 Sats per trade": "Comparteix per a guanyar 100 Sats por intercanvi",
"Your referral link": "El teu enllaç de referits",
"Your referral link": "El teu enlla\u00e7 de referits",
"Your earned rewards": "Les teves recompenses guanyades",
"Claim": "Retirar",
"Invoice for {{amountSats}} Sats": "Factura per {{amountSats}} Sats",
"Submit": "Enviar",
"There it goes, thank you!🥇": "Aquí va, gràcies!🥇",
"There it goes, thank you!\ud83e\udd47": "Aqu\u00ed va, gr\u00e0cies!\ud83e\udd47",
"You have an active order": "Tens una ordre activa",
"You can claim satoshis!": "Pots retirar Sats!",
"Public Buy Orders": "Ordres de compra",
"Public Sell Orders": "Ordres de venda",
"Today Active Robots": "Robots actius avui",
"24h Avg Premium": "Prima mitjana en 24h",
"Trade Fee": "Comissió",
"Show community and support links": "Mostrar enllaços de comunitat i suport",
"Show stats for nerds": "Mostrar estadístiques per a nerds",
"Trade Fee": "Comissi\u00f3",
"Show community and support links": "Mostrar enlla\u00e7os de comunitat i suport",
"Show stats for nerds": "Mostrar estad\u00edstiques per a nerds",
"Exchange Summary": "Resum de l'Exchange",
"Public buy orders": "Ordres de compra públiques",
"Public sell orders": "Ordres de venta públiques",
"Public buy orders": "Ordres de compra p\u00fabliques",
"Public sell orders": "Ordres de venta p\u00fabliques",
"Book liquidity": "Liquiditat en el llibre",
"Today active robots": "Robots actius avui",
"24h non-KYC bitcoin premium": "Prima de bitcoin sense KYC en 24h",
"Maker fee": "Comissió del creador",
"Taker fee": "Comissió del prenedor",
"Number of public BUY orders": "Nº d'ordres públiques de COMPRA",
"Number of public SELL orders": "Nº d'ordres públiques de VENDA",
"Your last order #{{orderID}}": "La teva última ordre #{{orderID}}",
"Maker fee": "Comissi\u00f3 del creador",
"Taker fee": "Comissi\u00f3 del prenedor",
"Number of public BUY orders": "N\u00ba d'ordres p\u00fabliques de COMPRA",
"Number of public SELL orders": "N\u00ba d'ordres p\u00fabliques de VENDA",
"Your last order #{{orderID}}": "La teva \u00faltima ordre #{{orderID}}",
"Inactive order": "Ordre inactiva",
"You do not have previous orders": "No tens ordres prèvies",
"You do not have previous orders": "No tens ordres pr\u00e8vies",
"Join RoboSats' Subreddit": "Uneix-te al subreddit de RoboSats",
"RoboSats in Reddit": "RoboSats a Reddit",
"Current onchain payout fee": "Cost actual de rebre onchain",
"Use stealth invoices": "Factures sigil·loses",
"Stealth lightning invoices do not contain details about the trade except an order reference. Enable this setting if you don't want to disclose details to a custodial lightning wallet.": "Les factures sigil·loses no contenen informació sobre la teva ordre excepte una referència a la mateixa. Activa-les per no revelar informació al teu proveïdor de wallet custodial.",
"Use stealth invoices": "Factures sigil\u00b7loses",
"Stealth lightning invoices do not contain details about the trade except an order reference. Enable this setting if you don't want to disclose details to a custodial lightning wallet.": "Les factures sigil\u00b7loses no contenen informaci\u00f3 sobre la teva ordre excepte una refer\u00e8ncia a la mateixa. Activa-les per no revelar informaci\u00f3 al teu prove\u00efdor de wallet custodial.",
"Update your RoboSats client": "Actualitza el teu client RoboSats",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "El coordinador de RoboSats és a la versió {{coordinatorVersion}}, però la app del teu client és {{clientVersion}}. Aquesta discrepància de versió pot provocar una mala experiència d'usuari.",
"The RoboSats coordinator is on version {{coordinatorVersion}}, but your client app is {{clientVersion}}. This version mismatch might lead to a bad user experience.": "El coordinador de RoboSats \u00e9s a la versi\u00f3 {{coordinatorVersion}}, per\u00f2 la app del teu client \u00e9s {{clientVersion}}. Aquesta discrep\u00e0ncia de versi\u00f3 pot provocar una mala experi\u00e8ncia d'usuari.",
"Download RoboSats {{coordinatorVersion}} APK from Github releases": "Descarrega RoboSats {{coordinatorVersion}} APK de les versions de Github",
"On Android RoboSats app": "A l'aplicació d'Android RoboSats",
"On Android RoboSats app": "A l'aplicaci\u00f3 d'Android RoboSats",
"Check your node's store or update the Docker image yourself": "Comproveu la botiga del vostre node o actualitzeu vosaltres mateixos la imatge del Docker.",
"On your own sovereign node": "Al teu propi node sobirà",
"On your own sovereign node": "Al teu propi node sobir\u00e0",
"Simply refresh your Tor Browser tab (or press Ctrl+Shift+R)": "Simplement actualitzeu la pestanya del navegador Tor (o premeu Ctrl+Shift+R)",
"On remotely served client via web": "Al client servit de forma remota via web",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Ordre",
"Contract": "Contracte",
@ -247,27 +241,27 @@
"Order taker": "Prenedor",
"Order Details": "Detalls",
"Order status": "Estat de l'ordre",
"Waiting for maker bond": "Esperant la fiança del creador",
"Public": "Pública",
"Waiting for taker bond": "Esperant la fiança del prenedor",
"Cancelled": "Cancel·lada",
"Waiting for maker bond": "Esperant la fian\u00e7a del creador",
"Public": "P\u00fablica",
"Waiting for taker bond": "Esperant la fian\u00e7a del prenedor",
"Cancelled": "Cancel\u00b7lada",
"Expired": "Expirada",
"Waiting for trade collateral and buyer invoice": "Esperant el col·lateral i la factura del comprador",
"Waiting only for seller trade collateral": "Esperant el col·lateral del vendedor",
"Waiting for trade collateral and buyer invoice": "Esperant el col\u00b7lateral i la factura del comprador",
"Waiting only for seller trade collateral": "Esperant el col\u00b7lateral del vendedor",
"Waiting only for buyer invoice": "Esperant la factura del comprador",
"Sending fiat - In chatroom": "Enviant el fiat - Al xat",
"Fiat sent - In chatroom": "Fiat enviat - Al xat",
"In dispute": "En disputa",
"Collaboratively cancelled": "Cancel·lada col·laborativament",
"Collaboratively cancelled": "Cancel\u00b7lada col\u00b7laborativament",
"Sending satoshis to buyer": "Enviant Sats al comprador",
"Sucessful trade": "Intercanvi exitós",
"Sucessful trade": "Intercanvi exit\u00f3s",
"Failed lightning network routing": "Enrutament fallit en la xarxa Lightning",
"Wait for dispute resolution": "Espera a la resolució de la disputa",
"Wait for dispute resolution": "Espera a la resoluci\u00f3 de la disputa",
"Maker lost dispute": "El creador ha perdut la disputa",
"Taker lost dispute": "El prenedor ha perdut la disputa",
"Amount range": "Rang de la suma",
"Swap destination": "Destí del swap",
"Accepted payment methods": "Mètodes de pagament acceptats",
"Swap destination": "Dest\u00ed del swap",
"Accepted payment methods": "M\u00e8todes de pagament acceptats",
"Others": "Altres",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Prima: {{premium}}%",
"Price and Premium": "Preu i prima",
@ -276,12 +270,12 @@
"Order ID": "ID de l'ordre",
"Deposit timer": "Per a dipositar",
"Expires in": "Expira en",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} sol·licita cancel·lar col·laborativament",
"You asked for a collaborative cancellation": "Has sol·licitat cancel·lar col·laborativament",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Factura caducada: no vas confirmar la publicació de l'ordre a temps. Pots crear una nova ordre.",
"This order has been cancelled by the maker": "El creador ha cancel·lat aquesta ordre",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} sol\u00b7licita cancel\u00b7lar col\u00b7laborativament",
"You asked for a collaborative cancellation": "Has sol\u00b7licitat cancel\u00b7lar col\u00b7laborativament",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Factura caducada: no vas confirmar la publicaci\u00f3 de l'ordre a temps. Pots crear una nova ordre.",
"This order has been cancelled by the maker": "El creador ha cancel\u00b7lat aquesta ordre",
"Invoice expired. You did not confirm taking the order in time.": "La factura retinguda ha expirat. No has confirmat prendre l'ordre a temps.",
"Penalty lifted, good to go!": "Sanció revocada, som-hi!",
"Penalty lifted, good to go!": "Sanci\u00f3 revocada, som-hi!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Encara no pots prendre cap ordre! Espera {{timeMin}}m {{timeSec}}s",
"Too low": "Massa baix",
"Too high": "Massa alt",
@ -290,26 +284,25 @@
"You must specify an amount first": "Primer has d'especificar la suma",
"Take Order": "Prendre ordre",
"Wait until you can take an order": "Espera fins poder prendre una ordre",
"Cancel the order?": "Cancel·lar l'ordre?",
"If the order is cancelled now you will lose your bond.": "Si cancel·les ara l'ordre perdràs la teva fiança.",
"Confirm Cancel": "Confirmar cancel·lació",
"The maker is away": "El creador està ausent",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Prenent aquesta ordre corres el risc de perdre el temps. Si el creador no procedeix a temps, se't compensarà en Sats amb el 50% de la fiança del creador.",
"Collaborative cancel the order?": "Cancel·lar l'ordre col·laborativament?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Donat que el col·lateral està bloquejat, l'ordre només pot cancel·lar-se si tant creador com prenendor ho acorden.",
"Ask for Cancel": "Sol·licitar cancel·lació",
"Cancel": "Cancel·lar",
"Collaborative Cancel": "Cancel·lació col·laborativa",
"Invalid Order Id": "ID d'ordre no vàlida",
"Cancel the order?": "Cancel\u00b7lar l'ordre?",
"If the order is cancelled now you will lose your bond.": "Si cancel\u00b7les ara l'ordre perdr\u00e0s la teva fian\u00e7a.",
"Confirm Cancel": "Confirmar cancel\u00b7laci\u00f3",
"The maker is away": "El creador est\u00e0 ausent",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Prenent aquesta ordre corres el risc de perdre el temps. Si el creador no procedeix a temps, se't compensar\u00e0 en Sats amb el 50% de la fian\u00e7a del creador.",
"Collaborative cancel the order?": "Cancel\u00b7lar l'ordre col\u00b7laborativament?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Donat que el col\u00b7lateral est\u00e0 bloquejat, l'ordre nom\u00e9s pot cancel\u00b7lar-se si tant creador com prenendor ho acorden.",
"Ask for Cancel": "Sol\u00b7licitar cancel\u00b7laci\u00f3",
"Cancel": "Cancel\u00b7lar",
"Collaborative Cancel": "Cancel\u00b7laci\u00f3 col\u00b7laborativa",
"Invalid Order Id": "ID d'ordre no v\u00e0lida",
"You must have a robot avatar to see the order details": "Has de tenir un Robot per veure els detalls de l'ordre",
"This order has been cancelled collaborativelly": "Aquesta ordre s'ha cancel·lat col·laborativament",
"You are not allowed to see this order": "No tens permís per a veure aquesta ordre",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Els Satoshis Robòtics del magatzem no t'han entès. Si us plau, omple un Bug Issue a Github https://github.com/reckless-satoshi/robosats/issues",
"This order has been cancelled collaborativelly": "Aquesta ordre s'ha cancel\u00b7lat col\u00b7laborativament",
"You are not allowed to see this order": "No tens perm\u00eds per a veure aquesta ordre",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Els Satoshis Rob\u00f2tics del magatzem no t'han ent\u00e8s. Si us plau, omple un Bug Issue a Github https://github.com/reckless-satoshi/robosats/issues",
"WebLN": "WebLN",
"Payment not received, please check your WebLN wallet.": "No s'ha rebut el pagament, fes un cop d'ull a la teva wallet WebLN.",
"Invoice not received, please check your WebLN wallet.": "No s'ha rebut la factura, fes un cop d'ull a la teva wallet WebLN.",
"You can close now your WebLN wallet popup.": "Ara pots tancar el popup de la teva wallet WebLN.",
"CHAT BOX - Chat.js": "Finestra del xat",
"You": "Tu",
"Peer": "Ell",
@ -322,16 +315,16 @@
"Audit PGP": "Auditar",
"Save full log as a JSON file (messages and credentials)": "Guardar el log complet com JSON (credencials i missatges)",
"Export": "Exporta",
"Don't trust, verify": "No confiïs, verifica",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "La teva comunicació s'encripta de punta-a-punta amb OpenPGP. Pots verificar la privacitat d'aquest xat amb qualsevol eina de tercer basada en l'estàndard PGP.",
"Learn how to verify": "Aprèn a verificar",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Aquesta és la teva clau pública PGP. La teva contrapart la fa servir per encriptar missatges que només tu pots llegir.",
"Your public key": "La teva clau pública",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La clau pública PGP de la teva contrapart. La fas servir per encriptar missatges que només ell pot llegir i verificar que és ell qui va signar els missatges que reps.",
"Peer public key": "Clau pública de la teva contrapart",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "La teva clau privada PGP encriptada. La fas servir per desencriptar els missatges que la teva contrapart t'envia. També la fas servir per signar els missatges que li envies.",
"Don't trust, verify": "No confi\u00efs, verifica",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "La teva comunicaci\u00f3 s'encripta de punta-a-punta amb OpenPGP. Pots verificar la privacitat d'aquest xat amb qualsevol eina de tercer basada en l'est\u00e0ndard PGP.",
"Learn how to verify": "Apr\u00e8n a verificar",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Aquesta \u00e9s la teva clau p\u00fablica PGP. La teva contrapart la fa servir per encriptar missatges que nom\u00e9s tu pots llegir.",
"Your public key": "La teva clau p\u00fablica",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La clau p\u00fablica PGP de la teva contrapart. La fas servir per encriptar missatges que nom\u00e9s ell pot llegir i verificar que \u00e9s ell qui va signar els missatges que reps.",
"Peer public key": "Clau p\u00fablica de la teva contrapart",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "La teva clau privada PGP encriptada. La fas servir per desencriptar els missatges que la teva contrapart t'envia. Tamb\u00e9 la fas servir per signar els missatges que li envies.",
"Your encrypted private key": "La teva clau privada encriptada",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "La contrasenya per desencriptar la teva clau privada. Només tu la saps! Mantingues-la en secret. També és el token del teu robot.",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "La contrasenya per desencriptar la teva clau privada. Nom\u00e9s tu la saps! Mantingues-la en secret. Tamb\u00e9 \u00e9s el token del teu robot.",
"Your private key passphrase (keep secure!)": "La contrasenya de la teva clau privada (Mantenir segura!)",
"Save credentials as a JSON file": "Guardar credencials com arxiu JSON",
"Keys": "Claus",
@ -339,122 +332,121 @@
"Messages": "Missatges",
"Verified signature by {{nickname}}": "Signatura de {{nickname}} verificada",
"Cannot verify signature of {{nickname}}": "No s'ha pogut verificar la signatura de {{nickname}}",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Contracte",
"Robots show commitment to their peers": "Els Robots han de mostrar el seu compromís",
"Robots show commitment to their peers": "Els Robots han de mostrar el seu comprom\u00eds",
"Lock {{amountSats}} Sats to PUBLISH order": "Bloqueja {{amountSats}} Sats per a PUBLICAR",
"Lock {{amountSats}} Sats to TAKE order": "Bloqueja {{amountSats}} Sats per a PRENDRE",
"Lock {{amountSats}} Sats as collateral": "Bloqueja {{amountSats}} Sats com a col·lateral",
"Lock {{amountSats}} Sats as collateral": "Bloqueja {{amountSats}} Sats com a col\u00b7lateral",
"Copy to clipboard": "Copiar al portapapers",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Això és una factura retinguda, els Sats es bloquegen a la teva cartera. Només es cobrarà si cancel·les o si perds una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Això és una factura retinguda, els Sats es bloquegen a la teva cartera. Serà alliberada al comprador al confirmar que has rebut {{currencyCode}}.",
"Your maker bond is locked": "La teva fiança de creador està bloquejada",
"Your taker bond is locked": "La teva fiança de prenedor està bloquejada",
"Your maker bond was settled": "La teva fiança s'ha cobrat",
"Your taker bond was settled": "La teva fiança s'ha cobrat",
"Your maker bond was unlocked": "La teva fiança s'ha desbloquejat",
"Your taker bond was unlocked": "La teva fiança s'ha desbloquejat",
"Your order is public": "La teva ordre és pública",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Sigues pacient fins que un robot prengui la teva ordre. Aquesta finestra sonarà 🔊 un cop algun robot prengui la teva ordre. Llavors tindràs {{deposit_timer_hours}}h {{deposit_timer_minutes}}m per respondre, si no respons t'arrisques a perdre la fiança.",
"If the order expires untaken, your bond will return to you (no action needed).": "Si la teva oferta expira sense ser presa, la teva fiança serà desbloquejada a la teva cartera automàticament.",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Aix\u00f2 \u00e9s una factura retinguda, els Sats es bloquegen a la teva cartera. Nom\u00e9s es cobrar\u00e0 si cancel\u00b7les o si perds una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Aix\u00f2 \u00e9s una factura retinguda, els Sats es bloquegen a la teva cartera. Ser\u00e0 alliberada al comprador al confirmar que has rebut {{currencyCode}}.",
"Your maker bond is locked": "La teva fian\u00e7a de creador est\u00e0 bloquejada",
"Your taker bond is locked": "La teva fian\u00e7a de prenedor est\u00e0 bloquejada",
"Your maker bond was settled": "La teva fian\u00e7a s'ha cobrat",
"Your taker bond was settled": "La teva fian\u00e7a s'ha cobrat",
"Your maker bond was unlocked": "La teva fian\u00e7a s'ha desbloquejat",
"Your taker bond was unlocked": "La teva fian\u00e7a s'ha desbloquejat",
"Your order is public": "La teva ordre \u00e9s p\u00fablica",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Sigues pacient fins que un robot prengui la teva ordre. Aquesta finestra sonar\u00e0 \ud83d\udd0a un cop algun robot prengui la teva ordre. Llavors tindr\u00e0s {{deposit_timer_hours}}h {{deposit_timer_minutes}}m per respondre, si no respons t'arrisques a perdre la fian\u00e7a.",
"If the order expires untaken, your bond will return to you (no action needed).": "Si la teva oferta expira sense ser presa, la teva fian\u00e7a ser\u00e0 desbloquejada a la teva cartera autom\u00e0ticament.",
"Enable Telegram Notifications": "Notificar en Telegram",
"Enable TG Notifications": "Activar Notificacions TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Seràs dut a un xat amb el bot de Telegram de Robosats. Simplement prem Començar. Tingues en compte que si actives les notificaciones de Telegram reduiràs el teu anonimat.",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Ser\u00e0s dut a un xat amb el bot de Telegram de Robosats. Simplement prem Comen\u00e7ar. Tingues en compte que si actives les notificaciones de Telegram reduir\u00e0s el teu anonimat.",
"Go back": "Tornar",
"Enable": "Activar",
"Telegram enabled": "Telegram activat",
"Public orders for {{currencyCode}}": "Ordres públiques per {{currencyCode}}",
"Public orders for {{currencyCode}}": "Ordres p\u00fabliques per {{currencyCode}}",
"Premium rank": "Percentil de la prima",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre les ordres públiques de {{currencyCode}} (més alt, més barat)",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre les ordres p\u00fabliques de {{currencyCode}} (m\u00e9s alt, m\u00e9s barat)",
"A taker has been found!": "S'ha trobat un prenedor!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Si us plau, espera a que el prenedor bloquegi la seva fiança. Si no ho fa a temps, l'ordre serà pública de nou.",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Si us plau, espera a que el prenedor bloquegi la seva fian\u00e7a. Si no ho fa a temps, l'ordre ser\u00e0 p\u00fablica de nou.",
"Payout Lightning Invoice": "Factura Lightning",
"Your info looks good!": "La teva factura és bona!",
"We are waiting for the seller lock the trade amount.": "Esperant a que el venedor bloquegi el col·lateral.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un moment. Si el venedor no diposita, recuperaràs la teva fiança automàticament. A més, rebràs una compensació (comprova les recompenses al teu perfil).",
"The trade collateral is locked!": "El col·lateral està bloquejat!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estem esperant a que el comprador enviï una factura Lightning. Quan ho faci, podràs comunicar-li directament els detalls del pagament en fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un moment. Si el comprador no coopera, se't retornarà el col·lateral i la teva fiança automàticament. A més, rebràs una compensació (comprova les recompenses al teu perfil).",
"Your info looks good!": "La teva factura \u00e9s bona!",
"We are waiting for the seller lock the trade amount.": "Esperant a que el venedor bloquegi el col\u00b7lateral.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un moment. Si el venedor no diposita, recuperar\u00e0s la teva fian\u00e7a autom\u00e0ticament. A m\u00e9s, rebr\u00e0s una compensaci\u00f3 (comprova les recompenses al teu perfil).",
"The trade collateral is locked!": "El col\u00b7lateral est\u00e0 bloquejat!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estem esperant a que el comprador envi\u00ef una factura Lightning. Quan ho faci, podr\u00e0s comunicar-li directament els detalls del pagament en fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un moment. Si el comprador no coopera, se't retornar\u00e0 el col\u00b7lateral i la teva fian\u00e7a autom\u00e0ticament. A m\u00e9s, rebr\u00e0s una compensaci\u00f3 (comprova les recompenses al teu perfil).",
"Confirm {{amount}} {{currencyCode}} sent": "Confirmar {{amount}} {{currencyCode}} enviat",
"Confirm {{amount}} {{currencyCode}} received": "Confirmar {{amount}} {{currencyCode}} rebut",
"Open Dispute": "Obrir Disputa",
"The order has expired": "L'ordre ha expirat",
"Chat with the buyer": "Parla amb el comprador",
"Chat with the seller": "Parla amb el venedor",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Digues hola! Sigues clar i concís. Escriu-li com pot enviarte {{amount}} {{currencyCode}}.",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Digues hola! Sigues clar i conc\u00eds. Escriu-li com pot enviarte {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "El comprador a enviat el fiat. Presiona 'Confirmar rebut' quan ho hagis rebut.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Digues hola! Demana els detalls de pagament i prem 'Confirmar enviat' en quant paguis.",
"Wait for the seller to confirm he has received the payment.": "Espera a que el vendedor confirmi que ha rebut el pagament.",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirmes que has rebut {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmant que has rebut el fiat finalitzarà l'intercanvi. Els Sats del collateral s'enviaran al comparador. Confirma només després d'assegurar que t'hagi arribat {{amount}} {{currencyCode}}. A més, si ho has rebut {{currencyCode}} i no confirmes la recepció, t'arriesques a perdre la teva fiança.",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmant que has rebut el fiat finalitzar\u00e0 l'intercanvi. Els Sats del collateral s'enviaran al comparador. Confirma nom\u00e9s despr\u00e9s d'assegurar que t'hagi arribat {{amount}} {{currencyCode}}. A m\u00e9s, si ho has rebut {{currencyCode}} i no confirmes la recepci\u00f3, t'arriesques a perdre la teva fian\u00e7a.",
"Confirm": "Confirmar",
"Trade finished!": "Intercanvi finalitzat!",
"rate_robosats": "Què opines de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Moltes gràcies! RoboSats també t'estima ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats millora amb més liquiditat i usuaris. Explica-li a un amic bitcoiner sobre RoboSats!",
"Thank you for using Robosats!": "Gràcies per fer servir RoboSats!",
"rate_robosats": "Qu\u00e8 opines de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Moltes gr\u00e0cies! RoboSats tamb\u00e9 t'estima \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats millora amb m\u00e9s liquiditat i usuaris. Explica-li a un amic bitcoiner sobre RoboSats!",
"Thank you for using Robosats!": "Gr\u00e0cies per fer servir RoboSats!",
"let_us_know_hot_to_improve": "Diga'ns com podria millorar la plataforma (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Començar de nou",
"Start Again": "Comen\u00e7ar de nou",
"Attempting Lightning Payment": "Intentant el pagament Lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats està intentant pagar la teva factura de Lightning. Recorda que els nodes Lightning han d'estar en línia per rebre pagaments.",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats est\u00e0 intentant pagar la teva factura de Lightning. Recorda que els nodes Lightning han d'estar en l\u00ednia per rebre pagaments.",
"Retrying!": "Reintentant!",
"Lightning Routing Failed": "Ha fallat l'enrutament Lightning",
"Your invoice has expired or more than 3 payment attempts have been made. Muun wallet is not recommended. ": "La teva factura ha expirat o s'han fet més de 3 intents de pagament. La cartera Muun no està recomanada. ",
"Your invoice has expired or more than 3 payment attempts have been made. Muun wallet is not recommended. ": "La teva factura ha expirat o s'han fet m\u00e9s de 3 intents de pagament. La cartera Muun no est\u00e0 recomanada. ",
"Check the list of compatible wallets": "Mira la llista de carteres compatibles",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats intentarà pagar la teva factura 3 cops cada 1 minut. Si segueix fallant, podràs presentar una nova factura. Comprova si tens suficient liquiditat entrant. Recorda que els nodes de Lightning han d'estar en línia per poder rebre pagaments.",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats intentar\u00e0 pagar la teva factura 3 cops cada 1 minut. Si segueix fallant, podr\u00e0s presentar una nova factura. Comprova si tens suficient liquiditat entrant. Recorda que els nodes de Lightning han d'estar en l\u00ednia per poder rebre pagaments.",
"Next attempt in": "Proper intent en",
"Do you want to open a dispute?": "Vols obrir una disputa?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "L'equip de RoboSats examinarà les declaracions i evidències presentades. Com l'equip no pot llegir el xat necessites escriure una declaració completa i exhaustiva. És millor donar un mètode de contacte d'usar i llençar amb la teva declaració. Els Sats del col·lateral seran enviats al guanyador de la disputa, mientres que el perdedor perderà la seva fiança.",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "L'equip de RoboSats examinar\u00e0 les declaracions i evid\u00e8ncies presentades. Com l'equip no pot llegir el xat necessites escriure una declaraci\u00f3 completa i exhaustiva. \u00c9s millor donar un m\u00e8tode de contacte d'usar i llen\u00e7ar amb la teva declaraci\u00f3. Els Sats del col\u00b7lateral seran enviats al guanyador de la disputa, mientres que el perdedor perder\u00e0 la seva fian\u00e7a.",
"Disagree": "Tornar",
"Agree and open dispute": "Obrir disputa",
"A dispute has been opened": "Una disputa ha estat oberta",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Si us plau, presenta la teva declaració. Sigues clar i concís sobre que ja passat i entrega l'evidència necessària. HAS DE donar un mètode de contacte per comunicar-te amb l'equip: mètode de contacte d'usar i llençar, XMPP o usuari de Telegram. Les disputes són resoltes amb la discreció dels Robots reals (també coneguts com humans), així doncs ajuda en el possible per assegurar un resultat just. 5000 caràcters màx.",
"Submit dispute statement": "Presentar declaració",
"We have received your statement": "Hem rebut la teva declaració",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estem esperant la declaració del teu company. Si tens dubtes de l'estat de la disputa o si vols afegir més informació, contacta amb robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Si us plau, guarda l'informació necessària per identificar la teva ordre i pagaments: ID de l'ordre; claus del pagament de la fiança o el col·lateral (comprova la teva cartera Lightning); quantitat exacta de Sats; i nom del Robot. Tindràs que identificar-te com l'usuari involucrat en aquest intercanvi per email (o altre mètode de contacte).",
"We have the statements": "Tenim la declaració",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambdues declaracions se'han rebut, espera a que l'equipo resolgui la disputa. Si tens dubtes de l'estat de la disputa o si vols afegir més informació, contacta amb robosats@protonmail.com. Si no vas donar un mètode de contacte, o dubtes de si ho vas escriure bé, escriu-nos immediatament.",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Si us plau, presenta la teva declaraci\u00f3. Sigues clar i conc\u00eds sobre que ja passat i entrega l'evid\u00e8ncia necess\u00e0ria. HAS DE donar un m\u00e8tode de contacte per comunicar-te amb l'equip: m\u00e8tode de contacte d'usar i llen\u00e7ar, XMPP o usuari de Telegram. Les disputes s\u00f3n resoltes amb la discreci\u00f3 dels Robots reals (tamb\u00e9 coneguts com humans), aix\u00ed doncs ajuda en el possible per assegurar un resultat just. 5000 car\u00e0cters m\u00e0x.",
"Submit dispute statement": "Presentar declaraci\u00f3",
"We have received your statement": "Hem rebut la teva declaraci\u00f3",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estem esperant la declaraci\u00f3 del teu company. Si tens dubtes de l'estat de la disputa o si vols afegir m\u00e9s informaci\u00f3, contacta amb robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Si us plau, guarda l'informaci\u00f3 necess\u00e0ria per identificar la teva ordre i pagaments: ID de l'ordre; claus del pagament de la fian\u00e7a o el col\u00b7lateral (comprova la teva cartera Lightning); quantitat exacta de Sats; i nom del Robot. Tindr\u00e0s que identificar-te com l'usuari involucrat en aquest intercanvi per email (o altre m\u00e8tode de contacte).",
"We have the statements": "Tenim la declaraci\u00f3",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambdues declaracions se'han rebut, espera a que l'equipo resolgui la disputa. Si tens dubtes de l'estat de la disputa o si vols afegir m\u00e9s informaci\u00f3, contacta amb robosats@protonmail.com. Si no vas donar un m\u00e8tode de contacte, o dubtes de si ho vas escriure b\u00e9, escriu-nos immediatament.",
"You have won the dispute": "Has guanyat la disputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Pots retirar la quantitat de la resolució de la disputa (fiança i col·lateral) des de les recompenses del teu perfil. Si creus que l'equip pot fer alguna cosa més, no dubtis a contactar amb robosats@protonmail.com (o a través del mètode de contacte d'usar i llençar que vas especificar).",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Pots retirar la quantitat de la resoluci\u00f3 de la disputa (fian\u00e7a i col\u00b7lateral) des de les recompenses del teu perfil. Si creus que l'equip pot fer alguna cosa m\u00e9s, no dubtis a contactar amb robosats@protonmail.com (o a trav\u00e9s del m\u00e8tode de contacte d'usar i llen\u00e7ar que vas especificar).",
"You have lost the dispute": "Has perdut la disputa",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Desafortunadament has perdut la disputa. Si penses que és un error també pots demanar reobrir el cas per email a robosats@protonmail.com. De todas formes, les probabilitats de ser investigat de nou són baixes.",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Desafortunadament has perdut la disputa. Si penses que \u00e9s un error tamb\u00e9 pots demanar reobrir el cas per email a robosats@protonmail.com. De todas formes, les probabilitats de ser investigat de nou s\u00f3n baixes.",
"Expired not taken": "Expirada sense ser presa",
"Maker bond not locked": "La fiança del creador no va ser bloquejada",
"Escrow not locked": "El dipòsit de garantia no va ser bloquejat",
"Maker bond not locked": "La fian\u00e7a del creador no va ser bloquejada",
"Escrow not locked": "El dip\u00f2sit de garantia no va ser bloquejat",
"Invoice not submitted": "No es va entregar la factura del comprat",
"Neither escrow locked or invoice submitted": "Ni el dipòsit de garantía va ser bloquejat ni es va entregar factura comprador",
"Neither escrow locked or invoice submitted": "Ni el dip\u00f2sit de garant\u00eda va ser bloquejat ni es va entregar factura comprador",
"Renew Order": "Renovar Ordre",
"Pause the public order": "Pausar l'ordre pública",
"Your order is paused": "La teva ordre està pausada",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "La teva ordre pública va ser pausada. Ara mateix, l'ordre no pot ser vista ni presa per altres robots. Pots tornar a activarla quan desitgis.",
"Pause the public order": "Pausar l'ordre p\u00fablica",
"Your order is paused": "La teva ordre est\u00e0 pausada",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "La teva ordre p\u00fablica va ser pausada. Ara mateix, l'ordre no pot ser vista ni presa per altres robots. Pots tornar a activarla quan desitgis.",
"Unpause Order": "Activar Ordre",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Si no bloqueges el col·lateral t'arrisques a perdre la teva fiança. Disposes en total de {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Si no bloqueges el col\u00b7lateral t'arrisques a perdre la teva fian\u00e7a. Disposes en total de {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Veure bitlleteres compatibles",
"Failure reason:": "Raó de la fallada:",
"Failure reason:": "Ra\u00f3 de la fallada:",
"Payment isn't failed (yet)": "El pagament no ha fallat encara",
"There are more routes to try, but the payment timeout was exceeded.": "Queden rutes per provar, però el temps màxim de l'intent ha estat excedit.",
"There are more routes to try, but the payment timeout was exceeded.": "Queden rutes per provar, per\u00f2 el temps m\u00e0xim de l'intent ha estat excedit.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Totes les rutes possibles han estat provades i han fallat de forma permanent. O potser no hi havia cap ruta.",
"A non-recoverable error has occurred.": "S'ha produït un error no recuperable.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Els detalls del pagament són incorrectes (hash desconegut, quantitat invàlida o CLTV delta final invàlid).",
"Insufficient unlocked balance in RoboSats' node.": "Balanç lliure de ser utilitzat al node de RoboSats insuficient.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "La factura entregada sembla tenir només rutes ocultes molt cares, estàs fent servir una bitlletera incomptable (Potser Muun?). Fes un cop d'ull a la llista de bitlleteres compatibles a wallets.robosats.com",
"The invoice provided has no explicit amount": "La factura entregada no conté una quantitat explícita",
"Does not look like a valid lightning invoice": "No sembla ser una factura lightning vàlida",
"A non-recoverable error has occurred.": "S'ha produ\u00eft un error no recuperable.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Els detalls del pagament s\u00f3n incorrectes (hash desconegut, quantitat inv\u00e0lida o CLTV delta final inv\u00e0lid).",
"Insufficient unlocked balance in RoboSats' node.": "Balan\u00e7 lliure de ser utilitzat al node de RoboSats insuficient.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "La factura entregada sembla tenir nom\u00e9s rutes ocultes molt cares, est\u00e0s fent servir una bitlletera incomptable (Potser Muun?). Fes un cop d'ull a la llista de bitlleteres compatibles a wallets.robosats.com",
"The invoice provided has no explicit amount": "La factura entregada no cont\u00e9 una quantitat expl\u00edcita",
"Does not look like a valid lightning invoice": "No sembla ser una factura lightning v\u00e0lida",
"The invoice provided has already expired": "La factura que has entregat ja ha caducat",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Assegura't d' EXPORTAR el registre del xat. Els administradors poden demanar-te elregistre del xat en cas de discrepàncies. És la teva responsabilitat proveir-ho.",
"Invalid address": "Direcció invàlida",
"Unable to validate address, check bitcoind backend": "No ha estat possible validar l'adreça, comprovar el backend bitcoind",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Assegura't d' EXPORTAR el registre del xat. Els administradors poden demanar-te elregistre del xat en cas de discrep\u00e0ncies. \u00c9s la teva responsabilitat proveir-ho.",
"Invalid address": "Direcci\u00f3 inv\u00e0lida",
"Unable to validate address, check bitcoind backend": "No ha estat possible validar l'adre\u00e7a, comprovar el backend bitcoind",
"Submit payout info for {{amountSats}} Sats": "Envia info per rebre {{amountSats}} Sats",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Envia una factura per {{amountSats}} Sats",
"Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.": "Abans de deixar-te enviar {{amountFiat}} {{currencyCode}}, volem assegurar-nos que pots rebre BTC.",
"RoboSats will do a swap and send the Sats to your onchain address.": "RoboSats farà un swap i enviarà els Sats a la teva adreça a la cadena.",
"Swap fee": "Comissió del swap",
"Mining fee": "Comissió minera",
"Mining Fee": "Comissió Minera",
"Final amount you will receive": "Suma final que rebràs",
"Bitcoin Address": "Direcció Bitcoin",
"RoboSats will do a swap and send the Sats to your onchain address.": "RoboSats far\u00e0 un swap i enviar\u00e0 els Sats a la teva adre\u00e7a a la cadena.",
"Swap fee": "Comissi\u00f3 del swap",
"Mining fee": "Comissi\u00f3 minera",
"Mining Fee": "Comissi\u00f3 Minera",
"Final amount you will receive": "Suma final que rebr\u00e0s",
"Bitcoin Address": "Direcci\u00f3 Bitcoin",
"Your TXID": "El teu TXID",
"Lightning": "Lightning",
"Onchain": "Onchain",
@ -462,19 +454,19 @@
"Trade Summary": "Resum de l'intercanvi",
"Maker": "Creador",
"Taker": "Prenedor",
"User role": "Operació",
"User role": "Operaci\u00f3",
"Sent": "Enviat",
"Received": "Rebut",
"BTC received": "BTC rebut",
"BTC sent": "BTC enviat",
"{{tradeFeeSats}} Sats ({{tradeFeePercent}}%)": "{{tradeFeeSats}} Sats ({{tradeFeePercent}}%)",
"Trade fee": "Comisión",
"Trade fee": "Comisi\u00f3n",
"{{swapFeeSats}} Sats ({{swapFeePercent}}%)": "{{swapFeeSats}} Sats ({{swapFeePercent}}%)",
"Onchain swap fee": "Cost swap onchain",
"{{miningFeeSats}} Sats": "{{miningFeeSats}} Sats",
"{{bondSats}} Sats ({{bondPercent}}%)": "{{bondSats}} Sats ({{bondPercent}}%)",
"Maker bond": "Fiança de creador",
"Taker bond": "Fiança de prenedor",
"Maker bond": "Fian\u00e7a de creador",
"Taker bond": "Fian\u00e7a de prenedor",
"Unlocked": "Desbloquejada",
"{{revenueSats}} Sats": "{{revenueSats}} Sats",
"Platform trade revenue": "Benefici de la plataforma",
@ -483,45 +475,44 @@
"Timestamp": "Marca d'hora",
"Completed in": "Completat en",
"Contract exchange rate": "Taxa de canvi del contracte",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Tancar",
"What is RoboSats?": "Què és RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "És un exchange P2P que facilita intercanvis bitcoin/fiat sobre Lightning.",
"RoboSats is an open source project ": "RoboSats és un projecte de codi obert ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Simplifica l'emparellament i minimitza la necessitat de confiança. RoboSats es centra en la privacitat i la velocitat.",
"What is RoboSats?": "Qu\u00e8 \u00e9s RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "\u00c9s un exchange P2P que facilita intercanvis bitcoin/fiat sobre Lightning.",
"RoboSats is an open source project ": "RoboSats \u00e9s un projecte de codi obert ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Simplifica l'emparellament i minimitza la necessitat de confian\u00e7a. RoboSats es centra en la privacitat i la velocitat.",
"(GitHub).": "(GitHub).",
"How does it work?": "Com funciona?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 vol vendre bitcoin. Ella publica una ordre de venda. BafflingBob02 vol comprar bitcoin i escull l'ordre d'Alicia. Tots dos han de bloquejar una petita fiança en Lightning per provar que són veritables Robots. Després, Alicia envia el col·lateral fent ús també d'una factura de Lightning. RoboSats bloqueja la factura fins que Alicia confirma haver rebut el fiat, després el bitcoin s'allibera i s'envia a Bob. Gaudeix el teu bitcoin, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "En cap moment AnonymousAlice01 ni BafflingBob02 han de confiar els fons de bitcoin a l'altra part. En cas de conflicte, el personal de RoboSats ajudarà a resoldre la disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Pots trobar una descripció pas a pas dels intercanvis a ",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 vol vendre bitcoin. Ella publica una ordre de venda. BafflingBob02 vol comprar bitcoin i escull l'ordre d'Alicia. Tots dos han de bloquejar una petita fian\u00e7a en Lightning per provar que s\u00f3n veritables Robots. Despr\u00e9s, Alicia envia el col\u00b7lateral fent \u00fas tamb\u00e9 d'una factura de Lightning. RoboSats bloqueja la factura fins que Alicia confirma haver rebut el fiat, despr\u00e9s el bitcoin s'allibera i s'envia a Bob. Gaudeix el teu bitcoin, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "En cap moment AnonymousAlice01 ni BafflingBob02 han de confiar els fons de bitcoin a l'altra part. En cas de conflicte, el personal de RoboSats ajudar\u00e0 a resoldre la disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Pots trobar una descripci\u00f3 pas a pas dels intercanvis a ",
"How it works": "Com funciona",
"You can also check the full guide in ": "També pots revisar la guia sencera a ",
"You can also check the full guide in ": "Tamb\u00e9 pots revisar la guia sencera a ",
"How to use": "Com utilizar",
"What payment methods are accepted?": "Quins mètodes de pagament s'accepten?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Tots sempre que siguin ràpids. Pots escriure a sota el teu mètode de pagament preferit(s). Hauràs de trobar un company que accepti aquest mètode. El pas per intercanviar el fiat té un temps d'expiració de 24 hores abans no s'obri una disputa automàticament. Et recomanem mètodes d'enviament de fiat.",
"Are there trade limits?": "Hi ha límit d'intercanvis?",
"What are the fees?": "Quines són les comissions?",
"RoboSats total fee for an order is {{tradeFee}}%. This fee is split to be covered by both: the order maker ({{makerFee}}%) and the order taker ({{takerFee}}%). In case an onchain address is used to received the Sats a variable swap fee applies. Check the exchange details by tapping on the bottom bar icon to see the current swap fee.": "La comissió total d'un intercanvi és {{tradeFee}}%. Aquesta comissió es divideix en: creador de l'ordre ({{makerFee}}%) i prenedor de l'ordre ({{takerFee}}%). En cas de que s'utilitzi una adreça onchain per rebre els Sats també existeix una comissió variable per a cobrir el cost del swap (veure les estadístiques de l'exchange clickant a sota per veure el cost actual del swap).",
"Be aware your fiat payment provider might charge extra fees. In any case, the buyer bears the costs of sending fiat. That includes banking charges, transfer fees and foreign exchange spreads. The seller must receive exactly the amount stated in the order details.": "Tingues en compte que la teva pasarel·la de pagaments fiat pot cobrar-te comissions extra. En qualsevol cas, aquests costos sempre són coberts pel comprador. Això inclou. comissions de transferència, costos bancaris i forquilla d'intercavis de divises. El venedor ha de rebre la quantitat exacte que es detalla a l'ordre.",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Per minimitzar problemes a l'enrutament Lightning, el màxim per intercanvi és de {{maxAmount}} Sats. No hi ha límit d'intercanvis en el temps. Tot i que un Robot només pot intervenir una ordre a la vegada, pots fer servir varis Robots a diferents navegadors (recorda guardar els tokens dels teus Robots!).",
"Is RoboSats private?": "És privat RoboSats?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats no custòdia els teus fons i no recol·lecta o custòdia cap dada personal, doncs no li importa qui ets. RoboSats mai et preguntarà pel teu nom, país o número de document. Per millorar la teva privacitat, fes ús del Navegador Tor i visita el lloc ceba.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "El teu company d'intercanvi és l'únic que pot potencialment esbrinar quelcom sobre tu. Mantingues una conversa curta i concisa. Evita donar dades que no siguin estrictament necessàries pel pagament del fiat.",
"What are the risks?": "Quins són els riscos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Aquesta és una aplicació experimental, quelcom pot no sortir bé. Intercanvia petites quantitats!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "El venedor té els mateixos riscos de devolució que amb qualsevol altre servei P2P. PayPal o targetes de crèdit no són recomanades.",
"What is the trust model?": "Quin és el model de confiança?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Comprador i venedor mai han de confiar l'un en l'altre. Una mínima confiança en RoboSats és necessària, doncs és l'enllaç entre la fiança del venedor i el pagament del comprador, que no és atòmic (encara). A més, les disputes es resolen pel personal de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Amb total claredat, els requeriments de confiança són minimitzats. No obstant, encara hi ha una manera de que RoboSats fugi amb els teus Sats: no enviant-li al comprador. Es podria argumentar que aquest moviment malmetria la reputació de RoboSats per només un petit import. De totes formes, hauries de dubtar i només intercanviar petites sumes cada cop. Per grans sumes fes servir un exchange de primera capa com Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Pots augmentar la confiança en RoboSats inspeccionant el codi font.",
"What payment methods are accepted?": "Quins m\u00e8todes de pagament s'accepten?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Tots sempre que siguin r\u00e0pids. Pots escriure a sota el teu m\u00e8tode de pagament preferit(s). Haur\u00e0s de trobar un company que accepti aquest m\u00e8tode. El pas per intercanviar el fiat t\u00e9 un temps d'expiraci\u00f3 de 24 hores abans no s'obri una disputa autom\u00e0ticament. Et recomanem m\u00e8todes d'enviament de fiat.",
"Are there trade limits?": "Hi ha l\u00edmit d'intercanvis?",
"What are the fees?": "Quines s\u00f3n les comissions?",
"RoboSats total fee for an order is {{tradeFee}}%. This fee is split to be covered by both: the order maker ({{makerFee}}%) and the order taker ({{takerFee}}%). In case an onchain address is used to received the Sats a variable swap fee applies. Check the exchange details by tapping on the bottom bar icon to see the current swap fee.": "La comissi\u00f3 total d'un intercanvi \u00e9s {{tradeFee}}%. Aquesta comissi\u00f3 es divideix en: creador de l'ordre ({{makerFee}}%) i prenedor de l'ordre ({{takerFee}}%). En cas de que s'utilitzi una adre\u00e7a onchain per rebre els Sats tamb\u00e9 existeix una comissi\u00f3 variable per a cobrir el cost del swap (veure les estad\u00edstiques de l'exchange clickant a sota per veure el cost actual del swap).",
"Be aware your fiat payment provider might charge extra fees. In any case, the buyer bears the costs of sending fiat. That includes banking charges, transfer fees and foreign exchange spreads. The seller must receive exactly the amount stated in the order details.": "Tingues en compte que la teva pasarel\u00b7la de pagaments fiat pot cobrar-te comissions extra. En qualsevol cas, aquests costos sempre s\u00f3n coberts pel comprador. Aix\u00f2 inclou. comissions de transfer\u00e8ncia, costos bancaris i forquilla d'intercavis de divises. El venedor ha de rebre la quantitat exacte que es detalla a l'ordre.",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Per minimitzar problemes a l'enrutament Lightning, el m\u00e0xim per intercanvi \u00e9s de {{maxAmount}} Sats. No hi ha l\u00edmit d'intercanvis en el temps. Tot i que un Robot nom\u00e9s pot intervenir una ordre a la vegada, pots fer servir varis Robots a diferents navegadors (recorda guardar els tokens dels teus Robots!).",
"Is RoboSats private?": "\u00c9s privat RoboSats?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats no cust\u00f2dia els teus fons i no recol\u00b7lecta o cust\u00f2dia cap dada personal, doncs no li importa qui ets. RoboSats mai et preguntar\u00e0 pel teu nom, pa\u00eds o n\u00famero de document. Per millorar la teva privacitat, fes \u00fas del Navegador Tor i visita el lloc ceba.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "El teu company d'intercanvi \u00e9s l'\u00fanic que pot potencialment esbrinar quelcom sobre tu. Mantingues una conversa curta i concisa. Evita donar dades que no siguin estrictament necess\u00e0ries pel pagament del fiat.",
"What are the risks?": "Quins s\u00f3n els riscos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Aquesta \u00e9s una aplicaci\u00f3 experimental, quelcom pot no sortir b\u00e9. Intercanvia petites quantitats!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "El venedor t\u00e9 els mateixos riscos de devoluci\u00f3 que amb qualsevol altre servei P2P. PayPal o targetes de cr\u00e8dit no s\u00f3n recomanades.",
"What is the trust model?": "Quin \u00e9s el model de confian\u00e7a?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Comprador i venedor mai han de confiar l'un en l'altre. Una m\u00ednima confian\u00e7a en RoboSats \u00e9s necess\u00e0ria, doncs \u00e9s l'enlla\u00e7 entre la fian\u00e7a del venedor i el pagament del comprador, que no \u00e9s at\u00f2mic (encara). A m\u00e9s, les disputes es resolen pel personal de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Amb total claredat, els requeriments de confian\u00e7a s\u00f3n minimitzats. No obstant, encara hi ha una manera de que RoboSats fugi amb els teus Sats: no enviant-li al comprador. Es podria argumentar que aquest moviment malmetria la reputaci\u00f3 de RoboSats per nom\u00e9s un petit import. De totes formes, hauries de dubtar i nom\u00e9s intercanviar petites sumes cada cop. Per grans sumes fes servir un exchange de primera capa com Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Pots augmentar la confian\u00e7a en RoboSats inspeccionant el codi font.",
"Project source code": "Codi font del projecte",
"What happens if RoboSats suddenly disappears?": "Què passaria si RoboSats desaparegués?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Els teus Sats et seran retornats. Qualsevol factura no assentada serà automàticament retornada encara que RoboSats desaparegui. Això és cert tant per fiances com pels col·laterals. De totes formes, des de que el venedor confirma haver rebut el fiat i el comprador rep els Sats, hi ha un temps d'aprox. 1 segon en que los fons podrien perdre's si RoboSats desaparegués. Assegura't de tenir suficient liquiditat entrant per evitar errors d'enrutament. Si tens algun problema, busca als canals públics de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "A molts països utilitzar RoboSats no és diferent a fer servir Ebay o WallaPop. La teva regulació pot variar, és responsabilitat teva el seu compliment.",
"Is RoboSats legal in my country?": "És RoboSats legal al meu país?",
"Disclaimer": "Avís",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Aquesta aplicació de Lightning està en desenvolupament continu i s'entrega tal qual: intercanvia amb la màxima precaució. No hi ha suport privat. El suport s'ofereix només a canals públics.",
"What happens if RoboSats suddenly disappears?": "Qu\u00e8 passaria si RoboSats desaparegu\u00e9s?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Els teus Sats et seran retornats. Qualsevol factura no assentada ser\u00e0 autom\u00e0ticament retornada encara que RoboSats desaparegui. Aix\u00f2 \u00e9s cert tant per fiances com pels col\u00b7laterals. De totes formes, des de que el venedor confirma haver rebut el fiat i el comprador rep els Sats, hi ha un temps d'aprox. 1 segon en que los fons podrien perdre's si RoboSats desaparegu\u00e9s. Assegura't de tenir suficient liquiditat entrant per evitar errors d'enrutament. Si tens algun problema, busca als canals p\u00fablics de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "A molts pa\u00efsos utilitzar RoboSats no \u00e9s diferent a fer servir Ebay o WallaPop. La teva regulaci\u00f3 pot variar, \u00e9s responsabilitat teva el seu compliment.",
"Is RoboSats legal in my country?": "\u00c9s RoboSats legal al meu pa\u00eds?",
"Disclaimer": "Av\u00eds",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Aquesta aplicaci\u00f3 de Lightning est\u00e0 en desenvolupament continu i s'entrega tal qual: intercanvia amb la m\u00e0xima precauci\u00f3. No hi ha suport privat. El suport s'ofereix nom\u00e9s a canals p\u00fablics.",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats mai et contactarà. RoboSats mai et preguntarà pel token del teu Robot."
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats mai et contactar\u00e0. RoboSats mai et preguntar\u00e0 pel token del teu Robot."
}

View File

@ -1,504 +1,495 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "Nepoužíváš Robosats bezpečně.",
"desktop_unsafe_alert": "Některé funkce byly vypnuty pro tvou bezpečnost (např. chat) bez níchž nebudeš moct dokončit obchod. Abys využil všechny funkce a ochranil své soukromí, použij <1>Tor Browser</1> a navšťiv <3>Onion</3> stránku.",
"phone_unsafe_alert": "Nebudeš moct dokončit obchod. Použij <1>Tor Browser</1> a navšťiv <3>Onion</3> stránku.",
"Hide": "Skrýt",
"You are not using RoboSats privately": "Nepou\u017e\u00edv\u00e1\u0161 Robosats bezpe\u010dn\u011b.",
"desktop_unsafe_alert": "N\u011bkter\u00e9 funkce byly vypnuty pro tvou bezpe\u010dnost (nap\u0159. chat) bez n\u00edch\u017e nebude\u0161 moct dokon\u010dit obchod. Abys vyu\u017eil v\u0161echny funkce a ochranil sv\u00e9 soukrom\u00ed, pou\u017eij <1>Tor Browser</1> a nav\u0161\u0165iv <3>Onion</3> str\u00e1nku.",
"phone_unsafe_alert": "Nebude\u0161 moct dokon\u010dit obchod. Pou\u017eij <1>Tor Browser</1> a nav\u0161\u0165iv <3>Onion</3> str\u00e1nku.",
"Hide": "Skr\u00fdt",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Jednoduchá LN P2P burza",
"This is your trading avatar": "Toto je tvůj uživatelský avatar",
"Store your token safely": "Ulož si svůj token bezpečně",
"A robot avatar was found, welcome back!": "Uživatelský avatar byl nalezen, vítej zpět!",
"Copied!": "Zkopirováno!!",
"Generate a new token": "Generovat nový token",
"Simple and Private LN P2P Exchange": "Jednoduch\u00e1 LN P2P burza",
"This is your trading avatar": "Toto je tv\u016fj u\u017eivatelsk\u00fd avatar",
"Store your token safely": "Ulo\u017e si sv\u016fj token bezpe\u010dn\u011b",
"A robot avatar was found, welcome back!": "U\u017eivatelsk\u00fd avatar byl nalezen, v\u00edtej zp\u011bt!",
"Copied!": "Zkopirov\u00e1no!!",
"Generate a new token": "Generovat nov\u00fd token",
"Generate Robot": "Generovat Robota",
"You must enter a new token first": "Nejprvne musíš vložit nový token",
"Make Order": "Vytvořit nabídku",
"You must enter a new token first": "Nejprvne mus\u00ed\u0161 vlo\u017eit nov\u00fd token",
"Make Order": "Vytvo\u0159it nab\u00eddku",
"Info": "Info",
"View Book": "Zobrazit nabídky",
"Learn RoboSats": "Více o RoboSats",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Chystáš se navštívit výukovou stránku RoboSats. Stránka obsahuje tutoriály a dokumentaci, které ti pomohou pochopit jak funguje RoboSats.",
"Let's go!": "Navštívit!",
"Save token and PGP credentials to file": "Uložit soubor s tokenem a PGP klíčem",
"View Book": "Zobrazit nab\u00eddky",
"Learn RoboSats": "V\u00edce o RoboSats",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Chyst\u00e1\u0161 se nav\u0161t\u00edvit v\u00fdukovou str\u00e1nku RoboSats. Str\u00e1nka obsahuje tutori\u00e1ly a dokumentaci, kter\u00e9 ti pomohou pochopit jak funguje RoboSats.",
"Let's go!": "Nav\u0161t\u00edvit!",
"Save token and PGP credentials to file": "Ulo\u017eit soubor s tokenem a PGP kl\u00ed\u010dem",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Nabídka",
"Customize": "Přizpůsobit",
"Buy or Sell Bitcoin?": "Nákup nebo prodej Bitcoinu?",
"Buy": "Nákup",
"Order": "Nab\u00eddka",
"Customize": "P\u0159izp\u016fsobit",
"Buy or Sell Bitcoin?": "N\u00e1kup nebo prodej Bitcoinu?",
"Buy": "N\u00e1kup",
"Sell": "Prodej",
"Amount": "Částka",
"Amount of fiat to exchange for bitcoin": "Částka fiat měny za bitcoin",
"Invalid": "Neplatné",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Zadej preferovaný způsob platby. Doporučujeme okamžité platby.",
"Must be shorter than 65 characters": "Maximálně 65 znaků",
"Amount": "\u010c\u00e1stka",
"Amount of fiat to exchange for bitcoin": "\u010c\u00e1stka fiat m\u011bny za bitcoin",
"Invalid": "Neplatn\u00e9",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Zadej preferovan\u00fd zp\u016fsob platby. Doporu\u010dujeme okam\u017eit\u00e9 platby.",
"Must be shorter than 65 characters": "Maxim\u00e1ln\u011b 65 znak\u016f",
"Swap Destination(s)": "Swap adresa",
"Fiat Payment Method(s)": "Možnosti fiat plateb",
"You can add any method": "Můžeš přidat jakýkoliv způsob platby",
"Add New": "Přidat",
"Choose a Pricing Method": "Vyber metodu stanovení ceny",
"Relative": "Plovoucí",
"Fiat Payment Method(s)": "Mo\u017enosti fiat plateb",
"You can add any method": "M\u016f\u017ee\u0161 p\u0159idat jak\u00fdkoliv zp\u016fsob platby",
"Add New": "P\u0159idat",
"Choose a Pricing Method": "Vyber metodu stanoven\u00ed ceny",
"Relative": "Plovouc\u00ed",
"Let the price move with the market": "Nech cenu pohybovat se s trhem",
"Premium over Market (%)": "Prémium vůči tržní ceně (%)",
"Explicit": "Pevně daná",
"Set a fix amount of satoshis": "Nastavit fixní částku satoshi ",
"Premium over Market (%)": "Pr\u00e9mium v\u016f\u010di tr\u017en\u00ed cen\u011b (%)",
"Explicit": "Pevn\u011b dan\u00e1",
"Set a fix amount of satoshis": "Nastavit fixn\u00ed \u010d\u00e1stku satoshi ",
"Satoshis": "Satoshi",
"Fixed price:": "Fixní cena:",
"Order current rate:": "Aktuální kurz nabídky:",
"Your order fixed exchange rate": "Pevný směnný kurz tvé nabídky",
"Your order's current exchange rate. Rate will move with the market.": "Kurz tvé nabídky. Kurz se bude pohybovat s trhem.",
"Let the taker chose an amount within the range": "Nech příjemce vybrat částku v rámci rozmezí",
"Enable Amount Range": "Povolit rozmezí částky",
"Fixed price:": "Fixn\u00ed cena:",
"Order current rate:": "Aktu\u00e1ln\u00ed kurz nab\u00eddky:",
"Your order fixed exchange rate": "Pevn\u00fd sm\u011bnn\u00fd kurz tv\u00e9 nab\u00eddky",
"Your order's current exchange rate. Rate will move with the market.": "Kurz tv\u00e9 nab\u00eddky. Kurz se bude pohybovat s trhem.",
"Let the taker chose an amount within the range": "Nech p\u0159\u00edjemce vybrat \u010d\u00e1stku v r\u00e1mci rozmez\u00ed",
"Enable Amount Range": "Povolit rozmez\u00ed \u010d\u00e1stky",
"From": "Od",
"to": "do",
"Expiry Timers": "Časovače vypršení platnosti",
"Public Duration (HH:mm)": "Doba zveřejnění (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "Časový limit pro vložení do úschovy (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Nastavení kauce, zvyš pro vyšší bezpečnost ",
"Expiry Timers": "\u010casova\u010de vypr\u0161en\u00ed platnosti",
"Public Duration (HH:mm)": "Doba zve\u0159ejn\u011bn\u00ed (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "\u010casov\u00fd limit pro vlo\u017een\u00ed do \u00faschovy (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Nastaven\u00ed kauce, zvy\u0161 pro vy\u0161\u0161\u00ed bezpe\u010dnost ",
"Fidelity Bond Size": "Velikost kauce",
"Allow bondless takers": "Povolit protistranu bez kauce",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "JIŽ BRZY - Vysoce riskantní! Maximálně do {{limitSats}}K Sats",
"You must fill the order correctly": "Objednávku je nutné vyplnit správně",
"Create Order": "Vytvořit nabídku",
"Back": "Zpět",
"Create an order for ": "Vytvořit nabídku za ",
"Create a BTC buy order for ": "Vytvořit nabídku na koupi BTC za ",
"Create a BTC sell order for ": "Vytvořit nabídku na prodej BTC za ",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "JI\u017d BRZY - Vysoce riskantn\u00ed! Maxim\u00e1ln\u011b do {{limitSats}}K Sats",
"You must fill the order correctly": "Objedn\u00e1vku je nutn\u00e9 vyplnit spr\u00e1vn\u011b",
"Create Order": "Vytvo\u0159it nab\u00eddku",
"Back": "Zp\u011bt",
"Create an order for ": "Vytvo\u0159it nab\u00eddku za ",
"Create a BTC buy order for ": "Vytvo\u0159it nab\u00eddku na koupi BTC za ",
"Create a BTC sell order for ": "Vytvo\u0159it nab\u00eddku na prodej BTC za ",
" of {{satoshis}} Satoshis": " {{satoshis}} Satoshi",
" at market price": " tržní ceny",
" at a {{premium}}% premium": " za {{premium}}% přirážku",
" at market price": " tr\u017en\u00ed ceny",
" at a {{premium}}% premium": " za {{premium}}% p\u0159ir\u00e1\u017eku",
" at a {{discount}}% discount": " za {{discount}}% slevu",
"Must be less than {{max}}%": "Musí být méně než {{max}}%",
"Must be more than {{min}}%": "Musí být více než {{min}}%",
"Must be less than {{maxSats}": "Musí být méně než {{maxSats}}",
"Must be more than {{minSats}}": "Musí být více než {{minSats}}",
"Store your robot token": "Ulož si svůj robot token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Ulož si bezpečně svůj token jednoduše zkopírováním do jiné aplikace. V budoucnu ho možná budeš potřebovat v případě obnovy robota.",
"Must be less than {{max}}%": "Mus\u00ed b\u00fdt m\u00e9n\u011b ne\u017e {{max}}%",
"Must be more than {{min}}%": "Mus\u00ed b\u00fdt v\u00edce ne\u017e {{min}}%",
"Must be less than {{maxSats}": "Mus\u00ed b\u00fdt m\u00e9n\u011b ne\u017e {{maxSats}}",
"Must be more than {{minSats}}": "Mus\u00ed b\u00fdt v\u00edce ne\u017e {{minSats}}",
"Store your robot token": "Ulo\u017e si sv\u016fj robot token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Ulo\u017e si bezpe\u010dn\u011b sv\u016fj token jednodu\u0161e zkop\u00edrov\u00e1n\u00edm do jin\u00e9 aplikace. V budoucnu ho mo\u017en\u00e1 bude\u0161 pot\u0159ebovat v p\u0159\u00edpad\u011b obnovy robota.",
"Done": "Hotovo",
"You do not have a robot avatar": "Nemáš robota a avatar",
"You need to generate a robot avatar in order to become an order maker": "Aby si se mohl stát tvůrcem nabídky musíš si vygenerovat avatar a robota",
"You do not have a robot avatar": "Nem\u00e1\u0161 robota a avatar",
"You need to generate a robot avatar in order to become an order maker": "Aby si se mohl st\u00e1t tv\u016frcem nab\u00eddky mus\u00ed\u0161 si vygenerovat avatar a robota",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "nespecifikováno",
"Instant SEPA": "Okamžitá SEPA",
"Amazon GiftCard": "Amazon dárková karta",
"Google Play Gift Code": "Google Play dárkový kod",
"Cash F2F": "Hotovost v tváří v tvář",
"not specified": "nespecifikov\u00e1no",
"Instant SEPA": "Okam\u017eit\u00e1 SEPA",
"Amazon GiftCard": "Amazon d\u00e1rkov\u00e1 karta",
"Google Play Gift Code": "Google Play d\u00e1rkov\u00fd kod",
"Cash F2F": "Hotovost v tv\u00e1\u0159\u00ed v tv\u00e1\u0159",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Prodavající",
"Buyer": "Kupující",
"I want to": "Já chci",
"Select Order Type": "Vybrat druh nabídky",
"ANY": "VŠE",
"BUY": "KOUPĚ",
"Seller": "Prodavaj\u00edc\u00ed",
"Buyer": "Kupuj\u00edc\u00ed",
"I want to": "J\u00e1 chci",
"Select Order Type": "Vybrat druh nab\u00eddky",
"ANY": "V\u0160E",
"BUY": "KOUP\u011a",
"SELL": "PRODEJ",
"and receive": "získat",
"and receive": "z\u00edskat",
"and pay with": "zaplatit s",
"and use": "použít",
"Select Payment Currency": "Vybrat měnu platby",
"and use": "pou\u017e\u00edt",
"Select Payment Currency": "Vybrat m\u011bnu platby",
"Robot": "Robot",
"Is": "Je",
"Currency": "Měna",
"Payment Method": "Platební metoda",
"Currency": "M\u011bna",
"Payment Method": "Platebn\u00ed metoda",
"Pay": "Platba",
"Price": "Cena",
"Premium": "Přirážka",
"You are SELLING BTC for {{currencyCode}}": "PRODÁVAŠ BTC za {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "KUPUJEŠ BTC za {{currencyCode}}",
"You are looking at all": "Prohlížíš si všechny",
"No orders found to sell BTC for {{currencyCode}}": "Žádné nabídky na prodej BTC za {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "Žádné nabídky na koupi BTC za {{currencyCode}}",
"Filter has no results": "Filtr nemá žádné výsledky",
"Be the first one to create an order": "Buď první, kdo vytvoří nabídku",
"Orders per page:": "Nabídky na stránku:",
"No rows": "Žádné řádky",
"No results found.": "Nebyly nalezeny žádné výsledky.",
"An error occurred.": "Došlo k chybě.",
"Premium": "P\u0159ir\u00e1\u017eka",
"You are SELLING BTC for {{currencyCode}}": "PROD\u00c1VA\u0160 BTC za {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "KUPUJE\u0160 BTC za {{currencyCode}}",
"You are looking at all": "Prohl\u00ed\u017e\u00ed\u0161 si v\u0161echny",
"No orders found to sell BTC for {{currencyCode}}": "\u017d\u00e1dn\u00e9 nab\u00eddky na prodej BTC za {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "\u017d\u00e1dn\u00e9 nab\u00eddky na koupi BTC za {{currencyCode}}",
"Filter has no results": "Filtr nem\u00e1 \u017e\u00e1dn\u00e9 v\u00fdsledky",
"Be the first one to create an order": "Bu\u010f prvn\u00ed, kdo vytvo\u0159\u00ed nab\u00eddku",
"Orders per page:": "Nab\u00eddky na str\u00e1nku:",
"No rows": "\u017d\u00e1dn\u00e9 \u0159\u00e1dky",
"No results found.": "Nebyly nalezeny \u017e\u00e1dn\u00e9 v\u00fdsledky.",
"An error occurred.": "Do\u0161lo k chyb\u011b.",
"Columns": "Sloupce",
"Select columns": "Vybrat sloupce",
"Find column": "Najít sloupec",
"Column title": "Název sloupce",
"Reorder column": "Změna pořadí sloupce",
"Show all": "Ukázat vše",
"Hide all": "Schovat vše",
"Add filter": "Přidat filter",
"Find column": "Naj\u00edt sloupec",
"Column title": "N\u00e1zev sloupce",
"Reorder column": "Zm\u011bna po\u0159ad\u00ed sloupce",
"Show all": "Uk\u00e1zat v\u0161e",
"Hide all": "Schovat v\u0161e",
"Add filter": "P\u0159idat filter",
"Delete": "Smazat",
"Logic operator": "Logický operátor",
"Operator": "Operátor",
"Logic operator": "Logick\u00fd oper\u00e1tor",
"Operator": "Oper\u00e1tor",
"And": "A",
"Or": "Nebo",
"Value": "Hodnota",
"Filter value": "Filter hodnoty",
"contains": "obsahuje",
"equals": "rovno",
"starts with": "začína s",
"ends with": "končí s",
"starts with": "za\u010d\u00edna s",
"ends with": "kon\u010d\u00ed s",
"is": "je",
"is not": "není",
"is after": "následuje po",
"is on or after": "je zapnuto nebo později",
"is before": "se nachází před ",
"is on or before": "je zapnuto nebo dříve",
"is empty": "je prázdný",
"is not empty": "není prázdný",
"is any of": "je některý z",
"any": "jakýkoliv",
"true": "správný",
"false": "nesprávný",
"is not": "nen\u00ed",
"is after": "n\u00e1sleduje po",
"is on or after": "je zapnuto nebo pozd\u011bji",
"is before": "se nach\u00e1z\u00ed p\u0159ed ",
"is on or before": "je zapnuto nebo d\u0159\u00edve",
"is empty": "je pr\u00e1zdn\u00fd",
"is not empty": "nen\u00ed pr\u00e1zdn\u00fd",
"is any of": "je n\u011bkter\u00fd z",
"any": "jak\u00fdkoliv",
"true": "spr\u00e1vn\u00fd",
"false": "nespr\u00e1vn\u00fd",
"Menu": "Menu",
"Show columns": "Ukázat sloupce",
"Show columns": "Uk\u00e1zat sloupce",
"Filter": "Filtrovat",
"Unsort": "Zrušení řazení",
"Sort by ASC": "Řazení podle ASC",
"Sort by DESC": "Řazení podle DESC",
"Sort": "Řazení",
"Show filters": "Ukázat filtry",
"Unsort": "Zru\u0161en\u00ed \u0159azen\u00ed",
"Sort by ASC": "\u0158azen\u00ed podle ASC",
"Sort by DESC": "\u0158azen\u00ed podle DESC",
"Sort": "\u0158azen\u00ed",
"Show filters": "Uk\u00e1zat filtry",
"yes": "ano",
"no": "ne",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Statistiky pro nerdy",
"LND version": "LND verze",
"Currently running commit hash": "Aktuálně běží commit hash",
"24h contracted volume": "Zobchodované množství za 24h",
"Lifetime contracted volume": "Zobchodované množství od spuštění",
"Made with": "Vytvořeno s",
"Currently running commit hash": "Aktu\u00e1ln\u011b b\u011b\u017e\u00ed commit hash",
"24h contracted volume": "Zobchodovan\u00e9 mno\u017estv\u00ed za 24h",
"Lifetime contracted volume": "Zobchodovan\u00e9 mno\u017estv\u00ed od spu\u0161t\u011bn\u00ed",
"Made with": "Vytvo\u0159eno s",
"and": "a",
"... somewhere on Earth!": "... někde na Zemi!",
"... somewhere on Earth!": "... n\u011bkde na Zemi!",
"Community": "Komunity",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Podpora je poskytována pouze na veřejných kanálech. Přidej se k naší Telegram komunitě, pokud máš otázku nebo se setkat s dalšími cool roboty. Našel jsi bug nebo novou funkci? Navštiv prosím naše Github Issues.",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Podpora je poskytov\u00e1na pouze na ve\u0159ejn\u00fdch kan\u00e1lech. P\u0159idej se k na\u0161\u00ed Telegram komunit\u011b, pokud m\u00e1\u0161 ot\u00e1zku nebo se setkat s dal\u0161\u00edmi cool roboty. Na\u0161el jsi bug nebo novou funkci? Nav\u0161tiv pros\u00edm na\u0161e Github Issues.",
"Follow RoboSats in Twitter": "Sleduj RoboSats na Twitteru",
"Twitter Official Account": "Oficiální Twitter účet",
"Twitter Official Account": "Ofici\u00e1ln\u00ed Twitter \u00fa\u010det",
"RoboSats Telegram Communities": "RoboSats Telegram komunity",
"Join RoboSats Spanish speaking community!": "Přidej se k španělsky mluvící RoboSats komunitě!",
"Join RoboSats Russian speaking community!": "Přidej se k rusky mluvící RoboSats komunitě!",
"Join RoboSats Chinese speaking community!": "Přidej se k čínsky mluvící RoboSats komunitě!",
"Join RoboSats English speaking community!": "Přidej se k anglicky mluvící RoboSats komunitě!",
"Tell us about a new feature or a bug": "Našel jsi bug nebo novou funkci? Napiš nám ",
"Join RoboSats Spanish speaking community!": "P\u0159idej se k \u0161pan\u011blsky mluv\u00edc\u00ed RoboSats komunit\u011b!",
"Join RoboSats Russian speaking community!": "P\u0159idej se k rusky mluv\u00edc\u00ed RoboSats komunit\u011b!",
"Join RoboSats Chinese speaking community!": "P\u0159idej se k \u010d\u00ednsky mluv\u00edc\u00ed RoboSats komunit\u011b!",
"Join RoboSats English speaking community!": "P\u0159idej se k anglicky mluv\u00edc\u00ed RoboSats komunit\u011b!",
"Tell us about a new feature or a bug": "Na\u0161el jsi bug nebo novou funkci? Napi\u0161 n\u00e1m ",
"Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project",
"Your Profile": "Tvůj profil",
"Your robot": "Tvůj robot",
"One active order #{{orderID}}": "Jedná aktivní nabídka #{{orderID}}",
"Your current order": "Tvá aktuální nabídka",
"No active orders": "Žádné aktivní nabídky",
"Your token (will not remain here)": "Tvůj token (nezůstane zde)",
"Back it up!": "Zálohuj to!",
"Your Profile": "Tv\u016fj profil",
"Your robot": "Tv\u016fj robot",
"One active order #{{orderID}}": "Jedn\u00e1 aktivn\u00ed nab\u00eddka #{{orderID}}",
"Your current order": "Tv\u00e1 aktu\u00e1ln\u00ed nab\u00eddka",
"No active orders": "\u017d\u00e1dn\u00e9 aktivn\u00ed nab\u00eddky",
"Your token (will not remain here)": "Tv\u016fj token (nez\u016fstane zde)",
"Back it up!": "Z\u00e1lohuj to!",
"Cannot remember": "Nepamatuje si",
"Rewards and compensations": "Odměny a kompezace",
"Share to earn 100 Sats per trade": "Sdílej a získej za každý obchod 100 Satů",
"Your referral link": "Tvůj referral odkaz",
"Your earned rewards": "Tvé odměny",
"Rewards and compensations": "Odm\u011bny a kompezace",
"Share to earn 100 Sats per trade": "Sd\u00edlej a z\u00edskej za ka\u017ed\u00fd obchod 100 Sat\u016f",
"Your referral link": "Tv\u016fj referral odkaz",
"Your earned rewards": "Tv\u00e9 odm\u011bny",
"Claim": "Vybrat",
"Invoice for {{amountSats}} Sats": "Invoice pro {{amountSats}} Satů",
"Invoice for {{amountSats}} Sats": "Invoice pro {{amountSats}} Sat\u016f",
"Submit": "Odeslat",
"There it goes, thank you!🥇": "Tak je to správně, děkujeme!🥇",
"You have an active order": "Máš aktivní nabídku",
"You can claim satoshis!": "Můžeš si vybrat satoshi!",
"Public Buy Orders": "Veřejné nákupní nabídky",
"Public Sell Orders": "Veřejné prodejní nabídky",
"Today Active Robots": "Dnešní aktivní Roboti",
"24h Avg Premium": "Průměrná přirážka za 24h",
"There it goes, thank you!\ud83e\udd47": "Tak je to spr\u00e1vn\u011b, d\u011bkujeme!\ud83e\udd47",
"You have an active order": "M\u00e1\u0161 aktivn\u00ed nab\u00eddku",
"You can claim satoshis!": "M\u016f\u017ee\u0161 si vybrat satoshi!",
"Public Buy Orders": "Ve\u0159ejn\u00e9 n\u00e1kupn\u00ed nab\u00eddky",
"Public Sell Orders": "Ve\u0159ejn\u00e9 prodejn\u00ed nab\u00eddky",
"Today Active Robots": "Dne\u0161n\u00ed aktivn\u00ed Roboti",
"24h Avg Premium": "Pr\u016fm\u011brn\u00e1 p\u0159ir\u00e1\u017eka za 24h",
"Trade Fee": "Poplatek",
"Show community and support links": "Ukázat odkazy na komunity a podporu",
"Show stats for nerds": "Ukázat statistiky pro nerdy",
"Exchange Summary": "Shrnutí burzy",
"Public buy orders": "Veřejné nákupní nabídky",
"Public sell orders": "Veřejné prodejní nabídky",
"Book liquidity": "Dostupná likvidita",
"Today active robots": "Dnešní aktivní roboti",
"24h non-KYC bitcoin premium": "24h no-KYC bitcoin přirážka",
"Maker fee": "Poplatek tvůrce",
"Taker fee": "Poplatek příjemce",
"Number of public BUY orders": "Množství veřejných nákupních nabídek",
"Number of public SELL orders": "Množství veřejných prodejních nabídek",
"Your last order #{{orderID}}": "Tvá poslední nabídka #{{orderID}}",
"Inactive order": "Neaktivní nabídka",
"You do not have previous orders": "Nemáš předchozí objednávky",
"Join RoboSats' Subreddit": "Přidej se k Subredditu RoboSats",
"Show community and support links": "Uk\u00e1zat odkazy na komunity a podporu",
"Show stats for nerds": "Uk\u00e1zat statistiky pro nerdy",
"Exchange Summary": "Shrnut\u00ed burzy",
"Public buy orders": "Ve\u0159ejn\u00e9 n\u00e1kupn\u00ed nab\u00eddky",
"Public sell orders": "Ve\u0159ejn\u00e9 prodejn\u00ed nab\u00eddky",
"Book liquidity": "Dostupn\u00e1 likvidita",
"Today active robots": "Dne\u0161n\u00ed aktivn\u00ed roboti",
"24h non-KYC bitcoin premium": "24h no-KYC bitcoin p\u0159ir\u00e1\u017eka",
"Maker fee": "Poplatek tv\u016frce",
"Taker fee": "Poplatek p\u0159\u00edjemce",
"Number of public BUY orders": "Mno\u017estv\u00ed ve\u0159ejn\u00fdch n\u00e1kupn\u00edch nab\u00eddek",
"Number of public SELL orders": "Mno\u017estv\u00ed ve\u0159ejn\u00fdch prodejn\u00edch nab\u00eddek",
"Your last order #{{orderID}}": "Tv\u00e1 posledn\u00ed nab\u00eddka #{{orderID}}",
"Inactive order": "Neaktivn\u00ed nab\u00eddka",
"You do not have previous orders": "Nem\u00e1\u0161 p\u0159edchoz\u00ed objedn\u00e1vky",
"Join RoboSats' Subreddit": "P\u0159idej se k Subredditu RoboSats",
"RoboSats in Reddit": "RoboSats na Redditu",
"Current onchain payout fee": "Současný poplatek za vyplacení na onchain ",
"Current onchain payout fee": "Sou\u010dasn\u00fd poplatek za vyplacen\u00ed na onchain ",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Shrnutí nabídky",
"Contract": "Průvodce obchodem",
"Active": "Aktivní",
"Seen recently": "Viděn nedávno",
"Inactive": "Neaktivní",
"(Seller)": "(Prodavající)",
"(Buyer)": "(Kupující)",
"Order maker": "Tvůrce nabídky",
"Order taker": "Příjemce nabídky",
"Order Details": "Detaily nabídky",
"Order status": "Stav nabídky",
"Waiting for maker bond": "Čeká se na kauci tvůrce",
"Public": "Veřejné",
"Waiting for taker bond": "Čeká se na kauci příjemce",
"Cancelled": "Zrušeno",
"Expired": "Vypršela platnost",
"Waiting for trade collateral and buyer invoice": "Čeká se na kolaterál a kupujícího invoice",
"Waiting only for seller trade collateral": "Čeká se na kolaterál od prodavajícího ",
"Waiting only for buyer invoice": "Čeká se na kupujícího invoice",
"Sending fiat - In chatroom": "Odeslání fiat - V chatu",
"Fiat sent - In chatroom": "Fiat odeslán - V chatu",
"Order Box": "Shrnut\u00ed nab\u00eddky",
"Contract": "Pr\u016fvodce obchodem",
"Active": "Aktivn\u00ed",
"Seen recently": "Vid\u011bn ned\u00e1vno",
"Inactive": "Neaktivn\u00ed",
"(Seller)": "(Prodavaj\u00edc\u00ed)",
"(Buyer)": "(Kupuj\u00edc\u00ed)",
"Order maker": "Tv\u016frce nab\u00eddky",
"Order taker": "P\u0159\u00edjemce nab\u00eddky",
"Order Details": "Detaily nab\u00eddky",
"Order status": "Stav nab\u00eddky",
"Waiting for maker bond": "\u010cek\u00e1 se na kauci tv\u016frce",
"Public": "Ve\u0159ejn\u00e9",
"Waiting for taker bond": "\u010cek\u00e1 se na kauci p\u0159\u00edjemce",
"Cancelled": "Zru\u0161eno",
"Expired": "Vypr\u0161ela platnost",
"Waiting for trade collateral and buyer invoice": "\u010cek\u00e1 se na kolater\u00e1l a kupuj\u00edc\u00edho invoice",
"Waiting only for seller trade collateral": "\u010cek\u00e1 se na kolater\u00e1l od prodavaj\u00edc\u00edho ",
"Waiting only for buyer invoice": "\u010cek\u00e1 se na kupuj\u00edc\u00edho invoice",
"Sending fiat - In chatroom": "Odesl\u00e1n\u00ed fiat - V chatu",
"Fiat sent - In chatroom": "Fiat odesl\u00e1n - V chatu",
"In dispute": "Ve sporu",
"Collaboratively cancelled": "Oboustraně zrušeno",
"Sending satoshis to buyer": "Odeslat satoshi kupujícímu",
"Sucessful trade": "Úspěšný obchod",
"Failed lightning network routing": "Neúspěšný lightning network routing",
"Wait for dispute resolution": "Vyčkej na vyřešení sporu",
"Maker lost dispute": "Tvůrce prohrál spor",
"Taker lost dispute": "Příjemce prohrál spor",
"Amount range": "Rozmezí částky",
"Collaboratively cancelled": "Oboustran\u011b zru\u0161eno",
"Sending satoshis to buyer": "Odeslat satoshi kupuj\u00edc\u00edmu",
"Sucessful trade": "\u00dasp\u011b\u0161n\u00fd obchod",
"Failed lightning network routing": "Ne\u00fasp\u011b\u0161n\u00fd lightning network routing",
"Wait for dispute resolution": "Vy\u010dkej na vy\u0159e\u0161en\u00ed sporu",
"Maker lost dispute": "Tv\u016frce prohr\u00e1l spor",
"Taker lost dispute": "P\u0159\u00edjemce prohr\u00e1l spor",
"Amount range": "Rozmez\u00ed \u010d\u00e1stky",
"Swap destination": "Swap adresa",
"Accepted payment methods": "Akceptované platební metody",
"Others": "Ostatní",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Přirážka: {{premium}}%",
"Price and Premium": "Cena a přirážka",
"Amount of Satoshis": "Částka Satoshi",
"Premium over market price": "Přirážka oproti tržní ceně",
"Order ID": "Číslo nabídky",
"Deposit timer": "Časovač vkladu",
"Expires in": "Vyprší za",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} žáda o oboustrané zrušení obchodu",
"You asked for a collaborative cancellation": "Žádaš o oboustarné zrušení obchodu",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Invoice vypršela platnost. Zveřejnění objednávky jsi nepotvrdil včas. Proveď novou objednávku.",
"This order has been cancelled by the maker": "Tato nabídka byla zrušena tvůrcem",
"Invoice expired. You did not confirm taking the order in time.": "Invoice vypršela platnost. Přijmutí objednávky jsi nepotvrdil včas.",
"Penalty lifted, good to go!": "Pokuta zrušena, lze pokračovat!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Nabídku nemůžeš zatím příjmout! Počkej {{timeMin}}m {{timeSec}}s",
"Too low": "Nízko",
"Accepted payment methods": "Akceptovan\u00e9 platebn\u00ed metody",
"Others": "Ostatn\u00ed",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - P\u0159ir\u00e1\u017eka: {{premium}}%",
"Price and Premium": "Cena a p\u0159ir\u00e1\u017eka",
"Amount of Satoshis": "\u010c\u00e1stka Satoshi",
"Premium over market price": "P\u0159ir\u00e1\u017eka oproti tr\u017en\u00ed cen\u011b",
"Order ID": "\u010c\u00edslo nab\u00eddky",
"Deposit timer": "\u010casova\u010d vkladu",
"Expires in": "Vypr\u0161\u00ed za",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} \u017e\u00e1da o oboustran\u00e9 zru\u0161en\u00ed obchodu",
"You asked for a collaborative cancellation": "\u017d\u00e1da\u0161 o oboustarn\u00e9 zru\u0161en\u00ed obchodu",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Invoice vypr\u0161ela platnost. Zve\u0159ejn\u011bn\u00ed objedn\u00e1vky jsi nepotvrdil v\u010das. Prove\u010f novou objedn\u00e1vku.",
"This order has been cancelled by the maker": "Tato nab\u00eddka byla zru\u0161ena tv\u016frcem",
"Invoice expired. You did not confirm taking the order in time.": "Invoice vypr\u0161ela platnost. P\u0159ijmut\u00ed objedn\u00e1vky jsi nepotvrdil v\u010das.",
"Penalty lifted, good to go!": "Pokuta zru\u0161ena, lze pokra\u010dovat!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Nab\u00eddku nem\u016f\u017ee\u0161 zat\u00edm p\u0159\u00edjmout! Po\u010dkej {{timeMin}}m {{timeSec}}s",
"Too low": "N\u00edzko",
"Too high": "Vysoko",
"Enter amount of fiat to exchange for bitcoin": "Zadej částku fiat, kterou chceš vyměnit za bitcoin. ",
"Amount {{currencyCode}}": "Částka {{currencyCode}}",
"You must specify an amount first": "Nejprve je třeba zadat částku",
"Take Order": "Příjmout nabídku",
"Wait until you can take an order": "Počkej, až budeš moci přijmout nabídku",
"Cancel the order?": "Zrušit objendávku?",
"If the order is cancelled now you will lose your bond.": "Pokud bude objednávka nyní zrušena, tvoje kauce propadne.",
"Confirm Cancel": "Potvrdit zrušení",
"The maker is away": "Tvůrce není přítomen",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Příjmutím této nabídky riskuješ ztrátu času. Pokud protistrana nedorazí včas, získáš kompezaci v podobě 50% tvůrcovi kauce.",
"Collaborative cancel the order?": "Oboustraně zrušit obchod?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Satoshi jsou v úschově. Objednávku lze zrušit pouze v případě, že se na zrušení dohodnou jak tvůrce, tak přijemce.",
"Ask for Cancel": "Požádat o zrušení",
"Cancel": "Zrušit",
"Collaborative Cancel": "Oboustrané zrušení",
"Invalid Order Id": "Neplatné číslo nabídky",
"You must have a robot avatar to see the order details": "K zobrazení podrobností je třeba avatar a robot.",
"This order has been cancelled collaborativelly": "Tato objednávka byla společně zrušena",
"This order is not available": "Tato nabídka není dostupná",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Robotický Satoshi ti nerozumí. Prosím vyplň Github Bug Issue https://github.com/reckless-satoshi/robosats/issues",
"Enter amount of fiat to exchange for bitcoin": "Zadej \u010d\u00e1stku fiat, kterou chce\u0161 vym\u011bnit za bitcoin. ",
"Amount {{currencyCode}}": "\u010c\u00e1stka {{currencyCode}}",
"You must specify an amount first": "Nejprve je t\u0159eba zadat \u010d\u00e1stku",
"Take Order": "P\u0159\u00edjmout nab\u00eddku",
"Wait until you can take an order": "Po\u010dkej, a\u017e bude\u0161 moci p\u0159ijmout nab\u00eddku",
"Cancel the order?": "Zru\u0161it objend\u00e1vku?",
"If the order is cancelled now you will lose your bond.": "Pokud bude objedn\u00e1vka nyn\u00ed zru\u0161ena, tvoje kauce propadne.",
"Confirm Cancel": "Potvrdit zru\u0161en\u00ed",
"The maker is away": "Tv\u016frce nen\u00ed p\u0159\u00edtomen",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "P\u0159\u00edjmut\u00edm t\u00e9to nab\u00eddky riskuje\u0161 ztr\u00e1tu \u010dasu. Pokud protistrana nedoraz\u00ed v\u010das, z\u00edsk\u00e1\u0161 kompezaci v podob\u011b 50% tv\u016frcovi kauce.",
"Collaborative cancel the order?": "Oboustran\u011b zru\u0161it obchod?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Satoshi jsou v \u00faschov\u011b. Objedn\u00e1vku lze zru\u0161it pouze v p\u0159\u00edpad\u011b, \u017ee se na zru\u0161en\u00ed dohodnou jak tv\u016frce, tak p\u0159ijemce.",
"Ask for Cancel": "Po\u017e\u00e1dat o zru\u0161en\u00ed",
"Cancel": "Zru\u0161it",
"Collaborative Cancel": "Oboustran\u00e9 zru\u0161en\u00ed",
"Invalid Order Id": "Neplatn\u00e9 \u010d\u00edslo nab\u00eddky",
"You must have a robot avatar to see the order details": "K zobrazen\u00ed podrobnost\u00ed je t\u0159eba avatar a robot.",
"This order has been cancelled collaborativelly": "Tato objedn\u00e1vka byla spole\u010dn\u011b zru\u0161ena",
"This order is not available": "Tato nab\u00eddka nen\u00ed dostupn\u00e1",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Robotick\u00fd Satoshi ti nerozum\u00ed. Pros\u00edm vypl\u0148 Github Bug Issue https://github.com/reckless-satoshi/robosats/issues",
"CHAT BOX - Chat.js": "Chat Box",
"You": "Ty",
"Peer": "Protistrana",
"connected": "připojen",
"connected": "p\u0159ipojen",
"disconnected": "odpojen",
"Type a message": "Napiš zprávu",
"Connecting...": "Připojování...",
"Type a message": "Napi\u0161 zpr\u00e1vu",
"Connecting...": "P\u0159ipojov\u00e1n\u00ed...",
"Send": "Odeslat",
"Verify your privacy": "Ověř svou ochranu soukromí",
"Verify your privacy": "Ov\u011b\u0159 svou ochranu soukrom\u00ed",
"Audit PGP": "Audit PGP",
"Save full log as a JSON file (messages and credentials)": "Uložit celý log jako soubor JSON (zprávy a údaje))",
"Save full log as a JSON file (messages and credentials)": "Ulo\u017eit cel\u00fd log jako soubor JSON (zpr\u00e1vy a \u00fadaje))",
"Export": "Exportovat",
"Don't trust, verify": "Nedůvěřuj, ověřuj",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Vaše komunikace je šifrována end-to-end pomocí protokolu OpenPGP. Soukromí tohoto chatu můžeš ověřit pomocí libovolného nástroje založeného na standardu OpenPGP.",
"Learn how to verify": "Naučit se, jak ověřovat",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Tvůj veřejný PGP klíč. Tvoje protistrana ho používá k šifrování zpráv, které můžeš číst pouze ty.",
"Your public key": "Tvůj veřejný klíč",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Veřejný PGP klíč protistrany. Používáš jej k šifrování zpráv, které může číst pouze on, a k ověření, zda protistrana podepsala příchozí zprávy.",
"Peer public key": "Veřejný klíč protistrany",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Tvůj zašifrovaný soukromí klíč. Používáš jej k rozšifrování příchozích zpráv, určených pro tebe, a k zašifrování odeslaných zpráv.",
"Your encrypted private key": "Tvůj zašifrovaný soukromý klíč",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "Tvůj robot token, který znáš pouze ty, slouží jako passphrase též k rozšifrování tvého soukromého klíče, proto ho nikde nesdílej.",
"Your private key passphrase (keep secure!)": "Tvůj soukromí klíč a passphrase (drž v bezpečí!)",
"Save credentials as a JSON file": "Uložit údaje jako JSON sobour",
"Keys": "Klíče",
"Save messages as a JSON file": "Uložit zprávy jako JSON soubor",
"Messages": "Zprávy",
"Verified signature by {{nickname}}": "Ověřený podpis {{nickname}}",
"Cannot verify signature of {{nickname}}": "Nelze ověřit podpis {{nickname}}",
"Don't trust, verify": "Ned\u016fv\u011b\u0159uj, ov\u011b\u0159uj",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Va\u0161e komunikace je \u0161ifrov\u00e1na end-to-end pomoc\u00ed protokolu OpenPGP. Soukrom\u00ed tohoto chatu m\u016f\u017ee\u0161 ov\u011b\u0159it pomoc\u00ed libovoln\u00e9ho n\u00e1stroje zalo\u017een\u00e9ho na standardu OpenPGP.",
"Learn how to verify": "Nau\u010dit se, jak ov\u011b\u0159ovat",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Tv\u016fj ve\u0159ejn\u00fd PGP kl\u00ed\u010d. Tvoje protistrana ho pou\u017e\u00edv\u00e1 k \u0161ifrov\u00e1n\u00ed zpr\u00e1v, kter\u00e9 m\u016f\u017ee\u0161 \u010d\u00edst pouze ty.",
"Your public key": "Tv\u016fj ve\u0159ejn\u00fd kl\u00ed\u010d",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Ve\u0159ejn\u00fd PGP kl\u00ed\u010d protistrany. Pou\u017e\u00edv\u00e1\u0161 jej k \u0161ifrov\u00e1n\u00ed zpr\u00e1v, kter\u00e9 m\u016f\u017ee \u010d\u00edst pouze on, a k ov\u011b\u0159en\u00ed, zda protistrana podepsala p\u0159\u00edchoz\u00ed zpr\u00e1vy.",
"Peer public key": "Ve\u0159ejn\u00fd kl\u00ed\u010d protistrany",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Tv\u016fj za\u0161ifrovan\u00fd soukrom\u00ed kl\u00ed\u010d. Pou\u017e\u00edv\u00e1\u0161 jej k roz\u0161ifrov\u00e1n\u00ed p\u0159\u00edchoz\u00edch zpr\u00e1v, ur\u010den\u00fdch pro tebe, a k za\u0161ifrov\u00e1n\u00ed odeslan\u00fdch zpr\u00e1v.",
"Your encrypted private key": "Tv\u016fj za\u0161ifrovan\u00fd soukrom\u00fd kl\u00ed\u010d",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "Tv\u016fj robot token, kter\u00fd zn\u00e1\u0161 pouze ty, slou\u017e\u00ed jako passphrase t\u00e9\u017e k roz\u0161ifrov\u00e1n\u00ed tv\u00e9ho soukrom\u00e9ho kl\u00ed\u010de, proto ho nikde nesd\u00edlej.",
"Your private key passphrase (keep secure!)": "Tv\u016fj soukrom\u00ed kl\u00ed\u010d a passphrase (dr\u017e v bezpe\u010d\u00ed!)",
"Save credentials as a JSON file": "Ulo\u017eit \u00fadaje jako JSON sobour",
"Keys": "Kl\u00ed\u010de",
"Save messages as a JSON file": "Ulo\u017eit zpr\u00e1vy jako JSON soubor",
"Messages": "Zpr\u00e1vy",
"Verified signature by {{nickname}}": "Ov\u011b\u0159en\u00fd podpis {{nickname}}",
"Cannot verify signature of {{nickname}}": "Nelze ov\u011b\u0159it podpis {{nickname}}",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Průvodce obchodem",
"Robots show commitment to their peers": "Roboti dávají najevo oddanost svým společníkum",
"Lock {{amountSats}} Sats to PUBLISH order": "Uzamknout {{amountSats}} Satů a ZVEŘEJNIT nabídku",
"Lock {{amountSats}} Sats to TAKE order": "Uzamknout {{amountSats}} Satů a PŘIJMOUT nabídku",
"Lock {{amountSats}} Sats as collateral": "Uzamknout {{amountSats}} Satů jako kolaterál",
"Copy to clipboard": "Zkopírovat do schránky",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Jedná se o hodl invoice, která ti zamrzne v peněžence. Bude vypořádán pouze v případě zrušení nebo prohry sporu.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Jedná se o hodl invoice, která ti zamrzne v peněžence. Bude vypořadána ke kupujícímu jakmile potvrdíš příjem {{currencyCode}}.",
"Your maker bond is locked": "Tvoje kauce tvůrce je uzamčena",
"Your taker bond is locked": "Tvoje kauce příjemce je uzamčena",
"Your maker bond was settled": "Tvoje kauce tvůrce byla vypořadána",
"Your taker bond was settled": "Tvoje kauce příjemce byla vypořadána",
"Your maker bond was unlocked": "Tvoje kauce tvůrce byla odemčena",
"Your taker bond was unlocked": "Tvoje kauce příjemce byla odemčena",
"Your order is public": "Tvoje nabídka je veřejná",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Buď trpělivý, zatímco roboti kontrolují nabídky. Tato nabídka jednou zazvoní 🔊 pokud robot přijme tvoji nabídku, potom budeš mít {{deposit_timer_hours}}h {{deposit_timer_minutes}}m k odpovědi. Pokud neodpovíš, riskuješ ztrátu kauce.",
"If the order expires untaken, your bond will return to you (no action needed).": "Pokud nabídka vyprší nepříjmuta, tak kauce se ti vrátí (není potřeba žádné akce).",
"Contract Box": "Pr\u016fvodce obchodem",
"Robots show commitment to their peers": "Roboti d\u00e1vaj\u00ed najevo oddanost sv\u00fdm spole\u010dn\u00edkum",
"Lock {{amountSats}} Sats to PUBLISH order": "Uzamknout {{amountSats}} Sat\u016f a ZVE\u0158EJNIT nab\u00eddku",
"Lock {{amountSats}} Sats to TAKE order": "Uzamknout {{amountSats}} Sat\u016f a P\u0158IJMOUT nab\u00eddku",
"Lock {{amountSats}} Sats as collateral": "Uzamknout {{amountSats}} Sat\u016f jako kolater\u00e1l",
"Copy to clipboard": "Zkop\u00edrovat do schr\u00e1nky",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Jedn\u00e1 se o hodl invoice, kter\u00e1 ti zamrzne v pen\u011b\u017eence. Bude vypo\u0159\u00e1d\u00e1n pouze v p\u0159\u00edpad\u011b zru\u0161en\u00ed nebo prohry sporu.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Jedn\u00e1 se o hodl invoice, kter\u00e1 ti zamrzne v pen\u011b\u017eence. Bude vypo\u0159ad\u00e1na ke kupuj\u00edc\u00edmu jakmile potvrd\u00ed\u0161 p\u0159\u00edjem {{currencyCode}}.",
"Your maker bond is locked": "Tvoje kauce tv\u016frce je uzam\u010dena",
"Your taker bond is locked": "Tvoje kauce p\u0159\u00edjemce je uzam\u010dena",
"Your maker bond was settled": "Tvoje kauce tv\u016frce byla vypo\u0159ad\u00e1na",
"Your taker bond was settled": "Tvoje kauce p\u0159\u00edjemce byla vypo\u0159ad\u00e1na",
"Your maker bond was unlocked": "Tvoje kauce tv\u016frce byla odem\u010dena",
"Your taker bond was unlocked": "Tvoje kauce p\u0159\u00edjemce byla odem\u010dena",
"Your order is public": "Tvoje nab\u00eddka je ve\u0159ejn\u00e1",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Bu\u010f trp\u011bliv\u00fd, zat\u00edmco roboti kontroluj\u00ed nab\u00eddky. Tato nab\u00eddka jednou zazvon\u00ed \ud83d\udd0a pokud robot p\u0159ijme tvoji nab\u00eddku, potom bude\u0161 m\u00edt {{deposit_timer_hours}}h {{deposit_timer_minutes}}m k odpov\u011bdi. Pokud neodpov\u00ed\u0161, riskuje\u0161 ztr\u00e1tu kauce.",
"If the order expires untaken, your bond will return to you (no action needed).": "Pokud nab\u00eddka vypr\u0161\u00ed nep\u0159\u00edjmuta, tak kauce se ti vr\u00e1t\u00ed (nen\u00ed pot\u0159eba \u017e\u00e1dn\u00e9 akce).",
"Enable Telegram Notifications": "Povolit Telegram notifikace",
"Enable TG Notifications": "Povolit TG notifikace",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Budeš přesměrován do chatu s RoboSats telegram botem. Jednoduše otevři chat a zmáčkni Start. Měj na paměti, že povolením telegram notifikací máš nížší úroveň anonymity.",
"Go back": "Jít zpět",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Bude\u0161 p\u0159esm\u011brov\u00e1n do chatu s RoboSats telegram botem. Jednodu\u0161e otev\u0159i chat a zm\u00e1\u010dkni Start. M\u011bj na pam\u011bti, \u017ee povolen\u00edm telegram notifikac\u00ed m\u00e1\u0161 n\u00ed\u017e\u0161\u00ed \u00farove\u0148 anonymity.",
"Go back": "J\u00edt zp\u011bt",
"Enable": "Povolit",
"Telegram enabled": "Telegram povolen",
"Public orders for {{currencyCode}}": "Veřejné nabídky pro {{currencyCode}}",
"Premium rank": "Úroveň přirážky",
"Among public {{currencyCode}} orders (higher is cheaper)": "Mezi veřejnými {{currencyCode}} nabídkami (vyšší je levnější)",
"A taker has been found!": "Byl nalezen příjemce!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Vyčkej, až příjemce uzamkne kauci. Pokud příjemce neuzamkne kauci včas, nabídka se znovu zveřejní.",
"Public orders for {{currencyCode}}": "Ve\u0159ejn\u00e9 nab\u00eddky pro {{currencyCode}}",
"Premium rank": "\u00darove\u0148 p\u0159ir\u00e1\u017eky",
"Among public {{currencyCode}} orders (higher is cheaper)": "Mezi ve\u0159ejn\u00fdmi {{currencyCode}} nab\u00eddkami (vy\u0161\u0161\u00ed je levn\u011bj\u0161\u00ed)",
"A taker has been found!": "Byl nalezen p\u0159\u00edjemce!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Vy\u010dkej, a\u017e p\u0159\u00edjemce uzamkne kauci. Pokud p\u0159\u00edjemce neuzamkne kauci v\u010das, nab\u00eddka se znovu zve\u0159ejn\u00ed.",
"Payout Lightning Invoice": "Vyplatit Lightning invoice",
"Your info looks good!": "Tvé údaje vypadají dobře!",
"We are waiting for the seller to lock the trade amount.": "Čekáme, až prodavající uzamkne satoshi .",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Vydrž chvíli. Pokud prodavající neprovede vklad, kauce se ti automaticky vrátí. Kromě toho obdržíš kompenzaci (zkontroluj odměny ve svém profilu).",
"The trade collateral is locked!": "Satoshi jsou uzamknuté!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Čekáme, až kupující vloží lightning invoice. Jakmile tak učiní, budeš moct se s ním moct dohodnout fiat platbě.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Vydrž chvíli. Pokud kupující nespolupracuje, automaticky získáš zpět svojí kauci a předmět obchodu satoshi. Kromě toho obdržíš kompenzaci (zkontroluj odměny ve svém profilu).",
"Confirm {{amount}} {{currencyCode}} sent": "Potvrdit odeslání {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Potvrdit příjmutí {{amount}} {{currencyCode}}",
"Open Dispute": "Otevřít spor",
"The order has expired": "Nabídka vypršela",
"Chat with the buyer": "Chat s kupujícím",
"Chat with the seller": "Chat s prodavajícím",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Pozdrav! Buď vstřícný a stručný. Dej mu vědět, jak ti poslat {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "Kupující odeslal fiat. Po obdržení fiatu klikni na 'Potvrdit příjmutí'.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Pozdrav! Požádej o platební údaje a klikni na 'Potvrdit odeslání' jakmile bude platba odeslaná.",
"Wait for the seller to confirm he has received the payment.": "Počkej na potvzení, že prodavající obdržel platbu.",
"Confirm you received {{amount}} {{currencyCode}}?": "Potvrdit obdržení {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Potvrzením, že jsi obdržel fiat se dokončí obchod. Satoshis v úschově se odešlou kupujícímu. Potvrď pouze pokud jsi obdržel {{amount}} {{currencyCode}} na svůj účet. V případě obdržení {{currencyCode}} a nepotvrzení riskuješ ztrátu kauce.",
"Your info looks good!": "Tv\u00e9 \u00fadaje vypadaj\u00ed dob\u0159e!",
"We are waiting for the seller to lock the trade amount.": "\u010cek\u00e1me, a\u017e prodavaj\u00edc\u00ed uzamkne satoshi .",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Vydr\u017e chv\u00edli. Pokud prodavaj\u00edc\u00ed neprovede vklad, kauce se ti automaticky vr\u00e1t\u00ed. Krom\u011b toho obdr\u017e\u00ed\u0161 kompenzaci (zkontroluj odm\u011bny ve sv\u00e9m profilu).",
"The trade collateral is locked!": "Satoshi jsou uzamknut\u00e9!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "\u010cek\u00e1me, a\u017e kupuj\u00edc\u00ed vlo\u017e\u00ed lightning invoice. Jakmile tak u\u010din\u00ed, bude\u0161 moct se s n\u00edm moct dohodnout fiat platb\u011b.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Vydr\u017e chv\u00edli. Pokud kupuj\u00edc\u00ed nespolupracuje, automaticky z\u00edsk\u00e1\u0161 zp\u011bt svoj\u00ed kauci a p\u0159edm\u011bt obchodu satoshi. Krom\u011b toho obdr\u017e\u00ed\u0161 kompenzaci (zkontroluj odm\u011bny ve sv\u00e9m profilu).",
"Confirm {{amount}} {{currencyCode}} sent": "Potvrdit odesl\u00e1n\u00ed {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Potvrdit p\u0159\u00edjmut\u00ed {{amount}} {{currencyCode}}",
"Open Dispute": "Otev\u0159\u00edt spor",
"The order has expired": "Nab\u00eddka vypr\u0161ela",
"Chat with the buyer": "Chat s kupuj\u00edc\u00edm",
"Chat with the seller": "Chat s prodavaj\u00edc\u00edm",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Pozdrav! Bu\u010f vst\u0159\u00edcn\u00fd a stru\u010dn\u00fd. Dej mu v\u011bd\u011bt, jak ti poslat {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "Kupuj\u00edc\u00ed odeslal fiat. Po obdr\u017een\u00ed fiatu klikni na 'Potvrdit p\u0159\u00edjmut\u00ed'.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Pozdrav! Po\u017e\u00e1dej o platebn\u00ed \u00fadaje a klikni na 'Potvrdit odesl\u00e1n\u00ed' jakmile bude platba odeslan\u00e1.",
"Wait for the seller to confirm he has received the payment.": "Po\u010dkej na potvzen\u00ed, \u017ee prodavaj\u00edc\u00ed obdr\u017eel platbu.",
"Confirm you received {{amount}} {{currencyCode}}?": "Potvrdit obdr\u017een\u00ed {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Potvrzen\u00edm, \u017ee jsi obdr\u017eel fiat se dokon\u010d\u00ed obchod. Satoshis v \u00faschov\u011b se ode\u0161lou kupuj\u00edc\u00edmu. Potvr\u010f pouze pokud jsi obdr\u017eel {{amount}} {{currencyCode}} na sv\u016fj \u00fa\u010det. V p\u0159\u00edpad\u011b obdr\u017een\u00ed {{currencyCode}} a nepotvrzen\u00ed riskuje\u0161 ztr\u00e1tu kauce.",
"Confirm": "Potvrdit",
"Trade finished!": "Obchod dokončen!",
"rate_robosats": "Co si myslíš o <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Děkujeme! RoboSats tě má rád ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats bude lepší s větší likviditou a uživateli. Pověz svým přátelům o Robosats!",
"Thank you for using Robosats!": "Děkujeme, že používáš Robosats!",
"let_us_know_hot_to_improve": "Dej nám vědět jak vylepšit platformu (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Začít znovu",
"Attempting Lightning Payment": "Pokoušíme se o Lightning platbu",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats se snaží zaplatit tvůj lightning invoice. Nezapomeň, že lightning nody musí být online, aby mohl přijímat platby.",
"Retrying!": "Opakování pokusu!",
"Trade finished!": "Obchod dokon\u010den!",
"rate_robosats": "Co si mysl\u00ed\u0161 o <1>RoboSats</1>?",
"Thank you! RoboSats loves you too \u2764\ufe0f": "D\u011bkujeme! RoboSats t\u011b m\u00e1 r\u00e1d \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats bude lep\u0161\u00ed s v\u011bt\u0161\u00ed likviditou a u\u017eivateli. Pov\u011bz sv\u00fdm p\u0159\u00e1tel\u016fm o Robosats!",
"Thank you for using Robosats!": "D\u011bkujeme, \u017ee pou\u017e\u00edv\u00e1\u0161 Robosats!",
"let_us_know_hot_to_improve": "Dej n\u00e1m v\u011bd\u011bt jak vylep\u0161it platformu (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Za\u010d\u00edt znovu",
"Attempting Lightning Payment": "Pokou\u0161\u00edme se o Lightning platbu",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats se sna\u017e\u00ed zaplatit tv\u016fj lightning invoice. Nezapome\u0148, \u017ee lightning nody mus\u00ed b\u00fdt online, aby mohl p\u0159ij\u00edmat platby.",
"Retrying!": "Opakov\u00e1n\u00ed pokusu!",
"Lightning Routing Failed": "Lightning Routing selhalo",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "Tvůj invoice vypršel nebo selhali pokusy o 3 platby. Nahraj nový invoice.",
"Check the list of compatible wallets": "Zkotrolovat seznam kompatibilních peněženek",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats se pokusí zaplatit invoice třikrát s minutivými pauzami. V případě neúspěchu bude třeba nahrát nový invoice. Zkontroluj, zda máš dostatek inbound likvidity. Nezapomeň, že lightning nody musí být online, aby mohl přijímat platby.",
"Next attempt in": "Další pokus za",
"Do you want to open a dispute?": "Chceš otevřít spor?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Personál RoboSats prověří předložená vyjádření a důkazy. Musíš vytvořit ucelený důkazní materiál, protože personál nemůže číst chat. Nejlépe spolu s výpovědí uvést jednorázový kontakt. Satoshi v úschově budou zaslány vítězi sporu, zatímco poražený ve sporu přijde o kauci.",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "Tv\u016fj invoice vypr\u0161el nebo selhali pokusy o 3 platby. Nahraj nov\u00fd invoice.",
"Check the list of compatible wallets": "Zkotrolovat seznam kompatibiln\u00edch pen\u011b\u017eenek",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats se pokus\u00ed zaplatit invoice t\u0159ikr\u00e1t s minutiv\u00fdmi pauzami. V p\u0159\u00edpad\u011b ne\u00fasp\u011bchu bude t\u0159eba nahr\u00e1t nov\u00fd invoice. Zkontroluj, zda m\u00e1\u0161 dostatek inbound likvidity. Nezapome\u0148, \u017ee lightning nody mus\u00ed b\u00fdt online, aby mohl p\u0159ij\u00edmat platby.",
"Next attempt in": "Dal\u0161\u00ed pokus za",
"Do you want to open a dispute?": "Chce\u0161 otev\u0159\u00edt spor?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Person\u00e1l RoboSats prov\u011b\u0159\u00ed p\u0159edlo\u017een\u00e1 vyj\u00e1d\u0159en\u00ed a d\u016fkazy. Mus\u00ed\u0161 vytvo\u0159it ucelen\u00fd d\u016fkazn\u00ed materi\u00e1l, proto\u017ee person\u00e1l nem\u016f\u017ee \u010d\u00edst chat. Nejl\u00e9pe spolu s v\u00fdpov\u011bd\u00ed uv\u00e9st jednor\u00e1zov\u00fd kontakt. Satoshi v \u00faschov\u011b budou zasl\u00e1ny v\u00edt\u011bzi sporu, zat\u00edmco pora\u017een\u00fd ve sporu p\u0159ijde o kauci.",
"Disagree": "Nesouhlasit",
"Agree and open dispute": "Souhlasit a otevřít spor",
"A dispute has been opened": "Spor byl otevřen",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Prosím, předlož své důkazy. Jasně a stručně popiš, co se stalo a předlož důkazy. MUSÍŠ uvést kontatní údaje: jednorázový email, XMPP nebo telegram přezdívku ke komunikaci s personálem. Spory se řeší podle uvážení skutečných robotů (neboli lidé), buď co nejvíce nápomocný, abys zajistil spravedlivý výsledek. Maximálně 5000 znaků.",
"Submit dispute statement": "Odeslat vyjádření",
"We have received your statement": "Obdrželi jsme tvé vyjádření",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Čekáme na vyjádření protistrany. Pokud si nejsi jist stavem sporu nebo chceš doplnit další informace, kontaktuj robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": " Uložte si prosím informace potřebné k identifikaci tvé nabídky a tvých plateb: číslo nabídky; hash platby kauce nebo úschovy (zkontroluj si lightning peněženku); přesná částka satoshi; a robot přezdívku. V komunikaci emailem(nebo jinak) se představíš jako zúčastněna strana.",
"We have the statements": "Máme prohlášení",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Získali jsme obě prohlášení, počkej na vyřešení sporu personálem. Pokud si nejsi jist stavem sporu nebo chceš doplnit další informace, kontaktuj robosats@protonmail.com. Pokud jsi neposkytl kontaktní údaje nebo nejsi si jist, zda jsi to napsal správně okamžitě nás kontaktuj.",
"You have won the dispute": "Vyhrál jsi spor",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Satoshi z vyřešeného sporů (z úschovy a kauce) si můžeš vybrat z odměn ve svém profilu. Pokud ti personál může s něčím pomoci, neváhej a kontaktuj nás na robosats@protonmail.com (nebo jiný způsob komunikace).",
"You have lost the dispute": "Prohrál jsi spor",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Bohužel jsi prohrál spor. Pokud se domníváš, že se jedná o chybu, můžeš požádat o opětovné otevření sporu na robosats@protonmail.com. Ačkoliv šance znovuotevření je malá.",
"Expired not taken": "Vypršené nepřijmuto",
"Maker bond not locked": "Kauce tvůrce není uzamknuta",
"Escrow not locked": "Není uzamknuta úschova",
"Invoice not submitted": "Není předložen invoice",
"Neither escrow locked or invoice submitted": "Nebyla uzamčena úschova ani předložen invoice",
"Renew Order": "Opakovat nabídku",
"Pause the public order": "Pozastavit zveřejnění nabídky",
"Your order is paused": "Tvá nabídka je pozastavena",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Tvá veřejná nabídka je pozastavena. V tuto chvíli ji nemohou vidět ani přijmout jiní roboti. Pozastavení můžeš kdykoliv zrušit.",
"Unpause Order": "Zrušit pozastavení nabídky",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Riskujuš ztrátu kauce, pokud neuzamkneš satoshi do úschovy. Zbývá {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Robrazit kompatibilní peněženky",
"Failure reason:": "Důvod selhání:",
"Payment isn't failed (yet)": "Platba neselhala (zatím)",
"There are more routes to try, but the payment timeout was exceeded.": "Je možné vyzkoušet další platební trasy, ale časový limit pro platbu byl překročen.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Všechny možné trasy byly vyzkoušeny a trvale selhaly. Nebo k cíli nevedou vůbec žádné trasy.",
"A non-recoverable error has occurred.": "Došlo k neopravitelné chybě.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Platební údaje jsou nesprávné (neznámy hash, špatná částka nebo chybné final CLTV delta).",
"Insufficient unlocked balance in RoboSats' node.": "Nedostatečný odemknutý zůstatek na RoboSats nodu.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "Odeslaný invoice vede skrz drahé trasy, použiváš nekompatibilní peněženku (možná Muun?). Zkontroluj náš seznam kompatibilních peněženek na wallets.robosats.com",
"The invoice provided has no explicit amount": "Odeslaný invoice obsahuje špatnou částku",
"Does not look like a valid lightning invoice": "Poskytnutý lightning invoice nevypadá platně",
"The invoice provided has already expired": "Platnost poskytnutého lightning invoice vypršel",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Nezapomeň EXPORTOVAT log chatu. Personál si může vyžádat exportovaný log chatu ve formátu JSON, aby mohl vyřešit nesrovnalosti. Je tvou odpovědností jej uložit.",
"Does not look like a valid address": "Nevypdá to jako platná adresa",
"This is not a bitcoin mainnet address": "Toto není bitcoin mainnet adresa",
"This is not a bitcoin testnet address": "Toto není bitcoin testnet adresa",
"Submit payout info for {{amountSats}} Sats": "Odeslat údaje na vyplacení {{amountSats}} Satů",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Odeslat platný invoice pro {{amountSats}} Satoshi.",
"Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.": "Předtím než tě necháme odeslat {{amountFiat}} {{currencyCode}}, chceme se nechat ujistit, že jsi schopen příjmout BTC.",
"RoboSats will do a swap and send the Sats to your onchain address.": "RoboSats provede swap Satů na tvou onchain adresu.",
"Agree and open dispute": "Souhlasit a otev\u0159\u00edt spor",
"A dispute has been opened": "Spor byl otev\u0159en",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Pros\u00edm, p\u0159edlo\u017e sv\u00e9 d\u016fkazy. Jasn\u011b a stru\u010dn\u011b popi\u0161, co se stalo a p\u0159edlo\u017e d\u016fkazy. MUS\u00cd\u0160 uv\u00e9st kontatn\u00ed \u00fadaje: jednor\u00e1zov\u00fd email, XMPP nebo telegram p\u0159ezd\u00edvku ke komunikaci s person\u00e1lem. Spory se \u0159e\u0161\u00ed podle uv\u00e1\u017een\u00ed skute\u010dn\u00fdch robot\u016f (neboli lid\u00e9), bu\u010f co nejv\u00edce n\u00e1pomocn\u00fd, abys zajistil spravedliv\u00fd v\u00fdsledek. Maxim\u00e1ln\u011b 5000 znak\u016f.",
"Submit dispute statement": "Odeslat vyj\u00e1d\u0159en\u00ed",
"We have received your statement": "Obdr\u017eeli jsme tv\u00e9 vyj\u00e1d\u0159en\u00ed",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "\u010cek\u00e1me na vyj\u00e1d\u0159en\u00ed protistrany. Pokud si nejsi jist stavem sporu nebo chce\u0161 doplnit dal\u0161\u00ed informace, kontaktuj robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": " Ulo\u017ete si pros\u00edm informace pot\u0159ebn\u00e9 k identifikaci tv\u00e9 nab\u00eddky a tv\u00fdch plateb: \u010d\u00edslo nab\u00eddky; hash platby kauce nebo \u00faschovy (zkontroluj si lightning pen\u011b\u017eenku); p\u0159esn\u00e1 \u010d\u00e1stka satoshi; a robot p\u0159ezd\u00edvku. V komunikaci emailem(nebo jinak) se p\u0159edstav\u00ed\u0161 jako z\u00fa\u010dastn\u011bna strana.",
"We have the statements": "M\u00e1me prohl\u00e1\u0161en\u00ed",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Z\u00edskali jsme ob\u011b prohl\u00e1\u0161en\u00ed, po\u010dkej na vy\u0159e\u0161en\u00ed sporu person\u00e1lem. Pokud si nejsi jist stavem sporu nebo chce\u0161 doplnit dal\u0161\u00ed informace, kontaktuj robosats@protonmail.com. Pokud jsi neposkytl kontaktn\u00ed \u00fadaje nebo nejsi si jist, zda jsi to napsal spr\u00e1vn\u011b okam\u017eit\u011b n\u00e1s kontaktuj.",
"You have won the dispute": "Vyhr\u00e1l jsi spor",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Satoshi z vy\u0159e\u0161en\u00e9ho spor\u016f (z \u00faschovy a kauce) si m\u016f\u017ee\u0161 vybrat z odm\u011bn ve sv\u00e9m profilu. Pokud ti person\u00e1l m\u016f\u017ee s n\u011b\u010d\u00edm pomoci, nev\u00e1hej a kontaktuj n\u00e1s na robosats@protonmail.com (nebo jin\u00fd zp\u016fsob komunikace).",
"You have lost the dispute": "Prohr\u00e1l jsi spor",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Bohu\u017eel jsi prohr\u00e1l spor. Pokud se domn\u00edv\u00e1\u0161, \u017ee se jedn\u00e1 o chybu, m\u016f\u017ee\u0161 po\u017e\u00e1dat o op\u011btovn\u00e9 otev\u0159en\u00ed sporu na robosats@protonmail.com. A\u010dkoliv \u0161ance znovuotev\u0159en\u00ed je mal\u00e1.",
"Expired not taken": "Vypr\u0161en\u00e9 nep\u0159ijmuto",
"Maker bond not locked": "Kauce tv\u016frce nen\u00ed uzamknuta",
"Escrow not locked": "Nen\u00ed uzamknuta \u00faschova",
"Invoice not submitted": "Nen\u00ed p\u0159edlo\u017een invoice",
"Neither escrow locked or invoice submitted": "Nebyla uzam\u010dena \u00faschova ani p\u0159edlo\u017een invoice",
"Renew Order": "Opakovat nab\u00eddku",
"Pause the public order": "Pozastavit zve\u0159ejn\u011bn\u00ed nab\u00eddky",
"Your order is paused": "Tv\u00e1 nab\u00eddka je pozastavena",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Tv\u00e1 ve\u0159ejn\u00e1 nab\u00eddka je pozastavena. V tuto chv\u00edli ji nemohou vid\u011bt ani p\u0159ijmout jin\u00ed roboti. Pozastaven\u00ed m\u016f\u017ee\u0161 kdykoliv zru\u0161it.",
"Unpause Order": "Zru\u0161it pozastaven\u00ed nab\u00eddky",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Riskuju\u0161 ztr\u00e1tu kauce, pokud neuzamkne\u0161 satoshi do \u00faschovy. Zb\u00fdv\u00e1 {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Robrazit kompatibiln\u00ed pen\u011b\u017eenky",
"Failure reason:": "D\u016fvod selh\u00e1n\u00ed:",
"Payment isn't failed (yet)": "Platba neselhala (zat\u00edm)",
"There are more routes to try, but the payment timeout was exceeded.": "Je mo\u017en\u00e9 vyzkou\u0161et dal\u0161\u00ed platebn\u00ed trasy, ale \u010dasov\u00fd limit pro platbu byl p\u0159ekro\u010den.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "V\u0161echny mo\u017en\u00e9 trasy byly vyzkou\u0161eny a trvale selhaly. Nebo k c\u00edli nevedou v\u016fbec \u017e\u00e1dn\u00e9 trasy.",
"A non-recoverable error has occurred.": "Do\u0161lo k neopraviteln\u00e9 chyb\u011b.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Platebn\u00ed \u00fadaje jsou nespr\u00e1vn\u00e9 (nezn\u00e1my hash, \u0161patn\u00e1 \u010d\u00e1stka nebo chybn\u00e9 final CLTV delta).",
"Insufficient unlocked balance in RoboSats' node.": "Nedostate\u010dn\u00fd odemknut\u00fd z\u016fstatek na RoboSats nodu.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "Odeslan\u00fd invoice vede skrz drah\u00e9 trasy, pou\u017eiv\u00e1\u0161 nekompatibiln\u00ed pen\u011b\u017eenku (mo\u017en\u00e1 Muun?). Zkontroluj n\u00e1\u0161 seznam kompatibiln\u00edch pen\u011b\u017eenek na wallets.robosats.com",
"The invoice provided has no explicit amount": "Odeslan\u00fd invoice obsahuje \u0161patnou \u010d\u00e1stku",
"Does not look like a valid lightning invoice": "Poskytnut\u00fd lightning invoice nevypad\u00e1 platn\u011b",
"The invoice provided has already expired": "Platnost poskytnut\u00e9ho lightning invoice vypr\u0161el",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Nezapome\u0148 EXPORTOVAT log chatu. Person\u00e1l si m\u016f\u017ee vy\u017e\u00e1dat exportovan\u00fd log chatu ve form\u00e1tu JSON, aby mohl vy\u0159e\u0161it nesrovnalosti. Je tvou odpov\u011bdnost\u00ed jej ulo\u017eit.",
"Does not look like a valid address": "Nevypd\u00e1 to jako platn\u00e1 adresa",
"This is not a bitcoin mainnet address": "Toto nen\u00ed bitcoin mainnet adresa",
"This is not a bitcoin testnet address": "Toto nen\u00ed bitcoin testnet adresa",
"Submit payout info for {{amountSats}} Sats": "Odeslat \u00fadaje na vyplacen\u00ed {{amountSats}} Sat\u016f",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Odeslat platn\u00fd invoice pro {{amountSats}} Satoshi.",
"Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.": "P\u0159edt\u00edm ne\u017e t\u011b nech\u00e1me odeslat {{amountFiat}} {{currencyCode}}, chceme se nechat ujistit, \u017ee jsi schopen p\u0159\u00edjmout BTC.",
"RoboSats will do a swap and send the Sats to your onchain address.": "RoboSats provede swap Sat\u016f na tvou onchain adresu.",
"Swap fee": "Swap poplatek",
"Mining fee": "Těžební poplatek",
"Mining Fee": "Těžební poplatek",
"Final amount you will receive": "Konečná částka, kterou získáš",
"Mining fee": "T\u011b\u017eebn\u00ed poplatek",
"Mining Fee": "T\u011b\u017eebn\u00ed poplatek",
"Final amount you will receive": "Kone\u010dn\u00e1 \u010d\u00e1stka, kterou z\u00edsk\u00e1\u0161",
"Bitcoin Address": "Bitcoin adresa",
"Your TXID": "Tvé TXID",
"Your TXID": "Tv\u00e9 TXID",
"Lightning": "Lightning",
"Onchain": "Onchain",
"open_dispute": "Chceš-li otevřít spor, musíš počkat <1><1/>",
"Trade Summary": "Shrnutí obchodu",
"Maker": "Tvůrce",
"Taker": "Příjemce",
"User role": "Uživatelská role",
"Sent": "Odesláno",
"Received": "Příjmuto",
"BTC received": "BTC příjmuto",
"BTC sent": "BTC odesláno",
"{{tradeFeeSats}} Sats ({{tradeFeePercent}}%)": "{{tradeFeeSats}} Satů ({{tradeFeePercent}}%)",
"Trade fee": "Obchodní poplatek",
"{{swapFeeSats}} Sats ({{swapFeePercent}}%)": "{{swapFeeSats}} Satů ({{swapFeePercent}}%)",
"open_dispute": "Chce\u0161-li otev\u0159\u00edt spor, mus\u00ed\u0161 po\u010dkat <1><1/>",
"Trade Summary": "Shrnut\u00ed obchodu",
"Maker": "Tv\u016frce",
"Taker": "P\u0159\u00edjemce",
"User role": "U\u017eivatelsk\u00e1 role",
"Sent": "Odesl\u00e1no",
"Received": "P\u0159\u00edjmuto",
"BTC received": "BTC p\u0159\u00edjmuto",
"BTC sent": "BTC odesl\u00e1no",
"{{tradeFeeSats}} Sats ({{tradeFeePercent}}%)": "{{tradeFeeSats}} Sat\u016f ({{tradeFeePercent}}%)",
"Trade fee": "Obchodn\u00ed poplatek",
"{{swapFeeSats}} Sats ({{swapFeePercent}}%)": "{{swapFeeSats}} Sat\u016f ({{swapFeePercent}}%)",
"Onchain swap fee": "Onchain swap poplatek",
"{{miningFeeSats}} Sats": "{{miningFeeSats}} Satů",
"{{bondSats}} Sats ({{bondPercent}}%)": "{{bondSats}} Satů ({{bondPercent}}%)",
"Maker bond": "Kauce tvůrce",
"Taker bond": "Kauce příjemce",
"Unlocked": "Odemčeno",
"{{revenueSats}} Sats": "{{revenueSats}} Satů",
"Platform trade revenue": "Odměna pro platformu",
"{{routingFeeSats}} MiliSats": "{{routingFeeSats}} MiliSatů",
"Platform covered routing fee": "Poplatek za routing hrazený platformou",
"{{miningFeeSats}} Sats": "{{miningFeeSats}} Sat\u016f",
"{{bondSats}} Sats ({{bondPercent}}%)": "{{bondSats}} Sat\u016f ({{bondPercent}}%)",
"Maker bond": "Kauce tv\u016frce",
"Taker bond": "Kauce p\u0159\u00edjemce",
"Unlocked": "Odem\u010deno",
"{{revenueSats}} Sats": "{{revenueSats}} Sat\u016f",
"Platform trade revenue": "Odm\u011bna pro platformu",
"{{routingFeeSats}} MiliSats": "{{routingFeeSats}} MiliSat\u016f",
"Platform covered routing fee": "Poplatek za routing hrazen\u00fd platformou",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Zavřít",
"Close": "Zav\u0159\u00edt",
"What is RoboSats?": "Co je RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Je to BTC/FIAT peer-to-peer burza přes lightning.",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Je to BTC/FIAT peer-to-peer burza p\u0159es lightning.",
"RoboSats is an open source project ": "RoboSats je open source projekt ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Zjednodušuje schodu nabídky s poptávkou a potřebu důvěry. RoboSats se zaměřuje na ochranu soukromí a rychlost.",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Zjednodu\u0161uje schodu nab\u00eddky s popt\u00e1vkou a pot\u0159ebu d\u016fv\u011bry. RoboSats se zam\u011b\u0159uje na ochranu soukrom\u00ed a rychlost.",
"(GitHub).": "(GitHub).",
"How does it work?": "Jak to funguje?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymníAlice01 chce prodat bitcoin. Zveřejní nabídku k prodeji. BystrýBob02 chce koupit bitcoin a proto příjme Alicinu nabídku. Oba musí složit malou kauci přes lightning aby dokázali, že jsou skuteční roboti. Nato Alice přes lightning a hodl invoice vloží do úschovy kolaterál. RoboSats uzamkne invoice, dokud Alice nepotvrdí, že obdržela fiat, pak jsou satoshi uvolněny Bobobi. Užij si své satoshi, Bobe!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "V žádném bodě, AnonymníAlice01 a BystrýBob02 nemuseli svěřit své bitcoiny tomu druhému. V případě sporu by jim ho pomohl vyřešit personál RoboSats.",
"You can find a step-by-step description of the trade pipeline in ": "Popis obchodu krok za krokem najdeš na",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "Anonymn\u00edAlice01 chce prodat bitcoin. Zve\u0159ejn\u00ed nab\u00eddku k prodeji. Bystr\u00fdBob02 chce koupit bitcoin a proto p\u0159\u00edjme Alicinu nab\u00eddku. Oba mus\u00ed slo\u017eit malou kauci p\u0159es lightning aby dok\u00e1zali, \u017ee jsou skute\u010dn\u00ed roboti. Nato Alice p\u0159es lightning a hodl invoice vlo\u017e\u00ed do \u00faschovy kolater\u00e1l. RoboSats uzamkne invoice, dokud Alice nepotvrd\u00ed, \u017ee obdr\u017eela fiat, pak jsou satoshi uvoln\u011bny Bobobi. U\u017eij si sv\u00e9 satoshi, Bobe!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "V \u017e\u00e1dn\u00e9m bod\u011b, Anonymn\u00edAlice01 a Bystr\u00fdBob02 nemuseli sv\u011b\u0159it sv\u00e9 bitcoiny tomu druh\u00e9mu. V p\u0159\u00edpad\u011b sporu by jim ho pomohl vy\u0159e\u0161it person\u00e1l RoboSats.",
"You can find a step-by-step description of the trade pipeline in ": "Popis obchodu krok za krokem najde\u0161 na",
"How it works": "Jak to funguje",
"You can also check the full guide in ": "Taky se můžeš podívat na návod",
"How to use": "Jak se používá",
"What payment methods are accepted?": "Jaké jsou akceptované platební metody?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Všechny, pokud jsou rychlé. Vždy můžeš dopsat svou preferovanou platební metodu, jenom bude muset být protistrana, která jí příjme. Část s odesláním fiatu má limit 24h, potom se automaticky otevře spor. Doporučujeme použití okamžitých platebních metod.",
"Are there trade limits?": "Je nějaký obchodní limit?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Maximální velikost obchodu je {{maxAmount}} Satoshi, aby byl minimalizován neúspěch lightning routing. Denní limit obchodu není, pouze robot může mít vždy pouze jednu nabídku. Ale součastně je možné mít více robotu v různých prohlížečích (nezapoměň na zálohu tokenů robotů).",
"Is RoboSats private?": "Narušuje RoboSats soukromí?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats nikdy nežádá o soukromé údaje jako jméno, bydliště a doklady totožnosti. RoboSats nespravuje žádné prostředky a nezajímá se kdo jsi. RoboSats nesbírá a nespravuje osobní informace. Pro větší anonymitu použij Tor Browser a .onion adresu.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Jediný kdo může o tobě poteciálně cokoliv zjistit je protistrana obchodu. Udrž chat krátký a stručný. Vyhni se všemu co není důležité pro fiat platbu.",
"What are the risks?": "Jaké jsou rizika?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Toto je experimentální aplikace, věci se mohou pokazit. Obchoduj s malými částkami!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Prodejce čelí riziku vratky platby jako v každé peer-to-peer službě. Paypal nebo platební karty nejsou doporučené.",
"What is the trust model?": "Jaký je model důvěry?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Kupující a prodavající si nemusí věřit. Trochu se musí důvěřovat RoboSats, protože propojuje hodl invoice prodavajícího a platba kupujícímu není atomic (zatím). Kromě toho, spory jsou řešeny personálem RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Aby jsem si to shrnuli, potřeba důvěry je minimalizována. Přesto existuje jedna cesta jak RoboSats může utéct se satoshi: neuvolnit je kupujícímu. Dalo by se namítnout, že takový krok není v zájmu RoboSats, kvůli malé platbě si zničit reputaci. Z toho důvodu bys měl obchodovat pouze s malými částkami najednou. Pro větší částky použij onchain aplikace jako Bisq.",
"You can build more trust on RoboSats by inspecting the source code.": "Můžeš si vybudovat větší důvěru v RoboSats zkontrolováním zdrojového kódu.",
"Project source code": "Zdrojový kód projektu",
"What happens if RoboSats suddenly disappears?": "Co se stane pokud RoboSats náhle zmizí?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Tvé saty se ti vrátí. Jakýkoliv hold invoice, který není vypořádán se automaticky vrací i v případě trvalého konce RoboSats. Toto platí pro kauce i úschovu. Přesto je malé okno mezi potvrzením od prodavajícího FIAT OBDRŽEN a momentem kdy kupující obdrží své satoshi, by mohli být navždy ztraceny v případě zmizení RoboSats. Okno je dlouhé 1 vteřinu. Z toho důvodu měj dostatečnou inbound likviditu aby byl vyloučeno routing selhání. Pokud máš jakýkoliv problém obrať se na nás prostřednictvým veřejných RoboSats kanálu.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "V mnoha zemích není rozdíl mezi používáním RoboSats a Ebay nebo Craiglistu. Regulace jsou různé, je tvá povinnost jim vyhovět.",
"Is RoboSats legal in my country?": "Je RoboSats legální v mé zemi?",
"Disclaimer": "Zřeknutí se odpovědnosti",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Tato lightning aplikace se poskytuje jak je. V aktivním vývoji: obchoduj s maximální opatrností. Neexistuje žádná soukromá podpora. Podpora se poskytuje pouze na veřejných kanálech.",
"You can also check the full guide in ": "Taky se m\u016f\u017ee\u0161 pod\u00edvat na n\u00e1vod",
"How to use": "Jak se pou\u017e\u00edv\u00e1",
"What payment methods are accepted?": "Jak\u00e9 jsou akceptovan\u00e9 platebn\u00ed metody?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "V\u0161echny, pokud jsou rychl\u00e9. V\u017edy m\u016f\u017ee\u0161 dopsat svou preferovanou platebn\u00ed metodu, jenom bude muset b\u00fdt protistrana, kter\u00e1 j\u00ed p\u0159\u00edjme. \u010c\u00e1st s odesl\u00e1n\u00edm fiatu m\u00e1 limit 24h, potom se automaticky otev\u0159e spor. Doporu\u010dujeme pou\u017eit\u00ed okam\u017eit\u00fdch platebn\u00edch metod.",
"Are there trade limits?": "Je n\u011bjak\u00fd obchodn\u00ed limit?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Maxim\u00e1ln\u00ed velikost obchodu je {{maxAmount}} Satoshi, aby byl minimalizov\u00e1n ne\u00fasp\u011bch lightning routing. Denn\u00ed limit obchodu nen\u00ed, pouze robot m\u016f\u017ee m\u00edt v\u017edy pouze jednu nab\u00eddku. Ale sou\u010dastn\u011b je mo\u017en\u00e9 m\u00edt v\u00edce robotu v r\u016fzn\u00fdch prohl\u00ed\u017ee\u010d\u00edch (nezapom\u011b\u0148 na z\u00e1lohu token\u016f robot\u016f).",
"Is RoboSats private?": "Naru\u0161uje RoboSats soukrom\u00ed?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats nikdy ne\u017e\u00e1d\u00e1 o soukrom\u00e9 \u00fadaje jako jm\u00e9no, bydli\u0161t\u011b a doklady toto\u017enosti. RoboSats nespravuje \u017e\u00e1dn\u00e9 prost\u0159edky a nezaj\u00edm\u00e1 se kdo jsi. RoboSats nesb\u00edr\u00e1 a nespravuje osobn\u00ed informace. Pro v\u011bt\u0161\u00ed anonymitu pou\u017eij Tor Browser a .onion adresu.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Jedin\u00fd kdo m\u016f\u017ee o tob\u011b poteci\u00e1ln\u011b cokoliv zjistit je protistrana obchodu. Udr\u017e chat kr\u00e1tk\u00fd a stru\u010dn\u00fd. Vyhni se v\u0161emu co nen\u00ed d\u016fle\u017eit\u00e9 pro fiat platbu.",
"What are the risks?": "Jak\u00e9 jsou rizika?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Toto je experiment\u00e1ln\u00ed aplikace, v\u011bci se mohou pokazit. Obchoduj s mal\u00fdmi \u010d\u00e1stkami!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Prodejce \u010del\u00ed riziku vratky platby jako v ka\u017ed\u00e9 peer-to-peer slu\u017eb\u011b. Paypal nebo platebn\u00ed karty nejsou doporu\u010den\u00e9.",
"What is the trust model?": "Jak\u00fd je model d\u016fv\u011bry?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Kupuj\u00edc\u00ed a prodavaj\u00edc\u00ed si nemus\u00ed v\u011b\u0159it. Trochu se mus\u00ed d\u016fv\u011b\u0159ovat RoboSats, proto\u017ee propojuje hodl invoice prodavaj\u00edc\u00edho a platba kupuj\u00edc\u00edmu nen\u00ed atomic (zat\u00edm). Krom\u011b toho, spory jsou \u0159e\u0161eny person\u00e1lem RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Aby jsem si to shrnuli, pot\u0159eba d\u016fv\u011bry je minimalizov\u00e1na. P\u0159esto existuje jedna cesta jak RoboSats m\u016f\u017ee ut\u00e9ct se satoshi: neuvolnit je kupuj\u00edc\u00edmu. Dalo by se nam\u00edtnout, \u017ee takov\u00fd krok nen\u00ed v z\u00e1jmu RoboSats, kv\u016fli mal\u00e9 platb\u011b si zni\u010dit reputaci. Z toho d\u016fvodu bys m\u011bl obchodovat pouze s mal\u00fdmi \u010d\u00e1stkami najednou. Pro v\u011bt\u0161\u00ed \u010d\u00e1stky pou\u017eij onchain aplikace jako Bisq.",
"You can build more trust on RoboSats by inspecting the source code.": "M\u016f\u017ee\u0161 si vybudovat v\u011bt\u0161\u00ed d\u016fv\u011bru v RoboSats zkontrolov\u00e1n\u00edm zdrojov\u00e9ho k\u00f3du.",
"Project source code": "Zdrojov\u00fd k\u00f3d projektu",
"What happens if RoboSats suddenly disappears?": "Co se stane pokud RoboSats n\u00e1hle zmiz\u00ed?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Tv\u00e9 saty se ti vr\u00e1t\u00ed. Jak\u00fdkoliv hold invoice, kter\u00fd nen\u00ed vypo\u0159\u00e1d\u00e1n se automaticky vrac\u00ed i v p\u0159\u00edpad\u011b trval\u00e9ho konce RoboSats. Toto plat\u00ed pro kauce i \u00faschovu. P\u0159esto je mal\u00e9 okno mezi potvrzen\u00edm od prodavaj\u00edc\u00edho FIAT OBDR\u017dEN a momentem kdy kupuj\u00edc\u00ed obdr\u017e\u00ed sv\u00e9 satoshi, by mohli b\u00fdt nav\u017edy ztraceny v p\u0159\u00edpad\u011b zmizen\u00ed RoboSats. Okno je dlouh\u00e9 1 vte\u0159inu. Z toho d\u016fvodu m\u011bj dostate\u010dnou inbound likviditu aby byl vylou\u010deno routing selh\u00e1n\u00ed. Pokud m\u00e1\u0161 jak\u00fdkoliv probl\u00e9m obra\u0165 se na n\u00e1s prost\u0159ednictv\u00fdm ve\u0159ejn\u00fdch RoboSats kan\u00e1lu.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "V mnoha zem\u00edch nen\u00ed rozd\u00edl mezi pou\u017e\u00edv\u00e1n\u00edm RoboSats a Ebay nebo Craiglistu. Regulace jsou r\u016fzn\u00e9, je tv\u00e1 povinnost jim vyhov\u011bt.",
"Is RoboSats legal in my country?": "Je RoboSats leg\u00e1ln\u00ed v m\u00e9 zemi?",
"Disclaimer": "Z\u0159eknut\u00ed se odpov\u011bdnosti",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Tato lightning aplikace se poskytuje jak je. V aktivn\u00edm v\u00fdvoji: obchoduj s maxim\u00e1ln\u00ed opatrnost\u00ed. Neexistuje \u017e\u00e1dn\u00e1 soukrom\u00e1 podpora. Podpora se poskytuje pouze na ve\u0159ejn\u00fdch kan\u00e1lech.",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats tě nikdy nebude kontaktovat. RoboSats tě nikdy nepožáda o tvůj robot token."
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats t\u011b nikdy nebude kontaktovat. RoboSats t\u011b nikdy nepo\u017e\u00e1da o tv\u016fj robot token."
}

View File

@ -1,15 +1,14 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "Du nutzt RoboSats nicht privat",
"desktop_unsafe_alert": "Einige Funktionen sind zu deinem Schutz deaktiviert (z.B. der Chat) und du kannst ohne sie keinen Handel abschließen. Um deine Privatsphäre zu schützen und RoboSats vollständig zu nutzen, verwende <1>Tor Browser</1> und besuche die <3>Onion</3> Seite.",
"phone_unsafe_alert": "Du wirst nicht in der Lage sein, einen Handel abzuschließen. Benutze <1>Tor Browser</1> und besuche die <3>Onion</3> Seite.",
"desktop_unsafe_alert": "Einige Funktionen sind zu deinem Schutz deaktiviert (z.B. der Chat) und du kannst ohne sie keinen Handel abschlie\u00dfen. Um deine Privatsph\u00e4re zu sch\u00fctzen und RoboSats vollst\u00e4ndig zu nutzen, verwende <1>Tor Browser</1> und besuche die <3>Onion</3> Seite.",
"phone_unsafe_alert": "Du wirst nicht in der Lage sein, einen Handel abzuschlie\u00dfen. Benutze <1>Tor Browser</1> und besuche die <3>Onion</3> Seite.",
"Hide": "Ausblenden",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Einfache und private LN P2P-Börse",
"Simple and Private LN P2P Exchange": "Einfache und private LN P2P-B\u00f6rse",
"This is your trading avatar": "Dies ist dein Handelsavatar",
"Store your token safely": "Verwahre deinen Token sicher",
"A robot avatar was found, welcome back!": "Der Roboter-Avatar wurde gefunden, willkommen zurück!",
"A robot avatar was found, welcome back!": "Der Roboter-Avatar wurde gefunden, willkommen zur\u00fcck!",
"Copied!": "Kopiert!",
"Generate a new token": "Generiere einen neuen Token",
"Generate Robot": "Roboter generieren",
@ -21,8 +20,7 @@
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Du bist dabei die Website 'lerne RoboSats kennen' zu besuchen. Hier findest du Tutorials und Dokumentationen, die dir helfen RoboSats zu benutzen und zu verstehen wie es funktioniert.",
"Let's go!": "Los gehts!",
"Save token and PGP credentials to file": "Token und PGP-Anmeldeinformationen in einer Datei speichern",
"MAKER PAGE - MakerPage.js": "Dies ist die Seite, auf der Benutzer neue Angebote erstellen können",
"MAKER PAGE - MakerPage.js": "Dies ist die Seite, auf der Benutzer neue Angebote erstellen k\u00f6nnen",
"Order": "Order",
"Customize": "Anpassen",
"Buy or Sell Bitcoin?": "Bitcoin kaufen oder verkaufen?",
@ -30,14 +28,14 @@
"Sell": "Verkaufen",
"Amount": "Menge",
"Amount of fiat to exchange for bitcoin": "Fiat-Betrag zum Austausch in Bitcoin",
"Invalid": "Ungültig",
"Invalid": "Ung\u00fcltig",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Gib deine bevorzugten Fiat-Zahlungsweisen an. Schnelle Methoden werden dringend empfohlen.",
"Must be shorter than 65 characters": "Muss kürzer als 65 Zeichen sein",
"Must be shorter than 65 characters": "Muss k\u00fcrzer als 65 Zeichen sein",
"Swap Destination(s)": "austausch Ziel(e)",
"Fiat Payment Method(s)": "Fiat Zahlungsmethode(n)",
"You can add new methods": "Du kannst neue Methoden hinzufügen",
"Add New": "Neu hinzufügen",
"Choose a Pricing Method": "Wähle eine Preismethode",
"You can add new methods": "Du kannst neue Methoden hinzuf\u00fcgen",
"Add New": "Neu hinzuf\u00fcgen",
"Choose a Pricing Method": "W\u00e4hle eine Preismethode",
"Relative": "Relativ",
"Let the price move with the market": "Passe den Preis konstant dem Markt an",
"Premium over Market (%)": "Marktpreis Aufschlag (%)",
@ -47,25 +45,25 @@
"Fixed price:": "Fixer Preis:",
"Order current rate:": "Aktueller Order-Kurs:",
"Your order fixed exchange rate": "Dein fixierter Order-Kurs",
"Your order's current exchange rate. Rate will move with the market.": "Der aktuelle Wechselkurs für deine Order. Der Kurs wird sich mit dem Markt verändern.",
"Let the taker chose an amount within the range": "Lasse den Taker einen Betrag innerhalb der Spanne wählen",
"Your order's current exchange rate. Rate will move with the market.": "Der aktuelle Wechselkurs f\u00fcr deine Order. Der Kurs wird sich mit dem Markt ver\u00e4ndern.",
"Let the taker chose an amount within the range": "Lasse den Taker einen Betrag innerhalb der Spanne w\u00e4hlen",
"Enable Amount Range": "Betragsbereich einschalten",
"From": "Von",
"to": "bis",
"Expiry Timers": "Ablauf-Timer",
"Public Duration (HH:mm)": "Angebotslaufzeit (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "Treuhand-Einzahlungs-Timeout (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Lege die Kaution fest, erhöhen für mehr Sicherheit",
"Fidelity Bond Size": "Höhe der Kaution",
"Set the skin-in-the-game, increase for higher safety assurance": "Lege die Kaution fest, erh\u00f6hen f\u00fcr mehr Sicherheit",
"Fidelity Bond Size": "H\u00f6he der Kaution",
"Allow bondless takers": "Erlaube kautionslose Taker",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "BALD VERFÜGBAR - Hohes Risiko! Limit: {{limitSats}}K Sats",
"You must fill the order correctly": "Du musst die Order korrekt ausfüllen",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "BALD VERF\u00dcGBAR - Hohes Risiko! Limit: {{limitSats}}K Sats",
"You must fill the order correctly": "Du musst die Order korrekt ausf\u00fcllen",
"Create Order": "Order erstellen",
"Back": "Zurück",
"Create an order for ": "Erstelle eine Order für ",
"Create a BTC buy order for ": "Erstelle ein BTC-Kaufangebot für ",
"Create a BTC sell order for ": "Erstelle ein BTC-Verkaufsaufangebot für ",
" of {{satoshis}} Satoshis": " für {{satoshis}} Satoshis",
"Back": "Zur\u00fcck",
"Create an order for ": "Erstelle eine Order f\u00fcr ",
"Create a BTC buy order for ": "Erstelle ein BTC-Kaufangebot f\u00fcr ",
"Create a BTC sell order for ": "Erstelle ein BTC-Verkaufsaufangebot f\u00fcr ",
" of {{satoshis}} Satoshis": " f\u00fcr {{satoshis}} Satoshis",
" at market price": " zum Marktpreis",
" at a {{premium}}% premium": " mit einem {{premium}}% Aufschlag",
" at a {{discount}}% discount": " mit einem {{discount}}% Rabatt",
@ -78,7 +76,6 @@
"Done": "Fertig",
"You do not have a robot avatar": "Du hast keinen Roboter-Avatar",
"You need to generate a robot avatar in order to become an order maker": "Du musst einen Roboter-Avatar erstellen, um ein Maker zu werden.",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Nicht definiert",
"Instant SEPA": "Instant SEPA",
@ -86,36 +83,34 @@
"Google Play Gift Code": "Google Play Gutschein",
"Cash F2F": "Cash F2F",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Verkäufer",
"Buyer": "Käufer",
"I want to": "Ich möchte",
"Select Order Type": "Order Typ auswählen",
"Seller": "Verk\u00e4ufer",
"Buyer": "K\u00e4ufer",
"I want to": "Ich m\u00f6chte",
"Select Order Type": "Order Typ ausw\u00e4hlen",
"ANY": "ALLE",
"BUY": "KAUFEN",
"SELL": "VERKAUFEN",
"and receive": "und erhalte",
"and pay with": "und zahlen mit",
"and use": "und verwende",
"Select Payment Currency": "Währung auswählen",
"Select Payment Currency": "W\u00e4hrung ausw\u00e4hlen",
"Robot": "Roboter",
"Is": "Ist",
"Currency": "Währung",
"Currency": "W\u00e4hrung",
"Payment Method": "Zahlungsweise",
"Pay": "Bezahlung",
"Price": "Preis",
"Premium": "Aufschlag",
"You are SELLING BTC for {{currencyCode}}": "Du VERKAUFST BTC für {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "Du KAUFST BTC für {{currencyCode}}",
"You are SELLING BTC for {{currencyCode}}": "Du VERKAUFST BTC f\u00fcr {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "Du KAUFST BTC f\u00fcr {{currencyCode}}",
"You are looking at all": "Alle werden angezeigt",
"No orders found to sell BTC for {{currencyCode}}": "Keine BTC-Verkaufsangebote für {{currencyCode}} gefunden",
"No orders found to buy BTC for {{currencyCode}}": "Keine BTC-Kaufsangebote für {{currencyCode}} gefunden",
"No orders found to sell BTC for {{currencyCode}}": "Keine BTC-Verkaufsangebote f\u00fcr {{currencyCode}} gefunden",
"No orders found to buy BTC for {{currencyCode}}": "Keine BTC-Kaufsangebote f\u00fcr {{currencyCode}} gefunden",
"Filter has no results": "Filter hat keine Ergebnisse",
"Be the first one to create an order": "Sei der Erste, der ein Angebot erstellt",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Statistiken für Nerds",
"Stats For Nerds": "Statistiken f\u00fcr Nerds",
"LND version": "LND-Version",
"Currently running commit hash": "Aktuell laufender Commit-Hash",
"24h contracted volume": "24h Handelsvolumen",
@ -124,7 +119,7 @@
"and": "und",
"... somewhere on Earth!": "... irgendwo auf der Erde!",
"Community": "Community",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support wird nur über öffentliche Kanäle angeboten. Tritt unserer Telegram-Community bei, wenn du Fragen hast oder dich mit anderen coolen Robotern austauschen möchtest. Bitte nutze unsere Github Issues, wenn du einen Fehler findest oder neue Funktionen sehen willst!",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Support wird nur \u00fcber \u00f6ffentliche Kan\u00e4le angeboten. Tritt unserer Telegram-Community bei, wenn du Fragen hast oder dich mit anderen coolen Robotern austauschen m\u00f6chtest. Bitte nutze unsere Github Issues, wenn du einen Fehler findest oder neue Funktionen sehen willst!",
"Follow RoboSats in Twitter": "Folge RoboSats auf Twitter",
"Twitter Official Account": "Offizieller Twitter-Account",
"RoboSats Telegram Communities": "RoboSats Telegram Gruppen",
@ -132,7 +127,7 @@
"Join RoboSats Russian speaking community!": "Tritt der Russischen RoboSats-Gruppe bei!",
"Join RoboSats Chinese speaking community!": "Tritt der Chinesischen RoboSats-Gruppe bei!",
"Join RoboSats English speaking community!": "Tritt der Englischen RoboSats-Gruppe bei!",
"Tell us about a new feature or a bug": "Erzähle uns von neuen Funktionen oder einem Fehler",
"Tell us about a new feature or a bug": "Erz\u00e4hle uns von neuen Funktionen oder einem Fehler",
"Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - Das Roboter-Satoshi Open-Source-Projekt",
"Your Profile": "Dein Profil",
"Your robot": "Dein Roboter",
@ -142,45 +137,44 @@
"Your token (will not remain here)": "Dein Token (wird hier nicht gespeichert)",
"Back it up!": "Speicher ihn ab!",
"Cannot remember": "Kann mich nicht erinnern",
"Rewards and compensations": "Belohnungen und Entschädigungen",
"Rewards and compensations": "Belohnungen und Entsch\u00e4digungen",
"Share to earn 100 Sats per trade": "Teilen, um 100 Sats pro Handel zu verdienen",
"Your referral link": "Dein Empfehlungslink",
"Your earned rewards": "Deine verdienten Belohnungen",
"Claim": "Erhalten",
"Invoice for {{amountSats}} Sats": "Invoice für {{amountSats}} Sats",
"Submit": "Bestätigen",
"There it goes, thank you!🥇": "Das war's, vielen Dank!🥇",
"Invoice for {{amountSats}} Sats": "Invoice f\u00fcr {{amountSats}} Sats",
"Submit": "Best\u00e4tigen",
"There it goes, thank you!\ud83e\udd47": "Das war's, vielen Dank!\ud83e\udd47",
"You have an active order": "Du hast eine aktive Order",
"You can claim satoshis!": "Du kannst Satoshis abholen!",
"Public Buy Orders": "Öffentliche Kaufangebote",
"Public Sell Orders": "Öffentliche Verkaufsangebote",
"Public Buy Orders": "\u00d6ffentliche Kaufangebote",
"Public Sell Orders": "\u00d6ffentliche Verkaufsangebote",
"Today Active Robots": "Heute aktive Roboter",
"24h Avg Premium": "24h Durchschnittsaufschlag",
"Trade Fee": "Handelsgebühr",
"Trade Fee": "Handelsgeb\u00fchr",
"Show community and support links": "Community- und Support-Links anzeigen",
"Show stats for nerds": "Statistiken für Nerds anzeigen",
"Exchange Summary": "Börsen-Zusammenfassung",
"Public buy orders": "Öffentliche Kaufangebote",
"Public sell orders": "Öffentliche Verkaufsangebote",
"Book liquidity": "Marktplatz-Liquidität",
"Show stats for nerds": "Statistiken f\u00fcr Nerds anzeigen",
"Exchange Summary": "B\u00f6rsen-Zusammenfassung",
"Public buy orders": "\u00d6ffentliche Kaufangebote",
"Public sell orders": "\u00d6ffentliche Verkaufsangebote",
"Book liquidity": "Marktplatz-Liquidit\u00e4t",
"Today active robots": "Heute aktive Roboter",
"24h non-KYC bitcoin premium": "24h non-KYC Bitcoin-Aufschlag",
"Maker fee": "Makergebühr",
"Taker fee": "Takergebühr",
"Number of public BUY orders": "Anzahl der öffentlichen KAUF-Angebote",
"Number of public SELL orders": "Anzahl der öffentlichen VERKAUFS-Angebote",
"Maker fee": "Makergeb\u00fchr",
"Taker fee": "Takergeb\u00fchr",
"Number of public BUY orders": "Anzahl der \u00f6ffentlichen KAUF-Angebote",
"Number of public SELL orders": "Anzahl der \u00f6ffentlichen VERKAUFS-Angebote",
"Your last order #{{orderID}}": "Deine letzte Order #{{orderID}}",
"Inactive order": "Inaktive Order",
"You do not have previous orders": "Du hast keine vorherige Order",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Angebots-Box",
"Contract": "Vertrag",
"Active": "Activ",
"Seen recently": "Kürzlich gesehen",
"Seen recently": "K\u00fcrzlich gesehen",
"Inactive": "Inactiv",
"(Seller)": "(Verkäufer)",
"(Buyer)": "(Käufer)",
"(Seller)": "(Verk\u00e4ufer)",
"(Buyer)": "(K\u00e4ufer)",
"Order maker": "Order-Maker",
"Order taker": "Order-Taker",
"Order Details": "Order-Details",
@ -190,14 +184,14 @@
"Waiting for taker bond": "Warten auf Taker-Kaution",
"Cancelled": "Abgebrochen",
"Expired": "Abgelaufen",
"Waiting for trade collateral and buyer invoice": "Warten auf Handels-Kaution und Käufer-Invoice",
"Waiting only for seller trade collateral": "Auf Kaution des Verkäufers warten",
"Waiting only for buyer invoice": "Warten auf Käufer-Invoice",
"Waiting for trade collateral and buyer invoice": "Warten auf Handels-Kaution und K\u00e4ufer-Invoice",
"Waiting only for seller trade collateral": "Auf Kaution des Verk\u00e4ufers warten",
"Waiting only for buyer invoice": "Warten auf K\u00e4ufer-Invoice",
"Sending fiat - In chatroom": "Fiat senden - Im Chatroom",
"Fiat sent - In chatroom": "Fiat bezahlt - Im Chatroom",
"In dispute": "Offener Streitfall",
"Collaboratively cancelled": "Gemeinsam abgebrochen",
"Sending satoshis to buyer": "Sende Satoshis an den Käufer",
"Sending satoshis to buyer": "Sende Satoshis an den K\u00e4ufer",
"Sucessful trade": "Erfolgreicher Handel",
"Failed lightning network routing": "Weiterleitung im Lightning-Netzwerk fehlgeschlagen",
"Wait for dispute resolution": "Warten auf Streitschlichtung",
@ -210,40 +204,39 @@
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Aufschlag: {{premium}}%",
"Price and Premium": "Preis und Aufschlag",
"Amount of Satoshis": "Anzahl Satoshis",
"Premium over market price": "Aufschlag über dem Marktpreis",
"Premium over market price": "Aufschlag \u00fcber dem Marktpreis",
"Order ID": "Order-ID",
"Deposit timer": "Einzahlungstimer",
"Expires in": "Läuft ab in",
"Expires in": "L\u00e4uft ab in",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} bittet um gemeinsamen Abbruch",
"You asked for a collaborative cancellation": "Du hast um einen gemeinsamen Abbruch gebeten",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Die Invoice ist abgelaufen. Du hast die Veröffentlichung der Order nicht rechtzeitig bestätigt. Erstelle eine neue Order.",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Die Invoice ist abgelaufen. Du hast die Ver\u00f6ffentlichung der Order nicht rechtzeitig best\u00e4tigt. Erstelle eine neue Order.",
"This order has been cancelled by the maker": "Diese Order wurde vom Maker storniert",
"Invoice expired. You did not confirm taking the order in time.": "Die Invoice ist abgelaufen. Du hast die Annahme der Order nicht rechtzeitig bestätigt.",
"Invoice expired. You did not confirm taking the order in time.": "Die Invoice ist abgelaufen. Du hast die Annahme der Order nicht rechtzeitig best\u00e4tigt.",
"Penalty lifted, good to go!": "Die Strafe ist aufgehoben, es kann losgehen!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Du kannst noch keine Order annehmen! Warte {{timeMin}}m {{timeSec}}s",
"Too low": "Zu niedrig",
"Too high": "Zu hoch",
"Enter amount of fiat to exchange for bitcoin": "Fiat-Betrag für den Umtausch in Bitcoin eingeben",
"Enter amount of fiat to exchange for bitcoin": "Fiat-Betrag f\u00fcr den Umtausch in Bitcoin eingeben",
"Amount {{currencyCode}}": "Betrag {{currencyCode}}",
"You must specify an amount first": "Du musst zuerst einen Betrag angeben",
"Take Order": "Order annehmen",
"Wait until you can take an order": "Warte, bis du eine Order annehmen kannst",
"Cancel the order?": "Order abbrechen?",
"If the order is cancelled now you will lose your bond.": "Wenn die Order jetzt storniert wird, verlierst du deine Kaution.",
"Confirm Cancel": "Abbruch bestätigen",
"Confirm Cancel": "Abbruch best\u00e4tigen",
"The maker is away": "Der Maker ist abwesend",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Wenn du diese Order annimmst, riskierst du, deine Zeit zu verschwenden. Wenn der Maker nicht rechtzeitig handelt, erhältst du eine Entschädigung in Satoshis in Höhe von 50 % der Maker-Kaution.",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Wenn du diese Order annimmst, riskierst du, deine Zeit zu verschwenden. Wenn der Maker nicht rechtzeitig handelt, erh\u00e4ltst du eine Entsch\u00e4digung in Satoshis in H\u00f6he von 50 % der Maker-Kaution.",
"Collaborative cancel the order?": "Order gemeinsam abbrechen?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Der Trade wurde veröffentlicht. Die Order kann nur storniert werden, wenn Maker und Taker der Stornierung gemeinsam zustimmen.",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Der Trade wurde ver\u00f6ffentlicht. Die Order kann nur storniert werden, wenn Maker und Taker der Stornierung gemeinsam zustimmen.",
"Ask for Cancel": "Bitte um Abbruch",
"Cancel": "Abbrechen",
"Collaborative Cancel": "Gemeinsamer Abbruch",
"Invalid Order Id": "Ungültige Order-ID",
"Invalid Order Id": "Ung\u00fcltige Order-ID",
"You must have a robot avatar to see the order details": "Du musst einen Roboter-Avatar besitzen, um die Orderdetails zu sehen",
"This order has been cancelled collaborativelly": "Diese Order wurde gemeinsam abgebrochen",
"You are not allowed to see this order": "Du darfst diese Order nicht sehen",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Die Roboter-Satoshis, die im Lager arbeiten, haben dich nicht verstanden. Bitte, melde den Fehler über Github https://github.com/reckless-satoshi/robosats/issues",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Die Roboter-Satoshis, die im Lager arbeiten, haben dich nicht verstanden. Bitte, melde den Fehler \u00fcber Github https://github.com/reckless-satoshi/robosats/issues",
"CHAT BOX - Chat.js": "Chat Box",
"You": "Du",
"Peer": "Partner",
@ -252,108 +245,107 @@
"Type a message": "Schreibe eine Nachricht",
"Connecting...": "Verdinden...",
"Send": "Senden",
"Verify your privacy": "Überprüfe deine Privatsphäre",
"Verify your privacy": "\u00dcberpr\u00fcfe deine Privatsph\u00e4re",
"Audit PGP": "Audit PGP",
"Save full log as a JSON file (messages and credentials)": "Vollständiges Protokoll als JSON-Datei speichern ( Nachrichten und Anmeldeinformationen)",
"Save full log as a JSON file (messages and credentials)": "Vollst\u00e4ndiges Protokoll als JSON-Datei speichern ( Nachrichten und Anmeldeinformationen)",
"Export": "Exportieren",
"Don't trust, verify": "Don't trust, verify",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Deine Kommunikation wird Ende-zu-Ende mit OpenPGP verschlüsselt. Du kannst die Vertraulichkeit dieses Chats mit jedem OpenPGP-Standard Tool überprüfen.",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Deine Kommunikation wird Ende-zu-Ende mit OpenPGP verschl\u00fcsselt. Du kannst die Vertraulichkeit dieses Chats mit jedem OpenPGP-Standard Tool \u00fcberpr\u00fcfen.",
"Learn how to verify": "Learn how to verify",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Dein öffentlicher PGP-Schlüssel. Dein Chatpartner verwendet ihn für das Verschlüsseln der Nachrichten, damit nur du sie lesen kannst.",
"Your public key": "Dein öffentlicher Schlüssel",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Der öffentliche PGP-Schlüssel deines Chatpartners. Du verwendest ihn um Nachrichten zu verschlüsseln, die nur er lesen kann und um zu überprüfen, ob dein Gegenüber die eingehenden Nachrichten signiert hat.",
"Peer public key": "Öffentlicher Schlüssel des Partners",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Dein verschlüsselter privater Schlüssel. Du verwendest ihn um die Nachrichten zu entschlüsseln, die dein Peer für dich verschlüsselt hat. Außerdem signierst du mit ihm die Nachrichten die du sendest.",
"Your encrypted private key": "Dein verschlüsselter privater Schlüssel",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "Die Passphrase zur Entschlüsselung deines privaten Schlüssels. Nur du kennst sie! Bitte nicht weitergeben. Sie ist auch dein Benutzer-Token für den Roboter-Avatar.",
"Your private key passphrase (keep secure!)": "Deine Passphrase für den privaten Schlüssel (sicher aufbewahren!)",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Dein \u00f6ffentlicher PGP-Schl\u00fcssel. Dein Chatpartner verwendet ihn f\u00fcr das Verschl\u00fcsseln der Nachrichten, damit nur du sie lesen kannst.",
"Your public key": "Dein \u00f6ffentlicher Schl\u00fcssel",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Der \u00f6ffentliche PGP-Schl\u00fcssel deines Chatpartners. Du verwendest ihn um Nachrichten zu verschl\u00fcsseln, die nur er lesen kann und um zu \u00fcberpr\u00fcfen, ob dein Gegen\u00fcber die eingehenden Nachrichten signiert hat.",
"Peer public key": "\u00d6ffentlicher Schl\u00fcssel des Partners",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Dein verschl\u00fcsselter privater Schl\u00fcssel. Du verwendest ihn um die Nachrichten zu entschl\u00fcsseln, die dein Peer f\u00fcr dich verschl\u00fcsselt hat. Au\u00dferdem signierst du mit ihm die Nachrichten die du sendest.",
"Your encrypted private key": "Dein verschl\u00fcsselter privater Schl\u00fcssel",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "Die Passphrase zur Entschl\u00fcsselung deines privaten Schl\u00fcssels. Nur du kennst sie! Bitte nicht weitergeben. Sie ist auch dein Benutzer-Token f\u00fcr den Roboter-Avatar.",
"Your private key passphrase (keep secure!)": "Deine Passphrase f\u00fcr den privaten Schl\u00fcssel (sicher aufbewahren!)",
"Save credentials as a JSON file": "Anmeldeinformationen als JSON-Datei speichern",
"Keys": "Schlüssel",
"Keys": "Schl\u00fcssel",
"Save messages as a JSON file": "Nachrichten als JSON-Datei speichern",
"Messages": "Nachrichten",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Vertrags-Box",
"Robots show commitment to their peers": "Roboter verpflichten sich ihren Gegenübern",
"Lock {{amountSats}} Sats to PUBLISH order": "Sperre {{amountSats}} Sats zum VERÖFFENTLICHEN",
"Robots show commitment to their peers": "Roboter verpflichten sich ihren Gegen\u00fcbern",
"Lock {{amountSats}} Sats to PUBLISH order": "Sperre {{amountSats}} Sats zum VER\u00d6FFENTLICHEN",
"Lock {{amountSats}} Sats to TAKE order": "Sperre {{amountSats}} Sats zum ANNEHMEN",
"Lock {{amountSats}} Sats as collateral": "Sperre {{amountSats}} Sats als Sicherheit",
"Copy to clipboard": "In Zwischenablage kopieren",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Diese Invoice wird in deiner Wallet eingefroren. Sie wird nur belastet, wenn du abbrichst oder einen Streitfall verlierst.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Diese Invoice wird in deiner Wallet eingefroren. Sie wird erst durchgeführt sobald du die {{currencyCode}}-Zahlung bestätigst.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Diese Invoice wird in deiner Wallet eingefroren. Sie wird erst durchgef\u00fchrt sobald du die {{currencyCode}}-Zahlung best\u00e4tigst.",
"Your maker bond is locked": "Deine Maker-Kaution ist gesperrt",
"Your taker bond is locked": "Deine Taker-Kaution ist gesperrt",
"Your maker bond was settled": "Deine Maker-Kaution wurde bezahlt",
"Your taker bond was settled": "Deine Taker-Kaution wurde bezahlt.",
"Your maker bond was unlocked": "Deine Maker-Kaution wurde freigegeben",
"Your taker bond was unlocked": "Deine Taker-Kaution wurde freigegeben.",
"Your order is public": "Deine Order ist öffentlich",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Sei geduldig, während die Roboter das Buch ansehen. Diese Box läutet 🔊, sobald ein Roboter deine Order annimmt, dann hast du {{deposit_timer_hours}} Stunden {{deposit_timer_minutes}} Minuten Zeit zu antworten. Wenn du nicht antwortest, riskierst du den Verlust deiner Kaution.",
"If the order expires untaken, your bond will return to you (no action needed).": "Wenn die Order nicht angenommen wird und abläuft, erhältst du die Kaution zurück (keine Aktion erforderlich).",
"Your order is public": "Deine Order ist \u00f6ffentlich",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Sei geduldig, w\u00e4hrend die Roboter das Buch ansehen. Diese Box l\u00e4utet \ud83d\udd0a, sobald ein Roboter deine Order annimmt, dann hast du {{deposit_timer_hours}} Stunden {{deposit_timer_minutes}} Minuten Zeit zu antworten. Wenn du nicht antwortest, riskierst du den Verlust deiner Kaution.",
"If the order expires untaken, your bond will return to you (no action needed).": "Wenn die Order nicht angenommen wird und abl\u00e4uft, erh\u00e4ltst du die Kaution zur\u00fcck (keine Aktion erforderlich).",
"Enable Telegram Notifications": "Telegram-Benachrichtigungen aktivieren",
"Enable TG Notifications": "Aktiviere TG-Benachrichtigungen",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Du wirst zu einem Chat mit dem RoboSats-Telegram-Bot weitergeleitet. Öffne einfach den Chat und drücke auf Start. Beachte, dass du deine Anonymität verringern könntest, wenn du Telegram-Benachrichtigungen aktivierst.",
"Go back": "Zurück",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Du wirst zu einem Chat mit dem RoboSats-Telegram-Bot weitergeleitet. \u00d6ffne einfach den Chat und dr\u00fccke auf Start. Beachte, dass du deine Anonymit\u00e4t verringern k\u00f6nntest, wenn du Telegram-Benachrichtigungen aktivierst.",
"Go back": "Zur\u00fcck",
"Enable": "Aktivieren",
"Telegram enabled": "Telegram aktiviert",
"Public orders for {{currencyCode}}": "Öffentliche Order für {{currencyCode}}",
"Public orders for {{currencyCode}}": "\u00d6ffentliche Order f\u00fcr {{currencyCode}}",
"Premium rank": "Aufschlags-Rang",
"Among public {{currencyCode}} orders (higher is cheaper)": "Anzahl öffentlicher {{currencyCode}} Order (höher ist günstiger)",
"Among public {{currencyCode}} orders (higher is cheaper)": "Anzahl \u00f6ffentlicher {{currencyCode}} Order (h\u00f6her ist g\u00fcnstiger)",
"A taker has been found!": "Ein Taker wurde gefunden",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Bitte warte auf den Taker, um eine Kaution zu sperren. Wenn der Taker nicht rechtzeitig eine Kaution sperrt, wird die Order erneut veröffentlicht.",
"Submit an invoice for {{amountSats}} Sats": "Füge eine Invoice über {{amountSats}} Sats ein",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "Der Taker ist bereit! Bevor du {{amountFiat}} {{currencyCode}} sendest, möchten wir sicherstellen, dass du in der Lage bist, die BTC zu erhalten. Bitte füge eine gültige Invoice über {{amountSats}} Satoshis ein",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Bitte warte auf den Taker, um eine Kaution zu sperren. Wenn der Taker nicht rechtzeitig eine Kaution sperrt, wird die Order erneut ver\u00f6ffentlicht.",
"Submit an invoice for {{amountSats}} Sats": "F\u00fcge eine Invoice \u00fcber {{amountSats}} Sats ein",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "Der Taker ist bereit! Bevor du {{amountFiat}} {{currencyCode}} sendest, m\u00f6chten wir sicherstellen, dass du in der Lage bist, die BTC zu erhalten. Bitte f\u00fcge eine g\u00fcltige Invoice \u00fcber {{amountSats}} Satoshis ein",
"Payout Lightning Invoice": "Lightning-Auszahlungs-Invoice",
"Your invoice looks good!": "Deine Invoice sieht gut aus!",
"We are waiting for the seller to lock the trade amount.": "Wir warten darauf, dass der Verkäufer den Handelsbetrag sperrt.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Warte einen Moment. Wenn der Verkäufer den Handelsbetrag nicht hinterlegt, bekommst du deine Kaution automatisch zurück. Darüber hinaus erhältst du eine Entschädigung (siehe die Belohnungen in deinem Profil).",
"We are waiting for the seller to lock the trade amount.": "Wir warten darauf, dass der Verk\u00e4ufer den Handelsbetrag sperrt.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Warte einen Moment. Wenn der Verk\u00e4ufer den Handelsbetrag nicht hinterlegt, bekommst du deine Kaution automatisch zur\u00fcck. Dar\u00fcber hinaus erh\u00e4ltst du eine Entsch\u00e4digung (siehe die Belohnungen in deinem Profil).",
"The trade collateral is locked!": "Der Handelsbetrag ist gesperrt!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Wir warten darauf, dass der Käufer eine Lightning-Invoice einreicht. Sobald er dies tut, kannst du ihm die Details der Fiat-Zahlung mitteilen.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Warte einen Moment. Wenn der Käufer nicht kooperiert, bekommst du seine und deine Kaution automatisch zurück. Außerdem erhältst du eine Entschädigung (siehe die Belohnungen in deinem Profil).",
"Confirm {{amount}} {{currencyCode}} sent": "Bestätige {{amount}} {{currencyCode}} gesendet",
"Confirm {{amount}} {{currencyCode}} received": "Bestätige {{amount}} {{currencyCode}} erhalten",
"Open Dispute": "Streitfall eröffnen",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Wir warten darauf, dass der K\u00e4ufer eine Lightning-Invoice einreicht. Sobald er dies tut, kannst du ihm die Details der Fiat-Zahlung mitteilen.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Warte einen Moment. Wenn der K\u00e4ufer nicht kooperiert, bekommst du seine und deine Kaution automatisch zur\u00fcck. Au\u00dferdem erh\u00e4ltst du eine Entsch\u00e4digung (siehe die Belohnungen in deinem Profil).",
"Confirm {{amount}} {{currencyCode}} sent": "Best\u00e4tige {{amount}} {{currencyCode}} gesendet",
"Confirm {{amount}} {{currencyCode}} received": "Best\u00e4tige {{amount}} {{currencyCode}} erhalten",
"Open Dispute": "Streitfall er\u00f6ffnen",
"The order has expired": "Die Order ist abgelaufen",
"Chat with the buyer": "Chatte mit dem Käufer",
"Chat with the seller": "Chatte mit dem Verkäufer",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Sag Hallo! Sei hilfreich und präzise. Lass ihn wissen, wie er dir {{amount}} {{currencyCode}} schicken kann.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "Der Käufer hat das Geld geschickt. Klicke auf 'Bestätige FIAT erhalten', sobald du es erhalten hast.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Sag Hallo! Frag nach den Zahlungsdetails und klicke auf 'Bestätige FIAT gesendet' sobald die Zahlung unterwegs ist.",
"Wait for the seller to confirm he has received the payment.": "Warte, bis der Verkäufer die Zahlung bestätigt.",
"Confirm you received {{amount}} {{currencyCode}}?": "Bestätige den Erhalt von {{amount}} {{currencyCode}}",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Nach dem Bestätigen der Zahlung, wird der Trade beendet. Die hinterlegten Satoshi gehen an den Käufer. Bestätige nur, wenn die {{amount}} {{currencyCode}}-Zahlung angekommen ist. Falls du die {{currencyCode}}-Zahlung erhalten hast und dies nicht bestätigst, verlierst du ggf. deine Kaution und die Handelssumme.",
"Confirm": "Bestätigen",
"Chat with the buyer": "Chatte mit dem K\u00e4ufer",
"Chat with the seller": "Chatte mit dem Verk\u00e4ufer",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Sag Hallo! Sei hilfreich und pr\u00e4zise. Lass ihn wissen, wie er dir {{amount}} {{currencyCode}} schicken kann.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "Der K\u00e4ufer hat das Geld geschickt. Klicke auf 'Best\u00e4tige FIAT erhalten', sobald du es erhalten hast.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Sag Hallo! Frag nach den Zahlungsdetails und klicke auf 'Best\u00e4tige FIAT gesendet' sobald die Zahlung unterwegs ist.",
"Wait for the seller to confirm he has received the payment.": "Warte, bis der Verk\u00e4ufer die Zahlung best\u00e4tigt.",
"Confirm you received {{amount}} {{currencyCode}}?": "Best\u00e4tige den Erhalt von {{amount}} {{currencyCode}}",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Nach dem Best\u00e4tigen der Zahlung, wird der Trade beendet. Die hinterlegten Satoshi gehen an den K\u00e4ufer. Best\u00e4tige nur, wenn die {{amount}} {{currencyCode}}-Zahlung angekommen ist. Falls du die {{currencyCode}}-Zahlung erhalten hast und dies nicht best\u00e4tigst, verlierst du ggf. deine Kaution und die Handelssumme.",
"Confirm": "Best\u00e4tigen",
"Trade finished!": "Trade abgeschlossen!",
"rate_robosats": "Was hältst du von <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Danke! RoboSats liebt dich auch ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats wird noch besser mit mehr Nutzern und Liquidität. Erzähl einem Bitcoin-Freund von uns!",
"rate_robosats": "Was h\u00e4ltst du von <1>RoboSats</1>?",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Danke! RoboSats liebt dich auch \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats wird noch besser mit mehr Nutzern und Liquidit\u00e4t. Erz\u00e4hl einem Bitcoin-Freund von uns!",
"Thank you for using Robosats!": "Danke, dass du Robosats benutzt hast!",
"let_us_know_hot_to_improve": "Sag uns, was wir verbessern können (<1>Telegram</1> / <3>Github</3>)",
"let_us_know_hot_to_improve": "Sag uns, was wir verbessern k\u00f6nnen (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Nochmal",
"Attempting Lightning Payment": "Versuche Lightning-Zahlung",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats versucht deine Lightning-Invoice zu bezahlen. Denk daran, dass deine Lightning-Node erreichbar sein muss, um die Zahlung zu erhalten.",
"Retrying!": "Erneut versuchen!",
"Lightning Routing Failed": "Lightning-Weiterleitung fehlgeschlagen",
"Your invoice has expired or more than 3 payment attempts have been made.": "Deine Invoice ist abgelaufen oder mehr als 3 Zahlungs-Versuche sind fehlgeschlagen. Reiche eine neue Invoice ein",
"Check the list of compatible wallets": "Prüfe die Liste mit kompatiblen Wallets",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats wird alle eine Minute 3 mal versuchen, deine Invoice auszuzahlen. Wenn es weiter fehlschlägt, kannst du eine neue Invoice einfügen. Prüfe deine Inbound-Liquidität. Denk daran, dass deine Lightning-Node erreichbar sein muss, um die Zahlung zu erhalten.Denk daran, dass deine Lightning-Node erreichbar sein muss, um die Zahlung zu erhalten.",
"Next attempt in": "Nächster Versuch in",
"Do you want to open a dispute?": "Möchtest du einen Fall eröffnen?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Das RoboSats-Team wird die Aussagen und Beweise prüfen. Du musst die vollständige Situation erklären, wir können den Chat nicht sehen. Benutze am besten Wegwerf-Kontakt-Infos. Die hinterlegten Satoshis gehen an den Fall-Gewinner, der Verlierer verliert seine Kaution.",
"Check the list of compatible wallets": "Pr\u00fcfe die Liste mit kompatiblen Wallets",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats wird alle eine Minute 3 mal versuchen, deine Invoice auszuzahlen. Wenn es weiter fehlschl\u00e4gt, kannst du eine neue Invoice einf\u00fcgen. Pr\u00fcfe deine Inbound-Liquidit\u00e4t. Denk daran, dass deine Lightning-Node erreichbar sein muss, um die Zahlung zu erhalten.Denk daran, dass deine Lightning-Node erreichbar sein muss, um die Zahlung zu erhalten.",
"Next attempt in": "N\u00e4chster Versuch in",
"Do you want to open a dispute?": "M\u00f6chtest du einen Fall er\u00f6ffnen?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Das RoboSats-Team wird die Aussagen und Beweise pr\u00fcfen. Du musst die vollst\u00e4ndige Situation erkl\u00e4ren, wir k\u00f6nnen den Chat nicht sehen. Benutze am besten Wegwerf-Kontakt-Infos. Die hinterlegten Satoshis gehen an den Fall-Gewinner, der Verlierer verliert seine Kaution.",
"Disagree": "Ablehnen",
"Agree and open dispute": "Akzeptieren und Fall eröffnen",
"A dispute has been opened": "Ein Fall wurde eröffnet",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Bitte übermittle deine Aussage. Sei präzise und deutlich darüber, was vorgefallen ist und bring entsprechende Beweise vor. Du musst eine Kontaktmöglichkeit übermitteln: Wegwerfemail, XMPP oder Telegram-Nutzername zum Kontakt durch unser Team. Fälle werden von echten Robotern (aka Menschen) bearbeiten, also sei kooperativ für eine faire Entscheidung. Max. 5000 Zeichen.",
"Submit dispute statement": "Übermittle Fall-Aussage",
"Agree and open dispute": "Akzeptieren und Fall er\u00f6ffnen",
"A dispute has been opened": "Ein Fall wurde er\u00f6ffnet",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Bitte \u00fcbermittle deine Aussage. Sei pr\u00e4zise und deutlich dar\u00fcber, was vorgefallen ist und bring entsprechende Beweise vor. Du musst eine Kontaktm\u00f6glichkeit \u00fcbermitteln: Wegwerfemail, XMPP oder Telegram-Nutzername zum Kontakt durch unser Team. F\u00e4lle werden von echten Robotern (aka Menschen) bearbeiten, also sei kooperativ f\u00fcr eine faire Entscheidung. Max. 5000 Zeichen.",
"Submit dispute statement": "\u00dcbermittle Fall-Aussage",
"We have received your statement": "Wir haben deine Aussage erhalten",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Wir warten auf die Aussage deines Gegenübers. Wenn du Fragen zum Fall hast oder weitere Informationen übermitteln möchtest, kontaktiere robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Bitte bewahre die Informationen die deine Order und Zahlungsweise identifizieren auf: Order-ID; Zahlungs-Hashes der Kaution oder Sicherheit (siehe dein Lightning-Wallet); exakte Anzahl an Satoshis; und dein Roboter-Avatar. Du musst dich als der involvierte Nutzer identifizieren könenn, über E-Mail (oder andere Kontaktarten).",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Wir warten auf die Aussage deines Gegen\u00fcbers. Wenn du Fragen zum Fall hast oder weitere Informationen \u00fcbermitteln m\u00f6chtest, kontaktiere robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Bitte bewahre die Informationen die deine Order und Zahlungsweise identifizieren auf: Order-ID; Zahlungs-Hashes der Kaution oder Sicherheit (siehe dein Lightning-Wallet); exakte Anzahl an Satoshis; und dein Roboter-Avatar. Du musst dich als der involvierte Nutzer identifizieren k\u00f6nenn, \u00fcber E-Mail (oder andere Kontaktarten).",
"We have the statements": "Wir haben die Aussagen erhalten",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Wir haben beide Aussagen erhalten, warte auf das Team, den Fall zu klären. Wenn du Fragen zum Fall hast oder weitere Informationen übermitteln möchtest, kontaktiere robosats@protonmail.com. Wenn du keine Kontaktdaten angegeben hast oder dir unsicher bist, kontaktiere uns sofort.",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Wir haben beide Aussagen erhalten, warte auf das Team, den Fall zu kl\u00e4ren. Wenn du Fragen zum Fall hast oder weitere Informationen \u00fcbermitteln m\u00f6chtest, kontaktiere robosats@protonmail.com. Wenn du keine Kontaktdaten angegeben hast oder dir unsicher bist, kontaktiere uns sofort.",
"You have won the dispute": "Du hast den Fall gewonnen",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Du kannst die Satoshis (Sicherheit und Kaution) in deinem Profil finden. Wenn unser Team dir bei etwas helfen kann, zögere nicht, uns zu kontaktieren: robosats@protonmail.com (oder über deine Wegwerf-Kontaktdaten).",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Du kannst die Satoshis (Sicherheit und Kaution) in deinem Profil finden. Wenn unser Team dir bei etwas helfen kann, z\u00f6gere nicht, uns zu kontaktieren: robosats@protonmail.com (oder \u00fcber deine Wegwerf-Kontaktdaten).",
"You have lost the dispute": "Du hast den Fall verloren",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Leider hast du diesen Fall verloren. Falls du denkst, dies war ein Fehler, kontaktieren uns über robosats@protonmail.com. Aber die Chancen, dass der Fall neu eröfffnet wird, sind gering.",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Leider hast du diesen Fall verloren. Falls du denkst, dies war ein Fehler, kontaktieren uns \u00fcber robosats@protonmail.com. Aber die Chancen, dass der Fall neu er\u00f6fffnet wird, sind gering.",
"Expired not taken": "Abgelaufen, nicht angenommen",
"Maker bond not locked": "Maker-Kaution nicht gesperrt",
"Escrow not locked": "Treuhandkonto nicht gesperrt",
@ -362,57 +354,56 @@
"Renew Order": "Order erneuern",
"Pause the public order": "Order pausieren",
"Your order is paused": "Deine Order ist pausiert",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Deine öffentliche Order wurde pausiert. Im Moment kann sie von anderen Robotern weder gesehen noch angenommen werden. Du kannst sie jederzeit wieder aktivieren.",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Deine \u00f6ffentliche Order wurde pausiert. Im Moment kann sie von anderen Robotern weder gesehen noch angenommen werden. Du kannst sie jederzeit wieder aktivieren.",
"Unpause Order": "Order aktivieren",
"You risk losing your bond if you do not lock the collateral. Total time to available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Du riskierst den Verlust deiner Kaution, wenn du die Sicherheiten nicht sperrst. Die insgesamt zur Verfügung stehende Zeit beträgt {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"You risk losing your bond if you do not lock the collateral. Total time to available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Du riskierst den Verlust deiner Kaution, wenn du die Sicherheiten nicht sperrst. Die insgesamt zur Verf\u00fcgung stehende Zeit betr\u00e4gt {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Kompatible Wallets ansehen",
"Failure reason:": "Fehlerursache:",
"Payment isn't failed (yet)": "Zahlung ist (noch) nicht gescheitert",
"There are more routes to try, but the payment timeout was exceeded.": "Es gibt noch weitere Routen, aber das Zeitlimit für die Zahlung wurde überschritten.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Alle möglichen Routen wurden ausprobiert und scheiterten permanent. Oder es gab überhaupt keine Routen zum Ziel.",
"There are more routes to try, but the payment timeout was exceeded.": "Es gibt noch weitere Routen, aber das Zeitlimit f\u00fcr die Zahlung wurde \u00fcberschritten.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Alle m\u00f6glichen Routen wurden ausprobiert und scheiterten permanent. Oder es gab \u00fcberhaupt keine Routen zum Ziel.",
"A non-recoverable error has occurred.": "Es ist ein nicht behebbarer Fehler aufgetreten.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Die Zahlungsdetails sind falsch (unbekannter Hash, ungültiger Betrag oder ungültiges CLTV-Delta).",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Die Zahlungsdetails sind falsch (unbekannter Hash, ung\u00fcltiger Betrag oder ung\u00fcltiges CLTV-Delta).",
"Insufficient unlocked balance in RoboSats' node.": "Unzureichendes freigeschaltetes Guthaben auf der Node von RoboSats.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "Die eingereichte Invoice enthält nur teure Routing-Hinweise, du verwendest eine inkompatible Wallet (wahrscheinlich Muun?). Prüfe den Leitfaden zur Kompatibilität von Wallets unter wallets.robosats.com",
"The invoice provided has no explicit amount": "Die vorgelegte Invoice enthält keinen expliziten Betrag",
"Does not look like a valid lightning invoice": "Sieht nicht nach einer gültigen Lightning-Invoice aus",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "Die eingereichte Invoice enth\u00e4lt nur teure Routing-Hinweise, du verwendest eine inkompatible Wallet (wahrscheinlich Muun?). Pr\u00fcfe den Leitfaden zur Kompatibilit\u00e4t von Wallets unter wallets.robosats.com",
"The invoice provided has no explicit amount": "Die vorgelegte Invoice enth\u00e4lt keinen expliziten Betrag",
"Does not look like a valid lightning invoice": "Sieht nicht nach einer g\u00fcltigen Lightning-Invoice aus",
"The invoice provided has already expired": "Die angegebene Invoice ist bereits abgelaufen",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Schließen",
"Close": "Schlie\u00dfen",
"What is RoboSats?": "Was ist RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Es ist ein privater BTC/FIAT Handelsplatz über Lightning.",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Es ist ein privater BTC/FIAT Handelsplatz \u00fcber Lightning.",
"RoboSats is an open source project ": "RoboSats ist ein Open-Source-Projekt ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Es vereinfacht das Zusammenfinden und minimiert das nötige Vertrauen. RoboSats steht für Privatsphäre und Schnelligkeit.",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Es vereinfacht das Zusammenfinden und minimiert das n\u00f6tige Vertrauen. RoboSats steht f\u00fcr Privatsph\u00e4re und Schnelligkeit.",
"(GitHub).": "(GitHub).",
"How does it work?": "Wie funktioniert es?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 will Bitcoin verkaufen. Sie veröffentlich eine Verkaufs-Order. BafflingBob02 will Bitcoin kaufen und nimmt die Order an. Beide müssen eine kleine Kaution hinterlegen, um zu beweisen, dass sie echte Roboter sind. Dann schickt Alice die Handelssumme ebenfalls als Sicherheit. RoboSats sperrt diese, bis Alice den Zahlungserhalt bestätigt, dann werden die Satoshis an Bob geschickt. Genieße deine Satoshis, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "Zu keinem Zeitpunkt müssen AnonymousAlice01 und BafflingBob02 sich direkt ihre Satoshis anvertrauen. Im Fall eines Konflikts wird das RoboSats-Team bei der Klärung helfen.",
"You can find a step-by-step description of the trade pipeline in ": "Du findest eine Schritt-für-Schritt-Erklärung des Handelablaufs hier ",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 will Bitcoin verkaufen. Sie ver\u00f6ffentlich eine Verkaufs-Order. BafflingBob02 will Bitcoin kaufen und nimmt die Order an. Beide m\u00fcssen eine kleine Kaution hinterlegen, um zu beweisen, dass sie echte Roboter sind. Dann schickt Alice die Handelssumme ebenfalls als Sicherheit. RoboSats sperrt diese, bis Alice den Zahlungserhalt best\u00e4tigt, dann werden die Satoshis an Bob geschickt. Genie\u00dfe deine Satoshis, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "Zu keinem Zeitpunkt m\u00fcssen AnonymousAlice01 und BafflingBob02 sich direkt ihre Satoshis anvertrauen. Im Fall eines Konflikts wird das RoboSats-Team bei der Kl\u00e4rung helfen.",
"You can find a step-by-step description of the trade pipeline in ": "Du findest eine Schritt-f\u00fcr-Schritt-Erkl\u00e4rung des Handelablaufs hier ",
"How it works": "Wie es funktioniert",
"You can also check the full guide in ": "Außerdem kannst du hier einen vollständigen Ratgeber finden ",
"You can also check the full guide in ": "Au\u00dferdem kannst du hier einen vollst\u00e4ndigen Ratgeber finden ",
"How to use": "Wie wir es benutzt",
"What payment methods are accepted?": "Welche Zahlungsweisen stehen zur Verfügung?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Alle, wenn sie schnell genug sind. Du legst deine Zahlungsweisen selber fest. Du musst einen Gegenüber finden, der diese Zahlungsweise ebenfalls akzeptiert. Der Schritt der Fiat-Zahlung darf bis zu 24 Stunden dauern, bis automatisch ein Fall eröffnet wird. Wir empfehlen dringend, sofortige Zahlungsweisen zu verwenden.",
"Are there trade limits?": "Gibt es Handel-Beschränkungen?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Die maximale Höhe einer Order beträgt {{maxAmount}} Satoshis um Weiterleitungsprobleme zu vermeiden. Es gibt keine Beschränkung für die Anzahl an Trades. Ein Roboter kann nur eine Order gleichzeitig veröffentlichen. Aber du kannst mehrere Roboter in mehreren Browser haben (denk an das Speichern deines Tokens!).",
"What payment methods are accepted?": "Welche Zahlungsweisen stehen zur Verf\u00fcgung?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Alle, wenn sie schnell genug sind. Du legst deine Zahlungsweisen selber fest. Du musst einen Gegen\u00fcber finden, der diese Zahlungsweise ebenfalls akzeptiert. Der Schritt der Fiat-Zahlung darf bis zu 24 Stunden dauern, bis automatisch ein Fall er\u00f6ffnet wird. Wir empfehlen dringend, sofortige Zahlungsweisen zu verwenden.",
"Are there trade limits?": "Gibt es Handel-Beschr\u00e4nkungen?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Die maximale H\u00f6he einer Order betr\u00e4gt {{maxAmount}} Satoshis um Weiterleitungsprobleme zu vermeiden. Es gibt keine Beschr\u00e4nkung f\u00fcr die Anzahl an Trades. Ein Roboter kann nur eine Order gleichzeitig ver\u00f6ffentlichen. Aber du kannst mehrere Roboter in mehreren Browser haben (denk an das Speichern deines Tokens!).",
"Is RoboSats private?": "Ist RoboSats privat?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats wird nie nach deinem Namen, Land oder ID fragen. Robosats verwahrt nicht dein Guthaben oder interessiert sich für deine Identität. RoboSats sammelt oder speichert keine persönlichen Daten. Für bestmögliche Privatsphäre nutze den Tor-Browser und verwende den .onion Hidden-Service.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Dein Handelpartner ist der einzige, der Informationen über dich erhalten kann. Halte es kurz und präzise. Vermeide Informationen, die nicht für die Zahlung zwingend notwendig sind.",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats wird nie nach deinem Namen, Land oder ID fragen. Robosats verwahrt nicht dein Guthaben oder interessiert sich f\u00fcr deine Identit\u00e4t. RoboSats sammelt oder speichert keine pers\u00f6nlichen Daten. F\u00fcr bestm\u00f6gliche Privatsph\u00e4re nutze den Tor-Browser und verwende den .onion Hidden-Service.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Dein Handelpartner ist der einzige, der Informationen \u00fcber dich erhalten kann. Halte es kurz und pr\u00e4zise. Vermeide Informationen, die nicht f\u00fcr die Zahlung zwingend notwendig sind.",
"What are the risks?": "Gibt es Risiken?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Dieses Projekt ist ein Experiment, Dinge können schiefgehen. Handle mit kleinen Summen!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Der Verkäufer hat das gleiche Rückbuchungsrisiko wie bei anderen Privatgeschäften. Paypal oder Kreditkarten werden nicht empfohlen.",
"What is the trust model?": "Muss man dem Gegenüber vertrauen?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Käufer und Verkäufer müssen sich nie vertrauen. Etwas Vertrauen in RoboSats ist notwendig, da die Verknüpfung zwischen Verkäufer- und Käufer-Invoice (noch) nicht 'atomic' ist. Außerdem entscheidet das RoboSats-Team über Streitigkeiten.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Um dass klarzustellen. Das nötige Vetrauen wird minimalisiert. Trotzdem gibt es einen Weg für RoboSats, deine Satoshi zu behalten: indem sie nicht an den Käufer weitergeleitet werden. Man kann behaupten, dass das nicht in RoboSats' Interesse wäre, da es die Reputation für eine geringe Summe beschädigen würde. Aber du solltest trotzdem vorsichtig sein und nur kleine Handel durchführen. Für größere Summen nutze On-Chain-Escrow-Services wie BISQ.",
"You can build more trust on RoboSats by inspecting the source code.": "Du kannst den RoboSats Source-Code selbst überprüfen um dich sicherer zu fühlen.",
"This is an experimental application, things could go wrong. Trade small amounts!": "Dieses Projekt ist ein Experiment, Dinge k\u00f6nnen schiefgehen. Handle mit kleinen Summen!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Der Verk\u00e4ufer hat das gleiche R\u00fcckbuchungsrisiko wie bei anderen Privatgesch\u00e4ften. Paypal oder Kreditkarten werden nicht empfohlen.",
"What is the trust model?": "Muss man dem Gegen\u00fcber vertrauen?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "K\u00e4ufer und Verk\u00e4ufer m\u00fcssen sich nie vertrauen. Etwas Vertrauen in RoboSats ist notwendig, da die Verkn\u00fcpfung zwischen Verk\u00e4ufer- und K\u00e4ufer-Invoice (noch) nicht 'atomic' ist. Au\u00dferdem entscheidet das RoboSats-Team \u00fcber Streitigkeiten.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Um dass klarzustellen. Das n\u00f6tige Vetrauen wird minimalisiert. Trotzdem gibt es einen Weg f\u00fcr RoboSats, deine Satoshi zu behalten: indem sie nicht an den K\u00e4ufer weitergeleitet werden. Man kann behaupten, dass das nicht in RoboSats' Interesse w\u00e4re, da es die Reputation f\u00fcr eine geringe Summe besch\u00e4digen w\u00fcrde. Aber du solltest trotzdem vorsichtig sein und nur kleine Handel durchf\u00fchren. F\u00fcr gr\u00f6\u00dfere Summen nutze On-Chain-Escrow-Services wie BISQ.",
"You can build more trust on RoboSats by inspecting the source code.": "Du kannst den RoboSats Source-Code selbst \u00fcberpr\u00fcfen um dich sicherer zu f\u00fchlen.",
"Project source code": "Source-Code des Projekts",
"What happens if RoboSats suddenly disappears?": "Was passiert, wenn RoboSats plötzlich verschwindet?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Deine Sats gehen an dich zurück. Jede Sperrtransaktion wird selbst dann wieder freigegeben, wenn RoboSats für immer offline geht. Das gilt für Käufer- und Verkäufer-Kautionen. Trotzdem gibt es ein kurzes Zeitfenster zwischen Fiat-Zahlungsbestätigung und durchführung der Lightning-Transaktion, in dem die Summe für immer verloren gehen kann. Dies ist ungefähr 1 Sekunde. Stelle sicher, dass du genug Inbound-Liquidität hast. Bei Problemen melde dich über RoboSats' öffentliche Kanäle",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "In vielen Ländern ist RoboSats wie Ebay oder Craigslist. Deine Rechtslage weicht vielleicht ab, das liegt in deiner Verantwortung.",
"What happens if RoboSats suddenly disappears?": "Was passiert, wenn RoboSats pl\u00f6tzlich verschwindet?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Deine Sats gehen an dich zur\u00fcck. Jede Sperrtransaktion wird selbst dann wieder freigegeben, wenn RoboSats f\u00fcr immer offline geht. Das gilt f\u00fcr K\u00e4ufer- und Verk\u00e4ufer-Kautionen. Trotzdem gibt es ein kurzes Zeitfenster zwischen Fiat-Zahlungsbest\u00e4tigung und durchf\u00fchrung der Lightning-Transaktion, in dem die Summe f\u00fcr immer verloren gehen kann. Dies ist ungef\u00e4hr 1 Sekunde. Stelle sicher, dass du genug Inbound-Liquidit\u00e4t hast. Bei Problemen melde dich \u00fcber RoboSats' \u00f6ffentliche Kan\u00e4le",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "In vielen L\u00e4ndern ist RoboSats wie Ebay oder Craigslist. Deine Rechtslage weicht vielleicht ab, das liegt in deiner Verantwortung.",
"Is RoboSats legal in my country?": "Ist RoboSats in meinem Land erlaubt?",
"Disclaimer": "Hinweise",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Dieses Lightning-Projekt ist wie es ist. Es befindet sich in der Entwicklung: Handle mit äußerster Vorsicht. Es gibt keine private Unterstützung. Hilfe wird nur über die öffentlichen Kanäle angeboten ",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Dieses Lightning-Projekt ist wie es ist. Es befindet sich in der Entwicklung: Handle mit \u00e4u\u00dferster Vorsicht. Es gibt keine private Unterst\u00fctzung. Hilfe wird nur \u00fcber die \u00f6ffentlichen Kan\u00e4le angeboten ",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats wird dich nie kontaktieren. RoboSats fragt definitiv nie nach deinem Roboter-Token."
}

View File

@ -6,12 +6,10 @@
"Hide": "Hide",
"You are self-hosting RoboSats": "You are self-hosting RoboSats",
"RoboSats client is served from your own node granting you the strongest security and privacy.": "RoboSats client is served from your own node granting you the strongest security and privacy.",
"Initializing TOR daemon": "Initializing TOR daemon",
"Connecting to TOR network": "Connecting to TOR network",
"Connected to TOR network": "Connected to TOR network",
"Connection error": "Connection error",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Simple and Private LN P2P Exchange",
"This is your trading avatar": "This is your trading avatar",
@ -28,7 +26,6 @@
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.",
"Let's go!": "Let's go!",
"Save token and PGP credentials to file": "Save token and PGP credentials to file",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Order",
"Customize": "Customize",
@ -87,7 +84,6 @@
"Existing orders match yours!": "Existing orders match yours!",
"Enable advanced options": "Enable advanced options",
"Clear form": "Clear form",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Not specified",
"Instant SEPA": "Instant SEPA",
@ -95,7 +91,6 @@
"Google Play Gift Code": "Google Play Gift Code",
"Cash F2F": "Cash F2F",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage": "The Book Order page",
"Seller": "Seller",
"Buyer": "Buyer",
@ -175,7 +170,6 @@
"swap to": "swap to",
"DESTINATION": "DESTINATION",
"METHOD": "METHOD",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Stats For Nerds",
"LND version": "LND version",
@ -212,7 +206,7 @@
"Claim": "Claim",
"Invoice for {{amountSats}} Sats": "Invoice for {{amountSats}} Sats",
"Submit": "Submit",
"There it goes, thank you!🥇": "There it goes, thank you!🥇",
"There it goes, thank you!\ud83e\udd47": "There it goes, thank you!\ud83e\udd47",
"You have an active order": "You have an active order",
"You can claim satoshis!": "You can claim satoshis!",
"Public Buy Orders": "Public Buy Orders",
@ -252,7 +246,6 @@
"Coordinator": "Coordinator",
"RoboSats version": "RoboSats version",
"LN Node": "LN Node",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Order Box",
"Contract": "Contract",
@ -327,7 +320,6 @@
"Payment not received, please check your WebLN wallet.": "Payment not received, please check your WebLN wallet.",
"Invoice not received, please check your WebLN wallet.": "Invoice not received, please check your WebLN wallet.",
"Payment detected, you can close now your WebLN wallet popup.": "Payment detected, you can close now your WebLN wallet popup.",
"CHAT BOX - Chat.js": "Chat Box",
"You": "You",
"Peer": "Peer",
@ -357,7 +349,6 @@
"Messages": "Messages",
"Verified signature by {{nickname}}": "Verified signature by {{nickname}}",
"Cannot verify signature of {{nickname}}": "Cannot verify signature of {{nickname}}",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Contract Box",
"Robots show commitment to their peers": "Robots show commitment to their peers",
@ -374,7 +365,7 @@
"Your maker bond was unlocked": "Your maker bond was unlocked",
"Your taker bond was unlocked": "Your taker bond was unlocked",
"Your order is public": "Your order is public",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.",
"If the order expires untaken, your bond will return to you (no action needed).": "If the order expires untaken, your bond will return to you (no action needed).",
"Enable Telegram Notifications": "Enable Telegram Notifications",
"Enable TG Notifications": "Enable TG Notifications",
@ -409,7 +400,7 @@
"Confirm": "Confirm",
"Trade finished!": "Trade finished!",
"rate_robosats": "What do you think of <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Thank you! RoboSats loves you too ❤️",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Thank you! RoboSats loves you too \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!",
"Thank you for using Robosats!": "Thank you for using Robosats!",
"let_us_know_hot_to_improve": "Let us know how the platform could improve (<1>Telegram</1> / <3>Github</3>)",
@ -501,7 +492,6 @@
"Timestamp": "Timestamp",
"Completed in": "Completed in",
"Contract exchange rate": "Contract exchange rate",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Close",
"What is RoboSats?": "What is RoboSats?",

View File

@ -1,18 +1,17 @@
{
"UNSAFE-ALERT": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "No usas RoboSats de forma privada",
"desktop_unsafe_alert": "Algunas funciones (como el chat) están deshabilitadas para protegerte y sin ellas no podrás completar un intercambio. Para proteger tu privacidad y habilitar RoboSats por completo, usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"phone_unsafe_alert": "No podrás completar un intercambio. Usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"desktop_unsafe_alert": "Algunas funciones (como el chat) est\u00e1n deshabilitadas para protegerte y sin ellas no podr\u00e1s completar un intercambio. Para proteger tu privacidad y habilitar RoboSats por completo, usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"phone_unsafe_alert": "No podr\u00e1s completar un intercambio. Usa el <1>Navegador Tor</1> y visita el <3>sitio cebolla</3>.",
"Hide": "Ocultar",
"You are self-hosting RoboSats": "Estás hosteando RoboSats",
"You are self-hosting RoboSats": "Est\u00e1s hosteando RoboSats",
"RoboSats client is served from your own node granting you the strongest security and privacy.": "El cliente RoboSats es servido por tu propio nodo, gozas de la mayor seguridad y privacidad.",
"UserGenPage": "User Generation Page and Landing Page",
"Simple and Private LN P2P Exchange": "Intercambio LN P2P Fácil y Privado",
"Simple and Private LN P2P Exchange": "Intercambio LN P2P F\u00e1cil y Privado",
"This is your trading avatar": "Este es tu Robot de compraventa",
"Store your token safely": "Guarda tu token de forma segura",
"A robot avatar was found, welcome back!": "Se encontró un Robot, ¡bienvenido de nuevo!",
"Copied!": "¡Copiado!",
"A robot avatar was found, welcome back!": "Se encontr\u00f3 un Robot, \u00a1bienvenido de nuevo!",
"Copied!": "\u00a1Copiado!",
"Generate a new token": "Genera un nuevo token",
"Generate Robot": "Generar Robot",
"You must enter a new token first": "Primero introduce un nuevo token",
@ -20,28 +19,27 @@
"Info": "Info",
"View Book": "Ver libro",
"Learn RoboSats": "Aprende RoboSats",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Vas a visitar la página Learn RoboSats. Ha sido construida por la comunidad y contiene tutoriales y documentación que te ayudará a aprender como se usa RoboSats y a entender como funciona.",
"Let's go!": "¡Vamos!",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Vas a visitar la p\u00e1gina Learn RoboSats. Ha sido construida por la comunidad y contiene tutoriales y documentaci\u00f3n que te ayudar\u00e1 a aprender como se usa RoboSats y a entender como funciona.",
"Let's go!": "\u00a1Vamos!",
"Save token and PGP credentials to file": "Guardar archivo con token y credenciales PGP",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Orden",
"Customize": "Personalizar",
"Buy or Sell Bitcoin?": "¿Comprar o vender bitcoin?",
"Buy or Sell Bitcoin?": "\u00bfComprar o vender bitcoin?",
"Buy": "Comprar",
"Sell": "Vender",
"Amount": "Monto",
"Amount of fiat to exchange for bitcoin": "Monto de fiat a cambiar por bitcoin",
"Invalid": "No válido",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Introduce tus métodos de pago. Se recomiendan encarecidamente métodos rápidos.",
"Invalid": "No v\u00e1lido",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Introduce tus m\u00e9todos de pago. Se recomiendan encarecidamente m\u00e9todos r\u00e1pidos.",
"Must be shorter than 65 characters": "Debe tener menos de 65 caracteres",
"Swap Destination(s)": "Destino(s) del swap",
"Fiat Payment Method(s)": "Método(s) de pago en fiat",
"You can add new methods": "Puedes añadir nuevos métodos",
"Add New": "Añadir nuevo",
"Choose a Pricing Method": "Elige cómo establecer el precio",
"Fiat Payment Method(s)": "M\u00e9todo(s) de pago en fiat",
"You can add new methods": "Puedes a\u00f1adir nuevos m\u00e9todos",
"Add New": "A\u00f1adir nuevo",
"Choose a Pricing Method": "Elige c\u00f3mo establecer el precio",
"Relative": "Relativo",
"Let the price move with the market": "El precio se moverá relativo al mercado",
"Let the price move with the market": "El precio se mover\u00e1 relativo al mercado",
"Premium over Market (%)": "Prima sobre el mercado (%)",
"Explicit": "Fijo",
"Set a fix amount of satoshis": "Establece un monto fijo de Sats",
@ -49,18 +47,18 @@
"Fixed price:": "Precio fijo:",
"Order current rate:": "Precio actual:",
"Your order fixed exchange rate": "La tasa de cambio fija de tu orden",
"Your order's current exchange rate. Rate will move with the market.": "La tasa de cambio de tu orden justo en estos momentos. Se moverá relativa al mercado.",
"Your order's current exchange rate. Rate will move with the market.": "La tasa de cambio de tu orden justo en estos momentos. Se mover\u00e1 relativa al mercado.",
"Let the taker chose an amount within the range": "Permite que el tomador elija un monto dentro del rango.",
"Enable Amount Range": "Activar monto con rango",
"From": "Desde",
"to": "a ",
"Expiry Timers": "Temporizadores",
"Public Duration (HH:mm)": "Duración pública (HH:mm)",
"Escrow/Invoice Timer (HH:mm)": "Plazo depósito/factura (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Establece la implicación requerida (aumentar para mayor seguridad)",
"Fidelity Bond Size": "Tamaño de la fianza",
"Public Duration (HH:mm)": "Duraci\u00f3n p\u00fablica (HH:mm)",
"Escrow/Invoice Timer (HH:mm)": "Plazo dep\u00f3sito/factura (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Establece la implicaci\u00f3n requerida (aumentar para mayor seguridad)",
"Fidelity Bond Size": "Tama\u00f1o de la fianza",
"Allow bondless takers": "Permitir tomadores sin fianza",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "PRÓXIMAMENTE - ¡Alto riesgo! Limitado a {{limitSats}}K Sats",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "PR\u00d3XIMAMENTE - \u00a1Alto riesgo! Limitado a {{limitSats}}K Sats",
"You must fill the order correctly": "Debes rellenar la orden correctamente",
"Create Order": "Crear orden",
"Back": "Volver",
@ -72,29 +70,27 @@
" at a {{premium}}% premium": " con una prima del {{premium}}%",
" at a {{discount}}% discount": " con descuento del {{discount}}%",
"Must be less than {{max}}%": "Debe ser menos del {{max}}%",
"Must be more than {{min}}%": "Debe ser más del {{min}}%",
"Must be more than {{min}}%": "Debe ser m\u00e1s del {{min}}%",
"Must be less than {{maxSats}": "Debe ser menos de {{maxSats}}",
"Must be more than {{minSats}}": "Debe ser más de {{minSats}}",
"Must be more than {{minSats}}": "Debe ser m\u00e1s de {{minSats}}",
"Store your robot token": "Guarda el token",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Puede que necesites recuperar tu robot avatar en el futuro: haz una copia de seguridad del token. Puedes simplemente copiarlo en otra aplicación.",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Puede que necesites recuperar tu robot avatar en el futuro: haz una copia de seguridad del token. Puedes simplemente copiarlo en otra aplicaci\u00f3n.",
"Done": "Hecho",
"You do not have a robot avatar": "No tienes un avatar robot",
"You need to generate a robot avatar in order to become an order maker": "Necesitas generar un avatar robot antes de crear una orden",
"Edit order": "Editar orden",
"Existing orders match yours!": "¡Existen órdenes que coinciden!",
"Existing orders match yours!": "\u00a1Existen \u00f3rdenes que coinciden!",
"Enable advanced options": "Activar opciones avanzadas",
"Clear form": "Borrar campos",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Sin especificar",
"Instant SEPA": "SEPA Instantánea",
"Instant SEPA": "SEPA Instant\u00e1nea",
"Amazon GiftCard": "Amazon Tarjeta Regalo",
"Amazon ES GiftCard": "Amazon ES Tarjeta Regalo",
"Amazon MX GiftCard": "Amazon MX Tarjeta Regalo",
"Google Play Gift Code": "Google Play Tarjeta Regalo",
"Cash F2F": "Efectivo en persona",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Vende",
"Buyer": "Compra",
@ -110,18 +106,18 @@
"Robot": "Robot",
"Is": "Es",
"Currency": "Moneda",
"Payment Method": "Método de pago",
"Payment Method": "M\u00e9todo de pago",
"Pay": "Pagar",
"Price": "Precio",
"Premium": "Prima",
"You are SELLING BTC for {{currencyCode}}": "VENDER bitcoin por {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "COMPRAR bitcoin por {{currencyCode}}",
"You are looking at all": "Estás viendo todo",
"No orders found to sell BTC for {{currencyCode}}": "No hay órdenes para vender bitcoin por {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "No hay órdenes para comprar bitcoin por {{currencyCode}}",
"You are looking at all": "Est\u00e1s viendo todo",
"No orders found to sell BTC for {{currencyCode}}": "No hay \u00f3rdenes para vender bitcoin por {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "No hay \u00f3rdenes para comprar bitcoin por {{currencyCode}}",
"Filter has no results": "No hay resultados para este filtro",
"Be the first one to create an order": "Sé el primero en crear una orden",
"Orders per page:": "Órdenes por vista:",
"Be the first one to create an order": "S\u00e9 el primero en crear una orden",
"Orders per page:": "\u00d3rdenes por vista:",
"No rows": "No hay filas",
"No results found.": "No se encontraron resultados.",
"An error occurred.": "Hubo un error.",
@ -132,9 +128,9 @@
"Reorder column": "Reordenar columnas",
"Show all": "Mostrar todas",
"Hide all": "Ocultar todas",
"Add filter": "Añadir filtro",
"Add filter": "A\u00f1adir filtro",
"Delete": "Eliminar",
"Logic operator": "Operador lógico",
"Logic operator": "Operador l\u00f3gico",
"Operator": "Operador",
"And": "Y",
"Or": "O",
@ -146,12 +142,12 @@
"ends with": "termina con",
"is": "es",
"is not": "no es",
"is after": "está detrás",
"is on or after": "está en o detrás",
"is before": "está delante",
"is on or before": "está en o delante",
"is empty": "está vacio",
"is not empty": "no está vacio",
"is after": "est\u00e1 detr\u00e1s",
"is on or after": "est\u00e1 en o detr\u00e1s",
"is before": "est\u00e1 delante",
"is on or before": "est\u00e1 en o delante",
"is empty": "est\u00e1 vacio",
"is not empty": "no est\u00e1 vacio",
"is any of": "es alguno de",
"any": "alguno",
"true": "verdad",
@ -166,8 +162,8 @@
"Show filters": "Mostrar filtros",
"yes": "si",
"no": "no",
"Depth chart": "Gráfico de profundidad",
"Chart": "Gráfico",
"Depth chart": "Gr\u00e1fico de profundidad",
"Chart": "Gr\u00e1fico",
"List": "Tabla",
"pay with": "pagar con",
"Timer": "Plazo",
@ -176,35 +172,34 @@
"Bond": "Fianza",
"swap to": "swap a",
"DESTINATION": "DESTINO",
"METHOD": "MÉTODO",
"METHOD": "M\u00c9TODO",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Estadísticas para nerds",
"LND version": "Versión LND",
"Currently running commit hash": "Hash de la versión actual",
"Stats For Nerds": "Estad\u00edsticas para nerds",
"LND version": "Versi\u00f3n LND",
"Currently running commit hash": "Hash de la versi\u00f3n actual",
"24h contracted volume": "Volumen contratado en 24h",
"Lifetime contracted volume": "Volumen contratado total",
"Made with": "Hecho con",
"and": "y",
"... somewhere on Earth!": "... en algún lugar de la tierra!",
"... somewhere on Earth!": "... en alg\u00fan lugar de la tierra!",
"Community": "Comunidad",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Sólo se ofrece soporte a través de canales públicos. Únete a nuestra comunidad de Telegram si tienes preguntas o quieres pasar el rato con otros Robots geniales. Por favor, utiliza nuestro GitHub para notificar un error o proponer nuevas funcionalidades.",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "S\u00f3lo se ofrece soporte a trav\u00e9s de canales p\u00fablicos. \u00danete a nuestra comunidad de Telegram si tienes preguntas o quieres pasar el rato con otros Robots geniales. Por favor, utiliza nuestro GitHub para notificar un error o proponer nuevas funcionalidades.",
"Follow RoboSats in Twitter": "Sigue a RoboSats ",
"Twitter Official Account": "Cuenta oficial en Twitter",
"Join RoboSats Spanish speaking community!": "¡Únete a la comunidad de RoboSats en español!",
"Join RoboSats Russian speaking community!": "¡Únete a la comunidad de RoboSats en ruso!",
"Join RoboSats Chinese speaking community!": "¡Únete a la comunidad de RoboSats en chino!",
"Join RoboSats English speaking community!": "¡Únete a la comunidad de RoboSats en inglés!",
"Tell us about a new feature or a bug": "Propón funcionalidades o notifica errores",
"Join RoboSats Spanish speaking community!": "\u00a1\u00danete a la comunidad de RoboSats en espa\u00f1ol!",
"Join RoboSats Russian speaking community!": "\u00a1\u00danete a la comunidad de RoboSats en ruso!",
"Join RoboSats Chinese speaking community!": "\u00a1\u00danete a la comunidad de RoboSats en chino!",
"Join RoboSats English speaking community!": "\u00a1\u00danete a la comunidad de RoboSats en ingl\u00e9s!",
"Tell us about a new feature or a bug": "Prop\u00f3n funcionalidades o notifica errores",
"Github Issues - The Robotic Satoshis Open Source Project": "Issues de GitHub - The Robotic Satoshis Open Source Project",
"Your Profile": "Tu perfil",
"Your robot": "Tu Robot",
"One active order #{{orderID}}": "Ir a orden activa #{{orderID}}",
"Your current order": "Tu orden actual",
"No active orders": "No hay órdenes activas",
"Your token (will not remain here)": "Tu token (no permanecerá aquí)",
"Back it up!": "¡Guárdalo!",
"Cannot remember": "Se olvidó",
"No active orders": "No hay \u00f3rdenes activas",
"Your token (will not remain here)": "Tu token (no permanecer\u00e1 aqu\u00ed)",
"Back it up!": "\u00a1Gu\u00e1rdalo!",
"Cannot remember": "Se olvid\u00f3",
"Rewards and compensations": "Recompensas y compensaciones",
"Share to earn 100 Sats per trade": "Comparte para ganar 100 Sats por intercambio",
"Your referral link": "Tu enlace de referidos",
@ -212,35 +207,34 @@
"Claim": "Retirar",
"Invoice for {{amountSats}} Sats": "Factura por {{amountSats}} Sats",
"Submit": "Enviar",
"There it goes, thank you!🥇": "Ahí va, ¡gracias!🥇",
"There it goes, thank you!\ud83e\udd47": "Ah\u00ed va, \u00a1gracias!\ud83e\udd47",
"You have an active order": "Tienes una orden activa",
"You can claim satoshis!": "¡Puedes retirar Sats!",
"Public Buy Orders": "Órdenes de compra",
"Public Sell Orders": "Órdenes de venta",
"You can claim satoshis!": "\u00a1Puedes retirar Sats!",
"Public Buy Orders": "\u00d3rdenes de compra",
"Public Sell Orders": "\u00d3rdenes de venta",
"Today Active Robots": "Robots activos hoy",
"24h Avg Premium": "Prima media en 24h",
"Trade Fee": "Comisión",
"Trade Fee": "Comisi\u00f3n",
"Show community and support links": "Mostrar enlaces de comunidad y soporte",
"Show stats for nerds": "Mostrar estadísticas para nerds",
"Show stats for nerds": "Mostrar estad\u00edsticas para nerds",
"Exchange Summary": "Resumen del Exchange",
"Public buy orders": "Órdenes de compra públicas",
"Public sell orders": "Órdenes de venta públicas",
"Public buy orders": "\u00d3rdenes de compra p\u00fablicas",
"Public sell orders": "\u00d3rdenes de venta p\u00fablicas",
"Book liquidity": "Liquidez en el libro",
"Today active robots": "Robots activos hoy",
"24h non-KYC bitcoin premium": "Prima de bitcoin sin KYC en 24h",
"Maker fee": "Comisión del creador",
"Taker fee": "Comisión del tomador",
"Number of public BUY orders": "Nº de órdenes públicas de COMPRA",
"Number of public SELL orders": "Nº de órdenes públicas de VENTA",
"Your last order #{{orderID}}": "Tu última orden #{{orderID}}",
"Maker fee": "Comisi\u00f3n del creador",
"Taker fee": "Comisi\u00f3n del tomador",
"Number of public BUY orders": "N\u00ba de \u00f3rdenes p\u00fablicas de COMPRA",
"Number of public SELL orders": "N\u00ba de \u00f3rdenes p\u00fablicas de VENTA",
"Your last order #{{orderID}}": "Tu \u00faltima orden #{{orderID}}",
"Inactive order": "Orden inactiva",
"You do not have previous orders": "No tienes órdenes previas",
"Join RoboSats' Subreddit": "Únete al subreddit de RoboSats",
"You do not have previous orders": "No tienes \u00f3rdenes previas",
"Join RoboSats' Subreddit": "\u00danete al subreddit de RoboSats",
"RoboSats in Reddit": "RoboSats en Reddit",
"Current onchain payout fee": "Coste actual de recibir onchain",
"Use stealth invoices": "Facturas sigilosas",
"Stealth lightning invoices do not contain details about the trade except an order reference. Enable this setting if you don't want to disclose details to a custodial lightning wallet.": "Las facturas sigilosas no contienen información sobre tu orden excepto una referencia a la misma. Activalas para no desvelar información a tu proveedor de wallet custodial.",
"Stealth lightning invoices do not contain details about the trade except an order reference. Enable this setting if you don't want to disclose details to a custodial lightning wallet.": "Las facturas sigilosas no contienen informaci\u00f3n sobre tu orden excepto una referencia a la misma. Activalas para no desvelar informaci\u00f3n a tu proveedor de wallet custodial.",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Orden",
"Contract": "Contrato",
@ -254,7 +248,7 @@
"Order Details": "Detalles",
"Order status": "Estado de la orden",
"Waiting for maker bond": "Esperando la fianza del creador",
"Public": "Pública",
"Public": "P\u00fablica",
"Waiting for taker bond": "Esperando la fianza del tomador",
"Cancelled": "Cancelada",
"Expired": "Expirada",
@ -268,12 +262,12 @@
"Sending satoshis to buyer": "Enviando Sats al comprador",
"Sucessful trade": "Intercambio exitoso",
"Failed lightning network routing": "Enrutamiento fallido en la red Lightning",
"Wait for dispute resolution": "Espera a la resolución de la disputa",
"Maker lost dispute": "El creador perdió la disputa",
"Taker lost dispute": "El tomador perdió la disputa",
"Wait for dispute resolution": "Espera a la resoluci\u00f3n de la disputa",
"Maker lost dispute": "El creador perdi\u00f3 la disputa",
"Taker lost dispute": "El tomador perdi\u00f3 la disputa",
"Amount range": "Rango del monto",
"Swap destination": "Destino del swap",
"Accepted payment methods": "Métodos de pago aceptados",
"Accepted payment methods": "M\u00e9todos de pago aceptados",
"Others": "Otros",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Prima: {{premium}}%",
"Price and Premium": "Precio y prima",
@ -284,11 +278,11 @@
"Expires in": "Expira en",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} solicita cancelar colaborativamente",
"You asked for a collaborative cancellation": "Solicitaste cancelar colaborativamente",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Factura caducada: no confirmaste la publicación de la orden a tiempo. Puedes crear una nueva orden.",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Factura caducada: no confirmaste la publicaci\u00f3n de la orden a tiempo. Puedes crear una nueva orden.",
"This order has been cancelled by the maker": "El creador ha cancelado esta orden",
"Invoice expired. You did not confirm taking the order in time.": "La factura retenida ha expirado. Al no bloquearla a tiempo, no has confirmado tomar la orden.",
"Penalty lifted, good to go!": "Sanción revocada, ¡vamos!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "¡No puedes tomar una orden aún! Espera {{timeMin}}m {{timeSec}}s",
"Penalty lifted, good to go!": "Sanci\u00f3n revocada, \u00a1vamos!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "\u00a1No puedes tomar una orden a\u00fan! Espera {{timeMin}}m {{timeSec}}s",
"Too low": "Muy poco",
"Too high": "Demasiado",
"Enter amount of fiat to exchange for bitcoin": "Introduce el monto de fiat a cambiar por bitcoin",
@ -296,29 +290,28 @@
"You must specify an amount first": "Primero debes especificar el monto",
"Take Order": "Tomar orden",
"Wait until you can take an order": "Espera hasta poder tomar una orden",
"Cancel the order?": "¿Cancelar la orden?",
"If the order is cancelled now you will lose your bond.": "Si cancelas la orden ahora perderás tu fianza.",
"Confirm Cancel": "Confirmar cancelación",
"The maker is away": "El creador está ausente",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Tomando esta orden corres el riesgo de perder el tiempo. Si el creador no procede a tiempo, se te compensará en Sats con el 50% de la fianza del creador.",
"Collaborative cancel the order?": "¿Cancelar la orden colaborativamente?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Dado que el colateral está bloqueado, la orden solo puede cancelarse si tanto el creador como el tomador lo acuerdan.",
"Ask for Cancel": "Solicitar cancelación",
"Cancel the order?": "\u00bfCancelar la orden?",
"If the order is cancelled now you will lose your bond.": "Si cancelas la orden ahora perder\u00e1s tu fianza.",
"Confirm Cancel": "Confirmar cancelaci\u00f3n",
"The maker is away": "El creador est\u00e1 ausente",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Tomando esta orden corres el riesgo de perder el tiempo. Si el creador no procede a tiempo, se te compensar\u00e1 en Sats con el 50% de la fianza del creador.",
"Collaborative cancel the order?": "\u00bfCancelar la orden colaborativamente?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Dado que el colateral est\u00e1 bloqueado, la orden solo puede cancelarse si tanto el creador como el tomador lo acuerdan.",
"Ask for Cancel": "Solicitar cancelaci\u00f3n",
"Cancel": "Cancelar",
"Collaborative Cancel": "Cancelación colaborativa",
"Invalid Order Id": "ID de orden no válida",
"Collaborative Cancel": "Cancelaci\u00f3n colaborativa",
"Invalid Order Id": "ID de orden no v\u00e1lida",
"You must have a robot avatar to see the order details": "Debes tener un Robot para ver los detalles de la orden",
"This order has been cancelled collaborativelly": "Esta orden se ha cancelado colaborativamente",
"This order is not available": "Esta orden no está disponible",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Los Satoshis Robóticos del almacén no te entendieron. Por favor rellena un Bug Issue en Github https://github.com/reckless-satoshi/robosats/issues",
"This order is not available": "Esta orden no est\u00e1 disponible",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Los Satoshis Rob\u00f3ticos del almac\u00e9n no te entendieron. Por favor rellena un Bug Issue en Github https://github.com/reckless-satoshi/robosats/issues",
"WebLN": "WebLN",
"Payment not received, please check your WebLN wallet.": "No se ha recibido el pago, echa un vistazo a tu wallet WebLN.",
"Invoice not received, please check your WebLN wallet.": "No se ha recibido la factura, echa un vistazo a tu wallet WebLN.",
"You can close now your WebLN wallet popup.": "Ahora puedes cerrar el popup de tu wallet WebLN.",
"CHAT BOX - Chat.js": "Ventana del chat",
"You": "Tú",
"Peer": "Él",
"You": "T\u00fa",
"Peer": "\u00c9l",
"connected": "conectado",
"disconnected": "desconectado",
"Type a message": "Escribe un mensaje",
@ -328,24 +321,23 @@
"Audit PGP": "Auditar",
"Save full log as a JSON file (messages and credentials)": "Guardar el log completo como JSON (credenciales y mensajes)",
"Export": "Exporta",
"Don't trust, verify": "No confíes, verifica",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Tu comunicación se encripta de punta-a-punta con OpenPGP. Puedes verificar la privacida de este chat con cualquier herramienta de tercero basada en el estandar PGP.",
"Don't trust, verify": "No conf\u00edes, verifica",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Tu comunicaci\u00f3n se encripta de punta-a-punta con OpenPGP. Puedes verificar la privacida de este chat con cualquier herramienta de tercero basada en el estandar PGP.",
"Learn how to verify": "Aprende a verificar",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Esta es tu llave pública PGP. Tu contraparte la usa para encriptar mensajes que sólo tú puedes leer.",
"Your public key": "Tu llave pública",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La llave pública PGP de tu contraparte. La usas para encriptar mensajes que solo él puede leer y verificar que es él quíen firmó los mensajes que recibes.",
"Peer public key": "Llave pública de tu contraparte",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Tu llave privada PGP encriptada. La usas para desencriptar los mensajes que tu contraparte te envia. También la usas para firmar los mensajes que le envias.",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Esta es tu llave p\u00fablica PGP. Tu contraparte la usa para encriptar mensajes que s\u00f3lo t\u00fa puedes leer.",
"Your public key": "Tu llave p\u00fablica",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La llave p\u00fablica PGP de tu contraparte. La usas para encriptar mensajes que solo \u00e9l puede leer y verificar que es \u00e9l qu\u00eden firm\u00f3 los mensajes que recibes.",
"Peer public key": "Llave p\u00fablica de tu contraparte",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Tu llave privada PGP encriptada. La usas para desencriptar los mensajes que tu contraparte te envia. Tambi\u00e9n la usas para firmar los mensajes que le envias.",
"Your encrypted private key": "Tu llave privada encriptada",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "La contraseña para desencriptar tu llave privada. ¡Solo tú la sabes! Mantenla en secreto. También es el token de tu robot.",
"Your private key passphrase (keep secure!)": "La contraseña de tu llave privada ¡Mantener segura!",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "La contrase\u00f1a para desencriptar tu llave privada. \u00a1Solo t\u00fa la sabes! Mantenla en secreto. Tambi\u00e9n es el token de tu robot.",
"Your private key passphrase (keep secure!)": "La contrase\u00f1a de tu llave privada \u00a1Mantener segura!",
"Save credentials as a JSON file": "Guardar credenciales como achivo JSON",
"Keys": "Llaves",
"Save messages as a JSON file": "Guardar mensajes como archivo JSON",
"Messages": "Mensajes",
"Verified signature by {{nickname}}": "Firma de {{nickname}} verificada",
"Cannot verify signature of {{nickname}}": "No se pudo verificar la firma de {{nickname}}",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Contrato",
"Robots show commitment to their peers": "Los Robots deben mostrar su compromiso",
@ -353,114 +345,114 @@
"Lock {{amountSats}} Sats to TAKE order": "Bloquea {{amountSats}} Sats para TOMAR",
"Lock {{amountSats}} Sats as collateral": "Bloquea {{amountSats}} Sats como colateral",
"Copy to clipboard": "Copiar al portapapeles",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Esto es una factura retenida, los Sats se bloquean en tu cartera. Solo se cobrará si cancelas o pierdes una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Esto es una factura retenida, los Sats se bloquean en tu cartera. Será liberada al comprador al confirmar que has recibido {{currencyCode}}.",
"Your maker bond is locked": "Tu fianza de creador está bloqueada",
"Your taker bond is locked": "Tu fianza de tomador está bloqueada",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Esto es una factura retenida, los Sats se bloquean en tu cartera. Solo se cobrar\u00e1 si cancelas o pierdes una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Esto es una factura retenida, los Sats se bloquean en tu cartera. Ser\u00e1 liberada al comprador al confirmar que has recibido {{currencyCode}}.",
"Your maker bond is locked": "Tu fianza de creador est\u00e1 bloqueada",
"Your taker bond is locked": "Tu fianza de tomador est\u00e1 bloqueada",
"Your maker bond was settled": "Tu fianza se ha cobrado",
"Your taker bond was settled": "Tu fianza se ha cobrado",
"Your maker bond was unlocked": "Tu fianza se ha desbloqueado",
"Your taker bond was unlocked": "Tu fianza se ha desbloqueado",
"Your order is public": "Tu orden es pública",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Se paciente hasta que un robot tome tu orden. Esta ventana sonará 🔊 una vez que algún Robot tome tu orden. Entonces tendrás {{deposit_timer_hours}}h {{deposit_timer_minutes}}min para responder, si no respondes te arriesgas a perder tu fianza.",
"If the order expires untaken, your bond will return to you (no action needed).": "Si tu oferta expira sin ser tomada, tu fianza será desbloqueada en tu cartera automáticamente.",
"Your order is public": "Tu orden es p\u00fablica",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Se paciente hasta que un robot tome tu orden. Esta ventana sonar\u00e1 \ud83d\udd0a una vez que alg\u00fan Robot tome tu orden. Entonces tendr\u00e1s {{deposit_timer_hours}}h {{deposit_timer_minutes}}min para responder, si no respondes te arriesgas a perder tu fianza.",
"If the order expires untaken, your bond will return to you (no action needed).": "Si tu oferta expira sin ser tomada, tu fianza ser\u00e1 desbloqueada en tu cartera autom\u00e1ticamente.",
"Enable Telegram Notifications": "Notificar en Telegram",
"Enable TG Notifications": "Activar Notificaciones TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Serás llevado a un chat con el bot de Telegram de RoboSats. Simplemente pulsa Empezar. Ten en cuenta que si activas las notificaciones de Telegram reducirás tu anonimato.",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Ser\u00e1s llevado a un chat con el bot de Telegram de RoboSats. Simplemente pulsa Empezar. Ten en cuenta que si activas las notificaciones de Telegram reducir\u00e1s tu anonimato.",
"Go back": "Volver",
"Enable": "Activar",
"Telegram enabled": "Telegram activado",
"Public orders for {{currencyCode}}": "Órdenes públicas por {{currencyCode}}",
"Public orders for {{currencyCode}}": "\u00d3rdenes p\u00fablicas por {{currencyCode}}",
"Premium rank": "Percentil de la prima",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre las órdenes públicas de {{currencyCode}} (más alto, más barato)",
"A taker has been found!": "¡Un tomador ha sido encontrado!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Por favor, espera a que el tomador bloquee su fianza. Si no lo hace a tiempo, la orden será pública de nuevo.",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre las \u00f3rdenes p\u00fablicas de {{currencyCode}} (m\u00e1s alto, m\u00e1s barato)",
"A taker has been found!": "\u00a1Un tomador ha sido encontrado!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Por favor, espera a que el tomador bloquee su fianza. Si no lo hace a tiempo, la orden ser\u00e1 p\u00fablica de nuevo.",
"Payout Lightning Invoice": "Factura Lightning",
"Your info looks good!": "¡Info del envio recibida!",
"Your info looks good!": "\u00a1Info del envio recibida!",
"We are waiting for the seller lock the trade amount.": "Esperando a que el vendedor bloquee el colateral.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el vendedor no deposita, recuperarás tu fianza automáticamente. Además, recibirás una compensación (comprueba las recompensas en tu perfil).",
"The trade collateral is locked!": "¡El colateral está bloqueado!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estamos esperando a que el comprador envíe una factura Lightning. Cuando lo haga, podrás comunicarle directamente los detalles del pago en fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el comprador no coopera, se te devolverá el colateral y tu fianza automáticamente. Además, recibiras una compensación (comprueba las recompensas en tu perfil).",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el vendedor no deposita, recuperar\u00e1s tu fianza autom\u00e1ticamente. Adem\u00e1s, recibir\u00e1s una compensaci\u00f3n (comprueba las recompensas en tu perfil).",
"The trade collateral is locked!": "\u00a1El colateral est\u00e1 bloqueado!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estamos esperando a que el comprador env\u00ede una factura Lightning. Cuando lo haga, podr\u00e1s comunicarle directamente los detalles del pago en fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Espera un momento. Si el comprador no coopera, se te devolver\u00e1 el colateral y tu fianza autom\u00e1ticamente. Adem\u00e1s, recibiras una compensaci\u00f3n (comprueba las recompensas en tu perfil).",
"Confirm {{amount}} {{currencyCode}} sent": "Confirmar {{amount}} {{currencyCode}} enviado",
"Confirm {{amount}} {{currencyCode}} received": "Confirmar {{amount}} {{currencyCode}} recibido",
"Open Dispute": "Abrir Disputa",
"The order has expired": "La orden ha expirado",
"Chat with the buyer": "Habla con el comprador",
"Chat with the seller": "Habla con el vendedor",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "¡Di hola! Sé claro y conciso. Escríbele como puede enviarte {{amount}} {{currencyCode}}.",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "\u00a1Di hola! S\u00e9 claro y conciso. Escr\u00edbele como puede enviarte {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "El comprador a enviado el fiat. Presiona 'Confirmar recibido' cuando lo hayas recibido.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "¡Di hola! Pide los detalles de pago y pulsa 'Confirmar enviado' en cuanto pagues.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "\u00a1Di hola! Pide los detalles de pago y pulsa 'Confirmar enviado' en cuanto pagues.",
"Wait for the seller to confirm he has received the payment.": "Espera a que el vendedor confirme que ha recibido el pago.",
"Confirm you received {{amount}} {{currencyCode}}?": "¿Confirmas que has recibido {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmando que has recibido el fiat finalizará el intercambio. Los Sats del colateral se enviarán al comparador. Confirma sólo después de asegurar que te ha llegado {{amount}} {{currencyCode}}. Además, si lo has recibido {{currencyCode}} y no confirmas la recepción, te arriesgas a perder tu fianza.",
"Confirm you received {{amount}} {{currencyCode}}?": "\u00bfConfirmas que has recibido {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmando que has recibido el fiat finalizar\u00e1 el intercambio. Los Sats del colateral se enviar\u00e1n al comparador. Confirma s\u00f3lo despu\u00e9s de asegurar que te ha llegado {{amount}} {{currencyCode}}. Adem\u00e1s, si lo has recibido {{currencyCode}} y no confirmas la recepci\u00f3n, te arriesgas a perder tu fianza.",
"Confirm": "Confirmar",
"Trade finished!": "¡Intercambio finalizado!",
"rate_robosats": "¿Qué opinas de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "¡Muchas gracias! RoboSats también te ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats mejora con más liquidez y usuarios. ¡Cuéntale a un amigo bitcoiner sobre RoboSats!",
"Thank you for using Robosats!": "¡Gracias por usar RoboSats!",
"let_us_know_hot_to_improve": "Dinos cómo podría mejorar la plataforma (<1>Telegram</1> / <3>Github</3>)",
"Trade finished!": "\u00a1Intercambio finalizado!",
"rate_robosats": "\u00bfQu\u00e9 opinas de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too \u2764\ufe0f": "\u00a1Muchas gracias! RoboSats tambi\u00e9n te \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats mejora con m\u00e1s liquidez y usuarios. \u00a1Cu\u00e9ntale a un amigo bitcoiner sobre RoboSats!",
"Thank you for using Robosats!": "\u00a1Gracias por usar RoboSats!",
"let_us_know_hot_to_improve": "Dinos c\u00f3mo podr\u00eda mejorar la plataforma (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Empezar de nuevo",
"Attempting Lightning Payment": "Intentando el pago Lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats está intentando pagar tu factura de Lightning. Recuerda que los nodos Lightning deben estar en línea para recibir pagos.",
"Retrying!": "¡Reintentando!",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats est\u00e1 intentando pagar tu factura de Lightning. Recuerda que los nodos Lightning deben estar en l\u00ednea para recibir pagos.",
"Retrying!": "\u00a1Reintentando!",
"Lightning Routing Failed": "Fallo en el enrutamiento de Lightning",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "Tu factura ha expirado o se han hecho más de 3 intentos de pago. Entrega una nueva factura.",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "Tu factura ha expirado o se han hecho m\u00e1s de 3 intentos de pago. Entrega una nueva factura.",
"Check the list of compatible wallets": "Mira la lista de carteras compatibles",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats intentará pagar tu factura 3 veces con una pausa de un minuto entre intento. Si sigue fallando, podrás presentar una nueva factura. Comprueba si tienes suficiente liquidez entrante. Recuerda que los nodos de Lightning tienen que estar en línea para poder recibir pagos.",
"Next attempt in": "Próximo intento en",
"Do you want to open a dispute?": "¿Quieres abrir una disputa?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "El equipo de RoboSats examinará las declaraciones y evidencias presentadas. Como el equipo no puede leer el chat, necesitas escribir una declaració completa y exhaustiva. Es mejor dar un método de contacto de usar y tirar con tu declaración. Los Sats del colateral serán enviados al ganador de la disputa, mientras que el perdedor perderá la fianza.",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats intentar\u00e1 pagar tu factura 3 veces con una pausa de un minuto entre intento. Si sigue fallando, podr\u00e1s presentar una nueva factura. Comprueba si tienes suficiente liquidez entrante. Recuerda que los nodos de Lightning tienen que estar en l\u00ednea para poder recibir pagos.",
"Next attempt in": "Pr\u00f3ximo intento en",
"Do you want to open a dispute?": "\u00bfQuieres abrir una disputa?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "El equipo de RoboSats examinar\u00e1 las declaraciones y evidencias presentadas. Como el equipo no puede leer el chat, necesitas escribir una declaraci\u00f3 completa y exhaustiva. Es mejor dar un m\u00e9todo de contacto de usar y tirar con tu declaraci\u00f3n. Los Sats del colateral ser\u00e1n enviados al ganador de la disputa, mientras que el perdedor perder\u00e1 la fianza.",
"Disagree": "Volver",
"Agree and open dispute": "Abrir disputa",
"A dispute has been opened": "Una disputa ha sido abierta",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Por favor, presenta tu declaración. Se claro y conciso sobre que pasó y entrega la evidencia necesaria. DEBES dar un metodo de contacto para comunicarte con el equipo: método de contacto de usar y tirar, XMPP o usuario de Telegram. Las disputas son resueltas con la discreción de los Robots reales (también conocidos como humanos), así que ayuda en lo posible para asegurar un resultado justo. 5000 caracteres máx.",
"Submit dispute statement": "Presentar declaración",
"We have received your statement": "Hemos recibido tu declaración",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estamos esperando la declaración de tu compañero. Si dudas sobre el estado de la disputa o quieres añadir más información, contacta en robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Por favor, guarda la información necesaria para identificar tu orden y tus pagos: ID de orden; claves del pago de la fianza o el colateral (comprueba tu cartera Lightning); cantidad exacta de Sats; y nombre del Robot. Tendrás que identificarte como el usuario involucrado en este intercambio por email (u otro método de contacto).",
"We have the statements": "Tenemos la declaración",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambas declaraciones se han recibido, espera a que el equipo resuelva la disputa. Si dudas sobre el estado de la disputa o quieres añadir información, contacta con robosats@protonmail.com. Si no diste un método de contacto, o dudas de si lo escribiste bien, escríbenos inmediatamente.",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Por favor, presenta tu declaraci\u00f3n. Se claro y conciso sobre que pas\u00f3 y entrega la evidencia necesaria. DEBES dar un metodo de contacto para comunicarte con el equipo: m\u00e9todo de contacto de usar y tirar, XMPP o usuario de Telegram. Las disputas son resueltas con la discreci\u00f3n de los Robots reales (tambi\u00e9n conocidos como humanos), as\u00ed que ayuda en lo posible para asegurar un resultado justo. 5000 caracteres m\u00e1x.",
"Submit dispute statement": "Presentar declaraci\u00f3n",
"We have received your statement": "Hemos recibido tu declaraci\u00f3n",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estamos esperando la declaraci\u00f3n de tu compa\u00f1ero. Si dudas sobre el estado de la disputa o quieres a\u00f1adir m\u00e1s informaci\u00f3n, contacta en robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Por favor, guarda la informaci\u00f3n necesaria para identificar tu orden y tus pagos: ID de orden; claves del pago de la fianza o el colateral (comprueba tu cartera Lightning); cantidad exacta de Sats; y nombre del Robot. Tendr\u00e1s que identificarte como el usuario involucrado en este intercambio por email (u otro m\u00e9todo de contacto).",
"We have the statements": "Tenemos la declaraci\u00f3n",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambas declaraciones se han recibido, espera a que el equipo resuelva la disputa. Si dudas sobre el estado de la disputa o quieres a\u00f1adir informaci\u00f3n, contacta con robosats@protonmail.com. Si no diste un m\u00e9todo de contacto, o dudas de si lo escribiste bien, escr\u00edbenos inmediatamente.",
"You have won the dispute": "Has ganado la disputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Puedes retirar la cantidad de la resolución de la disputa (fianza y colateral) desde las recompensas de tu perfil. Si hay algo que el equipo pueda hacer, no dudes en contactar con robosats@protonmail.com (o a través del método de contacto de usar y tirar que especificaste).",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Puedes retirar la cantidad de la resoluci\u00f3n de la disputa (fianza y colateral) desde las recompensas de tu perfil. Si hay algo que el equipo pueda hacer, no dudes en contactar con robosats@protonmail.com (o a trav\u00e9s del m\u00e9todo de contacto de usar y tirar que especificaste).",
"You have lost the dispute": "Has perdido la disputa",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Desafortunadamente has perdido la disputa. Si piensas que es un error también puedes pedir reabrir el caso por email a robosats@protonmail.com. De todas formas, las probabilidades de ser investigado de nuevo son bajas.",
"Expired not taken": "Expiró sin ser tomada",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Desafortunadamente has perdido la disputa. Si piensas que es un error tambi\u00e9n puedes pedir reabrir el caso por email a robosats@protonmail.com. De todas formas, las probabilidades de ser investigado de nuevo son bajas.",
"Expired not taken": "Expir\u00f3 sin ser tomada",
"Maker bond not locked": "La fianza del creador no fue bloqueada",
"Escrow not locked": "El depósito de garantía no fue bloqueado",
"Invoice not submitted": "No se entregó factura del comprado",
"Neither escrow locked or invoice submitted": "Ni el depósito de garantía fue bloqueado ni se entregó factura del comprador",
"Escrow not locked": "El dep\u00f3sito de garant\u00eda no fue bloqueado",
"Invoice not submitted": "No se entreg\u00f3 factura del comprado",
"Neither escrow locked or invoice submitted": "Ni el dep\u00f3sito de garant\u00eda fue bloqueado ni se entreg\u00f3 factura del comprador",
"Renew Order": "Renovar Orden",
"Pause the public order": "Pausar la orden pública",
"Your order is paused": "Tu orden está en pausa",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Tu orden pública fue pausada. Ahora mismo, la orden no puede ser vista ni tomada por otros robots. Puedes volver a activarla cuando desees.",
"Pause the public order": "Pausar la orden p\u00fablica",
"Your order is paused": "Tu orden est\u00e1 en pausa",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Tu orden p\u00fablica fue pausada. Ahora mismo, la orden no puede ser vista ni tomada por otros robots. Puedes volver a activarla cuando desees.",
"Unpause Order": "Activar Orden",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Si no bloqueas el colateral te arriesgas a perder tu fianza. Dispones en total de {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Ver billeteras compatibles",
"Failure reason:": "Razón del fallo:",
"Payment isn't failed (yet)": "El pago no ha fallado aún",
"There are more routes to try, but the payment timeout was exceeded.": "Quedan rutas por probar, pero el tiempo máximo del intento ha sido excedido.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Todas las rutas posibles han sido probadas y han fallado de forma permanente. O quizá no había ninguna ruta.",
"Failure reason:": "Raz\u00f3n del fallo:",
"Payment isn't failed (yet)": "El pago no ha fallado a\u00fan",
"There are more routes to try, but the payment timeout was exceeded.": "Quedan rutas por probar, pero el tiempo m\u00e1ximo del intento ha sido excedido.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Todas las rutas posibles han sido probadas y han fallado de forma permanente. O quiz\u00e1 no hab\u00eda ninguna ruta.",
"A non-recoverable error has occurred.": "A non-recoverable error has occurred.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Los detalles del pago son incorrectos (hash desconocido, cantidad inválida o CLTV delta final inválido).",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Los detalles del pago son incorrectos (hash desconocido, cantidad inv\u00e1lida o CLTV delta final inv\u00e1lido).",
"Insufficient unlocked balance in RoboSats' node.": "Balance libre de ser usado en el nodo de RoboSats insuficiente.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "La factura entregada parece solo tener rutas ocultas muy caras, estas usando una billetera incomptable(¿Quizás Muun?). Echa un vistazo a la lista de billeteras compatibles en wallets.robosats.com",
"The invoice provided has no explicit amount": "La factura entregada no contiene una cantidad explícita",
"Does not look like a valid lightning invoice": "No parece ser una factura lightning válida",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "La factura entregada parece solo tener rutas ocultas muy caras, estas usando una billetera incomptable(\u00bfQuiz\u00e1s Muun?). Echa un vistazo a la lista de billeteras compatibles en wallets.robosats.com",
"The invoice provided has no explicit amount": "La factura entregada no contiene una cantidad expl\u00edcita",
"Does not look like a valid lightning invoice": "No parece ser una factura lightning v\u00e1lida",
"The invoice provided has already expired": "La factura que has entregado ya ha caducado",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Asegurate de EXPORTAR el registro del chat. Los administradores pueden pedirte el registro del chat en caso de discrepancias. Es tu responsabilidad proveerlo.",
"Invalid address": "Dirección inválida",
"Unable to validate address, check bitcoind backend": "No ha sido posible validar la dirección, comprobar el backend bitcoind",
"Invalid address": "Direcci\u00f3n inv\u00e1lida",
"Unable to validate address, check bitcoind backend": "No ha sido posible validar la direcci\u00f3n, comprobar el backend bitcoind",
"Submit payout info for {{amountSats}} Sats": "Envia info para recibir {{amountSats}} Sats",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Envía una factura por {{amountSats}} Sats",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Env\u00eda una factura por {{amountSats}} Sats",
"Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.": "Antes de dejarte enviar {{amountFiat}} {{currencyCode}}, queremos asegurarnos de que puedes recibir BTC.",
"RoboSats will do a swap and send the Sats to your onchain address.": "RoboSats hará un swap y enviará los Sats a tu dirección en la cadena.",
"Swap fee": "Comisión del swap",
"Mining fee": "Comisión minera",
"Mining Fee": "Comisión Minera",
"RoboSats will do a swap and send the Sats to your onchain address.": "RoboSats har\u00e1 un swap y enviar\u00e1 los Sats a tu direcci\u00f3n en la cadena.",
"Swap fee": "Comisi\u00f3n del swap",
"Mining fee": "Comisi\u00f3n minera",
"Mining Fee": "Comisi\u00f3n Minera",
"Final amount you will receive": "Monto final que vas a recibir",
"Bitcoin Address": "Dirección Bitcoin",
"Bitcoin Address": "Direcci\u00f3n Bitcoin",
"Your TXID": "Tu TXID",
"Lightning": "Lightning",
"Onchain": "Onchain",
@ -468,13 +460,13 @@
"Trade Summary": "Resumen del intercambio",
"Maker": "Creador",
"Taker": "Tomador",
"User role": "Operación",
"User role": "Operaci\u00f3n",
"Sent": "Enviado",
"Received": "Recibido",
"BTC received": "BTC recibido",
"BTC sent": "BTC enviado",
"{{tradeFeeSats}} Sats ({{tradeFeePercent}}%)": "{{tradeFeeSats}} Sats ({{tradeFeePercent}}%)",
"Trade fee": "Comisión",
"Trade fee": "Comisi\u00f3n",
"{{swapFeeSats}} Sats ({{swapFeePercent}}%)": "{{swapFeeSats}} Sats ({{swapFeePercent}}%)",
"Onchain swap fee": "Coste swap onchain",
"{{miningFeeSats}} Sats": "{{miningFeeSats}} Sats",
@ -489,45 +481,44 @@
"Timestamp": "Marca de hora",
"Completed in": "Completado en",
"Contract exchange rate": "Tasa de cambio del contrato",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Cerrar",
"What is RoboSats?": "¿Qué es RoboSats?",
"What is RoboSats?": "\u00bfQu\u00e9 es RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Es un exchange P2P que facilita intercambios bitcoin/fiat sobre Lightning.",
"RoboSats is an open source project ": "RoboSats es un proyecto de código abierto ",
"RoboSats is an open source project ": "RoboSats es un proyecto de c\u00f3digo abierto ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Simplifica el emparejamiento y minimiza la necesidad de confianza. RoboSats se centra en la privacidad y la velocidad.",
"(GitHub).": "(GitHub).",
"How does it work?": "¿Cómo funciona?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 quiere vender bitcoin. Ella publica una orden de venta. BafflingBob02 quiere comprar bitcoin y escoge la orden de Alicia. Ambos tienen que bloquear una pequeña fianza en Lightning para probar que son verdaderos Robots. Después, Alicia envía el colateral también usando una factura de Lightning. RoboSats bloquea la factura hasta que Alicia confirma haber recibido el fiat, después el bitcoin se libera y envía a Bob. ¡Disfruta tu bitcoin, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "En ningún momento AnonymousAlice01 ni BafflingBob02 tienen que confiar los fondos de bitcoin a la otra parte. En caso de conflicto, el personal de RoboSats ayudará a resolver la disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Puedes encontrar una descripción paso a paso de los intercambios en ",
"How it works": "Cómo funciona",
"You can also check the full guide in ": "También puedes revisar la guía entera en ",
"How to use": "Cómo utilizar",
"What payment methods are accepted?": "¿Qué métodos de pago son aceptados?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Todos siempre que sean rápidos. Puedes escribir abajo tu método de pago preferido(s). Tendrás que encontrar un compañero que acepte ese método. El paso para intercambiar el fiat tiene un tiempo de expiración de 24 horas antes de que se abra una disputa automáticamente. Te recomendamos métodos instantáneos de envío de fiat.",
"What are the fees?": "¿Cuales son las comisiones?",
"RoboSats total fee for an order is {{tradeFee}}%. This fee is split to be covered by both: the order maker ({{makerFee}}%) and the order taker ({{takerFee}}%). In case an onchain address is used to received the Sats a variable swap fee applies. Check the exchange details by tapping on the bottom bar icon to see the current swap fee.": "La comisión total de un intercambio es {{tradeFee}}%. Esta comisión se divide en: creador de la orden ({{makerFee}}%) y tomador de la order ({{takerFee}}%). En caso de que se utilize una dirección onchain para recibir los chats también exise una comisión variable para cubrir el coste del swap (ver las estadisticas del exchange clickando abajo para ver el coste actual del swap).",
"How does it work?": "\u00bfC\u00f3mo funciona?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 quiere vender bitcoin. Ella publica una orden de venta. BafflingBob02 quiere comprar bitcoin y escoge la orden de Alicia. Ambos tienen que bloquear una peque\u00f1a fianza en Lightning para probar que son verdaderos Robots. Despu\u00e9s, Alicia env\u00eda el colateral tambi\u00e9n usando una factura de Lightning. RoboSats bloquea la factura hasta que Alicia confirma haber recibido el fiat, despu\u00e9s el bitcoin se libera y env\u00eda a Bob. \u00a1Disfruta tu bitcoin, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "En ning\u00fan momento AnonymousAlice01 ni BafflingBob02 tienen que confiar los fondos de bitcoin a la otra parte. En caso de conflicto, el personal de RoboSats ayudar\u00e1 a resolver la disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Puedes encontrar una descripci\u00f3n paso a paso de los intercambios en ",
"How it works": "C\u00f3mo funciona",
"You can also check the full guide in ": "Tambi\u00e9n puedes revisar la gu\u00eda entera en ",
"How to use": "C\u00f3mo utilizar",
"What payment methods are accepted?": "\u00bfQu\u00e9 m\u00e9todos de pago son aceptados?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Todos siempre que sean r\u00e1pidos. Puedes escribir abajo tu m\u00e9todo de pago preferido(s). Tendr\u00e1s que encontrar un compa\u00f1ero que acepte ese m\u00e9todo. El paso para intercambiar el fiat tiene un tiempo de expiraci\u00f3n de 24 horas antes de que se abra una disputa autom\u00e1ticamente. Te recomendamos m\u00e9todos instant\u00e1neos de env\u00edo de fiat.",
"What are the fees?": "\u00bfCuales son las comisiones?",
"RoboSats total fee for an order is {{tradeFee}}%. This fee is split to be covered by both: the order maker ({{makerFee}}%) and the order taker ({{takerFee}}%). In case an onchain address is used to received the Sats a variable swap fee applies. Check the exchange details by tapping on the bottom bar icon to see the current swap fee.": "La comisi\u00f3n total de un intercambio es {{tradeFee}}%. Esta comisi\u00f3n se divide en: creador de la orden ({{makerFee}}%) y tomador de la order ({{takerFee}}%). En caso de que se utilize una direcci\u00f3n onchain para recibir los chats tambi\u00e9n exise una comisi\u00f3n variable para cubrir el coste del swap (ver las estadisticas del exchange clickando abajo para ver el coste actual del swap).",
"Be aware your fiat payment provider might charge extra fees. In any case, the buyer bears the costs of sending fiat. That includes banking charges, transfer fees and foreign exchange spreads. The seller must receive exactly the amount stated in the order details.": "Ten en cuenta que tu pasarela de pagos fiat puede cobrarte comisiones extra. En cualquier caso, estos costes siempre son cubiertos por el comprador. Esto incluye, comsiones de transferencia, costes bancarios y horquilla de intercambio de divisas. El vendedor debe recibir la cantidad exacta que se detalla en la orden.",
"Are there trade limits?": "¿Hay límites de intercambios?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Para minimizar fallos en el enrutamiento Lightning, el máximo por intercambio es de {{maxAmount}} Sats. No hay límite de intercambios en el tiempo. Aunque un Robot solo puede intervenir en una orden a la vez, puedes usar varios Robots en diferentes navegadores (¡recuerda guardar los tokens de tus Robots!).",
"Is RoboSats private?": "¿RoboSats es privado?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats no custodia tus fondos y no recolecta o custodia ningún dato personal, pues no le importa quien eres. RoboSats nunca te preguntará por tu nombre, país o número de documento. Para mejorar tu privacidad, usa el Navegador Tor y accede al enlace .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Tu compañero de intercambio es el único que puede potencialmente adivinar algo sobre ti. Mantén tu conversación corta y concisa. Evita dar datos que no sean estrictamente necesarios para el pago del fiat.",
"What are the risks?": "¿Cuáles son los riesgos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Esta es una aplicación experimental, algo puede ir mal. ¡Intercambia en pequeñas cantidades!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "El vendedor tiene los mismos riesgos de devolución como con cualquier servicio P2P. PayPal o tarjetas de crédito no están recomendadas.",
"What is the trust model?": "¿Cuál es el modelo de confianza?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "El comprador y el vendedor nunca deben de confiar el uno en el otro. Una mínima confianza en RoboSats es necesaria, pues es el enlace entre la fianza del vendedor y el pago del comprador, que no es atómico (todavía). Además, las disputas se resuelven por el personal de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Con total claridad, los requerimentos de confianza son minimizados. De todas formas, todavía hay una forma en que RoboSats podría huir con tus Sats: no enviándoselos al comprador. Podría argumentarse que ese movimiento dañaría la reputación de RoboSats por un pequeño importe. De todas formas, deberías dudar y solo intercambiar pequeños montos cada vez. Para montos grandes usa un exchange de primera capa como Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Puedes aumentar la confianza en RoboSats inspeccionando el código fuente.",
"Project source code": "Código fuente del proyecto",
"What happens if RoboSats suddenly disappears?": "¿Qué pasaría si RoboSats desapareciera?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Tus Sats te serán devueltos. Cualquier factura que no se liquide será automaticamente devuelta incluso aunque RoboSats desaparezca. Esto es cierto tanto para las fianzas como para los colaterales. De todas formas, entre que el vendedor confirma haber recibido el fiat y el comprador recibe los Sats, hay un tiempo de aprox. 1 segundo en que los fondos podrían perderse si RoboSats desapareciera. Asegurate de tener suficiente liquidez entrante para evitar fallos de enrutamiento. Si tienes algún problema, busca en los canales públicos de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "En muchos países usar RoboSats no es diferente a usar Ebay o WallaPop. Tu regulación puede variar, es tu responsabilidad su cumplimiento.",
"Is RoboSats legal in my country?": "¿Es RoboSats legal en mi país?",
"Are there trade limits?": "\u00bfHay l\u00edmites de intercambios?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Para minimizar fallos en el enrutamiento Lightning, el m\u00e1ximo por intercambio es de {{maxAmount}} Sats. No hay l\u00edmite de intercambios en el tiempo. Aunque un Robot solo puede intervenir en una orden a la vez, puedes usar varios Robots en diferentes navegadores (\u00a1recuerda guardar los tokens de tus Robots!).",
"Is RoboSats private?": "\u00bfRoboSats es privado?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats no custodia tus fondos y no recolecta o custodia ning\u00fan dato personal, pues no le importa quien eres. RoboSats nunca te preguntar\u00e1 por tu nombre, pa\u00eds o n\u00famero de documento. Para mejorar tu privacidad, usa el Navegador Tor y accede al enlace .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Tu compa\u00f1ero de intercambio es el \u00fanico que puede potencialmente adivinar algo sobre ti. Mant\u00e9n tu conversaci\u00f3n corta y concisa. Evita dar datos que no sean estrictamente necesarios para el pago del fiat.",
"What are the risks?": "\u00bfCu\u00e1les son los riesgos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Esta es una aplicaci\u00f3n experimental, algo puede ir mal. \u00a1Intercambia en peque\u00f1as cantidades!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "El vendedor tiene los mismos riesgos de devoluci\u00f3n como con cualquier servicio P2P. PayPal o tarjetas de cr\u00e9dito no est\u00e1n recomendadas.",
"What is the trust model?": "\u00bfCu\u00e1l es el modelo de confianza?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "El comprador y el vendedor nunca deben de confiar el uno en el otro. Una m\u00ednima confianza en RoboSats es necesaria, pues es el enlace entre la fianza del vendedor y el pago del comprador, que no es at\u00f3mico (todav\u00eda). Adem\u00e1s, las disputas se resuelven por el personal de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Con total claridad, los requerimentos de confianza son minimizados. De todas formas, todav\u00eda hay una forma en que RoboSats podr\u00eda huir con tus Sats: no envi\u00e1ndoselos al comprador. Podr\u00eda argumentarse que ese movimiento da\u00f1ar\u00eda la reputaci\u00f3n de RoboSats por un peque\u00f1o importe. De todas formas, deber\u00edas dudar y solo intercambiar peque\u00f1os montos cada vez. Para montos grandes usa un exchange de primera capa como Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Puedes aumentar la confianza en RoboSats inspeccionando el c\u00f3digo fuente.",
"Project source code": "C\u00f3digo fuente del proyecto",
"What happens if RoboSats suddenly disappears?": "\u00bfQu\u00e9 pasar\u00eda si RoboSats desapareciera?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Tus Sats te ser\u00e1n devueltos. Cualquier factura que no se liquide ser\u00e1 automaticamente devuelta incluso aunque RoboSats desaparezca. Esto es cierto tanto para las fianzas como para los colaterales. De todas formas, entre que el vendedor confirma haber recibido el fiat y el comprador recibe los Sats, hay un tiempo de aprox. 1 segundo en que los fondos podr\u00edan perderse si RoboSats desapareciera. Asegurate de tener suficiente liquidez entrante para evitar fallos de enrutamiento. Si tienes alg\u00fan problema, busca en los canales p\u00fablicos de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "En muchos pa\u00edses usar RoboSats no es diferente a usar Ebay o WallaPop. Tu regulaci\u00f3n puede variar, es tu responsabilidad su cumplimiento.",
"Is RoboSats legal in my country?": "\u00bfEs RoboSats legal en mi pa\u00eds?",
"Disclaimer": "Aviso",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Esta aplicación de Lightning está en continuo desarrollo y se entrega tal cual: intercambia con la máxima precaución. No hay soporte privado. El soporte se ofrece solo en canales públicos.",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Esta aplicaci\u00f3n de Lightning est\u00e1 en continuo desarrollo y se entrega tal cual: intercambia con la m\u00e1xima precauci\u00f3n. No hay soporte privado. El soporte se ofrece solo en canales p\u00fablicos.",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats nunca te contactará. RoboSats jamás te preguntará por el token de tu Robot."
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats nunca te contactar\u00e1. RoboSats jam\u00e1s te preguntar\u00e1 por el token de tu Robot."
}

View File

@ -6,7 +6,6 @@
"Hide": "Ezkutatu",
"You are self-hosting RoboSats": "You are self-hosting RoboSats",
"RoboSats client is served from your own node granting you the strongest security and privacy.": "RoboSats webgunea zure nodotik zerbitzatzen da beraz segurtasun eta pribatutasun sendoena eskaintzen dizu.",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "LN P2P Exchange Sinple eta Pribatua",
"This is your trading avatar": "Hau da zure salerosketa Robota",
@ -23,7 +22,6 @@
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Learn Robosats bisitatu behar duzu. Bertan, Robosats erabiltzen ikasteko eta nola dabilen ulertzeko tutorialak eta dokumentazioa aurkituko dituzu.",
"Let's go!": "Goazen!",
"Save token and PGP credentials to file": "Gorde tokena eta PGP kredentzialak fitxategira",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Eskaera",
"Customize": "Pertsonalizatu",
@ -80,7 +78,6 @@
"Done": "Prest",
"You do not have a robot avatar": "Ez daukazu robot avatarrik",
"You need to generate a robot avatar in order to become an order maker": "Robot avatar bat sortu behar duzu eskaera bat egin ahal izateko",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Zehaztu gabea",
"Instant SEPA": "Bat-bateko SEPA",
@ -88,7 +85,6 @@
"Google Play Gift Code": "Google Play Opari Kodea",
"Cash F2F": "Eskudirua aurrez-aurre",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Saltzaile",
"Buyer": "Erosle",
@ -162,7 +158,6 @@
"no": "ez",
"Depth chart": "Eskaera grafikoa",
"Chart": "Grafikoa",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Nerdentzako estatistikak",
"LND version": "LND bersioa",
@ -198,7 +193,7 @@
"Claim": "Eskatu",
"Invoice for {{amountSats}} Sats": "{{amountSats}} Sateko fakura",
"Submit": "Bidali",
"There it goes, thank you!🥇": "Hor doa, mila esker!🥇",
"There it goes, thank you!\ud83e\udd47": "Hor doa, mila esker!\ud83e\udd47",
"You have an active order": "Eskaera aktibo bat duzu",
"You can claim satoshis!": "Satoshiak eska ditzakezu!",
"Public Buy Orders": "Erosteko Eskaera Publikoak",
@ -238,7 +233,6 @@
"Coordinator": "Koordinatzailea",
"RoboSats version": "RoboSats bersioa",
"LN Node": "LN Nodoa",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Eskaera",
"Contract": "Kontratua",
@ -313,7 +307,6 @@
"Payment not received, please check your WebLN wallet.": "Ordainketa ez da jaso, mesedez begiratu zure WebLN kartera.",
"Invoice not received, please check your WebLN wallet.": "Faktura ez da jaso, mesedez begiratu zure WebLN kartera.",
"Payment detected, you can close now your WebLN wallet popup.": "Ordainketa detektatu da, orain zure WebLN karteraren popup itxi dezakezu.",
"CHAT BOX - Chat.js": "Chat Box",
"You": "Zu",
"Peer": "Bera",
@ -343,7 +336,6 @@
"Messages": "Mezuak",
"Verified signature by {{nickname}}": "{{nickname}}ren egiaztatutako sinadura",
"Cannot verify signature of {{nickname}}": "Ezin izan da {{nickname}}ren sinadura egiaztatu",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Kontratua",
"Robots show commitment to their peers": "Robotek beren pareekiko konpromezua erakusten dute",
@ -360,7 +352,7 @@
"Your maker bond was unlocked": "Zure egile fidantza desblokeatu da",
"Your taker bond was unlocked": "Zure hartzaile fidantza ordaindu da",
"Your order is public": "Zure eskaera publikatu da",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Pazientzia izan robotek liburua aztertzen duten bitartean. Kutxa honek joko du 🔊 robot batek zure eskaera hartzen duenean, gero {{deposit_timer_hours}}h {{deposit_timer_minutes}}m izango dituzu erantzuteko. Ez baduzu erantzuten, zure fidantza galdu dezakezu.",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Pazientzia izan robotek liburua aztertzen duten bitartean. Kutxa honek joko du \ud83d\udd0a robot batek zure eskaera hartzen duenean, gero {{deposit_timer_hours}}h {{deposit_timer_minutes}}m izango dituzu erantzuteko. Ez baduzu erantzuten, zure fidantza galdu dezakezu.",
"If the order expires untaken, your bond will return to you (no action needed).": "Eskaera hartu gabe amaitzen bada, fidantza automatikoki itzuliko zaizu.",
"Enable Telegram Notifications": "Baimendu Telegram Jakinarazpenak",
"Enable TG Notifications": "Baimendu TG Jakinarazpenak",
@ -395,7 +387,7 @@
"Confirm": "Baieztatu",
"Trade finished!": "Salerosketa amaitua!",
"rate_robosats": "Zer iruditu zaizu <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Mila esker! RoboSatsek ere maite zaitu ❤️",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Mila esker! RoboSatsek ere maite zaitu \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats hobetu egiten da likidezia eta erabiltzaile gehiagorekin. Aipatu Robosats lagun bitcoiner bati!",
"Thank you for using Robosats!": "Mila esker Robosats erabiltzeagatik!",
"let_us_know_hot_to_improve": "Kontaiguzu nola hobetu dezakegun (<1>Telegram</1> / <3>Github</3>)",
@ -487,7 +479,6 @@
"Timestamp": "Amaiera ordua",
"Completed in": "Igarotako denbora",
"Contract exchange rate": "Kontratuaren truke-tasa",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Itxi",
"What is RoboSats?": "Zer da RoboSats?",

View File

@ -1,23 +1,21 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "Vous n'utilisez pas RoboSats en privé",
"desktop_unsafe_alert": "Certaines fonctionnalités sont désactivées pour votre protection (e.g, le chat) et vous ne pourrez pas effectuer une transaction sans elles. Pour protéger votre vie privée et activer pleinement RoboSats, utilisez <1>Tor Browser</1> et visitez le site <3>Onion</3>.",
"phone_unsafe_alert": "Vous ne serez pas en mesure d'effectuer un échange. Utilisez <1>Tor Browser</1> et visitez le site <3>Onion</3>.",
"You are not using RoboSats privately": "Vous n'utilisez pas RoboSats en priv\u00e9",
"desktop_unsafe_alert": "Certaines fonctionnalit\u00e9s sont d\u00e9sactiv\u00e9es pour votre protection (e.g, le chat) et vous ne pourrez pas effectuer une transaction sans elles. Pour prot\u00e9ger votre vie priv\u00e9e et activer pleinement RoboSats, utilisez <1>Tor Browser</1> et visitez le site <3>Onion</3>.",
"phone_unsafe_alert": "Vous ne serez pas en mesure d'effectuer un \u00e9change. Utilisez <1>Tor Browser</1> et visitez le site <3>Onion</3>.",
"Hide": "Cacher",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Echange LN P2P simple et privé",
"This is your trading avatar": "Ceci est votre avatar d'échange",
"Store your token safely": "Stockez votre jeton en sécurité",
"A robot avatar was found, welcome back!": "Un avatar de robot a été trouvé, bienvenu",
"Copied!": "Copié!",
"Generate a new token": "Générer un nouveau jeton",
"Generate Robot": "Générer un robot",
"Simple and Private LN P2P Exchange": "Echange LN P2P simple et priv\u00e9",
"This is your trading avatar": "Ceci est votre avatar d'\u00e9change",
"Store your token safely": "Stockez votre jeton en s\u00e9curit\u00e9",
"A robot avatar was found, welcome back!": "Un avatar de robot a \u00e9t\u00e9 trouv\u00e9, bienvenu",
"Copied!": "Copi\u00e9!",
"Generate a new token": "G\u00e9n\u00e9rer un nouveau jeton",
"Generate Robot": "G\u00e9n\u00e9rer un robot",
"You must enter a new token first": "Vous devez d'abord saisir un nouveau jeton",
"Make Order": "Créer un ordre",
"Make Order": "Cr\u00e9er un ordre",
"Info": "Info",
"View Book": "Voir livre",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Ordre",
"Customize": "Personnaliser",
@ -25,57 +23,55 @@
"Buy": "Acheter",
"Sell": "Vendre",
"Amount": "Montant",
"Amount of fiat to exchange for bitcoin": "Montant de fiat à échanger contre bitcoin",
"Amount of fiat to exchange for bitcoin": "Montant de fiat \u00e0 \u00e9changer contre bitcoin",
"Invalid": "Invalide",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Entrez vos modes de paiement fiat préférées. Les modes rapides sont fortement recommandées.",
"Must be shorter than 65 characters": "Doit être plus court que 65 caractères",
"Swap Destination(s)": "Destination(s) de l'échange",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Entrez vos modes de paiement fiat pr\u00e9f\u00e9r\u00e9es. Les modes rapides sont fortement recommand\u00e9es.",
"Must be shorter than 65 characters": "Doit \u00eatre plus court que 65 caract\u00e8res",
"Swap Destination(s)": "Destination(s) de l'\u00e9change",
"Fiat Payment Method(s)": "Mode(s) de paiement Fiat",
"You can add any method": "Vous pouvez ajouter n'importe quel mode",
"Add New": "Ajouter nouveau",
"Choose a Pricing Method": "Choisir un mode de tarification",
"Relative": "Relative",
"Let the price move with the market": "Laisser le prix évoluer avec le marché",
"Premium over Market (%)": "Prime sur le marché (%)",
"Let the price move with the market": "Laisser le prix \u00e9voluer avec le march\u00e9",
"Premium over Market (%)": "Prime sur le march\u00e9 (%)",
"Explicit": "Explicite",
"Set a fix amount of satoshis": "Fixer un montant fixe de satoshis",
"Satoshis": "Satoshis",
"Let the taker chose an amount within the range": "Laisser le preneur choisir un montant dans la fourchette",
"Enable Amount Range": "Activer la plage de montants",
"From": "De",
"to": "à",
"Public Duration (HH:mm)": "Durée publique (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Définissez la peau en jeu, augmentez pour une meilleure assurance de sécurité",
"Fidelity Bond Size": "Taille de la garantie de fidélité",
"to": "\u00e0",
"Public Duration (HH:mm)": "Dur\u00e9e publique (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "D\u00e9finissez la peau en jeu, augmentez pour une meilleure assurance de s\u00e9curit\u00e9",
"Fidelity Bond Size": "Taille de la garantie de fid\u00e9lit\u00e9",
"Allow bondless takers": "Autoriser les preneurs sans caution",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "BIENTÔT DISPONIBLE - Haut risque! Limité à {{limitSats}}K Sats",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "BIENT\u00d4T DISPONIBLE - Haut risque! Limit\u00e9 \u00e0 {{limitSats}}K Sats",
"You must fill the order correctly": "Vous devez remplir l'ordre correctement",
"Create Order": "Créer un ordre",
"Create Order": "Cr\u00e9er un ordre",
"Back": "Retour",
"Create a BTC buy order for ": "Créer un ordre d'achat en BTC pour ",
"Create a BTC sell order for ": "Créer un ordre de vente de BTC pour ",
"Create a BTC buy order for ": "Cr\u00e9er un ordre d'achat en BTC pour ",
"Create a BTC sell order for ": "Cr\u00e9er un ordre de vente de BTC pour ",
" of {{satoshis}} Satoshis": " de {{satoshis}} Satoshis",
" at market price": " au prix du marché",
" at a {{premium}}% premium": " à une prime de {{premium}}%",
" at a {{discount}}% discount": " à une remise de {{discount}}%",
"Must be less than {{max}}%": "Doit être moins que {{max}}%",
"Must be more than {{min}}%": "Doit être plus que {{min}}%",
"Must be less than {{maxSats}": "Doit être moins que {{maxSats}}",
"Must be more than {{minSats}}": "Doit être plus que {{minSats}}",
" at market price": " au prix du march\u00e9",
" at a {{premium}}% premium": " \u00e0 une prime de {{premium}}%",
" at a {{discount}}% discount": " \u00e0 une remise de {{discount}}%",
"Must be less than {{max}}%": "Doit \u00eatre moins que {{max}}%",
"Must be more than {{min}}%": "Doit \u00eatre plus que {{min}}%",
"Must be less than {{maxSats}": "Doit \u00eatre moins que {{maxSats}}",
"Must be more than {{minSats}}": "Doit \u00eatre plus que {{minSats}}",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Non spécifié",
"not specified": "Non sp\u00e9cifi\u00e9",
"Instant SEPA": "Instant SEPA",
"Amazon GiftCard": "Carte cadeau Amazon",
"Google Play Gift Code": "Code cadeau Google Play",
"Cash F2F": "En espèces face-à-face",
"Cash F2F": "En esp\u00e8ces face-\u00e0-face",
"On-Chain BTC": "BTC on-Chain",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Vendeur",
"Buyer": "Acheteur",
"I want to": "Je veux",
"Select Order Type": "Sélectionner le type d'ordre",
"Select Order Type": "S\u00e9lectionner le type d'ordre",
"ANY_type": "TOUT",
"ANY_currency": "TOUT",
"BUY": "ACHETER",
@ -83,7 +79,7 @@
"and receive": "et recevoir",
"and pay with": "et payer avec",
"and use": "et utiliser",
"Select Payment Currency": "Sélectionner la devise de paiement",
"Select Payment Currency": "S\u00e9lectionner la devise de paiement",
"Robot": "Robot",
"Is": "Est",
"Currency": "Devise",
@ -94,29 +90,28 @@
"You are SELLING BTC for {{currencyCode}}": "Vous VENDEZ des BTC pour {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "Vous ACHETEZ des BTC pour {{currencyCode}}",
"You are looking at all": "Vous regardez tout",
"No orders found to sell BTC for {{currencyCode}}": "Aucun ordre trouvé pour vendre des BTC pour {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "Aucun ordre trouvé pour acheter des BTC pour {{currencyCode}}",
"Be the first one to create an order": "Soyez le premier à créer un ordre",
"No orders found to sell BTC for {{currencyCode}}": "Aucun ordre trouv\u00e9 pour vendre des BTC pour {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "Aucun ordre trouv\u00e9 pour acheter des BTC pour {{currencyCode}}",
"Be the first one to create an order": "Soyez le premier \u00e0 cr\u00e9er un ordre",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Stats pour des geeks",
"LND version": "Version",
"Currently running commit hash": "Hachage de la version en cours",
"24h contracted volume": "Volume contracté en 24h",
"Lifetime contracted volume": "Volume contracté total",
"24h contracted volume": "Volume contract\u00e9 en 24h",
"Lifetime contracted volume": "Volume contract\u00e9 total",
"Made with": "Construit avec",
"and": "et",
"... somewhere on Earth!": "... quelque part sur Terre!",
"Community": "Communauté",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Le support est uniquement offert via des canaux publics. Rejoignez notre communauté Telegram si vous avez des questions ou si vous voulez passer du temps avec d'autres robots sympas. Utilisez notre Github pour notifier un bug ou si vous voulez voir de nouvelles fonctionnalités!",
"Community": "Communaut\u00e9",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Le support est uniquement offert via des canaux publics. Rejoignez notre communaut\u00e9 Telegram si vous avez des questions ou si vous voulez passer du temps avec d'autres robots sympas. Utilisez notre Github pour notifier un bug ou si vous voulez voir de nouvelles fonctionnalit\u00e9s!",
"Join the RoboSats group": "Rejoignez le groupe RoboSats",
"Telegram (English / Main)": "Telegram (Anglais / Principal)",
"RoboSats Telegram Communities": "Communautés Telegram RoboSats",
"Join RoboSats Spanish speaking community!": "Rejoignez la communauté hispanophone de RoboSats!",
"Join RoboSats Russian speaking community!": "Rejoignez la communauté russophone de RoboSats!",
"Join RoboSats Chinese speaking community!": "Rejoignez la communauté chinoise de RoboSats!",
"Join RoboSats English speaking community!": "Rejoignez la communauté anglophone de RoboSats!",
"Tell us about a new feature or a bug": "Parlez-nous d'une nouvelle fonctionnalité ou d'un bug",
"RoboSats Telegram Communities": "Communaut\u00e9s Telegram RoboSats",
"Join RoboSats Spanish speaking community!": "Rejoignez la communaut\u00e9 hispanophone de RoboSats!",
"Join RoboSats Russian speaking community!": "Rejoignez la communaut\u00e9 russophone de RoboSats!",
"Join RoboSats Chinese speaking community!": "Rejoignez la communaut\u00e9 chinoise de RoboSats!",
"Join RoboSats English speaking community!": "Rejoignez la communaut\u00e9 anglophone de RoboSats!",
"Tell us about a new feature or a bug": "Parlez-nous d'une nouvelle fonctionnalit\u00e9 ou d'un bug",
"Github Issues - The Robotic Satoshis Open Source Project": "Sujets de Github - Le Projet Open Source des Satoshis Robotiques",
"Your Profile": "Votre profil",
"Your robot": "Votre robot",
@ -126,234 +121,230 @@
"Your token (will not remain here)": "Votre jeton (ne restera pas ici)",
"Back it up!": "Sauvegardez!",
"Cannot remember": "Impossible de se souvenir",
"Rewards and compensations": "Récompenses et compensations",
"Rewards and compensations": "R\u00e9compenses et compensations",
"Share to earn 100 Sats per trade": "Partagez pour gagner 100 Sats par transaction",
"Your referral link": "Votre lien de parrainage",
"Your earned rewards": "Vos récompenses gagnées",
"Claim": "Réclamer",
"Your earned rewards": "Vos r\u00e9compenses gagn\u00e9es",
"Claim": "R\u00e9clamer",
"Invoice for {{amountSats}} Sats": "Facture pour {{amountSats}} Sats",
"Submit": "Soumettre",
"There it goes, thank you!🥇": "C'est parti, merci!🥇",
"There it goes, thank you!\ud83e\udd47": "C'est parti, merci!\ud83e\udd47",
"You have an active order": "Vous avez un ordre actif",
"You can claim satoshis!": "Vous pouvez réclamer des satoshis!",
"You can claim satoshis!": "Vous pouvez r\u00e9clamer des satoshis!",
"Public Buy Orders": "Ordres d'achat publics",
"Public Sell Orders": "Ordres de vente publics",
"Today Active Robots": "Robots actifs aujourd'hui",
"24h Avg Premium": "Prime moyenne sur 24h",
"Trade Fee": "Frais de transaction",
"Show community and support links": "Afficher les liens de la communauté et du support",
"Show community and support links": "Afficher les liens de la communaut\u00e9 et du support",
"Show stats for nerds": "Afficher les stats pour les geeks",
"Exchange Summary": "Résumé de l'échange",
"Exchange Summary": "R\u00e9sum\u00e9 de l'\u00e9change",
"Public buy orders": "Ordres d'achat publics",
"Public sell orders": "Ordres de vente publics",
"Book liquidity": "Liquidité du livre",
"Book liquidity": "Liquidit\u00e9 du livre",
"Today active robots": "Robots actifs aujourd'hui",
"24h non-KYC bitcoin premium": "Prime bitcoin non-KYC 24h",
"Maker fee": "Frais du createur",
"Taker fee": "Frais du preneur",
"Number of public BUY orders": "Nombre d'ordres d'ACHAT publics",
"Number of public SELL orders": "Nombre d'ordres de VENTE publics",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Ordres",
"Contract": "Contrat",
"Active": "Actif",
"Seen recently": "Vu récemment",
"Seen recently": "Vu r\u00e9cemment",
"Inactive": "Inactif",
"(Seller)": "(Vendeur)",
"(Buyer)": "(Acheteur)",
"Order maker": "Createur d'ordre",
"Order taker": "Preneur d'ordre",
"Order Details": "Détails de l'ordre",
"Order Details": "D\u00e9tails de l'ordre",
"Order status": "Etat de l'ordre",
"Waiting for maker bond": "En attente de la caution du createur",
"Public": "Public",
"Waiting for taker bond": "En attente de la caution du preneur",
"Cancelled": "Annulé",
"Expired": "Expiré",
"Cancelled": "Annul\u00e9",
"Expired": "Expir\u00e9",
"Waiting for trade collateral and buyer invoice": "En attente de la garantie et de la facture de l'acheteur",
"Waiting only for seller trade collateral": "N'attendant que la garantie du vendeur",
"Waiting only for buyer invoice": "N'attendant que la facture de l'acheteur",
"Sending fiat - In chatroom": "Envoi de fiat - Dans le salon de discussion",
"Fiat sent - In chatroom": "Fiat envoyée - Dans le salon de discussion",
"Fiat sent - In chatroom": "Fiat envoy\u00e9e - Dans le salon de discussion",
"In dispute": "En litige",
"Collaboratively cancelled": "Annulé en collaboration",
"Sending satoshis to buyer": "Envoi de satoshis à l'acheteur",
"Sucessful trade": "Transaction réussie",
"Failed lightning network routing": "Échec de routage du réseau lightning",
"Wait for dispute resolution": "Attendre la résolution du litige",
"Maker lost dispute": "Le createur à perdu le litige",
"Taker lost dispute": "Le preneur à perdu le litige",
"Collaboratively cancelled": "Annul\u00e9 en collaboration",
"Sending satoshis to buyer": "Envoi de satoshis \u00e0 l'acheteur",
"Sucessful trade": "Transaction r\u00e9ussie",
"Failed lightning network routing": "\u00c9chec de routage du r\u00e9seau lightning",
"Wait for dispute resolution": "Attendre la r\u00e9solution du litige",
"Maker lost dispute": "Le createur \u00e0 perdu le litige",
"Taker lost dispute": "Le preneur \u00e0 perdu le litige",
"Amount range": "Fourchette de montants",
"Swap destination": "Destination de l'échange",
"Accepted payment methods": "Modes de paiement acceptés",
"Swap destination": "Destination de l'\u00e9change",
"Accepted payment methods": "Modes de paiement accept\u00e9s",
"Others": "Autres",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Prime: {{premium}}%",
"Price and Premium": "Prix et prime",
"Amount of Satoshis": "Montant de Satoshis",
"Premium over market price": "Prime sur le prix du marché",
"Premium over market price": "Prime sur le prix du march\u00e9",
"Order ID": "ID de l'ordre",
"Expires in": "Expire en",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} demande une annulation collaborative",
"You asked for a collaborative cancellation": "Vous avez demandé une annulation collaborative",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Facture expirée. Vous n'avez pas confirmé la publication de l'ordre à temps. Faites un nouveau ordre.",
"This order has been cancelled by the maker": "Cette ordre a été annulée par le createur",
"Invoice expired. You did not confirm taking the order in time.": "La facture a expiré. Vous n'avez pas confirmé avoir pris l'ordre dans les temps.",
"Penalty lifted, good to go!": "Pénalité levée, vous pouvez y aller!",
"You asked for a collaborative cancellation": "Vous avez demand\u00e9 une annulation collaborative",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Facture expir\u00e9e. Vous n'avez pas confirm\u00e9 la publication de l'ordre \u00e0 temps. Faites un nouveau ordre.",
"This order has been cancelled by the maker": "Cette ordre a \u00e9t\u00e9 annul\u00e9e par le createur",
"Invoice expired. You did not confirm taking the order in time.": "La facture a expir\u00e9. Vous n'avez pas confirm\u00e9 avoir pris l'ordre dans les temps.",
"Penalty lifted, good to go!": "P\u00e9nalit\u00e9 lev\u00e9e, vous pouvez y aller!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Vous ne pouvez pas encore prendre un ordre! Attendez {{timeMin}}m {{timeSec}}s",
"Too low": "Trop bas",
"Too high": "Trop haut",
"Enter amount of fiat to exchange for bitcoin": "Saisissez le montant de fiat à échanger contre des bitcoins",
"Enter amount of fiat to exchange for bitcoin": "Saisissez le montant de fiat \u00e0 \u00e9changer contre des bitcoins",
"Amount {{currencyCode}}": "Montant {{currencyCode}}",
"You must specify an amount first": "Vous devez d'abord spécifier un montant",
"You must specify an amount first": "Vous devez d'abord sp\u00e9cifier un montant",
"Take Order": "Prendre l'ordre",
"Wait until you can take an order": "Attendez jusqu'à ce que vous puissiez prendre un ordre",
"Wait until you can take an order": "Attendez jusqu'\u00e0 ce que vous puissiez prendre un ordre",
"Cancel the order?": "Annuler l'ordre?",
"If the order is cancelled now you will lose your bond.": "Si l'ordre est annulé maintenant, vous perdrez votre caution",
"If the order is cancelled now you will lose your bond.": "Si l'ordre est annul\u00e9 maintenant, vous perdrez votre caution",
"Confirm Cancel": "Confirmer l'annulation",
"The maker is away": "Le createur est absent",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "En prenant cette ordre, vous risquez de perdre votre temps. Si le créateur ne procède pas dans les temps, vous serez compensé en satoshis à hauteur de 50% de la caution du créateur.",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "En prenant cette ordre, vous risquez de perdre votre temps. Si le cr\u00e9ateur ne proc\u00e8de pas dans les temps, vous serez compens\u00e9 en satoshis \u00e0 hauteur de 50% de la caution du cr\u00e9ateur.",
"Collaborative cancel the order?": "Annuler l'ordre en collaboration?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Le dépôt de transaction a été enregistré. L'ordre ne peut être annulé que si les deux parties, le createur et le preneur, sont d'accord pour l'annuler.",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Le d\u00e9p\u00f4t de transaction a \u00e9t\u00e9 enregistr\u00e9. L'ordre ne peut \u00eatre annul\u00e9 que si les deux parties, le createur et le preneur, sont d'accord pour l'annuler.",
"Ask for Cancel": "Demande d'annulation",
"Cancel": "Annuler",
"Collaborative Cancel": "Annulation collaborative",
"Invalid Order Id": "Id d'ordre invalide",
"You must have a robot avatar to see the order details": "Vous devez avoir un avatar de robot pour voir les détails de l'ordre",
"This order has been cancelled collaborativelly": "Cette ordre a été annulée en collaboration",
"You are not allowed to see this order": "Vous n'êtes pas autorisé à voir cette ordre",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Les Robots Satoshis travaillant dans l'entrepôt ne vous ont pas compris. Merci de remplir un probléme de bug en Github https://github.com/reckless-satoshi/robosats/issues",
"You must have a robot avatar to see the order details": "Vous devez avoir un avatar de robot pour voir les d\u00e9tails de l'ordre",
"This order has been cancelled collaborativelly": "Cette ordre a \u00e9t\u00e9 annul\u00e9e en collaboration",
"You are not allowed to see this order": "Vous n'\u00eates pas autoris\u00e9 \u00e0 voir cette ordre",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Les Robots Satoshis travaillant dans l'entrep\u00f4t ne vous ont pas compris. Merci de remplir un probl\u00e9me de bug en Github https://github.com/reckless-satoshi/robosats/issues",
"CHAT BOX - Chat.js": "Chat Box",
"You": "Vous",
"Peer": "Pair",
"connected": "connecté",
"disconnected": "déconnecté",
"connected": "connect\u00e9",
"disconnected": "d\u00e9connect\u00e9",
"Type a message": "Ecrivez un message",
"Connecting...": "Connexion...",
"Send": "Envoyer",
"The chat has no memory: if you leave, messages are lost.": "Le chat n'a pas de mémoire : si vous le quittez, les messages sont perdus.",
"The chat has no memory: if you leave, messages are lost.": "Le chat n'a pas de m\u00e9moire : si vous le quittez, les messages sont perdus.",
"Learn easy PGP encryption.": "Apprenez facilement le cryptage PGP.",
"PGP_guide_url": "https://learn.robosats.com/docs/pgp-encryption/",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Boîte de contrat",
"Robots show commitment to their peers": "Les robots s'engagent auprès de leurs pairs",
"Lock {{amountSats}} Sats to PUBLISH order": "Blocker {{amountSats}} Sats à l'ordre PUBLIER",
"Lock {{amountSats}} Sats to TAKE order": "Blocker {{amountSats}} Sats à l'ordre PRENDRE",
"Contract Box": "Bo\u00eete de contrat",
"Robots show commitment to their peers": "Les robots s'engagent aupr\u00e8s de leurs pairs",
"Lock {{amountSats}} Sats to PUBLISH order": "Blocker {{amountSats}} Sats \u00e0 l'ordre PUBLIER",
"Lock {{amountSats}} Sats to TAKE order": "Blocker {{amountSats}} Sats \u00e0 l'ordre PRENDRE",
"Lock {{amountSats}} Sats as collateral": "Blocker {{amountSats}} Sats en garantie",
"Copy to clipboard": "Copier dans le presse-papiers",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Cette facture est en attente, elle sera gelée dans votre portefeuille. Elle ne sera débitée que si vous annulez ou perdez un litige.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Cette facture est en attente, elle sera gelée dans votre portefeuille. Elle sera remise à l'acheteur une fois que vous aurez confirmé avoir reçu les {{currencyCode}}.",
"Your maker bond is locked": "Votre obligation de createur est bloquée",
"Your taker bond is locked": "Votre obligation de preneur est bloquée",
"Your maker bond was settled": "Votre obligation de createur a été réglée",
"Your taker bond was settled": "Votre obligation de preneur a été réglée",
"Your maker bond was unlocked": "Votre obligation de createur a été déverrouillée",
"Your taker bond was unlocked": "Votre obligation de preneur a été déverrouillée",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Cette facture est en attente, elle sera gel\u00e9e dans votre portefeuille. Elle ne sera d\u00e9bit\u00e9e que si vous annulez ou perdez un litige.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Cette facture est en attente, elle sera gel\u00e9e dans votre portefeuille. Elle sera remise \u00e0 l'acheteur une fois que vous aurez confirm\u00e9 avoir re\u00e7u les {{currencyCode}}.",
"Your maker bond is locked": "Votre obligation de createur est bloqu\u00e9e",
"Your taker bond is locked": "Votre obligation de preneur est bloqu\u00e9e",
"Your maker bond was settled": "Votre obligation de createur a \u00e9t\u00e9 r\u00e9gl\u00e9e",
"Your taker bond was settled": "Votre obligation de preneur a \u00e9t\u00e9 r\u00e9gl\u00e9e",
"Your maker bond was unlocked": "Votre obligation de createur a \u00e9t\u00e9 d\u00e9verrouill\u00e9e",
"Your taker bond was unlocked": "Votre obligation de preneur a \u00e9t\u00e9 d\u00e9verrouill\u00e9e",
"Your order is public": "Votre ordre est publique",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{invoice_escrow_duration}} to reply. If you do not reply, you risk losing your bond.": "Soyez patient pendant que les robots vérifient le livre. Cette case sonnera 🔊 dès qu'un robot prendra votre ordre, puis vous aurez {{invoice_escrow_duration}} heures pour répondre. Si vous ne répondez pas, vous risquez de perdre votre caution",
"If the order expires untaken, your bond will return to you (no action needed).": "Si l'ordre expire sans être prise, votre caution vous sera rendue (aucune action n'est nécessaire).",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{invoice_escrow_duration}} to reply. If you do not reply, you risk losing your bond.": "Soyez patient pendant que les robots v\u00e9rifient le livre. Cette case sonnera \ud83d\udd0a d\u00e8s qu'un robot prendra votre ordre, puis vous aurez {{invoice_escrow_duration}} heures pour r\u00e9pondre. Si vous ne r\u00e9pondez pas, vous risquez de perdre votre caution",
"If the order expires untaken, your bond will return to you (no action needed).": "Si l'ordre expire sans \u00eatre prise, votre caution vous sera rendue (aucune action n'est n\u00e9cessaire).",
"Enable Telegram Notifications": "Activer les notifications Telegram",
"Enable TG Notifications": "Activer notifications TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Vous serez redirigé vers une conversation avec le robot telegram RoboSats. Il suffit d'ouvrir le chat et d'appuyer sur Start. Notez qu'en activant les notifications Telegram, vous risquez de réduire votre niveau d'anonymat.",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Vous serez redirig\u00e9 vers une conversation avec le robot telegram RoboSats. Il suffit d'ouvrir le chat et d'appuyer sur Start. Notez qu'en activant les notifications Telegram, vous risquez de r\u00e9duire votre niveau d'anonymat.",
"Go back": "Retourner",
"Enable": "Activer",
"Telegram enabled": "Telegram activé",
"Telegram enabled": "Telegram activ\u00e9",
"Public orders for {{currencyCode}}": "Ordres publics pour {{currencyCode}}",
"Premium rank": "Centile de prime",
"Among public {{currencyCode}} orders (higher is cheaper)": "Parmi les ordres publics en {{currencyCode}} (la plus élevée est la moins chère)",
"A taker has been found!": "Un preneur a été trouvé!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Veuillez attendre que le preneur verrouille une caution. Si le preneur ne verrouille pas la caution à temps, l'ordre sera rendue publique à nouveau",
"Among public {{currencyCode}} orders (higher is cheaper)": "Parmi les ordres publics en {{currencyCode}} (la plus \u00e9lev\u00e9e est la moins ch\u00e8re)",
"A taker has been found!": "Un preneur a \u00e9t\u00e9 trouv\u00e9!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Veuillez attendre que le preneur verrouille une caution. Si le preneur ne verrouille pas la caution \u00e0 temps, l'ordre sera rendue publique \u00e0 nouveau",
"Submit an invoice for {{amountSats}} Sats": "Soumettre une facture pour {{amountSats}} Sats",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "Le preneur est engagé! Avant de vous laisser envoyer {{amountFiat}} {{currencyCode}}, nous voulons nous assurer que vous êtes en mesure de recevoir le BTC. Veuillez fournir une facture valide de {{amountSats}} Satoshis.",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "Le preneur est engag\u00e9! Avant de vous laisser envoyer {{amountFiat}} {{currencyCode}}, nous voulons nous assurer que vous \u00eates en mesure de recevoir le BTC. Veuillez fournir une facture valide de {{amountSats}} Satoshis.",
"Payout Lightning Invoice": "Facture lightning de paiement",
"Your invoice looks good!": "Votre facture est correcte!",
"We are waiting for the seller to lock the trade amount.": "Nous attendons que le vendeur verrouille le montant de la transaction.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Patientez un instant. Si le vendeur n'effectue pas de dépôt, vous récupérez automatiquement votre caution. En outre, vous recevrez une compensation (vérifiez les récompenses dans votre profil).",
"The trade collateral is locked!": "La garantie est verrouillée!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Nous attendons que l'acheteur dépose une facture lightning. Dès qu'il l'aura fait, vous pourrez communiquer directement les détails du paiement fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Patientez un instant. Si l'acheteur ne coopère pas, vous récupérez automatiquement le dépôt de garantie et votre caution. En outre, vous recevrez une compensation (vérifiez les récompenses dans votre profil).",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Patientez un instant. Si le vendeur n'effectue pas de d\u00e9p\u00f4t, vous r\u00e9cup\u00e9rez automatiquement votre caution. En outre, vous recevrez une compensation (v\u00e9rifiez les r\u00e9compenses dans votre profil).",
"The trade collateral is locked!": "La garantie est verrouill\u00e9e!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Nous attendons que l'acheteur d\u00e9pose une facture lightning. D\u00e8s qu'il l'aura fait, vous pourrez communiquer directement les d\u00e9tails du paiement fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Patientez un instant. Si l'acheteur ne coop\u00e8re pas, vous r\u00e9cup\u00e9rez automatiquement le d\u00e9p\u00f4t de garantie et votre caution. En outre, vous recevrez une compensation (v\u00e9rifiez les r\u00e9compenses dans votre profil).",
"Confirm {{amount}} {{currencyCode}} sent": "Confirmer l'envoi de {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Confirmer la réception de {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Confirmer la r\u00e9ception de {{amount}} {{currencyCode}}",
"Open Dispute": "Ouvrir litige",
"The order has expired": "L'ordre a expiré",
"The order has expired": "L'ordre a expir\u00e9",
"Chat with the buyer": "Chat avec l'acheteur",
"Chat with the seller": "Chat avec le vendeur",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Dites bonjour! Soyez utile et concis. Faites-leur savoir comment vous envoyer les {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "L'acheteur a envoyé le fiat. Cliquez sur 'Confirmer la réception' dès que vous l'aurez reçu.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Dites bonjour! Demandez les détails du paiement et cliquez sur 'Confirmé envoyé' dès que le paiement est envoyé.",
"Wait for the seller to confirm he has received the payment.": "Attendez que le vendeur confirme qu'il a reçu le paiement.",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirmez que vous avez reçu les {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmer que vous avez reçu le fiat finalisera la transaction. Les satoshis dans le dépôt seront libérés à l'acheteur. Ne confirmez qu'après que les {{amount}} {{currencyCode}} soit arrivés sur votre compte. En outre, si vous avez reçu les {{currencyCode}} et que vous ne confirmez pas la réception, vous risquez de perdre votre caution.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "L'acheteur a envoy\u00e9 le fiat. Cliquez sur 'Confirmer la r\u00e9ception' d\u00e8s que vous l'aurez re\u00e7u.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Dites bonjour! Demandez les d\u00e9tails du paiement et cliquez sur 'Confirm\u00e9 envoy\u00e9' d\u00e8s que le paiement est envoy\u00e9.",
"Wait for the seller to confirm he has received the payment.": "Attendez que le vendeur confirme qu'il a re\u00e7u le paiement.",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirmez que vous avez re\u00e7u les {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmer que vous avez re\u00e7u le fiat finalisera la transaction. Les satoshis dans le d\u00e9p\u00f4t seront lib\u00e9r\u00e9s \u00e0 l'acheteur. Ne confirmez qu'apr\u00e8s que les {{amount}} {{currencyCode}} soit arriv\u00e9s sur votre compte. En outre, si vous avez re\u00e7u les {{currencyCode}} et que vous ne confirmez pas la r\u00e9ception, vous risquez de perdre votre caution.",
"Confirm": "Confirmer",
"Trade finished!": "Transaction terminée!",
"Trade finished!": "Transaction termin\u00e9e!",
"rate_robosats": "Que pensez-vous de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Merci! RoboSats vous aime aussi ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats s'améliore avec plus de liquidité et d'utilisateurs. Parlez de Robosats à un ami bitcoiner!",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Merci! RoboSats vous aime aussi \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats s'am\u00e9liore avec plus de liquidit\u00e9 et d'utilisateurs. Parlez de Robosats \u00e0 un ami bitcoiner!",
"Thank you for using Robosats!": "Merci d'utiliser Robosats!",
"let_us_know_hot_to_improve": "Faites-nous savoir comment la plateforme pourrait être améliorée (<1>Telegram</1> / <3>Github</3>)",
"let_us_know_hot_to_improve": "Faites-nous savoir comment la plateforme pourrait \u00eatre am\u00e9lior\u00e9e (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Recommencer",
"Attempting Lightning Payment": "Tentative de paiement Lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats tente de payer votre facture lightning. Rappelez-vous que les nœuds lightning doivent être en ligne pour recevoir des paiements.",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats tente de payer votre facture lightning. Rappelez-vous que les n\u0153uds lightning doivent \u00eatre en ligne pour recevoir des paiements.",
"Retrying!": "Nouvelle tentative!",
"Lightning Routing Failed": "Échec du routage Lightning",
"Your invoice has expired or more than 3 payment attempts have been made.": "Votre facture a expiré ou plus de 3 tentatives de paiement ont été effectuées. Le porte-monnaie Muun n'est pas recommandé.",
"Check the list of compatible wallets": "Vérifier la liste des portefeuilles compatibles",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats essaiera de payer votre facture 3 fois toutes les 1 minute. S'il continue à échouer, vous pourrez soumettre une nouvelle facture. Vérifiez si vous avez suffisamment de liquidité entrante. N'oubliez pas que les nœuds lightning doivent être en ligne pour pouvoir recevoir des paiements.",
"Lightning Routing Failed": "\u00c9chec du routage Lightning",
"Your invoice has expired or more than 3 payment attempts have been made.": "Votre facture a expir\u00e9 ou plus de 3 tentatives de paiement ont \u00e9t\u00e9 effectu\u00e9es. Le porte-monnaie Muun n'est pas recommand\u00e9.",
"Check the list of compatible wallets": "V\u00e9rifier la liste des portefeuilles compatibles",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats essaiera de payer votre facture 3 fois toutes les 1 minute. S'il continue \u00e0 \u00e9chouer, vous pourrez soumettre une nouvelle facture. V\u00e9rifiez si vous avez suffisamment de liquidit\u00e9 entrante. N'oubliez pas que les n\u0153uds lightning doivent \u00eatre en ligne pour pouvoir recevoir des paiements.",
"Next attempt in": "Prochaine tentative en",
"Do you want to open a dispute?": "Voulez-vous ouvrir un litige?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Le personnel de RoboSats examinera les déclarations et les preuves fournies. Vous devez constituer un dossier complet, car le personnel ne peut pas lire le chat. Il est préférable de fournir une méthode de contact jetable avec votre déclaration. Les satoshis dans le dépôt seront envoyés au gagnant du litige, tandis que le perdant du litige perdra la caution.",
"Disagree": "En désaccord",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Le personnel de RoboSats examinera les d\u00e9clarations et les preuves fournies. Vous devez constituer un dossier complet, car le personnel ne peut pas lire le chat. Il est pr\u00e9f\u00e9rable de fournir une m\u00e9thode de contact jetable avec votre d\u00e9claration. Les satoshis dans le d\u00e9p\u00f4t seront envoy\u00e9s au gagnant du litige, tandis que le perdant du litige perdra la caution.",
"Disagree": "En d\u00e9saccord",
"Agree and open dispute": "Accepter et ouvrir un litige",
"A dispute has been opened": "Un litige a été ouvert",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Veuillez soumettre votre déclaration. Soyez clair et précis sur ce qui s'est passé et fournissez les preuves nécessaires. Vous DEVEZ fournir une méthode de contact: email jetable, XMPP ou nom d'utilisateur telegram pour assurer le suivi avec le personnel. Les litiges sont résolus à la discrétion de vrais robots (alias humains), alors soyez aussi utile que possible pour assurer un résultat équitable. Max 5000 caractères.",
"Submit dispute statement": "Soumettre une déclaration de litige",
"We have received your statement": "Nous avons reçu votre déclaration",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Nous attendons la déclaration de votre partenaire commercial. Si vous avez des doutes sur l'état du litige ou si vous souhaitez ajouter des informations supplémentaires, contactez robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Veuillez enregistrer les informations nécessaires à l'identification de votre ordre et de vos paiements : ID de l'ordre; hachages de paiement des cautions ou des dépòts (vérifiez sur votre portefeuille lightning); montant exact des satoshis; et surnom du robot. Vous devrez vous identifier en tant qu'utilisateur impliqué dans cette transaction par e-mail (ou autres méthodes de contact).",
"We have the statements": "Nous avons les relevés",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Les deux déclarations ont été reçues, attendez que le personnel résolve le litige. Si vous avez des doutes sur l'état du litige ou si vous souhaitez ajouter des informations supplémentaires, contactez robosats@protonmail.com. Si vous n'avez pas fourni de méthode de contact, ou si vous n'êtes pas sûr de l'avoir bien écrit, écrivez-nous immédiatement.",
"You have won the dispute": "Vous avez gagné le litige",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Vous pouvez réclamer le montant de la résolution du litige (dépôt et garantie de fidélité) à partir des récompenses de votre profil. Si le personnel peut vous aider en quoi que ce soit, n'hésitez pas à nous contacter à l'adresse robosats@protonmail.com (ou via la méthode de contact jetable que vous avez fourni).",
"A dispute has been opened": "Un litige a \u00e9t\u00e9 ouvert",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Veuillez soumettre votre d\u00e9claration. Soyez clair et pr\u00e9cis sur ce qui s'est pass\u00e9 et fournissez les preuves n\u00e9cessaires. Vous DEVEZ fournir une m\u00e9thode de contact: email jetable, XMPP ou nom d'utilisateur telegram pour assurer le suivi avec le personnel. Les litiges sont r\u00e9solus \u00e0 la discr\u00e9tion de vrais robots (alias humains), alors soyez aussi utile que possible pour assurer un r\u00e9sultat \u00e9quitable. Max 5000 caract\u00e8res.",
"Submit dispute statement": "Soumettre une d\u00e9claration de litige",
"We have received your statement": "Nous avons re\u00e7u votre d\u00e9claration",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Nous attendons la d\u00e9claration de votre partenaire commercial. Si vous avez des doutes sur l'\u00e9tat du litige ou si vous souhaitez ajouter des informations suppl\u00e9mentaires, contactez robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Veuillez enregistrer les informations n\u00e9cessaires \u00e0 l'identification de votre ordre et de vos paiements : ID de l'ordre; hachages de paiement des cautions ou des d\u00e9p\u00f2ts (v\u00e9rifiez sur votre portefeuille lightning); montant exact des satoshis; et surnom du robot. Vous devrez vous identifier en tant qu'utilisateur impliqu\u00e9 dans cette transaction par e-mail (ou autres m\u00e9thodes de contact).",
"We have the statements": "Nous avons les relev\u00e9s",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Les deux d\u00e9clarations ont \u00e9t\u00e9 re\u00e7ues, attendez que le personnel r\u00e9solve le litige. Si vous avez des doutes sur l'\u00e9tat du litige ou si vous souhaitez ajouter des informations suppl\u00e9mentaires, contactez robosats@protonmail.com. Si vous n'avez pas fourni de m\u00e9thode de contact, ou si vous n'\u00eates pas s\u00fbr de l'avoir bien \u00e9crit, \u00e9crivez-nous imm\u00e9diatement.",
"You have won the dispute": "Vous avez gagn\u00e9 le litige",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Vous pouvez r\u00e9clamer le montant de la r\u00e9solution du litige (d\u00e9p\u00f4t et garantie de fid\u00e9lit\u00e9) \u00e0 partir des r\u00e9compenses de votre profil. Si le personnel peut vous aider en quoi que ce soit, n'h\u00e9sitez pas \u00e0 nous contacter \u00e0 l'adresse robosats@protonmail.com (ou via la m\u00e9thode de contact jetable que vous avez fourni).",
"You have lost the dispute": "Vous avez perdu le litige",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Vous avez malheureusement perdu le litige. Si vous pensez qu'il s'agit d'une erreur, vous pouvez demander à rouvrir le dossier en envoyant un email à robosats@protonmail.com. Toutefois, les chances qu'il soit réexaminé sont faibles.",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Vous avez malheureusement perdu le litige. Si vous pensez qu'il s'agit d'une erreur, vous pouvez demander \u00e0 rouvrir le dossier en envoyant un email \u00e0 robosats@protonmail.com. Toutefois, les chances qu'il soit r\u00e9examin\u00e9 sont faibles.",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Fermer",
"What is RoboSats?": "C'est quoi RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Il s'agit d'un échange BTC/FIAT pair à pair via lightning.",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Il s'agit d'un \u00e9change BTC/FIAT pair \u00e0 pair via lightning.",
"RoboSats is an open source project ": "RoboSats est un projet open source",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Il simplifie la mise en relation et minimise le besoin de confiance. RoboSats se concentre sur la confidentialité et la vitesse.",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Il simplifie la mise en relation et minimise le besoin de confiance. RoboSats se concentre sur la confidentialit\u00e9 et la vitesse.",
"(GitHub).": "(GitHub).",
"How does it work?": "Comment ça marche?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 veut vendre des bitcoins. Elle poste un ordre de vente. BafflingBob02 veut acheter des bitcoins et il prend l'ordre d'Alice. Les deux doivent poster une petite caution en utilisant lightning pour prouver qu'ils sont de vrais robots. Ensuite, Alice publie la garantie en utilisant également une facture de retention Lightning. RoboSats verrouille la facture jusqu'à ce qu'Alice confirme avoir reçu les fonds fiat, puis les satoshis sont remis à Bob. Profitez de vos satoshis, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "A aucun moment, AnonymousAlice01 et BafflingBob02 ne doivent se confier les fonds en bitcoin. En cas de conflit, le personnel de RoboSats aidera à résoudre le litige.",
"You can find a step-by-step description of the trade pipeline in ": "Vous pouvez trouver une description pas à pas des échanges en ",
"How it works": "Comment ça marche",
"You can also check the full guide in ": "Vous pouvez également consulter le guide complet sur ",
"How does it work?": "Comment \u00e7a marche?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 veut vendre des bitcoins. Elle poste un ordre de vente. BafflingBob02 veut acheter des bitcoins et il prend l'ordre d'Alice. Les deux doivent poster une petite caution en utilisant lightning pour prouver qu'ils sont de vrais robots. Ensuite, Alice publie la garantie en utilisant \u00e9galement une facture de retention Lightning. RoboSats verrouille la facture jusqu'\u00e0 ce qu'Alice confirme avoir re\u00e7u les fonds fiat, puis les satoshis sont remis \u00e0 Bob. Profitez de vos satoshis, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "A aucun moment, AnonymousAlice01 et BafflingBob02 ne doivent se confier les fonds en bitcoin. En cas de conflit, le personnel de RoboSats aidera \u00e0 r\u00e9soudre le litige.",
"You can find a step-by-step description of the trade pipeline in ": "Vous pouvez trouver une description pas \u00e0 pas des \u00e9changes en ",
"How it works": "Comment \u00e7a marche",
"You can also check the full guide in ": "Vous pouvez \u00e9galement consulter le guide complet sur ",
"How to use": "Comment utiliser",
"What payment methods are accepted?": "Quels sont les modes de paiement acceptés?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Tous, à condition qu'ils soient rapides. Vous pouvez noter vos modes de paiement préférés. Vous devrez vous mettre en relation avec un pair qui accepte également ce mode. L'étape d'échange de fiat a un délai d'expiration de 24 heures avant qu'un litige ne soit automatiquement ouvert. Nous vous recommandons vivement d'utiliser les rails de paiement instantané en fiat.",
"What payment methods are accepted?": "Quels sont les modes de paiement accept\u00e9s?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Tous, \u00e0 condition qu'ils soient rapides. Vous pouvez noter vos modes de paiement pr\u00e9f\u00e9r\u00e9s. Vous devrez vous mettre en relation avec un pair qui accepte \u00e9galement ce mode. L'\u00e9tape d'\u00e9change de fiat a un d\u00e9lai d'expiration de 24 heures avant qu'un litige ne soit automatiquement ouvert. Nous vous recommandons vivement d'utiliser les rails de paiement instantan\u00e9 en fiat.",
"Are there trade limits?": "Y a-t-il des limites de transaction?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "La taille maximale d'une transaction unique est de {{maxAmount}} Satoshis pour minimiser l'échec de l'acheminement lightning. Il n'y a pas de limite au nombre de transactions par jour. Un robot ne peut avoir qu'un seul ordre à la fois. Toutefois, vous pouvez utiliser plusieurs robots simultanément dans différents navigateurs (n'oubliez pas de sauvegarder vos jetons de robot!).",
"Is RoboSats private?": "RoboSats est-il privé?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats ne vous demandera jamais votre nom, votre pays ou votre identifiant. RoboSats ne garde pas vos fonds et ne se soucie pas de savoir qui vous êtes. RoboSats ne collecte ni conserve aucune donnée personnelle. Pour un meilleur anonymat, utilisez le navigateur Tor et accédez au service caché .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Votre pair de transaction est le seul à pouvoir potentiellement deviner quoi que ce soit sur vous. Faites en sorte que votre chat soit court et concis. Évitez de fournir des informations non essentielles autres que celles strictement nécessaires au paiement fiat.",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "La taille maximale d'une transaction unique est de {{maxAmount}} Satoshis pour minimiser l'\u00e9chec de l'acheminement lightning. Il n'y a pas de limite au nombre de transactions par jour. Un robot ne peut avoir qu'un seul ordre \u00e0 la fois. Toutefois, vous pouvez utiliser plusieurs robots simultan\u00e9ment dans diff\u00e9rents navigateurs (n'oubliez pas de sauvegarder vos jetons de robot!).",
"Is RoboSats private?": "RoboSats est-il priv\u00e9?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats ne vous demandera jamais votre nom, votre pays ou votre identifiant. RoboSats ne garde pas vos fonds et ne se soucie pas de savoir qui vous \u00eates. RoboSats ne collecte ni conserve aucune donn\u00e9e personnelle. Pour un meilleur anonymat, utilisez le navigateur Tor et acc\u00e9dez au service cach\u00e9 .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Votre pair de transaction est le seul \u00e0 pouvoir potentiellement deviner quoi que ce soit sur vous. Faites en sorte que votre chat soit court et concis. \u00c9vitez de fournir des informations non essentielles autres que celles strictement n\u00e9cessaires au paiement fiat.",
"What are the risks?": "Quels sont les risques?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Ceci est une application expérimentale, les choses pourraient mal tourner. Échangez de petites sommes!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Le vendeur est confronté au même risque de rétrofacturation qu'avec n'importe quel autre service pair à pair. Paypal ou les cartes de crédit ne sont pas recommandés.",
"What is the trust model?": "Quel est le modèle de confiance?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "L'acheteur et le vendeur ne doiven jamais se faire confiance. Une certaine confiance envers RoboSats est nécessaire puisque le lien entre la facture du vendeur et le paiement de l'acheteur n'est pas (encore) atomique. En outre, les litiges sont résolus par le personnel de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq.": "Pour être tout à fait clair. Les exigences de confiance sont réduites au minimum. Cependant, il existe toujours un moyen pour RoboSats de s'enfuir avec vos satoshis: ne pas remettre les satoshis à l'acheteur. On pourrait argumenter qu'une telle décision n'est pas dans l'intérêt de RoboSats, car elle nuirait à sa réputation pour un petit paiement. Cependant, vous devriez hésiter et n'échanger que de petites quantités à la fois. Pour les gros montants, utilisez un service de dépôt onchain tel que Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Vous pouvez faire plus confiance à RoboSats en inspectant le code source.",
"This is an experimental application, things could go wrong. Trade small amounts!": "Ceci est une application exp\u00e9rimentale, les choses pourraient mal tourner. \u00c9changez de petites sommes!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Le vendeur est confront\u00e9 au m\u00eame risque de r\u00e9trofacturation qu'avec n'importe quel autre service pair \u00e0 pair. Paypal ou les cartes de cr\u00e9dit ne sont pas recommand\u00e9s.",
"What is the trust model?": "Quel est le mod\u00e8le de confiance?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "L'acheteur et le vendeur ne doiven jamais se faire confiance. Une certaine confiance envers RoboSats est n\u00e9cessaire puisque le lien entre la facture du vendeur et le paiement de l'acheteur n'est pas (encore) atomique. En outre, les litiges sont r\u00e9solus par le personnel de RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq.": "Pour \u00eatre tout \u00e0 fait clair. Les exigences de confiance sont r\u00e9duites au minimum. Cependant, il existe toujours un moyen pour RoboSats de s'enfuir avec vos satoshis: ne pas remettre les satoshis \u00e0 l'acheteur. On pourrait argumenter qu'une telle d\u00e9cision n'est pas dans l'int\u00e9r\u00eat de RoboSats, car elle nuirait \u00e0 sa r\u00e9putation pour un petit paiement. Cependant, vous devriez h\u00e9siter et n'\u00e9changer que de petites quantit\u00e9s \u00e0 la fois. Pour les gros montants, utilisez un service de d\u00e9p\u00f4t onchain tel que Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Vous pouvez faire plus confiance \u00e0 RoboSats en inspectant le code source.",
"Project source code": "Code source du projet",
"What happens if RoboSats suddenly disappears?": "Que se passe-t-il si RoboSats disparaît soudainement?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Vos satoshis vous seront rendus. Toute facture bloquée qui n'est pas réglée sera automatiquement retournée même si RoboSats disparaît pour toujours. Ceci est vrai pour les cautions verrouillées et les dépôts de transaction. Cependant, il y a une petite fenêtre entre le moment où le vendeur confirme FIAT REÇU et le moment où l'acheteur reçoit les satoshis où les fonds pourraient être définitivement perdus si RoboSats disparaît. Cette fenêtre dure environ une seconde. Assurez-vous d'avoir suffisamment de liquidité entrante pour éviter les échecs de routage. En cas de problème, contactez les canaux publics de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "Dans de nombreux pays, l'utilisation de RoboSats n'est pas différente de celle d'Ebay ou de Craiglist. Votre réglementation peut varier. Il est de votre responsabilité de vous conformer.",
"Is RoboSats legal in my country?": "RoboSats est-il légal dans mon pays?",
"What happens if RoboSats suddenly disappears?": "Que se passe-t-il si RoboSats dispara\u00eet soudainement?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Vos satoshis vous seront rendus. Toute facture bloqu\u00e9e qui n'est pas r\u00e9gl\u00e9e sera automatiquement retourn\u00e9e m\u00eame si RoboSats dispara\u00eet pour toujours. Ceci est vrai pour les cautions verrouill\u00e9es et les d\u00e9p\u00f4ts de transaction. Cependant, il y a une petite fen\u00eatre entre le moment o\u00f9 le vendeur confirme FIAT RE\u00c7U et le moment o\u00f9 l'acheteur re\u00e7oit les satoshis o\u00f9 les fonds pourraient \u00eatre d\u00e9finitivement perdus si RoboSats dispara\u00eet. Cette fen\u00eatre dure environ une seconde. Assurez-vous d'avoir suffisamment de liquidit\u00e9 entrante pour \u00e9viter les \u00e9checs de routage. En cas de probl\u00e8me, contactez les canaux publics de RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "Dans de nombreux pays, l'utilisation de RoboSats n'est pas diff\u00e9rente de celle d'Ebay ou de Craiglist. Votre r\u00e9glementation peut varier. Il est de votre responsabilit\u00e9 de vous conformer.",
"Is RoboSats legal in my country?": "RoboSats est-il l\u00e9gal dans mon pays?",
"Disclaimer": "Avertissement",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Cette application Lightning est fournie telle quelle. Elle est en cours de développement: négociez avec la plus grande prudence. Il n'y a pas de support privé. Le support est uniquement proposé via les canaux publics",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Cette application Lightning est fournie telle quelle. Elle est en cours de d\u00e9veloppement: n\u00e9gociez avec la plus grande prudence. Il n'y a pas de support priv\u00e9. Le support est uniquement propos\u00e9 via les canaux publics",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats ne vous contactera jamais. RoboSats ne vous demandera certainement jamais votre jeton de robot."
}

View File

@ -1,13 +1,12 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "Non stai usando RoboSats privatemente",
"desktop_unsafe_alert": "Alcune funzionalità (come la chat) sono disabilitate per le tua sicurezza e non sarai in grado di completare un'operazione senza di esse. Per proteggere la tua privacy e abilitare completamente RoboSats, usa <1>Tor Browser</1> e visita il sito <3>Onion</3>",
"desktop_unsafe_alert": "Alcune funzionalit\u00e0 (come la chat) sono disabilitate per le tua sicurezza e non sarai in grado di completare un'operazione senza di esse. Per proteggere la tua privacy e abilitare completamente RoboSats, usa <1>Tor Browser</1> e visita il sito <3>Onion</3>",
"phone_unsafe_alert": "Non sarai in grado di completare un'operazione. Usa <1>Tor Browser</1> e visita il sito <3>Onion</3>",
"Hide": "Nascondi",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Semplice e privata borsa di scambio LN P2P",
"This is your trading avatar": "Questo è il tuo Robottino",
"This is your trading avatar": "Questo \u00e8 il tuo Robottino",
"Store your token safely": "Custodisci il tuo gettone in modo sicuro",
"A robot avatar was found, welcome back!": "E' stato trovato un Robottino, bentornato!",
"Copied!": "Copiato!",
@ -21,15 +20,14 @@
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Stai per visitare la pagina Learn RoboSats. Troverai tutorial e documentazione per aiutarti ad imparare a usare RoboSats e capire come funziona.",
"Let's go!": "Andiamo!",
"Save token and PGP credentials to file": "Salva il gettone e le credenziali PGP in un file",
"MAKER PAGE - MakerPage.js": "This is the page where users can create new orders",
"Order": "Ordina",
"Customize": "Personalizza",
"Buy or Sell Bitcoin?": "Compri o Vendi Bitcoin?",
"Buy": "Comprare",
"Sell": "Vendere",
"Amount": "Quantità",
"Amount of fiat to exchange for bitcoin": "Quantità fiat da cambiare in bitcoin",
"Amount": "Quantit\u00e0",
"Amount of fiat to exchange for bitcoin": "Quantit\u00e0 fiat da cambiare in bitcoin",
"Invalid": "Invalido",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Inserisci il tuo metodo di pagamento fiat preferito. Sono raccomandati i metodi veloci.",
"Must be shorter than 65 characters": "Deve essere meno di 65 caratteri",
@ -47,9 +45,9 @@
"Fixed price:": "Prezzo fisso:",
"Order current rate:": "Ordina al prezzo corrente:",
"Your order fixed exchange rate": "Il tasso di cambio fisso del tuo ordine",
"Your order's current exchange rate. Rate will move with the market.": "Il tasso di cambio corrente del tuo ordine. Il tasso fluttuerà con il mercato.",
"Let the taker chose an amount within the range": "Lascia che l'acquirente decida una quantità in questo intervallo",
"Enable Amount Range": "Attiva intervallo di quantità",
"Your order's current exchange rate. Rate will move with the market.": "Il tasso di cambio corrente del tuo ordine. Il tasso fluttuer\u00e0 con il mercato.",
"Let the taker chose an amount within the range": "Lascia che l'acquirente decida una quantit\u00e0 in questo intervallo",
"Enable Amount Range": "Attiva intervallo di quantit\u00e0",
"From": "Da",
"to": "a",
"Expiry Timers": "Tempo alla scadenza",
@ -78,7 +76,6 @@
"Done": "Fatto",
"You do not have a robot avatar": "Non hai un Robottino",
"You need to generate a robot avatar in order to become an order maker": "Devi generare un Robottino prima di impostare un ordine",
"PAYMENT METHODS - autocompletePayments.js": "Payment method strings",
"not specified": "Non specificato",
"Instant SEPA": "SEPA istantaneo",
@ -86,7 +83,6 @@
"Google Play Gift Code": "Codice Regalo di Google Play",
"Cash F2F": "Contante, faccia-a-faccia",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "The Book Order page",
"Seller": "Offerente",
"Buyer": "Acquirente",
@ -100,7 +96,7 @@
"and use": "ed usa",
"Select Payment Currency": "Seleziona valuta di pagamento",
"Robot": "Robottino",
"Is": "è",
"Is": "\u00e8",
"Currency": "Valuta",
"Payment Method": "Metodo di pagamento",
"Pay": "Paga",
@ -113,7 +109,6 @@
"No orders found to buy BTC for {{currencyCode}}": "Nessun ordine trovato per comprare BTC per {{currencyCode}}",
"Filter has no results": "Il filtro corrente non ha risultati",
"Be the first one to create an order": "Crea tu il primo ordine",
"BOTTOM BAR AND MISC - BottomBar.js": "Bottom Bar user profile and miscellaneous dialogs",
"Stats For Nerds": "Statistiche per secchioni",
"LND version": "Versione LND",
@ -123,24 +118,24 @@
"Made with": "Fatto con",
"and": "e",
"... somewhere on Earth!": "... da qualche parte sulla Terra!",
"Community": "Comunità",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "L'assistenza viene offerta solo attraverso i canali pubblici. Unisciti alla nostra comunità Telegram se hai domande o se vuoi interagire con altri Robottini fichissimi. Utilizza il nostro Github Issues se trovi un bug o chiedere nuove funzionalità!",
"Community": "Comunit\u00e0",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "L'assistenza viene offerta solo attraverso i canali pubblici. Unisciti alla nostra comunit\u00e0 Telegram se hai domande o se vuoi interagire con altri Robottini fichissimi. Utilizza il nostro Github Issues se trovi un bug o chiedere nuove funzionalit\u00e0!",
"Follow RoboSats in Twitter": "Segui RoboSats su Twitter",
"Twitter Official Account": "Account Twitter ufficiale",
"RoboSats Telegram Communities": "RoboSats Telegram Communities",
"Join RoboSats Spanish speaking community!": "Unisciti alla comunità RoboSats che parla spagnolo!",
"Join RoboSats Russian speaking community!": "Unisciti alla comunità RoboSats che parla russo!",
"Join RoboSats Chinese speaking community!": "Unisciti alla comunità RoboSats che parla cinese!",
"Join RoboSats English speaking community!": "Unisciti alla comunità RoboSats che parla inglese!",
"Join RoboSats Italian speaking community!": "Unisciti alla comunità RoboSats che parla italiano!",
"Tell us about a new feature or a bug": "Comunicaci nuove funzionalità o bug",
"Join RoboSats Spanish speaking community!": "Unisciti alla comunit\u00e0 RoboSats che parla spagnolo!",
"Join RoboSats Russian speaking community!": "Unisciti alla comunit\u00e0 RoboSats che parla russo!",
"Join RoboSats Chinese speaking community!": "Unisciti alla comunit\u00e0 RoboSats che parla cinese!",
"Join RoboSats English speaking community!": "Unisciti alla comunit\u00e0 RoboSats che parla inglese!",
"Join RoboSats Italian speaking community!": "Unisciti alla comunit\u00e0 RoboSats che parla italiano!",
"Tell us about a new feature or a bug": "Comunicaci nuove funzionalit\u00e0 o bug",
"Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project",
"Your Profile": "Il tuo profilo",
"Your robot": "Il tuo Robottino",
"One active order #{{orderID}}": "Un ordine attivo #{{orderID}}",
"Your current order": "Il tuo ordine attuale",
"No active orders": "Nessun ordine attivo",
"Your token (will not remain here)": "Il tuo gettone (Non resterà qui)",
"Your token (will not remain here)": "Il tuo gettone (Non rester\u00e0 qui)",
"Back it up!": "Salvalo!",
"Cannot remember": "Dimenticato",
"Rewards and compensations": "Ricompense e compensi",
@ -150,7 +145,7 @@
"Claim": "Riscatta",
"Invoice for {{amountSats}} Sats": "Ricevuta per {{amountSats}} Sats",
"Submit": "Invia",
"There it goes, thank you!🥇": "Inviato, grazie!🥇",
"There it goes, thank you!\ud83e\udd47": "Inviato, grazie!\ud83e\udd47",
"You have an active order": "Hai un ordine attivo",
"You can claim satoshis!": "Hai satoshi da riscattare!",
"Public Buy Orders": "Ordini di acquisto pubblici",
@ -158,12 +153,12 @@
"Today Active Robots": "I Robottini attivi oggi",
"24h Avg Premium": "Premio medio in 24h",
"Trade Fee": "Commissione",
"Show community and support links": "Mostra i link della comunità e di supporto",
"Show community and support links": "Mostra i link della comunit\u00e0 e di supporto",
"Show stats for nerds": "Mostra le statistiche per secchioni",
"Exchange Summary": "Riassunto della transazione",
"Public buy orders": "Ordini di acquisto pubblici",
"Public sell orders": "Ordini di vendita pubblici",
"Book liquidity": "Registro della liquidità",
"Book liquidity": "Registro della liquidit\u00e0",
"Today active robots": "I Robottini attivi oggi",
"24h non-KYC bitcoin premium": "Premio bitcoin non-KYC 24h",
"Maker fee": "Commissione dell'offerente",
@ -175,7 +170,6 @@
"You do not have previous orders": "Non hai ordini precedenti",
"Join RoboSats' Subreddit": "Unisciti al subreddit di RoboSats",
"RoboSats in Reddit": "RoboSats su Reddit",
"ORDER PAGE - OrderPage.js": "Order details page",
"Order Box": "Ordine",
"Contract": "Contratto",
@ -206,13 +200,13 @@
"Wait for dispute resolution": "In attesa della risoluzione della disputa",
"Maker lost dispute": "L'offerente ha perso la disputa",
"Taker lost dispute": "L'acquirente ha perso la disputa",
"Amount range": "Intervallo della quantità",
"Amount range": "Intervallo della quantit\u00e0",
"Swap destination": "Destinazione di Swap",
"Accepted payment methods": "Metodi di pagamento accettati",
"Others": "Altro",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Premio: {{premium}}%",
"Price and Premium": "Prezzo e Premio",
"Amount of Satoshis": "Quantità di sats",
"Amount of Satoshis": "Quantit\u00e0 di sats",
"Premium over market price": "Premio sul prezzo di mercato",
"Order ID": "ID ordine",
"Deposit timer": "Per depositare",
@ -220,33 +214,32 @@
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} verrebbe annullare collaborativamente",
"You asked for a collaborative cancellation": "Hai richiesto per un annullamento collaborativo",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Ricevuta scaduta. Non hai confermato pubblicando l'ordine in tempo. Crea un nuovo ordine",
"This order has been cancelled by the maker": "Quest'ordine è stato cancellato dall'offerente",
"This order has been cancelled by the maker": "Quest'ordine \u00e8 stato cancellato dall'offerente",
"Invoice expired. You did not confirm taking the order in time.": "Ricevuta scaduta. Non hai confermato accettando l'ordine in tempo.",
"Penalty lifted, good to go!": "Penalità rimossa, partiamo!",
"Penalty lifted, good to go!": "Penalit\u00e0 rimossa, partiamo!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Non puoi ancora accettare un ordine! Aspetta {{timeMin}}m {{timeSec}}s",
"Too low": "Troppo poco",
"Too high": "Troppo",
"Enter amount of fiat to exchange for bitcoin": "Inserisci la quantità di fiat da scambiare per bitcoin",
"Amount {{currencyCode}}": "Quantità {{currencyCode}}",
"You must specify an amount first": "Devi prima specificare una quantità",
"Enter amount of fiat to exchange for bitcoin": "Inserisci la quantit\u00e0 di fiat da scambiare per bitcoin",
"Amount {{currencyCode}}": "Quantit\u00e0 {{currencyCode}}",
"You must specify an amount first": "Devi prima specificare una quantit\u00e0",
"Take Order": "Accetta l'ordine",
"Wait until you can take an order": "Aspetta fino a quando puoi accettare ordini",
"Cancel the order?": "Annullare l'ordine?",
"If the order is cancelled now you will lose your bond.": "Se l'ordine viene annullato adesso perderai la cauzione.",
"Confirm Cancel": "Conferma l'annullamento",
"The maker is away": "L'offerente è assente",
"The maker is away": "L'offerente \u00e8 assente",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Accettando questo ordine rischi di perdere tempo. Se l'offerente non procede in tempo, sarai ricompensato in sats per il 50% della cauzione dell'offerente.",
"Collaborative cancel the order?": "Annullare collaborativamente l'ordine?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Il deposito di transazione è stato registrato. L'ordine può solo essere cancellato se entrambe le parti sono d'accordo all'annullamento.",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Il deposito di transazione \u00e8 stato registrato. L'ordine pu\u00f2 solo essere cancellato se entrambe le parti sono d'accordo all'annullamento.",
"Ask for Cancel": "Richiesta di annullamento",
"Cancel": "Annulla",
"Collaborative Cancel": "Annulla collaborativamente",
"Invalid Order Id": "ID ordine invalido",
"You must have a robot avatar to see the order details": "Devi avere un Robottino per vedere i dettagli dell'ordine",
"This order has been cancelled collaborativelly": "Quest'ordine è stato annullato collaborativamente",
"This order has been cancelled collaborativelly": "Quest'ordine \u00e8 stato annullato collaborativamente",
"You are not allowed to see this order": "Non sei autorizzato a vedere quest'ordine",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Il Satoshi Robot che lavora nel magazzino non ti ha capito. Per favore, inoltra un Bug Issue su Github https://github.com/reckless-satoshi/robosats/issues",
"CHAT BOX - Chat.js": "Chat Box",
"You": "Tu",
"Peer": "Pari",
@ -260,11 +253,11 @@
"Save full log as a JSON file (messages and credentials)": "Salva l'elenco completo come file JSON (messaggi e credenziali)",
"Export": "Esporta",
"Don't trust, verify": "Non fidarti, verifica",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "La tua comunicazione è cifrata end-to-end con OpenPGP. Puoi verificare la privacy di questa chat utilizzando qualunque strumento basato sull'OpenPGP standard.",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "La tua comunicazione \u00e8 cifrata end-to-end con OpenPGP. Puoi verificare la privacy di questa chat utilizzando qualunque strumento basato sull'OpenPGP standard.",
"Learn how to verify": "Impara come verificare",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "La tua chiave PGP pubblica. Il tuo pari la utilizza per cifrare i messaggi che solo tu puoi leggere.",
"Your public key": "La tua chiave pubblica",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La chiave PGP pubblica del tuo pari. La utilizzi per cifrare i messaggi che solo il tuo pari può leggere e per verificare che la firma del tuo pari nei messaggi che ricevi.",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "La chiave PGP pubblica del tuo pari. La utilizzi per cifrare i messaggi che solo il tuo pari pu\u00f2 leggere e per verificare che la firma del tuo pari nei messaggi che ricevi.",
"Peer public key": "La chiave pubblica del tuo pari",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "La tua chiave privata cifrata. La utilizzi per decifrare i messaggi che il tuo pari ha cifrato per te. La usi anche quando firmi i messaggi che invii.",
"Your encrypted private key": "La tua chiave privata cifrata",
@ -275,8 +268,7 @@
"Save messages as a JSON file": "Salva i messaggi come file JSON",
"Messages": "Messaggi",
"Verified signature by {{nickname}}": "Verifica la firma di {{nickname}}",
"Cannot verify signature of {{nickname}}": "Non è possibile verificare la firma di {{nickname}}",
"Cannot verify signature of {{nickname}}": "Non \u00e8 possibile verificare la firma di {{nickname}}",
"CONTRACT BOX - TradeBox.js": "The Contract Box that guides users trough the whole trade pipeline",
"Contract Box": "Contratto",
"Robots show commitment to their peers": "I Robottini dimostrano dedizione verso i loro pari",
@ -284,20 +276,20 @@
"Lock {{amountSats}} Sats to TAKE order": "Blocca {{amountSats}} Sats per ACCETTARE l'ordine",
"Lock {{amountSats}} Sats as collateral": "Blocca {{amountSats}} Sats come garanzia",
"Copy to clipboard": "Copia",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Questa è una ricevuta di deposito, verrà congelata nel tuo wallet. Sarà riscossa solamente in caso di annullamento o perdita di una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Questa è una ricevuta di deposito, verrà congelata nel tuo wallet. Sarà accreditata all'acquirente una volta tu abbia confermato di aver ricevuto {{currencyCode}}.",
"Your maker bond is locked": "La tua cauzione di offerente è stata bloccata",
"Your taker bond is locked": "La tua cauzione di acquirente è stata bloccata",
"Your maker bond was settled": "La tua cauzione di offerente è stata saldata",
"Your taker bond was settled": "La tua cauzione di acquirente è stata saldata",
"Your maker bond was unlocked": "La tua cauzione di offerente è stata sbloccata",
"Your taker bond was unlocked": "La tua cauzione di acquirente è stata sbloccata",
"Your order is public": "Il tuo ordine è pubblico",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Sii paziente mentre i robottini controllano il registro. Questo box squillerà 🔊 appena un robottino accetta il tuo ordine, dopodiché avrai {{deposit_timer_hours}}h {{deposit_timer_minutes}}m per rispondere. Se non rispondi, rischi di perdere la cauzione.",
"If the order expires untaken, your bond will return to you (no action needed).": "Se l'ordine scade senza venire accettato, la cauzione ti sarà restituita (nessun'azione richiesta).",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Questa \u00e8 una ricevuta di deposito, verr\u00e0 congelata nel tuo wallet. Sar\u00e0 riscossa solamente in caso di annullamento o perdita di una disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Questa \u00e8 una ricevuta di deposito, verr\u00e0 congelata nel tuo wallet. Sar\u00e0 accreditata all'acquirente una volta tu abbia confermato di aver ricevuto {{currencyCode}}.",
"Your maker bond is locked": "La tua cauzione di offerente \u00e8 stata bloccata",
"Your taker bond is locked": "La tua cauzione di acquirente \u00e8 stata bloccata",
"Your maker bond was settled": "La tua cauzione di offerente \u00e8 stata saldata",
"Your taker bond was settled": "La tua cauzione di acquirente \u00e8 stata saldata",
"Your maker bond was unlocked": "La tua cauzione di offerente \u00e8 stata sbloccata",
"Your taker bond was unlocked": "La tua cauzione di acquirente \u00e8 stata sbloccata",
"Your order is public": "Il tuo ordine \u00e8 pubblico",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Sii paziente mentre i robottini controllano il registro. Questo box squiller\u00e0 \ud83d\udd0a appena un robottino accetta il tuo ordine, dopodich\u00e9 avrai {{deposit_timer_hours}}h {{deposit_timer_minutes}}m per rispondere. Se non rispondi, rischi di perdere la cauzione.",
"If the order expires untaken, your bond will return to you (no action needed).": "Se l'ordine scade senza venire accettato, la cauzione ti sar\u00e0 restituita (nessun'azione richiesta).",
"Enable Telegram Notifications": "Attiva notifiche Telegram",
"Enable TG Notifications": "Attiva notifiche TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Sarai introdotto in conversazione con il bot RoboSats su telegram. Apri semplicemente la chat e premi Start. Considera che attivando le notifiche telegram potresti ridurre il tuo livello di anonimità.",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Sarai introdotto in conversazione con il bot RoboSats su telegram. Apri semplicemente la chat e premi Start. Considera che attivando le notifiche telegram potresti ridurre il tuo livello di anonimit\u00e0.",
"Go back": "Indietro",
"Enable": "Attiva",
"Telegram enabled": "Telegram attivato",
@ -305,33 +297,33 @@
"Premium rank": "Classifica del premio",
"Among public {{currencyCode}} orders (higher is cheaper)": "Tra gli ordini pubblici in {{currencyCode}} (costo crescente)",
"A taker has been found!": "E' stato trovato un acquirente!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Aspetta che l'acquirente blocchi una cauzione. Se l'acquirente non blocca una cauzione in tempo, l'ordine verrà reso nuovamente pubblico.",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Aspetta che l'acquirente blocchi una cauzione. Se l'acquirente non blocca una cauzione in tempo, l'ordine verr\u00e0 reso nuovamente pubblico.",
"Submit an invoice for {{amountSats}} Sats": "Invia una ricevuta per {{amountSats}} Sats",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "L'acquirente si è impegnato! Prima di lasciarti inviare {{amountFiat}} {{currencyCode}}, vogliamo assicurarci tu sia in grado di ricevere i BTC. Per favore invia una fattura valida per {{amountSats}} Sats.",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "L'acquirente si \u00e8 impegnato! Prima di lasciarti inviare {{amountFiat}} {{currencyCode}}, vogliamo assicurarci tu sia in grado di ricevere i BTC. Per favore invia una fattura valida per {{amountSats}} Sats.",
"Payout Lightning Invoice": "Fattura di pagamento Lightning",
"Your invoice looks good!": "La tua fattura va bene!",
"We are waiting for the seller to lock the trade amount.": "Stiamo aspettando che l'offerente blocchi l'ammontare della transazione.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Aspetta un attimo. Se l'offerente non effettua il deposito, riceverai indietro la cauzione automaticamente. In più, riceverai un compenso (controlla le ricompense sul tuo profilo).",
"The trade collateral is locked!": "La garanzia di transazione è stata bloccata!",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Aspetta un attimo. Se l'offerente non effettua il deposito, riceverai indietro la cauzione automaticamente. In pi\u00f9, riceverai un compenso (controlla le ricompense sul tuo profilo).",
"The trade collateral is locked!": "La garanzia di transazione \u00e8 stata bloccata!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Stiamo aspettando che l'acquirente invii una fattura lightning. Appena fatto, sarai in grado di comunicare direttamente i dettagli di pagamento fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Aspetta un attimo. Se l'acquirente non collabora, ti verranno restituite automaticamente la garanzia di transazione e la cauzione. In più, riceverai un compenso (controlla le ricompense sul tuo profilo).",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Aspetta un attimo. Se l'acquirente non collabora, ti verranno restituite automaticamente la garanzia di transazione e la cauzione. In pi\u00f9, riceverai un compenso (controlla le ricompense sul tuo profilo).",
"Confirm {{amount}} {{currencyCode}} sent": "Conferma l'invio di {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Conferma la ricezione di {{amount}} {{currencyCode}}",
"Open Dispute": "Apri una disputa",
"The order has expired": "L'ordine è scaduto",
"The order has expired": "L'ordine \u00e8 scaduto",
"Chat with the buyer": "Chatta con l'acquirente",
"Chat with the seller": "Chatta con l'offerente",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Saluta! Sii utile e conciso. Fai sapere come inviarti {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "L'acquirente ha inviato fiat. Clicca 'Conferma ricezione' appena li ricevi.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Saluta! Chiedi i dettagli di pagamento e clicca 'Confirma invio' appena il pagamento è inviato.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Saluta! Chiedi i dettagli di pagamento e clicca 'Confirma invio' appena il pagamento \u00e8 inviato.",
"Wait for the seller to confirm he has received the payment.": "Aspetta che l'offerente confermi la ricezione del pagamento.",
"Confirm you received {{amount}} {{currencyCode}}?": "Confermi la ricezione di {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confermando la ricezione del fiat la transazione sarà finalizzata. I sats depositati saranno rilasciati all'acquirente. Conferma solamente dopo che {{amount}} {{currencyCode}} sono arrivati sul tuo conto. In più, se se hai ricevuto {{currencyCode}} e non procedi a confermare la ricezione, rischi di perdere la cauzione.",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confermando la ricezione del fiat la transazione sar\u00e0 finalizzata. I sats depositati saranno rilasciati all'acquirente. Conferma solamente dopo che {{amount}} {{currencyCode}} sono arrivati sul tuo conto. In pi\u00f9, se se hai ricevuto {{currencyCode}} e non procedi a confermare la ricezione, rischi di perdere la cauzione.",
"Confirm": "Conferma",
"Trade finished!": "Transazione conclusa!",
"rate_robosats": "Cosa pensi di <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Grazie! Anche +RoboSats ti ama ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats migliora se ha più liquidità ed utenti. Parla di Robosats ai tuoi amici bitcoiner!",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Grazie! Anche +RoboSats ti ama \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats migliora se ha pi\u00f9 liquidit\u00e0 ed utenti. Parla di Robosats ai tuoi amici bitcoiner!",
"Thank you for using Robosats!": "Grazie per aver usato Robosats!",
"let_us_know_hot_to_improve": "Facci sapere come migliorare la piattaforma (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Ricomincia",
@ -339,16 +331,16 @@
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats sta provando a pagare la tua fattura lightning. Ricorda che i nodi lightning devono essere online per ricevere pagamenti.",
"Retrying!": "Retrying!",
"Lightning Routing Failed": "Instradamento lightning non riuscito",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "La tua fattura è scaduta o sono stati fatti più di 3 tentativi di pagamento. Invia una nuova fattura.",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "La tua fattura \u00e8 scaduta o sono stati fatti pi\u00f9 di 3 tentativi di pagamento. Invia una nuova fattura.",
"Check the list of compatible wallets": "Controlla la lista di wallet compatibili",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.",
"Next attempt in": "Prossimo tentativo",
"Do you want to open a dispute?": "Vuoi aprire una disputa?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Lo staff di RoboSats esaminerà le dichiarazioni e le prove fornite. È necessario costruire un caso completo, poiché lo staff non può leggere la chat. È meglio fornire un metodo di contatto temporaneo insieme alla propria dichiarazione. I satoshi presenti nel deposito saranno inviati al vincitore della disputa, mentre il perdente perderà il deposito",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Lo staff di RoboSats esaminer\u00e0 le dichiarazioni e le prove fornite. \u00c8 necessario costruire un caso completo, poich\u00e9 lo staff non pu\u00f2 leggere la chat. \u00c8 meglio fornire un metodo di contatto temporaneo insieme alla propria dichiarazione. I satoshi presenti nel deposito saranno inviati al vincitore della disputa, mentre il perdente perder\u00e0 il deposito",
"Disagree": "Non sono d'accordo",
"Agree and open dispute": "Sono d'accordo e apri una disputa",
"A dispute has been opened": "E' stata aperta una disputa",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Per favore, invia la tua dichiarazione. Sii chiaro e specifico sull'accaduto e fornisci le prove necessarie. DEVI fornire un metodo di contatto: email temporanea, nome utente XMPP o telegram per contattare lo staff. Le dispute vengono risolte a discrezione di veri robot (alias umani), quindi sii il più collaborativo possibile per garantire un esito equo. Massimo 5000 caratteri.",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Per favore, invia la tua dichiarazione. Sii chiaro e specifico sull'accaduto e fornisci le prove necessarie. DEVI fornire un metodo di contatto: email temporanea, nome utente XMPP o telegram per contattare lo staff. Le dispute vengono risolte a discrezione di veri robot (alias umani), quindi sii il pi\u00f9 collaborativo possibile per garantire un esito equo. Massimo 5000 caratteri.",
"Submit dispute statement": "Dichiarazione inviata",
"We have received your statement": "Abbiamo ricevuto la tua dichiarazione",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Siamo in attesa della dichiarazione della controparte. Se hai dubbi sullo stato della disputa o vuoi aggiungere ulteriori informazioni, contatta robosats@protonmail.com.",
@ -356,69 +348,68 @@
"We have the statements": "Abbiamo ricevuto le dichiarazioni",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Sono state ricevute entrambe le dichiarazioni, attendi che lo staff risolva la disputa. Se sei incerto sullo stato della controversia o vuoi aggiungere ulteriori informazioni, contatta robosats@protonmail.com. Se non hai fornito un metodo di contatto o non sei sicuro di aver scritto bene, scrivici immediatamente.",
"You have won the dispute": "Hai vinto la disputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Puoi richiedere l'importo per la risoluzione delle controversie (deposito e cauzione) dalla sezione ricompense del tuo profilo. Se c'è qualcosa per cui lo staff può essere d'aiuto, non esitare a contattare robosats@protonmail.com (o tramite il metodo di contatto temporaneo fornito).",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Puoi richiedere l'importo per la risoluzione delle controversie (deposito e cauzione) dalla sezione ricompense del tuo profilo. Se c'\u00e8 qualcosa per cui lo staff pu\u00f2 essere d'aiuto, non esitare a contattare robosats@protonmail.com (o tramite il metodo di contatto temporaneo fornito).",
"You have lost the dispute": "Hai perso la disputa",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Purtroppo hai perso la disputa. Se ritieni che si tratti di un errore, puoi chiedere di riaprire il caso inviando una email all'indirizzo robosats@protonmail.com. Tuttavia, le probabilità che il caso venga esaminato nuovamente sono basse.",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Purtroppo hai perso la disputa. Se ritieni che si tratti di un errore, puoi chiedere di riaprire il caso inviando una email all'indirizzo robosats@protonmail.com. Tuttavia, le probabilit\u00e0 che il caso venga esaminato nuovamente sono basse.",
"Expired not taken": "Scaduto non accettato",
"Maker bond not locked": "Cauzione dell'offerente non bloccata",
"Escrow not locked": "Deposito non bloccato",
"Invoice not submitted": "Fattura non inviata",
"Neither escrow locked or invoice submitted": "Nè deposito bloccato nè fattura inviata",
"Neither escrow locked or invoice submitted": "N\u00e8 deposito bloccato n\u00e8 fattura inviata",
"Renew Order": "Rinnova l'ordine",
"Pause the public order": "Sospendi l'ordine pubblico",
"Your order is paused": "Il tuo ordine è in sospeso",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Il tuo ordine pubblico è in sospeso. Al momento non può essere visto o accettato da altri robot. È possibile scegliere di toglierlo dalla pausa in qualsiasi momento",
"Your order is paused": "Il tuo ordine \u00e8 in sospeso",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Il tuo ordine pubblico \u00e8 in sospeso. Al momento non pu\u00f2 essere visto o accettato da altri robot. \u00c8 possibile scegliere di toglierlo dalla pausa in qualsiasi momento",
"Unpause Order": "Rimuovi la pausa all'ordine",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Rischi di perdere la tua cauzione se non blocchi la garanzia. Il tempo totale a disposizione è {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Rischi di perdere la tua cauzione se non blocchi la garanzia. Il tempo totale a disposizione \u00e8 {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Vedi wallet compatibili",
"Failure reason:": "Ragione del fallimento:",
"Payment isn't failed (yet)": "Il pagamanto non è fallito (per adesso)",
"There are more routes to try, but the payment timeout was exceeded.": "Ci sono altri percorsi da tentare, ma il tempo massimo per il pagamento è stato superato.",
"Payment isn't failed (yet)": "Il pagamanto non \u00e8 fallito (per adesso)",
"There are more routes to try, but the payment timeout was exceeded.": "Ci sono altri percorsi da tentare, ma il tempo massimo per il pagamento \u00e8 stato superato.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Tutti i percorsi possibili sono stati provati e hanno fallito definitivamente. Oppure non c'erano percorsi per raggiungere la destinazione.",
"A non-recoverable error has occurred.": "E' avvenuto un errore non recuperabile.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "I dettagli del pagamento sono incorretti (hash sconosciuto, somma invalida o CLTV delta finale invalido).",
"Insufficient unlocked balance in RoboSats' node.": "Saldo sbloccato nel nodo RoboSats insufficiente.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "La fattura inviata ha solo indicazioni di instradamento costose, stai usando un wallet incompatibile (probabilmente Muun?). Controlla la guida alla compatibilità dei wallet su wallets.robosats.com",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "La fattura inviata ha solo indicazioni di instradamento costose, stai usando un wallet incompatibile (probabilmente Muun?). Controlla la guida alla compatibilit\u00e0 dei wallet su wallets.robosats.com",
"The invoice provided has no explicit amount": "La fattura inviata non contiene una somma esplicita",
"Does not look like a valid lightning invoice": "Non assomiglia a una fattura lightning valida",
"The invoice provided has already expired": "La fattura inviata è già scaduta",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Assicurati di esportare il log della chat. Lo staff potrebbe richiedere il file JSON di log della chat esportato per risolvere eventuali dispute. È tua responsabilità conservarlo.",
"The invoice provided has already expired": "La fattura inviata \u00e8 gi\u00e0 scaduta",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Assicurati di esportare il log della chat. Lo staff potrebbe richiedere il file JSON di log della chat esportato per risolvere eventuali dispute. \u00c8 tua responsabilit\u00e0 conservarlo.",
"INFO DIALOG - InfoDiagog.js": "App information and clarifications and terms of use",
"Close": "Chiudi",
"What is RoboSats?": "Cos'è RoboSats?",
"What is RoboSats?": "Cos'\u00e8 RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "E' una borsa di scambio BTC/FIAT peer-to-peer che utilizza lightning.",
"RoboSats is an open source project ": "RoboSats è un progetto open-source",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Semplifica il coordinamento tra parti e riduce al minimo la necessità di fiducia. RoboSats si concentra su privacy e velocità.",
"RoboSats is an open source project ": "RoboSats \u00e8 un progetto open-source",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Semplifica il coordinamento tra parti e riduce al minimo la necessit\u00e0 di fiducia. RoboSats si concentra su privacy e velocit\u00e0.",
"(GitHub).": "(GitHub).",
"How does it work?": "Come funziona?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 vuole vendere bitcoin. Ella invia un ordine di vendita. BafflingBob02 vuole acquistare bitcoin e accetta l'ordine di Alice. Entrambi devono inviare una piccola cauzione utilizzando lightning per dimostrare di essere dei veri robot. Quindi, Alice invia la garanzia utilizzando ancora una fattura lightning. RoboSats blocca la fattura finché Alice non conferma di aver ricevuto il denaro fiat, quindi i satoshi vengono rilasciati a Bob. Goditi i tuoi Sats, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "In nessun momento, AnonymousAlice01 e BafflingBob02 devono affidare i fondi bitcoin l'uno all'altro. In caso di conflitto, lo staff di RoboSats aiuterà a risolvere la disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Una descrizione passo passo della pipeline di scambio è disponibile in ",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 vuole vendere bitcoin. Ella invia un ordine di vendita. BafflingBob02 vuole acquistare bitcoin e accetta l'ordine di Alice. Entrambi devono inviare una piccola cauzione utilizzando lightning per dimostrare di essere dei veri robot. Quindi, Alice invia la garanzia utilizzando ancora una fattura lightning. RoboSats blocca la fattura finch\u00e9 Alice non conferma di aver ricevuto il denaro fiat, quindi i satoshi vengono rilasciati a Bob. Goditi i tuoi Sats, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "In nessun momento, AnonymousAlice01 e BafflingBob02 devono affidare i fondi bitcoin l'uno all'altro. In caso di conflitto, lo staff di RoboSats aiuter\u00e0 a risolvere la disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Una descrizione passo passo della pipeline di scambio \u00e8 disponibile in ",
"How it works": "Come funziona",
"You can also check the full guide in ": "Puoi anche consultare la guida completa in ",
"How to use": "Come usarlo",
"What payment methods are accepted?": "Quali pagamenti sono accettati?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Tutti, purchè siano veloci. Puoi indicare i tuoi metodi di pagamenti preferiti. Dovrai trovare un tuo pari che preferisce gli stessi metodi. Il passaggio di trasferimento di fiat ha una scadenza di 24 ore prima che una disputa sia aperta automaticamente. Raccomandiamo caldamente di usare canali di pagamento fiat instantanei.",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Tutti, purch\u00e8 siano veloci. Puoi indicare i tuoi metodi di pagamenti preferiti. Dovrai trovare un tuo pari che preferisce gli stessi metodi. Il passaggio di trasferimento di fiat ha una scadenza di 24 ore prima che una disputa sia aperta automaticamente. Raccomandiamo caldamente di usare canali di pagamento fiat instantanei.",
"Are there trade limits?": "Ci sono limiti agli scambi?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "La dimensione massima di una singola operazione è di {{maxAmount}} Sats per ridurre al minimo il fallimento del traffico su lightning. Non ci sono limiti al numero di operazioni al giorno. Un robot può avere un solo ordine alla volta. Tuttavia, è possibile utilizzare più robot contemporaneamente in browser diversi (ricordarsi di eseguire il backup dei gettoni dei robot!).",
"Is RoboSats private?": "RoboSats è privato?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats non ti chiederà mai il nome, il paese o il documento d'identità. RoboSats non custodisce i tuoi fondi e non si interessa di chi sei. RoboSats non raccoglie né custodisce alcun dato personale. Per un migliore anonimato, usa il Tor Browser e accedi al servizio nascosto .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Il tuo pari di trading è l'unico che può potenzialmente scoprire qualcosa su di te. Mantieni la chat breve e concisa. Evita di fornire informazioni non essenziali se non quelle strettamente necessarie per il pagamento in fiat.",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "La dimensione massima di una singola operazione \u00e8 di {{maxAmount}} Sats per ridurre al minimo il fallimento del traffico su lightning. Non ci sono limiti al numero di operazioni al giorno. Un robot pu\u00f2 avere un solo ordine alla volta. Tuttavia, \u00e8 possibile utilizzare pi\u00f9 robot contemporaneamente in browser diversi (ricordarsi di eseguire il backup dei gettoni dei robot!).",
"Is RoboSats private?": "RoboSats \u00e8 privato?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats non ti chieder\u00e0 mai il nome, il paese o il documento d'identit\u00e0. RoboSats non custodisce i tuoi fondi e non si interessa di chi sei. RoboSats non raccoglie n\u00e9 custodisce alcun dato personale. Per un migliore anonimato, usa il Tor Browser e accedi al servizio nascosto .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Il tuo pari di trading \u00e8 l'unico che pu\u00f2 potenzialmente scoprire qualcosa su di te. Mantieni la chat breve e concisa. Evita di fornire informazioni non essenziali se non quelle strettamente necessarie per il pagamento in fiat.",
"What are the risks?": "Quali sono i rischi?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Questa è un'applicazione sperimentale, le cose potrebbero andare male. Scambia piccole quantità!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "L'offerente è soggetto allo stesso rischio di charge-back di qualsiasi altro servizio peer-to-peer. Paypal o le carte di credito non sono raccomandate.",
"What is the trust model?": "Qual è il modello di fiducia?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "L'acquirente e l'offerente non devono mai avere fiducia l'uno nell'altro. È necessaria una certa fiducia nei confronti di RoboSats, poiché il collegamento tra la fattura di vendita e il pagamento dell'acquirente non è ancora atomico. Inoltre, le dispute sono risolte dallo staff di RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Per essere chiari. I requisiti di fiducia sono ridotti al minimo. Tuttavia, c'è ancora un modo in cui RoboSats potrebbe scappare con i tuoi satoshi: non rilasciando i satoshs all'acquirente. Si potrebbe obiettare che questa mossa non è nell'interesse di RoboSats, in quanto ne danneggerebbe la reputazione per un piccolo guadagno. Tuttavia, dovresti indugiare e scambiare solo piccole quantità alla volta. Per grandi quantità, utilizzate un servizio di deposito a garanzia onchain come Bisq.",
"You can build more trust on RoboSats by inspecting the source code.": "È possibile ottenere maggiore fiducia in RoboSats ispezionando il codice sorgente.",
"This is an experimental application, things could go wrong. Trade small amounts!": "Questa \u00e8 un'applicazione sperimentale, le cose potrebbero andare male. Scambia piccole quantit\u00e0!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "L'offerente \u00e8 soggetto allo stesso rischio di charge-back di qualsiasi altro servizio peer-to-peer. Paypal o le carte di credito non sono raccomandate.",
"What is the trust model?": "Qual \u00e8 il modello di fiducia?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "L'acquirente e l'offerente non devono mai avere fiducia l'uno nell'altro. \u00c8 necessaria una certa fiducia nei confronti di RoboSats, poich\u00e9 il collegamento tra la fattura di vendita e il pagamento dell'acquirente non \u00e8 ancora atomico. Inoltre, le dispute sono risolte dallo staff di RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Per essere chiari. I requisiti di fiducia sono ridotti al minimo. Tuttavia, c'\u00e8 ancora un modo in cui RoboSats potrebbe scappare con i tuoi satoshi: non rilasciando i satoshs all'acquirente. Si potrebbe obiettare che questa mossa non \u00e8 nell'interesse di RoboSats, in quanto ne danneggerebbe la reputazione per un piccolo guadagno. Tuttavia, dovresti indugiare e scambiare solo piccole quantit\u00e0 alla volta. Per grandi quantit\u00e0, utilizzate un servizio di deposito a garanzia onchain come Bisq.",
"You can build more trust on RoboSats by inspecting the source code.": "\u00c8 possibile ottenere maggiore fiducia in RoboSats ispezionando il codice sorgente.",
"Project source code": "Codice sorgente del progetto",
"What happens if RoboSats suddenly disappears?": "Cosa succede se RoboSats sparisce improvvisamente?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "I tuoi sats torneranno a te. Qualsiasi fattura in sospeso non saldata sarà automaticamente restituita anche se RoboSats dovesse scomparire per sempre. Questo vale sia per le cauzioni bloccate che per i depositi. Tuttavia, c'è una piccola finestra tra il momento in cui l'offerente conferma il FIAT RICEVUTO e il momento in cui l'acquirente riceve i satoshi, in cui i fondi potrebbero essere persi in modo permanente se RoboSats scomparisse. Questa finestra dura circa 1 secondo. Assicuratevi di avere abbastanza liquidità in entrata per evitare errori di instradamento. In caso di problemi, contattare i canali pubblici di RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "In molti Paesi l'utilizzo di RoboSats non è diverso da quello di Ebay o Craiglist. Le normative possono variare. È tua responsabilità conformarti.",
"Is RoboSats legal in my country?": "RoboSats è legale nel mio Paese?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "I tuoi sats torneranno a te. Qualsiasi fattura in sospeso non saldata sar\u00e0 automaticamente restituita anche se RoboSats dovesse scomparire per sempre. Questo vale sia per le cauzioni bloccate che per i depositi. Tuttavia, c'\u00e8 una piccola finestra tra il momento in cui l'offerente conferma il FIAT RICEVUTO e il momento in cui l'acquirente riceve i satoshi, in cui i fondi potrebbero essere persi in modo permanente se RoboSats scomparisse. Questa finestra dura circa 1 secondo. Assicuratevi di avere abbastanza liquidit\u00e0 in entrata per evitare errori di instradamento. In caso di problemi, contattare i canali pubblici di RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "In molti Paesi l'utilizzo di RoboSats non \u00e8 diverso da quello di Ebay o Craiglist. Le normative possono variare. \u00c8 tua responsabilit\u00e0 conformarti.",
"Is RoboSats legal in my country?": "RoboSats \u00e8 legale nel mio Paese?",
"Disclaimer": "Avvertenza",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Questa applicazione lightning viene fornita così com'è. È in fase di sviluppo attivo: è opportuno utilizzarla con la massima cautela. Non esiste un supporto privato. Il supporto è offerto solo attraverso i canali pubblici ",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Questa applicazione lightning viene fornita cos\u00ec com'\u00e8. \u00c8 in fase di sviluppo attivo: \u00e8 opportuno utilizzarla con la massima cautela. Non esiste un supporto privato. Il supporto \u00e8 offerto solo attraverso i canali pubblici ",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats non ti contatterà mai. RoboSats non chiederà mai il gettone del tuo robot."
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats non ti contatter\u00e0 mai. RoboSats non chieder\u00e0 mai il gettone del tuo robot."
}

View File

@ -1,358 +1,349 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alert that shows on top when browsing from the unsafe clearnet sites",
"You are not using RoboSats privately": "Nie używasz Robosats prywatnie",
"desktop_unsafe_alert": "Niektóre funkcje są wyłączone dla Twojej ochrony (np. czat) i bez nich nie będziesz w stanie dokonać transakcji. Aby chronić swoją prywatność i w pełni włączyć RoboSats, użyj <1>Tor Browser</1> i odwiedź <3>onion<//3>.",
"phone_unsafe_alert": "Nie będziesz w stanie sfinalizować transakcji. Użyj <1>Tor Browser</1> i odwiedź witrynę <3>Onion</3>.",
"Hide": "Ukryć",
"You are not using RoboSats privately": "Nie u\u017cywasz Robosats prywatnie",
"desktop_unsafe_alert": "Niekt\u00f3re funkcje s\u0105 wy\u0142\u0105czone dla Twojej ochrony (np. czat) i bez nich nie b\u0119dziesz w stanie dokona\u0107 transakcji. Aby chroni\u0107 swoj\u0105 prywatno\u015b\u0107 i w pe\u0142ni w\u0142\u0105czy\u0107 RoboSats, u\u017cyj <1>Tor Browser</1> i odwied\u017a <3>onion<//3>.",
"phone_unsafe_alert": "Nie b\u0119dziesz w stanie sfinalizowa\u0107 transakcji. U\u017cyj <1>Tor Browser</1> i odwied\u017a witryn\u0119 <3>Onion</3>.",
"Hide": "Ukry\u0107",
"USER GENERATION PAGE - UserGenPage.js": "Landing Page and User Generation",
"Simple and Private LN P2P Exchange": "Łatwa i prywatna wymiana P2P LN",
"This is your trading avatar": "To jest twój awatar handlowy",
"Store your token safely": "Przechowuj swój token bezpiecznie",
"Simple and Private LN P2P Exchange": "\u0141atwa i prywatna wymiana P2P LN",
"This is your trading avatar": "To jest tw\u00f3j awatar handlowy",
"Store your token safely": "Przechowuj sw\u00f3j token bezpiecznie",
"A robot avatar was found, welcome back!": "Znaleziono awatar robota, witamy ponownie!",
"Copied!": "Skopiowane!",
"Generate a new token": "Wygeneruj nowy token",
"Generate Robot": "Generuj robota",
"You must enter a new token first": "Musisz najpierw wprowadzić nowy token",
"Make Order": "Złóż zamówienie",
"You must enter a new token first": "Musisz najpierw wprowadzi\u0107 nowy token",
"Make Order": "Z\u0142\u00f3\u017c zam\u00f3wienie",
"Info": "Info",
"View Book": "Zobacz książkę",
"MAKER PAGE - MakerPage.js": "To jest strona, na której użytkownicy mogą tworzyć nowe zamówienia",
"Order": "Zamówienie",
"View Book": "Zobacz ksi\u0105\u017ck\u0119",
"MAKER PAGE - MakerPage.js": "To jest strona, na kt\u00f3rej u\u017cytkownicy mog\u0105 tworzy\u0107 nowe zam\u00f3wienia",
"Order": "Zam\u00f3wienie",
"Customize": "Dostosuj",
"Buy or Sell Bitcoin?": "Chcesz kupić lub sprzedać Bitcoin?",
"Buy": "Kupić",
"Sell": "Sprzedać",
"Amount": "Ilość",
"Buy or Sell Bitcoin?": "Chcesz kupi\u0107 lub sprzeda\u0107 Bitcoin?",
"Buy": "Kupi\u0107",
"Sell": "Sprzeda\u0107",
"Amount": "Ilo\u015b\u0107",
"Amount of fiat to exchange for bitcoin": "Kwota fiat do wymiany na bitcoin",
"Invalid": "Nieważny",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Wpisz swoje preferowane metody płatności fiat. Zdecydowanie zaleca się szybkie metody.",
"Must be shorter than 65 characters": "Musi być krótszy niż 65 znaków",
"Invalid": "Niewa\u017cny",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Wpisz swoje preferowane metody p\u0142atno\u015bci fiat. Zdecydowanie zaleca si\u0119 szybkie metody.",
"Must be shorter than 65 characters": "Musi by\u0107 kr\u00f3tszy ni\u017c 65 znak\u00f3w",
"Swap Destination(s)": "Swap miejsce/miejsca docelowe",
"Fiat Payment Method(s)": "Fiat Metoda/Metody płatności",
"You can add any method": "Możesz dodać dowolną metodę",
"Fiat Payment Method(s)": "Fiat Metoda/Metody p\u0142atno\u015bci",
"You can add any method": "Mo\u017cesz doda\u0107 dowoln\u0105 metod\u0119",
"Add New": "Dodaj nowe",
"Choose a Pricing Method": "Wybierz metodę ustalania cen",
"Relative": "Względny",
"Let the price move with the market": "Niech cena porusza się wraz z rynkiem",
"Choose a Pricing Method": "Wybierz metod\u0119 ustalania cen",
"Relative": "Wzgl\u0119dny",
"Let the price move with the market": "Niech cena porusza si\u0119 wraz z rynkiem",
"Premium over Market (%)": "Premia nad rynkiem (%)",
"Explicit": "Sprecyzowany",
"Set a fix amount of satoshis": "Ustaw stałą ilość satoshi",
"Set a fix amount of satoshis": "Ustaw sta\u0142\u0105 ilo\u015b\u0107 satoshi",
"Satoshis": "Satoshis",
"Let the taker chose an amount within the range": "Niech biorący wybierze kwotę z zakresu",
"Enable Amount Range": "Włącz zakres kwot",
"Let the taker chose an amount within the range": "Niech bior\u0105cy wybierze kwot\u0119 z zakresu",
"Enable Amount Range": "W\u0142\u0105cz zakres kwot",
"From": "Od",
"to": "do",
"Public Duration (HH:mm)": "Czas trwania publicznego (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Ustaw skin-in-the-game, zwiększ, aby zapewnić większe bezpieczeństwo",
"Fidelity Bond Size": "Rozmiar obligacji wierności",
"Allow bondless takers": "Zezwól na osoby bez obligacji",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "WKRÓTCE - Wysokie ryzyko! Ograniczony do {{limitSats}}K Sats",
"You must fill the order correctly": "Musisz poprawnie wypełnić zamówienie",
"Create Order": "Utwórz zamówienie",
"Set the skin-in-the-game, increase for higher safety assurance": "Ustaw skin-in-the-game, zwi\u0119ksz, aby zapewni\u0107 wi\u0119ksze bezpiecze\u0144stwo",
"Fidelity Bond Size": "Rozmiar obligacji wierno\u015bci",
"Allow bondless takers": "Zezw\u00f3l na osoby bez obligacji",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "WKR\u00d3TCE - Wysokie ryzyko! Ograniczony do {{limitSats}}K Sats",
"You must fill the order correctly": "Musisz poprawnie wype\u0142ni\u0107 zam\u00f3wienie",
"Create Order": "Utw\u00f3rz zam\u00f3wienie",
"Back": "Z powrotem",
"Create a BTC buy order for ": "Utwórz zlecenie kupna BTC dla ",
"Create a BTC sell order for ": "Utwórz zlecenie sprzedaży BTC dla ",
"Create a BTC buy order for ": "Utw\u00f3rz zlecenie kupna BTC dla ",
"Create a BTC sell order for ": "Utw\u00f3rz zlecenie sprzeda\u017cy BTC dla ",
" of {{satoshis}} Satoshis": " z {{satoshis}} Satoshis",
" at market price": " po cenie rynkowej",
" at a {{premium}}% premium": " o godz {{premium}}% premia",
" at a {{discount}}% discount": " o godz {{discount}}% zniżka",
"Must be less than {{max}}%": "To musi być mniejsza niż {{max}}%",
"Must be more than {{min}}%": "To musi być więcej niż {{min}}%",
"Must be less than {{maxSats}": "To musi być mniej niż {{maxSats}}",
"Must be more than {{minSats}}": "To musi być więcej niż {{minSats}}",
"PAYMENT METHODS - autocompletePayments.js": "Ciągi metod płatności",
"not specified": "Nieokreślony",
" at a {{discount}}% discount": " o godz {{discount}}% zni\u017cka",
"Must be less than {{max}}%": "To musi by\u0107 mniejsza ni\u017c {{max}}%",
"Must be more than {{min}}%": "To musi by\u0107 wi\u0119cej ni\u017c {{min}}%",
"Must be less than {{maxSats}": "To musi by\u0107 mniej ni\u017c {{maxSats}}",
"Must be more than {{minSats}}": "To musi by\u0107 wi\u0119cej ni\u017c {{minSats}}",
"PAYMENT METHODS - autocompletePayments.js": "Ci\u0105gi metod p\u0142atno\u015bci",
"not specified": "Nieokre\u015blony",
"Instant SEPA": "Natychmiastowe SEPA",
"Amazon GiftCard": "Amazon GiftCard",
"Google Play Gift Code": "Google Play Gift Code",
"Cash F2F": "Cash F2F",
"On-Chain BTC": "On-Chain BTC",
"BOOK PAGE - BookPage.js": "Strona Zamówienia książki",
"BOOK PAGE - BookPage.js": "Strona Zam\u00f3wienia ksi\u0105\u017cki",
"Seller": "Sprzedawca",
"Buyer": "Kupujący",
"I want to": "chcę",
"Select Order Type": "Wybierz typ zamówienia",
"ANY": "KAŻDY",
"BUY": "KUPIĆ",
"SELL": "SPRZEDAĆ",
"Buyer": "Kupuj\u0105cy",
"I want to": "chc\u0119",
"Select Order Type": "Wybierz typ zam\u00f3wienia",
"ANY": "KA\u017bDY",
"BUY": "KUPI\u0106",
"SELL": "SPRZEDA\u0106",
"and receive": "i odbierz",
"and pay with": "i zapłać",
"and use": "i użyć",
"Select Payment Currency": "Wybierz walutę płatności",
"and pay with": "i zap\u0142a\u0107",
"and use": "i u\u017cy\u0107",
"Select Payment Currency": "Wybierz walut\u0119 p\u0142atno\u015bci",
"Robot": "Robot",
"Is": "Jest",
"Currency": "Waluta",
"Payment Method": "Metoda płatności",
"Pay": "Płacić",
"Payment Method": "Metoda p\u0142atno\u015bci",
"Pay": "P\u0142aci\u0107",
"Price": "Cena",
"Premium": "Premia",
"You are SELLING BTC for {{currencyCode}}": "SPRZEDAJESZ BTC za {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "KUPUJESZ BTC za {{currencyCode}}",
"You are looking at all": "Patrzysz na wszystko",
"No orders found to sell BTC for {{currencyCode}}": "Nie znaleziono zleceń sprzedaży BTC za {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "Nie znaleziono zamówień na zakup BTC za {{currencyCode}}",
"Be the first one to create an order": "Bądź pierwszą osobą, która utworzy zamówienie",
"BOTTOM BAR AND MISC - BottomBar.js": "Profil użytkownika paska dolnego i różne okna dialogowe",
"Stats For Nerds": "Statystyki dla nerdów",
"No orders found to sell BTC for {{currencyCode}}": "Nie znaleziono zlece\u0144 sprzeda\u017cy BTC za {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "Nie znaleziono zam\u00f3wie\u0144 na zakup BTC za {{currencyCode}}",
"Be the first one to create an order": "B\u0105d\u017a pierwsz\u0105 osob\u0105, kt\u00f3ra utworzy zam\u00f3wienie",
"BOTTOM BAR AND MISC - BottomBar.js": "Profil u\u017cytkownika paska dolnego i r\u00f3\u017cne okna dialogowe",
"Stats For Nerds": "Statystyki dla nerd\u00f3w",
"LND version": "LND wersja",
"Currently running commit hash": "Aktualnie uruchomiony hash zatwierdzenia",
"24h contracted volume": "Zakontraktowana objętość 24h",
"Lifetime contracted volume": "Zakontraktowana wielkość dożywotnia",
"24h contracted volume": "Zakontraktowana obj\u0119to\u015b\u0107 24h",
"Lifetime contracted volume": "Zakontraktowana wielko\u015b\u0107 do\u017cywotnia",
"Made with": "Wykonana z",
"and": "i",
"... somewhere on Earth!": "... gdzieś na Ziemi!",
"Community": "Społeczność",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Wsparcie jest oferowane wyłącznie za pośrednictwem kanałów publicznych. Dołącz do naszej społeczności Telegram, jeśli masz pytania lub chcesz spędzać czas z innymi fajnymi robotami. Proszę, skorzystaj z naszego Github Issues, jeśli znajdziesz błąd lub chcesz zobaczyć nowe funkcje!",
"Join the RoboSats group": "Dołącz do grupy RoboSats",
"... somewhere on Earth!": "... gdzie\u015b na Ziemi!",
"Community": "Spo\u0142eczno\u015b\u0107",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "Wsparcie jest oferowane wy\u0142\u0105cznie za po\u015brednictwem kana\u0142\u00f3w publicznych. Do\u0142\u0105cz do naszej spo\u0142eczno\u015bci Telegram, je\u015bli masz pytania lub chcesz sp\u0119dza\u0107 czas z innymi fajnymi robotami. Prosz\u0119, skorzystaj z naszego Github Issues, je\u015bli znajdziesz b\u0142\u0105d lub chcesz zobaczy\u0107 nowe funkcje!",
"Join the RoboSats group": "Do\u0142\u0105cz do grupy RoboSats",
"Telegram (English / Main)": "Telegram (English / Main)",
"RoboSats Telegram Communities": "RoboSats Telegram Communities",
"Join RoboSats Spanish speaking community!": "Dołącz do hiszpańskojęzycznej społeczności RoboSats!",
"Join RoboSats Russian speaking community!": "Dołącz do rosyjskojęzycznej społeczności RoboSats!",
"Join RoboSats Chinese speaking community!": "Dołącz do chińskojęzycznej społeczności RoboSats!",
"Join RoboSats English speaking community!": "Dołącz do anglojęzycznej społeczności RoboSats!",
"Tell us about a new feature or a bug": "Poinformuj nas o nowej funkcji lub błędzie",
"Github Issues - The Robotic Satoshis Open Source Project": "Problemy z Githubem projekt Robotic Satoshis Open Source",
"Your Profile": "Twój profil",
"Your robot": "Twój robot",
"One active order #{{orderID}}": "Jedno aktywne zamówienie #{{orderID}}",
"Your current order": "Twoje obecne zamówienie",
"No active orders": "Brak aktywnych zamówień",
"Your token (will not remain here)": "Twój token (nie pozostanie tutaj)",
"Back it up!": "Utwórz kopię zapasową!",
"Cannot remember": "niemożliwe do zapamiętania",
"Join RoboSats Spanish speaking community!": "Do\u0142\u0105cz do hiszpa\u0144skoj\u0119zycznej spo\u0142eczno\u015bci RoboSats!",
"Join RoboSats Russian speaking community!": "Do\u0142\u0105cz do rosyjskoj\u0119zycznej spo\u0142eczno\u015bci RoboSats!",
"Join RoboSats Chinese speaking community!": "Do\u0142\u0105cz do chi\u0144skoj\u0119zycznej spo\u0142eczno\u015bci RoboSats!",
"Join RoboSats English speaking community!": "Do\u0142\u0105cz do angloj\u0119zycznej spo\u0142eczno\u015bci RoboSats!",
"Tell us about a new feature or a bug": "Poinformuj nas o nowej funkcji lub b\u0142\u0119dzie",
"Github Issues - The Robotic Satoshis Open Source Project": "Problemy z Githubem \u2014 projekt Robotic Satoshis Open Source",
"Your Profile": "Tw\u00f3j profil",
"Your robot": "Tw\u00f3j robot",
"One active order #{{orderID}}": "Jedno aktywne zam\u00f3wienie #{{orderID}}",
"Your current order": "Twoje obecne zam\u00f3wienie",
"No active orders": "Brak aktywnych zam\u00f3wie\u0144",
"Your token (will not remain here)": "Tw\u00f3j token (nie pozostanie tutaj)",
"Back it up!": "Utw\u00f3rz kopi\u0119 zapasow\u0105!",
"Cannot remember": "niemo\u017cliwe do zapami\u0119tania",
"Rewards and compensations": "Nagrody i rekompensaty",
"Share to earn 100 Sats per trade": "Udostępnij, aby zarobić 100 Sats na transakcję",
"Your referral link": "Twój link referencyjny",
"Share to earn 100 Sats per trade": "Udost\u0119pnij, aby zarobi\u0107 100 Sats na transakcj\u0119",
"Your referral link": "Tw\u00f3j link referencyjny",
"Your earned rewards": "Twoje zarobione nagrody",
"Claim": "Prawo",
"Invoice for {{amountSats}} Sats": "Faktura za {{amountSats}} Sats",
"Submit": "Składać",
"There it goes, thank you!🥇": "No to idzie, Dziękuję!🥇",
"You have an active order": "Masz aktywne zamówienie",
"You can claim satoshis!": "Możesz ubiegać się o satoshi!",
"Public Buy Orders": "Publiczne zamówienia zakupu",
"Public Sell Orders": "Publiczne zlecenia sprzedaży",
"Submit": "Sk\u0142ada\u0107",
"There it goes, thank you!\ud83e\udd47": "No to idzie, Dzi\u0119kuj\u0119!\ud83e\udd47",
"You have an active order": "Masz aktywne zam\u00f3wienie",
"You can claim satoshis!": "Mo\u017cesz ubiega\u0107 si\u0119 o satoshi!",
"Public Buy Orders": "Publiczne zam\u00f3wienia zakupu",
"Public Sell Orders": "Publiczne zlecenia sprzeda\u017cy",
"Today Active Robots": "Dzisiaj aktywne roboty",
"24h Avg Premium": "24h średnia premia",
"Trade Fee": "Opłata handlowa",
"Show community and support links": "Pokaż linki do społeczności i wsparcia",
"Show stats for nerds": "Pokaż statystyki dla nerdów",
"24h Avg Premium": "24h \u015brednia premia",
"Trade Fee": "Op\u0142ata handlowa",
"Show community and support links": "Poka\u017c linki do spo\u0142eczno\u015bci i wsparcia",
"Show stats for nerds": "Poka\u017c statystyki dla nerd\u00f3w",
"Exchange Summary": "Podsumowanie wymiany",
"Public buy orders": "Publiczne zamówienia kupna",
"Public sell orders": "Zlecenia sprzedaży publicznej",
"Book liquidity": "Płynność księgowa",
"Today active robots": "Dziś aktywne roboty",
"Public buy orders": "Publiczne zam\u00f3wienia kupna",
"Public sell orders": "Zlecenia sprzeda\u017cy publicznej",
"Book liquidity": "P\u0142ynno\u015b\u0107 ksi\u0119gowa",
"Today active robots": "Dzi\u015b aktywne roboty",
"24h non-KYC bitcoin premium": "24h premia bitcoin non-KYC",
"Maker fee": "Opłata producenta",
"Taker fee": "Opłata takera",
"Number of public BUY orders": "Liczba publicznych zamówień BUY",
"Number of public SELL orders": "Liczba publicznych zleceń SPRZEDAŻY",
"ORDER PAGE - OrderPage.js": "Strona szczegółów zamówienia",
"Order Box": "Pole zamówienia",
"Maker fee": "Op\u0142ata producenta",
"Taker fee": "Op\u0142ata takera",
"Number of public BUY orders": "Liczba publicznych zam\u00f3wie\u0144 BUY",
"Number of public SELL orders": "Liczba publicznych zlece\u0144 SPRZEDA\u017bY",
"ORDER PAGE - OrderPage.js": "Strona szczeg\u00f3\u0142\u00f3w zam\u00f3wienia",
"Order Box": "Pole zam\u00f3wienia",
"Contract": "Kontrakt",
"Active": "Aktywny",
"Seen recently": "Widziany niedawno",
"Inactive": "Nieaktywny",
"(Seller)": "(Sprzedawca)",
"(Buyer)": "(Kupujący)",
"Order maker": "Ekspres zamówienia",
"Order taker": "Przyjmujący zamówienia",
"Order Details": "Szczegóły zamówienia",
"Order status": "Status zamówienia",
"(Buyer)": "(Kupuj\u0105cy)",
"Order maker": "Ekspres zam\u00f3wienia",
"Order taker": "Przyjmuj\u0105cy zam\u00f3wienia",
"Order Details": "Szczeg\u00f3\u0142y zam\u00f3wienia",
"Order status": "Status zam\u00f3wienia",
"Waiting for maker bond": "Oczekiwanie na maker bond",
"Public": "Publiczny",
"Waiting for taker bond": "Oczekiwanie na taker bond",
"Cancelled": "Anulowane",
"Expired": "Wygasł",
"Waiting for trade collateral and buyer invoice": "Oczekiwanie na zabezpieczenie handlowe i fakturę kupującego",
"Expired": "Wygas\u0142",
"Waiting for trade collateral and buyer invoice": "Oczekiwanie na zabezpieczenie handlowe i faktur\u0119 kupuj\u0105cego",
"Waiting only for seller trade collateral": "Oczekiwanie tylko na zabezpieczenie transakcji sprzedawcy",
"Waiting only for buyer invoice": "Oczekiwanie tylko na fakturę kupującego",
"Sending fiat - In chatroom": "Wysyłanie fiat - W czacie",
"Fiat sent - In chatroom": "Fiat wysłany - W czacie",
"Waiting only for buyer invoice": "Oczekiwanie tylko na faktur\u0119 kupuj\u0105cego",
"Sending fiat - In chatroom": "Wysy\u0142anie fiat - W czacie",
"Fiat sent - In chatroom": "Fiat wys\u0142any - W czacie",
"In dispute": "W sporze",
"Collaboratively cancelled": "Anulowano wspólnie",
"Sending satoshis to buyer": "Wysyłanie satoshi do kupującego",
"Collaboratively cancelled": "Anulowano wsp\u00f3lnie",
"Sending satoshis to buyer": "Wysy\u0142anie satoshi do kupuj\u0105cego",
"Sucessful trade": "Udany handel",
"Failed lightning network routing": "Nieudane routingu lightning network",
"Wait for dispute resolution": "Poczekaj na rozstrzygnięcie sporu",
"Maker lost dispute": "Wytwórca przegrał spór",
"Taker lost dispute": "Taker przegrany spór",
"Amount range": "Przedział kwotowy",
"Wait for dispute resolution": "Poczekaj na rozstrzygni\u0119cie sporu",
"Maker lost dispute": "Wytw\u00f3rca przegra\u0142 sp\u00f3r",
"Taker lost dispute": "Taker przegrany sp\u00f3r",
"Amount range": "Przedzia\u0142 kwotowy",
"Swap destination": "Miejsce docelowe Swap",
"Accepted payment methods": "Akceptowane metody płatności",
"Accepted payment methods": "Akceptowane metody p\u0142atno\u015bci",
"Others": "Inni",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Premia: {{premium}}%",
"Price and Premium": "Cena i premia",
"Amount of Satoshis": "Ilość Satoshis",
"Premium over market price": "Premia ponad cenę rynkową",
"Order ID": "ID zamówienia",
"Amount of Satoshis": "Ilo\u015b\u0107 Satoshis",
"Premium over market price": "Premia ponad cen\u0119 rynkow\u0105",
"Order ID": "ID zam\u00f3wienia",
"Expires in": "Wygasa za",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} prosi o anulowanie współpracy",
"You asked for a collaborative cancellation": "Poprosiłeś o wspólne anulowanie",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Faktura wygasła. Nie potwierdziłeś publikacji zamówienia na czas. Złóż nowe zamówienie.",
"This order has been cancelled by the maker": "To zamówienie zostało anulowane przez producenta",
"Invoice expired. You did not confirm taking the order in time.": "Faktura wygasła. Nie potwierdziłeś przyjęcia zamówienia na czas.",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} prosi o anulowanie wsp\u00f3\u0142pracy",
"You asked for a collaborative cancellation": "Poprosi\u0142e\u015b o wsp\u00f3lne anulowanie",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "Faktura wygas\u0142a. Nie potwierdzi\u0142e\u015b publikacji zam\u00f3wienia na czas. Z\u0142\u00f3\u017c nowe zam\u00f3wienie.",
"This order has been cancelled by the maker": "To zam\u00f3wienie zosta\u0142o anulowane przez producenta",
"Invoice expired. You did not confirm taking the order in time.": "Faktura wygas\u0142a. Nie potwierdzi\u0142e\u015b przyj\u0119cia zam\u00f3wienia na czas.",
"Penalty lifted, good to go!": "Kara zniesiona, gotowe!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Nie możesz jeszcze przyjąć zamówienia! Czekać {{timeMin}}m {{timeSec}}s",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Nie mo\u017cesz jeszcze przyj\u0105\u0107 zam\u00f3wienia! Czeka\u0107 {{timeMin}}m {{timeSec}}s",
"Too low": "Za nisko",
"Too high": "Za wysoko",
"Enter amount of fiat to exchange for bitcoin": "Wprowadź kwotę fiat do wymiany na bitcoin",
"Amount {{currencyCode}}": "Ilość {{currencyCode}}",
"You must specify an amount first": "Musisz najpierw określić kwotę",
"Take Order": "Przyjąć zamówienie",
"Wait until you can take an order": "Poczekaj, aż będziesz mógł złożyć zamówienie",
"Cancel the order?": "Anulować zamówienie?",
"If the order is cancelled now you will lose your bond.": "Jeśli zamówienie zostanie teraz anulowane, stracisz kaucję.",
"Confirm Cancel": "Potwierdź Anuluj",
"The maker is away": "Twórcy nie ma",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Przyjmując to zamówienie, ryzykujesz zmarnowanie czasu. Jeśli twórca nie wywiąże się na czas, otrzymasz rekompensatę w satoshi za 50% kaucji producenta.",
"Collaborative cancel the order?": "Wspólnie anulować zamówienie?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Depozyt transakcji został wysłany. Zamówienie można anulować tylko wtedy, gdy zarówno producent, jak i przyjmujący wyrażą zgodę na anulowanie.",
"Ask for Cancel": "Poproś o anulowanie",
"Cancel": "Anulować",
"Collaborative Cancel": "Wspólna Anuluj",
"Invalid Order Id": "Nieprawidłowy ID zamówienia",
"You must have a robot avatar to see the order details": "Aby zobaczyć szczegóły zamówienia, musisz mieć awatara robota",
"This order has been cancelled collaborativelly": "To zamówienie zostało anulowane wspólnie",
"You are not allowed to see this order": "Nie możesz zobaczyć tego zamówienia",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Robotyczne Satoshi pracujące w magazynie cię nie rozumiały. Proszę wypełnić problem z błędem na Github https://github.com/reckless-satoshi/robosats/issues",
"Enter amount of fiat to exchange for bitcoin": "Wprowad\u017a kwot\u0119 fiat do wymiany na bitcoin",
"Amount {{currencyCode}}": "Ilo\u015b\u0107 {{currencyCode}}",
"You must specify an amount first": "Musisz najpierw okre\u015bli\u0107 kwot\u0119",
"Take Order": "Przyj\u0105\u0107 zam\u00f3wienie",
"Wait until you can take an order": "Poczekaj, a\u017c b\u0119dziesz m\u00f3g\u0142 z\u0142o\u017cy\u0107 zam\u00f3wienie",
"Cancel the order?": "Anulowa\u0107 zam\u00f3wienie?",
"If the order is cancelled now you will lose your bond.": "Je\u015bli zam\u00f3wienie zostanie teraz anulowane, stracisz kaucj\u0119.",
"Confirm Cancel": "Potwierd\u017a Anuluj",
"The maker is away": "Tw\u00f3rcy nie ma",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Przyjmuj\u0105c to zam\u00f3wienie, ryzykujesz zmarnowanie czasu. Je\u015bli tw\u00f3rca nie wywi\u0105\u017ce si\u0119 na czas, otrzymasz rekompensat\u0119 w satoshi za 50% kaucji producenta.",
"Collaborative cancel the order?": "Wsp\u00f3lnie anulowa\u0107 zam\u00f3wienie?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "Depozyt transakcji zosta\u0142 wys\u0142any. Zam\u00f3wienie mo\u017cna anulowa\u0107 tylko wtedy, gdy zar\u00f3wno producent, jak i przyjmuj\u0105cy wyra\u017c\u0105 zgod\u0119 na anulowanie.",
"Ask for Cancel": "Popro\u015b o anulowanie",
"Cancel": "Anulowa\u0107",
"Collaborative Cancel": "Wsp\u00f3lna Anuluj",
"Invalid Order Id": "Nieprawid\u0142owy ID zam\u00f3wienia",
"You must have a robot avatar to see the order details": "Aby zobaczy\u0107 szczeg\u00f3\u0142y zam\u00f3wienia, musisz mie\u0107 awatara robota",
"This order has been cancelled collaborativelly": "To zam\u00f3wienie zosta\u0142o anulowane wsp\u00f3lnie",
"You are not allowed to see this order": "Nie mo\u017cesz zobaczy\u0107 tego zam\u00f3wienia",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Robotyczne Satoshi pracuj\u0105ce w magazynie ci\u0119 nie rozumia\u0142y. Prosz\u0119 wype\u0142ni\u0107 problem z b\u0142\u0119dem na Github https://github.com/reckless-satoshi/robosats/issues",
"CHAT BOX - Chat.js": "Pole czatu",
"You": "Ty",
"Peer": "Par",
"connected": "połączony",
"disconnected": "niepowiązany",
"Type a message": "Wpisz wiadomość",
"Connecting...": "Złączony...",
"Send": "Wysłać",
"The chat has no memory: if you leave, messages are lost.": "Czat nie ma pamięci: jeśli wyjdziesz, wiadomości zostaną utracone.",
"Learn easy PGP encryption.": "Naucz się łatwego szyfrowania PGP.",
"connected": "po\u0142\u0105czony",
"disconnected": "niepowi\u0105zany",
"Type a message": "Wpisz wiadomo\u015b\u0107",
"Connecting...": "Z\u0142\u0105czony...",
"Send": "Wys\u0142a\u0107",
"The chat has no memory: if you leave, messages are lost.": "Czat nie ma pami\u0119ci: je\u015bli wyjdziesz, wiadomo\u015bci zostan\u0105 utracone.",
"Learn easy PGP encryption.": "Naucz si\u0119 \u0142atwego szyfrowania PGP.",
"PGP_guide_url": "https://learn.robosats.com/docs/pgp-encryption/",
"CONTRACT BOX - TradeBox.js": "Skrzynka kontraktowa, która prowadzi użytkowników przez cały rurociąg handlowy",
"Contract Box": "Skrzynka kontraktów",
"Robots show commitment to their peers": "Roboty wykazują zaangażowanie w stosunku do rówieśników",
"Lock {{amountSats}} Sats to PUBLISH order": "Zablokuj {{amountSats}} Sats do PUBLIKOWANIA zamówienia",
"Lock {{amountSats}} Sats to TAKE order": "Zablokuj {{amountSats}} Sats aby PRZYJMOWAĆ zamówienie",
"CONTRACT BOX - TradeBox.js": "Skrzynka kontraktowa, kt\u00f3ra prowadzi u\u017cytkownik\u00f3w przez ca\u0142y ruroci\u0105g handlowy",
"Contract Box": "Skrzynka kontrakt\u00f3w",
"Robots show commitment to their peers": "Roboty wykazuj\u0105 zaanga\u017cowanie w stosunku do r\u00f3wie\u015bnik\u00f3w",
"Lock {{amountSats}} Sats to PUBLISH order": "Zablokuj {{amountSats}} Sats do PUBLIKOWANIA zam\u00f3wienia",
"Lock {{amountSats}} Sats to TAKE order": "Zablokuj {{amountSats}} Sats aby PRZYJMOWA\u0106 zam\u00f3wienie",
"Lock {{amountSats}} Sats as collateral": "Zablokuj {{amountSats}} Sats jako zabezpieczenie",
"Copy to clipboard": "Skopiuj do schowka",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "To jest faktura wstrzymana, zatrzyma się w Twoim portfelu. Opłata zostanie naliczona tylko wtedy, gdy anulujesz lub przegrasz spór.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "To jest faktura wstrzymana, zatrzyma się w Twoim portfelu. Zostanie on przekazany kupującemu po potwierdzeniu otrzymania {{currencyCode}}.",
"Your maker bond is locked": "Twoja obligacja twórcy jest zablokowana",
"Your taker bond is locked": "Twoja więź przyjmującego jest zablokowana",
"Your maker bond was settled": "Twoja obligacja twórcy została uregulowana",
"Your taker bond was settled": "Twoja obligacja nabywcy została uregulowana",
"Your maker bond was unlocked": "Twoja obligacja twórcy została odblokowana",
"Your taker bond was unlocked": "Twoja więź przyjmującego została odblokowana",
"Your order is public": "Twoje zamówienie jest publiczne",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Bądź cierpliwy, gdy roboty sprawdzają książkę. To pole zadzwoni 🔊, gdy robot odbierze Twoje zamówienie, będziesz mieć {{deposit_timer_hours}}g {{deposit_timer_minutes}}m na odpowiedź. Jeśli nie odpowiesz, ryzykujesz utratę więzi.",
"If the order expires untaken, your bond will return to you (no action needed).": "Jeśli zamówienie wygaśnie i nie zostanie zrealizowane, Twoja kaucja zostanie Ci zwrócona (nie musisz nic robić).",
"Enable Telegram Notifications": "Włącz powiadomienia telegramu",
"Enable TG Notifications": "Włącz powiadomienia TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Zostaniesz przeniesiony do rozmowy z botem telegramowym RoboSats. Po prostu otwórz czat i naciśnij Start. Pamiętaj, że włączenie powiadomień telegramów może obniżyć poziom anonimowości.",
"Go back": "Wróć",
"Enable": "Włączyć",
"Telegram enabled": "Telegram włączony",
"Public orders for {{currencyCode}}": "Zamówienia publiczne dla {{currencyCode}}",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "To jest faktura wstrzymana, zatrzyma si\u0119 w Twoim portfelu. Op\u0142ata zostanie naliczona tylko wtedy, gdy anulujesz lub przegrasz sp\u00f3r.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "To jest faktura wstrzymana, zatrzyma si\u0119 w Twoim portfelu. Zostanie on przekazany kupuj\u0105cemu po potwierdzeniu otrzymania {{currencyCode}}.",
"Your maker bond is locked": "Twoja obligacja tw\u00f3rcy jest zablokowana",
"Your taker bond is locked": "Twoja wi\u0119\u017a przyjmuj\u0105cego jest zablokowana",
"Your maker bond was settled": "Twoja obligacja tw\u00f3rcy zosta\u0142a uregulowana",
"Your taker bond was settled": "Twoja obligacja nabywcy zosta\u0142a uregulowana",
"Your maker bond was unlocked": "Twoja obligacja tw\u00f3rcy zosta\u0142a odblokowana",
"Your taker bond was unlocked": "Twoja wi\u0119\u017a przyjmuj\u0105cego zosta\u0142a odblokowana",
"Your order is public": "Twoje zam\u00f3wienie jest publiczne",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "B\u0105d\u017a cierpliwy, gdy roboty sprawdzaj\u0105 ksi\u0105\u017ck\u0119. To pole zadzwoni \ud83d\udd0a, gdy robot odbierze Twoje zam\u00f3wienie, b\u0119dziesz mie\u0107 {{deposit_timer_hours}}g {{deposit_timer_minutes}}m na odpowied\u017a. Je\u015bli nie odpowiesz, ryzykujesz utrat\u0119 wi\u0119zi.",
"If the order expires untaken, your bond will return to you (no action needed).": "Je\u015bli zam\u00f3wienie wyga\u015bnie i nie zostanie zrealizowane, Twoja kaucja zostanie Ci zwr\u00f3cona (nie musisz nic robi\u0107).",
"Enable Telegram Notifications": "W\u0142\u0105cz powiadomienia telegramu",
"Enable TG Notifications": "W\u0142\u0105cz powiadomienia TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Zostaniesz przeniesiony do rozmowy z botem telegramowym RoboSats. Po prostu otw\u00f3rz czat i naci\u015bnij Start. Pami\u0119taj, \u017ce w\u0142\u0105czenie powiadomie\u0144 telegram\u00f3w mo\u017ce obni\u017cy\u0107 poziom anonimowo\u015bci.",
"Go back": "Wr\u00f3\u0107",
"Enable": "W\u0142\u0105czy\u0107",
"Telegram enabled": "Telegram w\u0142\u0105czony",
"Public orders for {{currencyCode}}": "Zam\u00f3wienia publiczne dla {{currencyCode}}",
"Premium rank": "Ranga premium",
"Among public {{currencyCode}} orders (higher is cheaper)": "Wśród publicznych zamówień {{currencyCode}} (wyższy jest tańszy)",
"A taker has been found!": "Odnaleziono chętnego!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Poczekaj, aż przyjmujący zablokuje obligację. Jeśli przyjmujący nie zablokuje obligacji na czas, zlecenie zostanie ponownie upublicznione.",
"Submit an invoice for {{amountSats}} Sats": "Prześlij fakturę za {{amountSats}} Sats",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "Przyjmujący jest zaangażowany! Zanim pozwolimy Ci wysłać {{amountFiat}} {{currencyCode}}, chcemy się upewnić, że możesz otrzymać BTC. Podaj prawidłową fakturę za {{amountSats}} Satoshis.",
"Payout Lightning Invoice": "Wypłata faktura Lightning",
"Your invoice looks good!": "Twoja faktura wygląda dobrze!",
"We are waiting for the seller to lock the trade amount.": "Czekamy, aż sprzedający zablokuje kwotę transakcji.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Poczekaj chwilę. Jeśli sprzedający nie dokona depozytu, automatycznie otrzymasz zwrot kaucji. Dodatkowo otrzymasz rekompensatę (sprawdź nagrody w swoim profilu).",
"Among public {{currencyCode}} orders (higher is cheaper)": "W\u015br\u00f3d publicznych zam\u00f3wie\u0144 {{currencyCode}} (wy\u017cszy jest ta\u0144szy)",
"A taker has been found!": "Odnaleziono ch\u0119tnego!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Poczekaj, a\u017c przyjmuj\u0105cy zablokuje obligacj\u0119. Je\u015bli przyjmuj\u0105cy nie zablokuje obligacji na czas, zlecenie zostanie ponownie upublicznione.",
"Submit an invoice for {{amountSats}} Sats": "Prze\u015blij faktur\u0119 za {{amountSats}} Sats",
"The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC. Please provide a valid invoice for {{amountSats}} Satoshis.": "Przyjmuj\u0105cy jest zaanga\u017cowany! Zanim pozwolimy Ci wys\u0142a\u0107 {{amountFiat}} {{currencyCode}}, chcemy si\u0119 upewni\u0107, \u017ce mo\u017cesz otrzyma\u0107 BTC. Podaj prawid\u0142ow\u0105 faktur\u0119 za {{amountSats}} Satoshis.",
"Payout Lightning Invoice": "Wyp\u0142ata faktura Lightning",
"Your invoice looks good!": "Twoja faktura wygl\u0105da dobrze!",
"We are waiting for the seller to lock the trade amount.": "Czekamy, a\u017c sprzedaj\u0105cy zablokuje kwot\u0119 transakcji.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Poczekaj chwil\u0119. Je\u015bli sprzedaj\u0105cy nie dokona depozytu, automatycznie otrzymasz zwrot kaucji. Dodatkowo otrzymasz rekompensat\u0119 (sprawd\u017a nagrody w swoim profilu).",
"The trade collateral is locked!": "Zabezpieczenie transakcji jest zablokowane!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Czekamy, aż kupujący wyśle fakturę za błyskawicę. Gdy to zrobi, będziesz mógł bezpośrednio przekazać szczegóły płatności fiat.",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Czekamy, a\u017c kupuj\u0105cy wy\u015ble faktur\u0119 za b\u0142yskawic\u0119. Gdy to zrobi, b\u0119dziesz m\u00f3g\u0142 bezpo\u015brednio przekaza\u0107 szczeg\u00f3\u0142y p\u0142atno\u015bci fiat.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).",
"Confirm {{amount}} {{currencyCode}} sent": "Potwierdź wysłanie {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Potwierdź otrzymanie {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} sent": "Potwierd\u017a wys\u0142anie {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Potwierd\u017a otrzymanie {{amount}} {{currencyCode}}",
"Open Dispute": "Otwarta dyskusja",
"The order has expired": "Zamówienie wygasło",
"Chat with the buyer": "Porozmawiaj z kupującym",
"Chat with the seller": "Porozmawiaj ze sprzedającym",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Powiedz cześć! Bądź pomocny i zwięzły. Poinformuj ich, jak wysłać Ci {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "Kupujący wysłał fiat. Kliknij „Potwierdź otrzymanie” po jego otrzymaniu.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Powiedz cześć! Zapytaj o szczegóły płatności i kliknij „Potwierdź wysłanie”, gdy tylko płatność zostanie wysłana.",
"Wait for the seller to confirm he has received the payment.": "Poczekaj, aż sprzedawca potwierdzi, że otrzymał płatność.",
"Confirm you received {{amount}} {{currencyCode}}?": "Potwierdź otrzymanie {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Potwierdzenie otrzymania fiata sfinalizuje transakcję. Satoshi w depozycie zostaną wydane kupującemu. Potwierdź dopiero po otrzymaniu {{amount}} {{currencyCode}} na Twoje konto. Ponadto, jeśli otrzymałeś {{currencyCode}} i nie potwierdzisz odbioru, ryzykujesz utratę kaucji.",
"Confirm": "Potwierdzać",
"Trade finished!": "Handel zakończony!",
"rate_robosats": "Co myślisz o <1>RoboSats<//1>?",
"Thank you! RoboSats loves you too ❤️": "Dziękuję! RoboSats też cię kocha ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats staje się lepszy dzięki większej płynności i użytkownikom. Powiedz znajomemu bitcoinerowi o Robosats!",
"Thank you for using Robosats!": "Dziękujemy za korzystanie z Robosatów!",
"let_us_know_hot_to_improve": "Daj nam znać, jak platforma mogłaby się ulepszyć (<1>Telegram</1> / <3>Github</3>)",
"The order has expired": "Zam\u00f3wienie wygas\u0142o",
"Chat with the buyer": "Porozmawiaj z kupuj\u0105cym",
"Chat with the seller": "Porozmawiaj ze sprzedaj\u0105cym",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Powiedz cze\u015b\u0107! B\u0105d\u017a pomocny i zwi\u0119z\u0142y. Poinformuj ich, jak wys\u0142a\u0107 Ci {{amount}} {{currencyCode}}.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "Kupuj\u0105cy wys\u0142a\u0142 fiat. Kliknij \u201ePotwierd\u017a otrzymanie\u201d po jego otrzymaniu.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Powiedz cze\u015b\u0107! Zapytaj o szczeg\u00f3\u0142y p\u0142atno\u015bci i kliknij \u201ePotwierd\u017a wys\u0142anie\u201d, gdy tylko p\u0142atno\u015b\u0107 zostanie wys\u0142ana.",
"Wait for the seller to confirm he has received the payment.": "Poczekaj, a\u017c sprzedawca potwierdzi, \u017ce otrzyma\u0142 p\u0142atno\u015b\u0107.",
"Confirm you received {{amount}} {{currencyCode}}?": "Potwierd\u017a otrzymanie {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Potwierdzenie otrzymania fiata sfinalizuje transakcj\u0119. Satoshi w depozycie zostan\u0105 wydane kupuj\u0105cemu. Potwierd\u017a dopiero po otrzymaniu {{amount}} {{currencyCode}} na Twoje konto. Ponadto, je\u015bli otrzyma\u0142e\u015b {{currencyCode}} i nie potwierdzisz odbioru, ryzykujesz utrat\u0119 kaucji.",
"Confirm": "Potwierdza\u0107",
"Trade finished!": "Handel zako\u0144czony!",
"rate_robosats": "Co my\u015blisz o <1>RoboSats<//1>?",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Dzi\u0119kuj\u0119! RoboSats te\u017c ci\u0119 kocha \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats staje si\u0119 lepszy dzi\u0119ki wi\u0119kszej p\u0142ynno\u015bci i u\u017cytkownikom. Powiedz znajomemu bitcoinerowi o Robosats!",
"Thank you for using Robosats!": "Dzi\u0119kujemy za korzystanie z Robosat\u00f3w!",
"let_us_know_hot_to_improve": "Daj nam zna\u0107, jak platforma mog\u0142aby si\u0119 ulepszy\u0107 (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Zacznij jeszcze raz",
"Attempting Lightning Payment": "Próba zapłaty Lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats próbuje zapłacić fakturę za błyskawicę. Pamiętaj, że węzły pioruna muszą być online, aby otrzymywać płatności.",
"Attempting Lightning Payment": "Pr\u00f3ba zap\u0142aty Lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats pr\u00f3buje zap\u0142aci\u0107 faktur\u0119 za b\u0142yskawic\u0119. Pami\u0119taj, \u017ce w\u0119z\u0142y pioruna musz\u0105 by\u0107 online, aby otrzymywa\u0107 p\u0142atno\u015bci.",
"Retrying!": "Ponawianie!",
"Lightning Routing Failed": "Lightning Niepowodzenie routingu",
"Your invoice has expired or more than 3 payment attempts have been made.": "Twoja faktura wygasła lub wykonano więcej niż 3 próby płatności. Muun Wallet nie jest zalecany. ",
"Check the list of compatible wallets": "Sprawdź listę kompatybilnych wallets",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats będzie próbował zapłacić fakturę 3 razy co 1 minut. Jeśli to się nie powiedzie, będziesz mógł wystawić nową fakturę. Sprawdź, czy masz wystarczającą płynność przychodzącą. Pamiętaj, że węzły pioruna muszą być online, aby otrzymywać płatności.",
"Next attempt in": "Następna próba za",
"Do you want to open a dispute?": "Chcesz otworzyć spór?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Pracownicy RoboSats przeanalizują przedstawione oświadczenia i dowody. Musisz zbudować kompletną sprawę, ponieważ personel nie może czytać czatu. W oświadczeniu najlepiej podać metodę kontaktu z palnikiem. Satoshi w depozycie handlowym zostaną wysłane do zwycięzcy sporu, podczas gdy przegrany sporu straci obligację.",
"Disagree": "Nie zgadzać się",
"Agree and open dispute": "Zgadzam się i otwieram spór",
"A dispute has been opened": "Spór został otwarty",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Prosimy o przesłanie oświadczenia. Jasno i konkretnie opisz, co się stało, i przedstaw niezbędne dowody. MUSISZ podać metodę kontaktu: adres e-mail nagrywarki, XMPP lub nazwę użytkownika telegramu, aby skontaktować się z personelem. Spory są rozwiązywane według uznania prawdziwych robotów (czyli ludzi), więc bądź tak pomocny, jak to tylko możliwe, aby zapewnić sprawiedliwy wynik. Maksymalnie 5000 znaków.",
"Submit dispute statement": "Prześlij oświadczenie o sporze",
"We have received your statement": "Otrzymaliśmy Twoje oświadczenie",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Czekamy na wyciąg z Twojego odpowiednika handlowego. Jeśli wahasz się co do stanu sporu lub chcesz dodać więcej informacji, skontaktuj się z robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Prosimy o zapisanie informacji potrzebnych do identyfikacji zamówienia i płatności: identyfikator zamówienia; skróty płatności obligacji lub escrow (sprawdź w swoim portfelu błyskawicy); dokładna ilość satoshi; i pseudonim robota. Będziesz musiał zidentyfikować się jako użytkownik zaangażowany w ten handel za pośrednictwem poczty elektronicznej (lub innych metod kontaktu).",
"Your invoice has expired or more than 3 payment attempts have been made.": "Twoja faktura wygas\u0142a lub wykonano wi\u0119cej ni\u017c 3 pr\u00f3by p\u0142atno\u015bci. Muun Wallet nie jest zalecany. ",
"Check the list of compatible wallets": "Sprawd\u017a list\u0119 kompatybilnych wallets",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "RoboSats b\u0119dzie pr\u00f3bowa\u0142 zap\u0142aci\u0107 faktur\u0119 3 razy co 1 minut. Je\u015bli to si\u0119 nie powiedzie, b\u0119dziesz m\u00f3g\u0142 wystawi\u0107 now\u0105 faktur\u0119. Sprawd\u017a, czy masz wystarczaj\u0105c\u0105 p\u0142ynno\u015b\u0107 przychodz\u0105c\u0105. Pami\u0119taj, \u017ce w\u0119z\u0142y pioruna musz\u0105 by\u0107 online, aby otrzymywa\u0107 p\u0142atno\u015bci.",
"Next attempt in": "Nast\u0119pna pr\u00f3ba za",
"Do you want to open a dispute?": "Chcesz otworzy\u0107 sp\u00f3r?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "Pracownicy RoboSats przeanalizuj\u0105 przedstawione o\u015bwiadczenia i dowody. Musisz zbudowa\u0107 kompletn\u0105 spraw\u0119, poniewa\u017c personel nie mo\u017ce czyta\u0107 czatu. W o\u015bwiadczeniu najlepiej poda\u0107 metod\u0119 kontaktu z palnikiem. Satoshi w depozycie handlowym zostan\u0105 wys\u0142ane do zwyci\u0119zcy sporu, podczas gdy przegrany sporu straci obligacj\u0119.",
"Disagree": "Nie zgadza\u0107 si\u0119",
"Agree and open dispute": "Zgadzam si\u0119 i otwieram sp\u00f3r",
"A dispute has been opened": "Sp\u00f3r zosta\u0142 otwarty",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Prosimy o przes\u0142anie o\u015bwiadczenia. Jasno i konkretnie opisz, co si\u0119 sta\u0142o, i przedstaw niezb\u0119dne dowody. MUSISZ poda\u0107 metod\u0119 kontaktu: adres e-mail nagrywarki, XMPP lub nazw\u0119 u\u017cytkownika telegramu, aby skontaktowa\u0107 si\u0119 z personelem. Spory s\u0105 rozwi\u0105zywane wed\u0142ug uznania prawdziwych robot\u00f3w (czyli ludzi), wi\u0119c b\u0105d\u017a tak pomocny, jak to tylko mo\u017cliwe, aby zapewni\u0107 sprawiedliwy wynik. Maksymalnie 5000 znak\u00f3w.",
"Submit dispute statement": "Prze\u015blij o\u015bwiadczenie o sporze",
"We have received your statement": "Otrzymali\u015bmy Twoje o\u015bwiadczenie",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Czekamy na wyci\u0105g z Twojego odpowiednika handlowego. Je\u015bli wahasz si\u0119 co do stanu sporu lub chcesz doda\u0107 wi\u0119cej informacji, skontaktuj si\u0119 z robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Prosimy o zapisanie informacji potrzebnych do identyfikacji zam\u00f3wienia i p\u0142atno\u015bci: identyfikator zam\u00f3wienia; skr\u00f3ty p\u0142atno\u015bci obligacji lub escrow (sprawd\u017a w swoim portfelu b\u0142yskawicy); dok\u0142adna ilo\u015b\u0107 satoshi; i pseudonim robota. B\u0119dziesz musia\u0142 zidentyfikowa\u0107 si\u0119 jako u\u017cytkownik zaanga\u017cowany w ten handel za po\u015brednictwem poczty elektronicznej (lub innych metod kontaktu).",
"We have the statements": "We have the statements",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Oba oświadczenia wpłynęły, poczekaj, aż personel rozwiąże spór. Jeśli wahasz się co do stanu sporu lub chcesz dodać więcej informacji, skontaktuj się z robosats@protonmail.com. Jeśli nie podałeś metody kontaktu lub nie masz pewności, czy dobrze napisałeś, napisz do nas natychmiast.",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Oba o\u015bwiadczenia wp\u0142yn\u0119\u0142y, poczekaj, a\u017c personel rozwi\u0105\u017ce sp\u00f3r. Je\u015bli wahasz si\u0119 co do stanu sporu lub chcesz doda\u0107 wi\u0119cej informacji, skontaktuj si\u0119 z robosats@protonmail.com. Je\u015bli nie poda\u0142e\u015b metody kontaktu lub nie masz pewno\u015bci, czy dobrze napisa\u0142e\u015b, napisz do nas natychmiast.",
"You have won the dispute": "You have won the dispute",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Możesz ubiegać się o kwotę rozstrzygnięcia sporu (depozyt i wierność) z nagród w swoim profilu. Jeśli jest coś, w czym personel może pomóc, nie wahaj się skontaktować się z robosats@protonmail.com (lub za pomocą dostarczonej metody kontaktu z palnikiem).",
"You have lost the dispute": "Przegrałeś spór",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Niestety przegrałeś spór. Jeśli uważasz, że to pomyłka, możesz poprosić o ponowne otwarcie sprawy za pośrednictwem poczty e-mail na adres robosats@protonmail.com. Jednak szanse na ponowne zbadanie sprawy są niewielkie.",
"INFO DIALOG - InfoDiagog.js": "Informacje i wyjaśnienia dotyczące aplikacji oraz warunki użytkowania",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Mo\u017cesz ubiega\u0107 si\u0119 o kwot\u0119 rozstrzygni\u0119cia sporu (depozyt i wierno\u015b\u0107) z nagr\u00f3d w swoim profilu. Je\u015bli jest co\u015b, w czym personel mo\u017ce pom\u00f3c, nie wahaj si\u0119 skontaktowa\u0107 si\u0119 z robosats@protonmail.com (lub za pomoc\u0105 dostarczonej metody kontaktu z palnikiem).",
"You have lost the dispute": "Przegra\u0142e\u015b sp\u00f3r",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Niestety przegra\u0142e\u015b sp\u00f3r. Je\u015bli uwa\u017casz, \u017ce to pomy\u0142ka, mo\u017cesz poprosi\u0107 o ponowne otwarcie sprawy za po\u015brednictwem poczty e-mail na adres robosats@protonmail.com. Jednak szanse na ponowne zbadanie sprawy s\u0105 niewielkie.",
"INFO DIALOG - InfoDiagog.js": "Informacje i wyja\u015bnienia dotycz\u0105ce aplikacji oraz warunki u\u017cytkowania",
"Close": "Blisko",
"What is RoboSats?": "Czym jest RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "Jest to wymiana peer-to-peer BTC/FIAT na lightning.",
"RoboSats is an open source project ": "RoboSats to projekt open source ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.",
"(GitHub).": "(GitHub).",
"How does it work?": "Jak to działa?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 chce sprzedać bitcoiny. Ogłasza zamówienie sprzedaży. BafflingBob02 chce kupić bitcoiny i przyjmuje zamówienie Alice. Obaj muszą stworzyć małą więź za pomocą błyskawicy, aby udowodnić, że są prawdziwymi robotami. Następnie Alice księguje zabezpieczenie handlowe również za pomocą faktury za błyskawiczne wstrzymanie. RoboSats blokuje fakturę, dopóki Alice nie potwierdzi, że otrzymała fiat, a następnie satoshi są wydawane Bobowi. Ciesz się swoim satoshi, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "W żadnym momencie AnonymousAlice01 i BafflingBob02 nie muszą powierzać sobie nawzajem funduszy bitcoin. W przypadku konfliktu pracownicy RoboSats pomogą rozwiązać spór.",
"You can find a step-by-step description of the trade pipeline in ": "Szczegółowy opis rurociągu handlowego znajdziesz w ",
"How it works": "Jak to działa",
"You can also check the full guide in ": "Możesz również sprawdzić pełny przewodnik w",
"How to use": "Jak używać",
"What payment methods are accepted?": "Jakie metody płatności są akceptowane?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Wszystkie, o ile są szybkie. Możesz zapisać preferowane metody płatności. Będziesz musiał dopasować się do partnera, który również akceptuje tę metodę. Etap wymiany fiata ma czas wygaśnięcia wynoszący 24 godziny, zanim spór zostanie automatycznie otwarty. Gorąco polecamy korzystanie z szybkich kolejek płatniczych fiat.",
"How does it work?": "Jak to dzia\u0142a?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 chce sprzeda\u0107 bitcoiny. Og\u0142asza zam\u00f3wienie sprzeda\u017cy. BafflingBob02 chce kupi\u0107 bitcoiny i przyjmuje zam\u00f3wienie Alice. Obaj musz\u0105 stworzy\u0107 ma\u0142\u0105 wi\u0119\u017a za pomoc\u0105 b\u0142yskawicy, aby udowodni\u0107, \u017ce s\u0105 prawdziwymi robotami. Nast\u0119pnie Alice ksi\u0119guje zabezpieczenie handlowe r\u00f3wnie\u017c za pomoc\u0105 faktury za b\u0142yskawiczne wstrzymanie. RoboSats blokuje faktur\u0119, dop\u00f3ki Alice nie potwierdzi, \u017ce otrzyma\u0142a fiat, a nast\u0119pnie satoshi s\u0105 wydawane Bobowi. Ciesz si\u0119 swoim satoshi, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "W \u017cadnym momencie AnonymousAlice01 i BafflingBob02 nie musz\u0105 powierza\u0107 sobie nawzajem funduszy bitcoin. W przypadku konfliktu pracownicy RoboSats pomog\u0105 rozwi\u0105za\u0107 sp\u00f3r.",
"You can find a step-by-step description of the trade pipeline in ": "Szczeg\u00f3\u0142owy opis ruroci\u0105gu handlowego znajdziesz w ",
"How it works": "Jak to dzia\u0142a",
"You can also check the full guide in ": "Mo\u017cesz r\u00f3wnie\u017c sprawdzi\u0107 pe\u0142ny przewodnik w",
"How to use": "Jak u\u017cywa\u0107",
"What payment methods are accepted?": "Jakie metody p\u0142atno\u015bci s\u0105 akceptowane?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Wszystkie, o ile s\u0105 szybkie. Mo\u017cesz zapisa\u0107 preferowane metody p\u0142atno\u015bci. B\u0119dziesz musia\u0142 dopasowa\u0107 si\u0119 do partnera, kt\u00f3ry r\u00f3wnie\u017c akceptuje t\u0119 metod\u0119. Etap wymiany fiata ma czas wyga\u015bni\u0119cia wynosz\u0105cy 24 godziny, zanim sp\u00f3r zostanie automatycznie otwarty. Gor\u0105co polecamy korzystanie z szybkich kolejek p\u0142atniczych fiat.",
"Are there trade limits?": "Are there trade limits?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Maksymalny rozmiar pojedynczej transakcji to {{maxAmount}} Satoshis, aby zminimalizować błąd routingu błyskawicy. Nie ma ograniczeń co do liczby transakcji dziennie. Robot może mieć tylko jedno zamówienie na raz. Możesz jednak używać wielu robotów jednocześnie w różnych przeglądarkach (pamiętaj, aby wykonać kopię zapasową tokenów robota!).",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "Maksymalny rozmiar pojedynczej transakcji to {{maxAmount}} Satoshis, aby zminimalizowa\u0107 b\u0142\u0105d routingu b\u0142yskawicy. Nie ma ogranicze\u0144 co do liczby transakcji dziennie. Robot mo\u017ce mie\u0107 tylko jedno zam\u00f3wienie na raz. Mo\u017cesz jednak u\u017cywa\u0107 wielu robot\u00f3w jednocze\u015bnie w r\u00f3\u017cnych przegl\u0105darkach (pami\u0119taj, aby wykona\u0107 kopi\u0119 zapasow\u0105 token\u00f3w robota!).",
"Is RoboSats private?": "Is RoboSats private?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats nigdy nie zapyta Cię o Twoje imię i nazwisko, kraj lub dowód osobisty. RoboSats nie dba o twoje fundusze i nie dba o to, kim jesteś. RoboSats nie zbiera ani nie przechowuje żadnych danych osobowych. Aby uzyskać najlepszą anonimowość, użyj przeglądarki Tor i uzyskaj dostęp do ukrytej usługi .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Twój partner handlowy jest jedynym, który może potencjalnie odgadnąć cokolwiek o Tobie. Niech Twój czat będzie krótki i zwięzły. Unikaj podawania nieistotnych informacji innych niż bezwzględnie konieczne do dokonania płatności fiducjarnej.",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats nigdy nie zapyta Ci\u0119 o Twoje imi\u0119 i nazwisko, kraj lub dow\u00f3d osobisty. RoboSats nie dba o twoje fundusze i nie dba o to, kim jeste\u015b. RoboSats nie zbiera ani nie przechowuje \u017cadnych danych osobowych. Aby uzyska\u0107 najlepsz\u0105 anonimowo\u015b\u0107, u\u017cyj przegl\u0105darki Tor i uzyskaj dost\u0119p do ukrytej us\u0142ugi .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Tw\u00f3j partner handlowy jest jedynym, kt\u00f3ry mo\u017ce potencjalnie odgadn\u0105\u0107 cokolwiek o Tobie. Niech Tw\u00f3j czat b\u0119dzie kr\u00f3tki i zwi\u0119z\u0142y. Unikaj podawania nieistotnych informacji innych ni\u017c bezwzgl\u0119dnie konieczne do dokonania p\u0142atno\u015bci fiducjarnej.",
"What are the risks?": "What are the risks?",
"This is an experimental application, things could go wrong. Trade small amounts!": "To jest eksperymentalna aplikacja, coś może pójść nie tak. Handluj małymi kwotami!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Sprzedający ponosi takie samo ryzyko obciążenia zwrotnego, jak w przypadku każdej innej usługi peer-to-peer. Paypal lub karty kredytowe nie są zalecane.",
"This is an experimental application, things could go wrong. Trade small amounts!": "To jest eksperymentalna aplikacja, co\u015b mo\u017ce p\u00f3j\u015b\u0107 nie tak. Handluj ma\u0142ymi kwotami!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "Sprzedaj\u0105cy ponosi takie samo ryzyko obci\u0105\u017cenia zwrotnego, jak w przypadku ka\u017cdej innej us\u0142ugi peer-to-peer. Paypal lub karty kredytowe nie s\u0105 zalecane.",
"What is the trust model?": "Jaki jest model zaufania?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Kupujący i sprzedający nigdy nie muszą sobie ufać. Potrzebne jest pewne zaufanie do RoboSatów, ponieważ powiązanie wstrzymanej faktury sprzedającego i płatności kupującego nie jest (jeszcze) atomowe. Ponadto spory są rozwiązywane przez pracowników RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Aby być całkowicie jasnym. Wymagania dotyczące zaufania są zminimalizowane. Jednak wciąż jest jeden sposób, w jaki RoboSaty mogą uciec z twoim satoshi: nie udostępniając satoshi kupującemu. Można argumentować, że takie posunięcie nie leży w interesie RoboSatów, ponieważ zaszkodziłoby to reputacji za niewielką wypłatę. Jednak powinieneś się wahać i handlować tylko małymi ilościami na raz. W przypadku dużych kwot skorzystaj z usługi depozytowej onchain, takiej jak Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Możesz zbudować większe zaufanie do RoboSats, sprawdzając kod źródłowy.",
"Project source code": "Kod źródłowy projektu",
"What happens if RoboSats suddenly disappears?": "Co się stanie, jeśli RoboSats nagle znikną?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Twoje satelity powrócą do ciebie. Każda wstrzymana faktura, która nie zostanie rozliczona, zostanie automatycznie zwrócona, nawet jeśli RoboSats przestanie działać na zawsze. Dotyczy to zarówno obligacji zabezpieczonych, jak i depozytów handlowych. Istnieje jednak małe okno między sprzedającym potwierdzenie otrzymania FIATA a momentem, w którym kupujący otrzyma satoshi, kiedy środki mogą zostać trwale utracone, jeśli RoboSats zniknie. To okno trwa około 1 sekundy. Upewnij się, że masz wystarczającą płynność przychodzącą, aby uniknąć awarii routingu. Jeśli masz jakiś problem, skontaktuj się z publicznymi kanałami RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "W wielu krajach korzystanie z RoboSats nie różni się od korzystania z serwisu Ebay lub Craiglist. Twoje przepisy mogą się różnić. Twoim obowiązkiem jest przestrzegać.",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "Kupuj\u0105cy i sprzedaj\u0105cy nigdy nie musz\u0105 sobie ufa\u0107. Potrzebne jest pewne zaufanie do RoboSat\u00f3w, poniewa\u017c powi\u0105zanie wstrzymanej faktury sprzedaj\u0105cego i p\u0142atno\u015bci kupuj\u0105cego nie jest (jeszcze) atomowe. Ponadto spory s\u0105 rozwi\u0105zywane przez pracownik\u00f3w RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Aby by\u0107 ca\u0142kowicie jasnym. Wymagania dotycz\u0105ce zaufania s\u0105 zminimalizowane. Jednak wci\u0105\u017c jest jeden spos\u00f3b, w jaki RoboSaty mog\u0105 uciec z twoim satoshi: nie udost\u0119pniaj\u0105c satoshi kupuj\u0105cemu. Mo\u017cna argumentowa\u0107, \u017ce takie posuni\u0119cie nie le\u017cy w interesie RoboSat\u00f3w, poniewa\u017c zaszkodzi\u0142oby to reputacji za niewielk\u0105 wyp\u0142at\u0119. Jednak powiniene\u015b si\u0119 waha\u0107 i handlowa\u0107 tylko ma\u0142ymi ilo\u015bciami na raz. W przypadku du\u017cych kwot skorzystaj z us\u0142ugi depozytowej onchain, takiej jak Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Mo\u017cesz zbudowa\u0107 wi\u0119ksze zaufanie do RoboSats, sprawdzaj\u0105c kod \u017ar\u00f3d\u0142owy.",
"Project source code": "Kod \u017ar\u00f3d\u0142owy projektu",
"What happens if RoboSats suddenly disappears?": "Co si\u0119 stanie, je\u015bli RoboSats nagle znikn\u0105?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Twoje satelity powr\u00f3c\u0105 do ciebie. Ka\u017cda wstrzymana faktura, kt\u00f3ra nie zostanie rozliczona, zostanie automatycznie zwr\u00f3cona, nawet je\u015bli RoboSats przestanie dzia\u0142a\u0107 na zawsze. Dotyczy to zar\u00f3wno obligacji zabezpieczonych, jak i depozyt\u00f3w handlowych. Istnieje jednak ma\u0142e okno mi\u0119dzy sprzedaj\u0105cym potwierdzenie otrzymania FIATA a momentem, w kt\u00f3rym kupuj\u0105cy otrzyma satoshi, kiedy \u015brodki mog\u0105 zosta\u0107 trwale utracone, je\u015bli RoboSats zniknie. To okno trwa oko\u0142o 1 sekundy. Upewnij si\u0119, \u017ce masz wystarczaj\u0105c\u0105 p\u0142ynno\u015b\u0107 przychodz\u0105c\u0105, aby unikn\u0105\u0107 awarii routingu. Je\u015bli masz jaki\u015b problem, skontaktuj si\u0119 z publicznymi kana\u0142ami RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "W wielu krajach korzystanie z RoboSats nie r\u00f3\u017cni si\u0119 od korzystania z serwisu Ebay lub Craiglist. Twoje przepisy mog\u0105 si\u0119 r\u00f3\u017cni\u0107. Twoim obowi\u0105zkiem jest przestrzega\u0107.",
"Is RoboSats legal in my country?": "Czy RoboSats jest legalny w moim kraju?",
"Disclaimer": "Zastrzeżenie",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Ta aplikacja lightning jest dostarczana w takiej postaci, w jakiej jest. Jest w aktywnym rozwoju: handluje z najwyższą ostrożnością. Nie ma wsparcia prywatnego. Wsparcie jest oferowane wyłącznie za pośrednictwem kanałów publicznych ",
"Disclaimer": "Zastrze\u017cenie",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Ta aplikacja lightning jest dostarczana w takiej postaci, w jakiej jest. Jest w aktywnym rozwoju: handluje z najwy\u017csz\u0105 ostro\u017cno\u015bci\u0105. Nie ma wsparcia prywatnego. Wsparcie jest oferowane wy\u0142\u0105cznie za po\u015brednictwem kana\u0142\u00f3w publicznych ",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats nigdy się z tobą nie skontaktuje. RoboSats na pewno nigdy nie poprosi o token robota."
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats nigdy si\u0119 z tob\u0105 nie skontaktuje. RoboSats na pewno nigdy nie poprosi o token robota."
}

View File

@ -1,83 +1,83 @@
{
"UNSAFE ALERT - UnsafeAlert.js": "Alerta exibido no topo da tela ao navegar pelo site não seguro.",
"You are not using RoboSats privately": "Você não está utilizando o RoboSats de forma privada",
"desktop_unsafe_alert": "Alguns recursos estão desativados para sua proteção (por exemplo, chat) e você não poderá concluir uma negociação sem eles. Para proteger sua privacidade e utilizar todas as possibilidades do RoboSats, use o <1>Navegador Tor</1> e visite o site <3>Onion</3>.",
"phone_unsafe_alert": "Você não será capaz de concluir uma negociação. Use o <1>Navegador Tor</1> e visite o site <3>Onion</3>.",
"UNSAFE ALERT - UnsafeAlert.js": "Alerta exibido no topo da tela ao navegar pelo site n\u00e3o seguro.",
"You are not using RoboSats privately": "Voc\u00ea n\u00e3o est\u00e1 utilizando o RoboSats de forma privada",
"desktop_unsafe_alert": "Alguns recursos est\u00e3o desativados para sua prote\u00e7\u00e3o (por exemplo, chat) e voc\u00ea n\u00e3o poder\u00e1 concluir uma negocia\u00e7\u00e3o sem eles. Para proteger sua privacidade e utilizar todas as possibilidades do RoboSats, use o <1>Navegador Tor</1> e visite o site <3>Onion</3>.",
"phone_unsafe_alert": "Voc\u00ea n\u00e3o ser\u00e1 capaz de concluir uma negocia\u00e7\u00e3o. Use o <1>Navegador Tor</1> e visite o site <3>Onion</3>.",
"Hide": "Esconder",
"USER GENERATION PAGE - UserGenPage.js": "Página inicial e geração de usuário",
"USER GENERATION PAGE - UserGenPage.js": "P\u00e1gina inicial e gera\u00e7\u00e3o de usu\u00e1rio",
"Simple and Private LN P2P Exchange": "Privada e simples corretora LN P2P",
"This is your trading avatar": "Este é seu avatar para negociação",
"This is your trading avatar": "Este \u00e9 seu avatar para negocia\u00e7\u00e3o",
"Store your token safely": "Guarde seu token de forma segura",
"A robot avatar was found, welcome back!": "Um avatar robô foi encontrado, bem vindo de volta!",
"A robot avatar was found, welcome back!": "Um avatar rob\u00f4 foi encontrado, bem vindo de volta!",
"Copied!": "Copiado!",
"Generate a new token": "Gerar um novo token",
"Generate Robot": "Gerar robô",
"You must enter a new token first": "Primeiramente você necessita inserir um novo token",
"Make Order": "Lançar ordem",
"Generate Robot": "Gerar rob\u00f4",
"You must enter a new token first": "Primeiramente voc\u00ea necessita inserir um novo token",
"Make Order": "Lan\u00e7ar ordem",
"Info": "Info",
"View Book": "Ver ofertas",
"Learn RoboSats": "Aprender sobre o RoboSats",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Você está prestes a visitar o \"Learn RoboSats\"(Aprender sobre o RoboSats). Ele hospeda tutoriais e documentação para ajudá-lo a aprender como usar o RoboSats e entender como funciona.",
"Let's go!": "Vamos lá!",
"You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.": "Voc\u00ea est\u00e1 prestes a visitar o \"Learn RoboSats\"(Aprender sobre o RoboSats). Ele hospeda tutoriais e documenta\u00e7\u00e3o para ajud\u00e1-lo a aprender como usar o RoboSats e entender como funciona.",
"Let's go!": "Vamos l\u00e1!",
"Save token and PGP credentials to file": "Salvar token e credenciais PGP no arquivo",
"MAKER PAGE - MakerPage.js": "Esta é a página onde os usuários podem criar novas ordens",
"MAKER PAGE - MakerPage.js": "Esta \u00e9 a p\u00e1gina onde os usu\u00e1rios podem criar novas ordens",
"Order": "Ordem",
"Customize": "Customizar",
"Buy or Sell Bitcoin?": "Comprar ou vender Bitcoin?",
"Buy": "Comprar",
"Sell": "Vender",
"Amount": "Quantidade",
"Amount of fiat to exchange for bitcoin": "Quantidade de moeda fiduciária(fiat) para trocar por bitcoin",
"Invalid": "Inválido",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Insira seus métodos de pagamento fiduciários preferidos. Métodos rápidos são altamente recomendados.",
"Amount of fiat to exchange for bitcoin": "Quantidade de moeda fiduci\u00e1ria(fiat) para trocar por bitcoin",
"Invalid": "Inv\u00e1lido",
"Enter your preferred fiat payment methods. Fast methods are highly recommended.": "Insira seus m\u00e9todos de pagamento fiduci\u00e1rios preferidos. M\u00e9todos r\u00e1pidos s\u00e3o altamente recomendados.",
"Must be shorter than 65 characters": "Deve ter menos de 65 caracteres",
"Swap Destination(s)": "Trocar Destino(s)",
"Fiat Payment Method(s)": "Forma(s) de Pagamento Fiat",
"You can add any method": "Você pode adicionar qualquer método",
"You can add any method": "Voc\u00ea pode adicionar qualquer m\u00e9todo",
"Add New": "Adicionar novo",
"Choose a Pricing Method": "Escolha um método de precificação",
"Choose a Pricing Method": "Escolha um m\u00e9todo de precifica\u00e7\u00e3o",
"Relative": "Relativo",
"Let the price move with the market": "Deixe o preço se mover com o mercado",
"Premium over Market (%)": "Prêmio sobre o mercado (%)",
"Explicit": "Explícito",
"Let the price move with the market": "Deixe o pre\u00e7o se mover com o mercado",
"Premium over Market (%)": "Pr\u00eamio sobre o mercado (%)",
"Explicit": "Expl\u00edcito",
"Set a fix amount of satoshis": "Defina uma quantidade fixa de satoshis",
"Satoshis": "Satoshis",
"Fixed price:": "Preço fixo:",
"Fixed price:": "Pre\u00e7o fixo:",
"Order current rate:": "Taxa atual do pedido:",
"Your order fixed exchange rate": "Taxa de câmbio fixa do seu pedido",
"Your order's current exchange rate. Rate will move with the market.": "A taxa de câmbio atual do seu pedido. A taxa vai se mover com o mercado.",
"Your order fixed exchange rate": "Taxa de c\u00e2mbio fixa do seu pedido",
"Your order's current exchange rate. Rate will move with the market.": "A taxa de c\u00e2mbio atual do seu pedido. A taxa vai se mover com o mercado.",
"Let the taker chose an amount within the range": "Deixe o tomador escolher um valor dentro do intervalo",
"Enable Amount Range": "Ativar intervalo de valores",
"From": "De",
"to": "Para",
"Expiry Timers": "Temporizadores de expiração",
"Public Duration (HH:mm)": "Duração Pública (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "Tempo limite de depósito em caução (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Defina a skin-in-the-game(pele em risco), aumente para maior garantia de segurança",
"Fidelity Bond Size": "Tamanho do título de fidelidade",
"Allow bondless takers": "Permitir tomadores sem títulos",
"Expiry Timers": "Temporizadores de expira\u00e7\u00e3o",
"Public Duration (HH:mm)": "Dura\u00e7\u00e3o P\u00fablica (HH:mm)",
"Escrow Deposit Time-Out (HH:mm)": "Tempo limite de dep\u00f3sito em cau\u00e7\u00e3o (HH:mm)",
"Set the skin-in-the-game, increase for higher safety assurance": "Defina a skin-in-the-game(pele em risco), aumente para maior garantia de seguran\u00e7a",
"Fidelity Bond Size": "Tamanho do t\u00edtulo de fidelidade",
"Allow bondless takers": "Permitir tomadores sem t\u00edtulos",
"COMING SOON - High risk! Limited to {{limitSats}}K Sats": "EM BREVE - Alto risco! Limitado a {{limitSats}}K Sats",
"You must fill the order correctly": "Você deve preencher o pedido corretamente",
"You must fill the order correctly": "Voc\u00ea deve preencher o pedido corretamente",
"Create Order": "Criar pedido",
"Back": "Voltar",
"Create an order for ": "Crie um pedido de ",
"Create a BTC buy order for ": "Crie uma ordem de compra BTC para ",
"Create a BTC sell order for ": "Crie uma ordem de venda BTC para ",
" of {{satoshis}} Satoshis": " de {{satoshis}} Satoshis",
" at market price": " a preço de mercado",
" at a {{premium}}% premium": " com um prêmio de {{premium}}%",
" at market price": " a pre\u00e7o de mercado",
" at a {{premium}}% premium": " com um pr\u00eamio de {{premium}}%",
" at a {{discount}}% discount": " com um desconto de {{discount}}%",
"Must be less than {{max}}%": "Deve ser inferior a {{max}}%",
"Must be more than {{min}}%": "Deve ser superior a {{min}}%",
"Must be less than {{maxSats}": "Deve ser inferior a {{maxSats}}",
"Must be more than {{minSats}}": "Deve ser superior a {{minSats}}",
"Store your robot token": "Armazene seu token de robô",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Você pode precisar recuperar seu avatar de robô no futuro: armazene-o com segurança. Você pode simplesmente copiá-lo em outra aplicação.",
"Store your robot token": "Armazene seu token de rob\u00f4",
"You might need to recover your robot avatar in the future: store it safely. You can simply copy it into another application.": "Voc\u00ea pode precisar recuperar seu avatar de rob\u00f4 no futuro: armazene-o com seguran\u00e7a. Voc\u00ea pode simplesmente copi\u00e1-lo em outra aplica\u00e7\u00e3o.",
"Done": "Feito",
"You do not have a robot avatar": "Você não tem um avatar de robô",
"You need to generate a robot avatar in order to become an order maker": "Você precisa gerar um avatar de robô para se tornar um fabricante de pedidos",
"PAYMENT METHODS - autocompletePayments.js": "Sequências de métodos de pagamento",
"not specified": "Não especificado",
"You do not have a robot avatar": "Voc\u00ea n\u00e3o tem um avatar de rob\u00f4",
"You need to generate a robot avatar in order to become an order maker": "Voc\u00ea precisa gerar um avatar de rob\u00f4 para se tornar um fabricante de pedidos",
"PAYMENT METHODS - autocompletePayments.js": "Sequ\u00eancias de m\u00e9todos de pagamento",
"not specified": "N\u00e3o especificado",
"Instant SEPA": "Instant SEPA",
"Amazon GiftCard": "Amazon GiftCard",
"Google Play Gift Code": "Google Play Gift Code",
@ -95,82 +95,82 @@
"and pay with": "e pagar com",
"and use": "e utilizar",
"Select Payment Currency": "Selecione a moeda de pagamento",
"Robot": "Robô",
"Is": "É",
"Robot": "Rob\u00f4",
"Is": "\u00c9",
"Currency": "Moeda",
"Payment Method": "método de pagamento",
"Payment Method": "m\u00e9todo de pagamento",
"Pay": "Pagar",
"Price": "Preço",
"Premium": "Prêmio",
"You are SELLING BTC for {{currencyCode}}": "Você está VENDENDO BTC por {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "Você está COMPRANDO BTC por {{currencyCode}}",
"You are looking at all": "Você está olhando para todos",
"Price": "Pre\u00e7o",
"Premium": "Pr\u00eamio",
"You are SELLING BTC for {{currencyCode}}": "Voc\u00ea est\u00e1 VENDENDO BTC por {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "Voc\u00ea est\u00e1 COMPRANDO BTC por {{currencyCode}}",
"You are looking at all": "Voc\u00ea est\u00e1 olhando para todos",
"No orders found to sell BTC for {{currencyCode}}": "Nenhum pedido encontrado para vender BTC por {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "Nenhum pedido encontrado para comprar BTC por {{currencyCode}}",
"Filter has no results": "O filtro não tem resultados",
"Filter has no results": "O filtro n\u00e3o tem resultados",
"Be the first one to create an order": "Seja o primeiro a criar um pedido",
"BOTTOM BAR AND MISC - BottomBar.js": "Perfil de usuário da barra inferior e diálogos diversos",
"Stats For Nerds": "Estatísticas para nerds",
"LND version": "Versão da LND",
"BOTTOM BAR AND MISC - BottomBar.js": "Perfil de usu\u00e1rio da barra inferior e di\u00e1logos diversos",
"Stats For Nerds": "Estat\u00edsticas para nerds",
"LND version": "Vers\u00e3o da LND",
"Currently running commit hash": "commit hash atual",
"24h contracted volume": "Volume contratado em 24h",
"Lifetime contracted volume": "Volume contratado desde o princípio",
"Lifetime contracted volume": "Volume contratado desde o princ\u00edpio",
"Made with": "Feito com",
"and": "e",
"... somewhere on Earth!": "... alguém na terra!",
"... somewhere on Earth!": "... algu\u00e9m na terra!",
"Community": "Comunidade",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "O suporte é oferecido apenas por meio de canais públicos. Junte-se à nossa comunidade no Telegram se você tiver dúvidas ou quiser sair com outros robôs legais. Por favor, use nossos issues do Github se você encontrar um bug ou quiser ver novos recursos!",
"Support is only offered via public channels. Join our Telegram community if you have questions or want to hang out with other cool robots. Please, use our Github Issues if you find a bug or want to see new features!": "O suporte \u00e9 oferecido apenas por meio de canais p\u00fablicos. Junte-se \u00e0 nossa comunidade no Telegram se voc\u00ea tiver d\u00favidas ou quiser sair com outros rob\u00f4s legais. Por favor, use nossos issues do Github se voc\u00ea encontrar um bug ou quiser ver novos recursos!",
"Follow RoboSats in Twitter": "Siga RoboSats no Twitter",
"Twitter Official Account": "Conta oficial no Twitter",
"RoboSats Telegram Communities": "Comunidades do RoboSats no Telegram",
"Join RoboSats Spanish speaking community!": "Junte-se à comunidade RoboSats de língua espanhola!",
"Join RoboSats Russian speaking community!": "Junte-se à comunidade RoboSats de língua russa!",
"Join RoboSats Chinese speaking community!": "Junte-se à comunidade RoboSats de língua chinesa!",
"Join RoboSats English speaking community!": "Junte-se à comunidade RoboSats de língua inglesa!",
"Join RoboSats Spanish speaking community!": "Junte-se \u00e0 comunidade RoboSats de l\u00edngua espanhola!",
"Join RoboSats Russian speaking community!": "Junte-se \u00e0 comunidade RoboSats de l\u00edngua russa!",
"Join RoboSats Chinese speaking community!": "Junte-se \u00e0 comunidade RoboSats de l\u00edngua chinesa!",
"Join RoboSats English speaking community!": "Junte-se \u00e0 comunidade RoboSats de l\u00edngua inglesa!",
"Tell us about a new feature or a bug": "Conte-nos sobre um novo recurso ou um bug",
"Github Issues - The Robotic Satoshis Open Source Project": "Github Issues - The Robotic Satoshis Open Source Project",
"Your Profile": "Seu perfil",
"Your robot": "Seu robô",
"Your robot": "Seu rob\u00f4",
"One active order #{{orderID}}": "Uma ordem ativa #{{orderID}}",
"Your current order": "Sua ordem atual",
"No active orders": "Nenhuma ordem ativa",
"Your token (will not remain here)": "Seu token (não permanecerá aqui)",
"Your token (will not remain here)": "Seu token (n\u00e3o permanecer\u00e1 aqui)",
"Back it up!": "Apoia-la!",
"Cannot remember": "Não consigo lembrar",
"Rewards and compensations": "Recompensas e compensações",
"Share to earn 100 Sats per trade": "Compartilhe para ganhar 100 Sats por negociação",
"Your referral link": "Seu link de referência",
"Cannot remember": "N\u00e3o consigo lembrar",
"Rewards and compensations": "Recompensas e compensa\u00e7\u00f5es",
"Share to earn 100 Sats per trade": "Compartilhe para ganhar 100 Sats por negocia\u00e7\u00e3o",
"Your referral link": "Seu link de refer\u00eancia",
"Your earned rewards": "Suas recompensas ganhas",
"Claim": "Reinvindicar",
"Invoice for {{amountSats}} Sats": "Invoice para {{amountSats}} Sats",
"Submit": "Enviar",
"There it goes, thank you!🥇": "Pronto, obrigado! \uD83E\uDD47",
"You have an active order": "Você tem um pedido ativo",
"You can claim satoshis!": "Você pode reivindicar satoshis!",
"Public Buy Orders": "Pedidos de compra pública",
"Public Sell Orders": "Pedidos de venda pública",
"Today Active Robots": "Robôs ativos hoje",
"24h Avg Premium": "Premium médio nas últimas 24h",
"Trade Fee": "Taxa de negociação",
"There it goes, thank you!\ud83e\udd47": "Pronto, obrigado! \ud83e\udd47",
"You have an active order": "Voc\u00ea tem um pedido ativo",
"You can claim satoshis!": "Voc\u00ea pode reivindicar satoshis!",
"Public Buy Orders": "Pedidos de compra p\u00fablica",
"Public Sell Orders": "Pedidos de venda p\u00fablica",
"Today Active Robots": "Rob\u00f4s ativos hoje",
"24h Avg Premium": "Premium m\u00e9dio nas \u00faltimas 24h",
"Trade Fee": "Taxa de negocia\u00e7\u00e3o",
"Show community and support links": "Mostrar links de comunidade e suporte",
"Show stats for nerds": "Mostrar estatísticas para nerds",
"Show stats for nerds": "Mostrar estat\u00edsticas para nerds",
"Exchange Summary": "Resumo da troca",
"Public buy orders": "Ordens de compra públicas",
"Public sell orders": "Ordens de venda públicss",
"Public buy orders": "Ordens de compra p\u00fablicas",
"Public sell orders": "Ordens de venda p\u00fablicss",
"Book liquidity": "Liquidez do livro",
"Today active robots": "Robôs ativos hoje",
"24h non-KYC bitcoin premium": "Prêmio de bitcoin não-KYC nas últimas 24 horas",
"Today active robots": "Rob\u00f4s ativos hoje",
"24h non-KYC bitcoin premium": "Pr\u00eamio de bitcoin n\u00e3o-KYC nas \u00faltimas 24 horas",
"Maker fee": "Taxa do criador",
"Taker fee": "Taxa do tomador",
"Number of public BUY orders": "Número de ordens públicos de COMPRA",
"Number of public SELL orders": "Número de ordens públicos de VENDA",
"Your last order #{{orderID}}": "Sua última ordem #{{orderID}}",
"Number of public BUY orders": "N\u00famero de ordens p\u00fablicos de COMPRA",
"Number of public SELL orders": "N\u00famero de ordens p\u00fablicos de VENDA",
"Your last order #{{orderID}}": "Sua \u00faltima ordem #{{orderID}}",
"Inactive order": "Ordem inativa",
"You do not have previous orders": "Você não tem ordens anteriores",
"You do not have previous orders": "Voc\u00ea n\u00e3o tem ordens anteriores",
"Join RoboSats' Subreddit": "Junte-se ao Subreddit do RoboSats",
"RoboSats in Reddit": "RoboSats no Reddit",
"Current onchain payout fee": "Taxa de pagamento onchain atual",
"ORDER PAGE - OrderPage.js": "Página de detalhes da ordem",
"ORDER PAGE - OrderPage.js": "P\u00e1gina de detalhes da ordem",
"Order Box": "Caixa de ordem",
"Contract": "Contrato",
"Active": "Ativo",
@ -182,9 +182,9 @@
"Order taker": "Tomar ordem",
"Order Details": "Detalhes da ordem",
"Order status": "Status da ordem",
"Waiting for maker bond": "Aguardando o vínculo do criador",
"Public": "Público",
"Waiting for taker bond": "Aguardando o vínculo do tomador",
"Waiting for maker bond": "Aguardando o v\u00ednculo do criador",
"Public": "P\u00fablico",
"Waiting for taker bond": "Aguardando o v\u00ednculo do tomador",
"Cancelled": "Cancelado",
"Expired": "Expirado",
"Waiting for trade collateral and buyer invoice": "Aguardando garantia comercial e fatura do comprador",
@ -195,53 +195,53 @@
"In dispute": "Em disputa",
"Collaboratively cancelled": "Cancelado colaborativamente",
"Sending satoshis to buyer": "Enviando satoshis para o comprador",
"Sucessful trade": "Negociação bem-sucedida",
"Sucessful trade": "Negocia\u00e7\u00e3o bem-sucedida",
"Failed lightning network routing": "Falha no roteamento de rede Lightning",
"Wait for dispute resolution": "Aguarde a resolução da disputa",
"Wait for dispute resolution": "Aguarde a resolu\u00e7\u00e3o da disputa",
"Maker lost dispute": "Criador perdeu disputa",
"Taker lost dispute": "Tomador perdeu disputa",
"Amount range": "Faixa de valores",
"Swap destination": "Trocar destino",
"Accepted payment methods": "Métodos de pagamento aceitos",
"Accepted payment methods": "M\u00e9todos de pagamento aceitos",
"Others": "Outros",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Prêmio: {{premium}}%",
"Price and Premium": "Preço e Prêmio",
"{{price}} {{currencyCode}}/BTC - Premium: {{premium}}%": "{{price}} {{currencyCode}}/BTC - Pr\u00eamio: {{premium}}%",
"Price and Premium": "Pre\u00e7o e Pr\u00eamio",
"Amount of Satoshis": "Quantidade de Satoshis",
"Premium over market price": "Prêmio sobre o preço de mercado",
"Premium over market price": "Pr\u00eamio sobre o pre\u00e7o de mercado",
"Order ID": "ID da ordem",
"Deposit timer": "Temporizador de depósito",
"Deposit timer": "Temporizador de dep\u00f3sito",
"Expires in": "Expira em",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} está pedindo um cancelamento colaborativo",
"You asked for a collaborative cancellation": "Você solicitou um cancelamento colaborativo",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "A fatura expirou. Você não confirmou a publicação do pedido a tempo. Faça um novo pedido.",
"{{nickname}} is asking for a collaborative cancel": "{{nickname}} est\u00e1 pedindo um cancelamento colaborativo",
"You asked for a collaborative cancellation": "Voc\u00ea solicitou um cancelamento colaborativo",
"Invoice expired. You did not confirm publishing the order in time. Make a new order.": "A fatura expirou. Voc\u00ea n\u00e3o confirmou a publica\u00e7\u00e3o do pedido a tempo. Fa\u00e7a um novo pedido.",
"This order has been cancelled by the maker": "Este pedido foi cancelado pelo criador",
"Invoice expired. You did not confirm taking the order in time.": "Incoice expirado. Você não confirmou ter recebido o pedido a tempo.",
"Invoice expired. You did not confirm taking the order in time.": "Incoice expirado. Voc\u00ea n\u00e3o confirmou ter recebido o pedido a tempo.",
"Penalty lifted, good to go!": "Penalidade levantada, pronto!",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Você ainda não pode fazer um pedido! Espere {{timeMin}}m {{timeSec}}s",
"You cannot take an order yet! Wait {{timeMin}}m {{timeSec}}s": "Voc\u00ea ainda n\u00e3o pode fazer um pedido! Espere {{timeMin}}m {{timeSec}}s",
"Too low": "Muito baixo",
"Too high": "Muito alto",
"Enter amount of fiat to exchange for bitcoin": "Insira o valor da moeda fiduciária para trocar por bitcoin",
"Enter amount of fiat to exchange for bitcoin": "Insira o valor da moeda fiduci\u00e1ria para trocar por bitcoin",
"Amount {{currencyCode}}": "Quantidade {{currencyCode}}",
"You must specify an amount first": "Você deve especificar um valor primeiro",
"You must specify an amount first": "Voc\u00ea deve especificar um valor primeiro",
"Take Order": "Tomar uma ordem",
"Wait until you can take an order": "Espere até que você possa fazer uma ordem",
"Wait until you can take an order": "Espere at\u00e9 que voc\u00ea possa fazer uma ordem",
"Cancel the order?": "Cancelar a ordem?",
"If the order is cancelled now you will lose your bond.": "Se a ordem for cancelada agora, você perderá seu vínculo.",
"If the order is cancelled now you will lose your bond.": "Se a ordem for cancelada agora, voc\u00ea perder\u00e1 seu v\u00ednculo.",
"Confirm Cancel": "Confirmar cancelamento",
"The maker is away": "O criador está ausente",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Ao aceitar esta ordem, você corre o risco de perder seu tempo. Se o criador não proceder a tempo, você será compensado em satoshis por 50% do título do criador.",
"The maker is away": "O criador est\u00e1 ausente",
"By taking this order you risk wasting your time. If the maker does not proceed in time, you will be compensated in satoshis for 50% of the maker bond.": "Ao aceitar esta ordem, voc\u00ea corre o risco de perder seu tempo. Se o criador n\u00e3o proceder a tempo, voc\u00ea ser\u00e1 compensado em satoshis por 50% do t\u00edtulo do criador.",
"Collaborative cancel the order?": "Cancelar o pedido colaborativamente?",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "O caução comercial foi postado. O pedido só pode ser cancelado se ambos, criador e tomador, concordarem em cancelar.",
"The trade escrow has been posted. The order can be cancelled only if both, maker and taker, agree to cancel.": "O cau\u00e7\u00e3o comercial foi postado. O pedido s\u00f3 pode ser cancelado se ambos, criador e tomador, concordarem em cancelar.",
"Ask for Cancel": "Pedir para cancelar",
"Cancel": "Cancelar",
"Collaborative Cancel": "Cancelamento colaborativo",
"Invalid Order Id": "ID da ordem inválida",
"You must have a robot avatar to see the order details": "Você deve ter um avatar de robô para ver os detalhes da ordem",
"Invalid Order Id": "ID da ordem inv\u00e1lida",
"You must have a robot avatar to see the order details": "Voc\u00ea deve ter um avatar de rob\u00f4 para ver os detalhes da ordem",
"This order has been cancelled collaborativelly": "Esta ordem foi cancelada de forma colaborativa",
"You are not allowed to see this order": "Você não tem permissão para ver esta ordem",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Os robôs Satoshis trabalhando no armazém não entenderam você. Por favor, preencha um Bug Issue no Github https://github.com/reckless-satoshi/robosats/issues",
"You are not allowed to see this order": "Voc\u00ea n\u00e3o tem permiss\u00e3o para ver esta ordem",
"The Robotic Satoshis working in the warehouse did not understand you. Please, fill a Bug Issue in Github https://github.com/reckless-satoshi/robosats/issues": "Os rob\u00f4s Satoshis trabalhando no armaz\u00e9m n\u00e3o entenderam voc\u00ea. Por favor, preencha um Bug Issue no Github https://github.com/reckless-satoshi/robosats/issues",
"CHAT BOX - Chat.js": "Chat",
"You": "Você",
"You": "Voc\u00ea",
"Peer": "Par",
"connected": "conectado",
"disconnected": "desconectado",
@ -252,177 +252,177 @@
"Audit PGP": "Auditar PGP",
"Save full log as a JSON file (messages and credentials)": "Salvar log completo como um arquivo JSON (mensagens e credenciais)",
"Export": "Exportar",
"Don't trust, verify": "Não confie, verifique",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Sua comunicação é criptografada de ponta a ponta com OpenPGP. Você pode verificar a privacidade deste chat usando qualquer ferramenta baseada no padrão OpenPGP.",
"Don't trust, verify": "N\u00e3o confie, verifique",
"Your communication is end-to-end encrypted with OpenPGP. You can verify the privacy of this chat using any tool based on the OpenPGP standard.": "Sua comunica\u00e7\u00e3o \u00e9 criptografada de ponta a ponta com OpenPGP. Voc\u00ea pode verificar a privacidade deste chat usando qualquer ferramenta baseada no padr\u00e3o OpenPGP.",
"Learn how to verify": "Saiba como verificar",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Sua chave pública PGP. Seu par o usa para criptografar mensagens que só você pode ler.",
"Your public key": "Sua chave pública",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Sua chave pública PGP de mesmo nível. Você o usa para criptografar mensagens que só ele pode ler e para verificar se seu par assinou as mensagens recebidas.",
"Peer public key": "Chave pública do par(peer)",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Sua chave privada criptografada. Você o usa para descriptografar as mensagens que seu par criptografou para você. Você também o usa para assinar as mensagens que envia.",
"Your PGP public key. Your peer uses it to encrypt messages only you can read.": "Sua chave p\u00fablica PGP. Seu par o usa para criptografar mensagens que s\u00f3 voc\u00ea pode ler.",
"Your public key": "Sua chave p\u00fablica",
"Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.": "Sua chave p\u00fablica PGP de mesmo n\u00edvel. Voc\u00ea o usa para criptografar mensagens que s\u00f3 ele pode ler e para verificar se seu par assinou as mensagens recebidas.",
"Peer public key": "Chave p\u00fablica do par(peer)",
"Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.": "Sua chave privada criptografada. Voc\u00ea o usa para descriptografar as mensagens que seu par criptografou para voc\u00ea. Voc\u00ea tamb\u00e9m o usa para assinar as mensagens que envia.",
"Your encrypted private key": "Sua chave privada criptografada",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "A senha para descriptografar sua chave privada. Só você sabe! Não compartilhe. É também o seu token de usuário do avatar do robô.",
"Your private key passphrase (keep secure!)": "Sua senha de chave privada (mantenha a segurança!)",
"The passphrase to decrypt your private key. Only you know it! Do not share. It is also your robot token.": "A senha para descriptografar sua chave privada. S\u00f3 voc\u00ea sabe! N\u00e3o compartilhe. \u00c9 tamb\u00e9m o seu token de usu\u00e1rio do avatar do rob\u00f4.",
"Your private key passphrase (keep secure!)": "Sua senha de chave privada (mantenha a seguran\u00e7a!)",
"Save credentials as a JSON file": "Salvar credenciais como um arquivo JSON",
"Keys": "Chaves",
"Save messages as a JSON file": "Salvar mensagens como um arquivo JSON",
"Messages": "Mensagens",
"Verified signature by {{nickname}}": "Assinatura verificada por {{nickname}}",
"Cannot verify signature of {{nickname}}": "Não é possível verificar a assinatura de {{nickname}}",
"CONTRACT BOX - TradeBox.js": "A Caixa de Contrato que orienta os usuários por todo o pipeline comercial",
"Cannot verify signature of {{nickname}}": "N\u00e3o \u00e9 poss\u00edvel verificar a assinatura de {{nickname}}",
"CONTRACT BOX - TradeBox.js": "A Caixa de Contrato que orienta os usu\u00e1rios por todo o pipeline comercial",
"Contract Box": "Caixa de contrato",
"Robots show commitment to their peers": "Robôs mostram compromisso com seus pares",
"Robots show commitment to their peers": "Rob\u00f4s mostram compromisso com seus pares",
"Lock {{amountSats}} Sats to PUBLISH order": "Bloquear {{amountSats}} Sats para PUBLICAR ordem",
"Lock {{amountSats}} Sats to TAKE order": "Bloquear {{amountSats}} Sats para TOMAR ordem",
"Lock {{amountSats}} Sats as collateral": "Bloquear {{amountSats}} Sats como garantia",
"Copy to clipboard": "Copiar para área de transferência",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Esta é uma invoice de espera, ela será congelada em sua carteira. Será cobrado apenas se você cancelar ou perder uma disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Esta é uma invoice de espera, ela será congelada em sua carteira. Ele será liberado para o comprador assim que você confirmar o recebimento do {{currencyCode}}.",
"Your maker bond is locked": "Seu vínculo criador está bloqueado",
"Your taker bond is locked": "Seu vínculo tomador está bloqueado",
"Your maker bond was settled": "Seu vínculo criador foi liquidado",
"Your taker bond was settled": "Seu vínculo tomador foi liquidado",
"Your maker bond was unlocked": "Seu vínculo criador foi desbloqueado",
"Your taker bond was unlocked": "YSeu vínculo tomador foi desbloqueado",
"Your order is public": "Sua ordem é pública",
"Be patient while robots check the book. This box will ring 🔊 once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Seja paciente enquanto os robôs verificam o livro. Esta caixa tocará \uD83D\uDD0A assim que um robô receber seu pedido, então você terá {{deposit_timer_hours}}h {{deposit_timer_minutes}}m para responder. Se você não responder, corre o risco de perder seu vínculo.",
"If the order expires untaken, your bond will return to you (no action needed).": "Se o pedido expirar sem ser realizado, seu título retornará a você (sem necessidade de ação).",
"Enable Telegram Notifications": "Habilitar notificações do Telegram",
"Enable TG Notifications": "Habilitar notificações do TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Você será levado a uma conversa com o bot do Telegram RoboSats. Basta abrir o bate-papo e pressionar Iniciar. Observe que, ao ativar as notificações de Telegram, você pode diminuir seu nível de anonimato.",
"Copy to clipboard": "Copiar para \u00e1rea de transfer\u00eancia",
"This is a hold invoice, it will freeze in your wallet. It will be charged only if you cancel or lose a dispute.": "Esta \u00e9 uma invoice de espera, ela ser\u00e1 congelada em sua carteira. Ser\u00e1 cobrado apenas se voc\u00ea cancelar ou perder uma disputa.",
"This is a hold invoice, it will freeze in your wallet. It will be released to the buyer once you confirm to have received the {{currencyCode}}.": "Esta \u00e9 uma invoice de espera, ela ser\u00e1 congelada em sua carteira. Ele ser\u00e1 liberado para o comprador assim que voc\u00ea confirmar o recebimento do {{currencyCode}}.",
"Your maker bond is locked": "Seu v\u00ednculo criador est\u00e1 bloqueado",
"Your taker bond is locked": "Seu v\u00ednculo tomador est\u00e1 bloqueado",
"Your maker bond was settled": "Seu v\u00ednculo criador foi liquidado",
"Your taker bond was settled": "Seu v\u00ednculo tomador foi liquidado",
"Your maker bond was unlocked": "Seu v\u00ednculo criador foi desbloqueado",
"Your taker bond was unlocked": "YSeu v\u00ednculo tomador foi desbloqueado",
"Your order is public": "Sua ordem \u00e9 p\u00fablica",
"Be patient while robots check the book. This box will ring \ud83d\udd0a once a robot takes your order, then you will have {{deposit_timer_hours}}h {{deposit_timer_minutes}}m to reply. If you do not reply, you risk losing your bond.": "Seja paciente enquanto os rob\u00f4s verificam o livro. Esta caixa tocar\u00e1 \ud83d\udd0a assim que um rob\u00f4 receber seu pedido, ent\u00e3o voc\u00ea ter\u00e1 {{deposit_timer_hours}}h {{deposit_timer_minutes}}m para responder. Se voc\u00ea n\u00e3o responder, corre o risco de perder seu v\u00ednculo.",
"If the order expires untaken, your bond will return to you (no action needed).": "Se o pedido expirar sem ser realizado, seu t\u00edtulo retornar\u00e1 a voc\u00ea (sem necessidade de a\u00e7\u00e3o).",
"Enable Telegram Notifications": "Habilitar notifica\u00e7\u00f5es do Telegram",
"Enable TG Notifications": "Habilitar notifica\u00e7\u00f5es do TG",
"You will be taken to a conversation with RoboSats telegram bot. Simply open the chat and press Start. Note that by enabling telegram notifications you might lower your level of anonymity.": "Voc\u00ea ser\u00e1 levado a uma conversa com o bot do Telegram RoboSats. Basta abrir o bate-papo e pressionar Iniciar. Observe que, ao ativar as notifica\u00e7\u00f5es de Telegram, voc\u00ea pode diminuir seu n\u00edvel de anonimato.",
"Go back": "Voltar",
"Enable": "Ativar",
"Telegram enabled": "Telegram ativado",
"Public orders for {{currencyCode}}": "Ordens públicas para {{currencyCode}}",
"Premium rank": "Rank de prêmio",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre ordens públicas {{currencyCode}} (mais alto é mais barato)",
"Public orders for {{currencyCode}}": "Ordens p\u00fablicas para {{currencyCode}}",
"Premium rank": "Rank de pr\u00eamio",
"Among public {{currencyCode}} orders (higher is cheaper)": "Entre ordens p\u00fablicas {{currencyCode}} (mais alto \u00e9 mais barato)",
"A taker has been found!": "Um comprador foi encontrado!",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Por favor, espere que o tomador bloqueie uma fiança. Se o tomador não fechar um vínculo a tempo, a ordem será tornada pública novamente.",
"Please wait for the taker to lock a bond. If the taker does not lock a bond in time, the order will be made public again.": "Por favor, espere que o tomador bloqueie uma fian\u00e7a. Se o tomador n\u00e3o fechar um v\u00ednculo a tempo, a ordem ser\u00e1 tornada p\u00fablica novamente.",
"Payout Lightning Invoice": "Pagamento Lightning Invoice",
"Your info looks good!": "Suas informações parecem boas!",
"We are waiting for the seller to lock the trade amount.": "Estamos aguardando o vendedor bloquear o valor da negociação.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Apenas espere um momento. Se o vendedor não depositar, você receberá seu título de volta automaticamente. Além disso, você receberá uma compensação (verifique as recompensas em seu perfil).",
"The trade collateral is locked!": "A garantia comercial está bloqueada!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estamos aguardando o comprador postar uma lightning invoice. Uma vez que ele o faça, você poderá comunicar diretamente os detalhes do pagamento fiduciário.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Apenas espere um momento. Se o comprador não cooperar, você receberá de volta a garantia comercial e seu título automaticamente. Além disso, você receberá uma compensação (verifique as recompensas em seu perfil).",
"Your info looks good!": "Suas informa\u00e7\u00f5es parecem boas!",
"We are waiting for the seller to lock the trade amount.": "Estamos aguardando o vendedor bloquear o valor da negocia\u00e7\u00e3o.",
"Just hang on for a moment. If the seller does not deposit, you will get your bond back automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Apenas espere um momento. Se o vendedor n\u00e3o depositar, voc\u00ea receber\u00e1 seu t\u00edtulo de volta automaticamente. Al\u00e9m disso, voc\u00ea receber\u00e1 uma compensa\u00e7\u00e3o (verifique as recompensas em seu perfil).",
"The trade collateral is locked!": "A garantia comercial est\u00e1 bloqueada!",
"We are waiting for the buyer to post a lightning invoice. Once he does, you will be able to directly communicate the fiat payment details.": "Estamos aguardando o comprador postar uma lightning invoice. Uma vez que ele o fa\u00e7a, voc\u00ea poder\u00e1 comunicar diretamente os detalhes do pagamento fiduci\u00e1rio.",
"Just hang on for a moment. If the buyer does not cooperate, you will get back the trade collateral and your bond automatically. In addition, you will receive a compensation (check the rewards in your profile).": "Apenas espere um momento. Se o comprador n\u00e3o cooperar, voc\u00ea receber\u00e1 de volta a garantia comercial e seu t\u00edtulo automaticamente. Al\u00e9m disso, voc\u00ea receber\u00e1 uma compensa\u00e7\u00e3o (verifique as recompensas em seu perfil).",
"Confirm {{amount}} {{currencyCode}} sent": "Confirmar o envio de {{amount}} {{currencyCode}}",
"Confirm {{amount}} {{currencyCode}} received": "Confirmar que recebeu {{amount}} {{currencyCode}}",
"Open Dispute": "Abrir disputa",
"The order has expired": "A ordem expirou",
"Chat with the buyer": "Converse com o comprador",
"Chat with the seller": "Converse com o vendedor",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Diga oi! Seja útil e conciso. Deixe-os saber como enviar {{amount}} {{currencyCode}} para você.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "O comprador enviou o fiat. Clique em 'Confirmar Recebido' assim que recebê-lo.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Diga oi! Peça os detalhes do pagamento e clique em 'Confirmar Enviado' assim que o pagamento for enviado.",
"Say hi! Be helpful and concise. Let them know how to send you {{amount}} {{currencyCode}}.": "Diga oi! Seja \u00fatil e conciso. Deixe-os saber como enviar {{amount}} {{currencyCode}} para voc\u00ea.",
"The buyer has sent the fiat. Click 'Confirm Received' once you receive it.": "O comprador enviou o fiat. Clique em 'Confirmar Recebido' assim que receb\u00ea-lo.",
"Say hi! Ask for payment details and click 'Confirm Sent' as soon as the payment is sent.": "Diga oi! Pe\u00e7a os detalhes do pagamento e clique em 'Confirmar Enviado' assim que o pagamento for enviado.",
"Wait for the seller to confirm he has received the payment.": "Aguarde o vendedor confirmar que recebeu o pagamento.",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirme que você recebeu {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmar que você recebeu o fiat finalizará a negociação. Os satoshis no depósito serão liberados para o comprador. Confirme apenas depois que o {{amount}} {{currencyCode}} chegar à sua conta. Além disso, se você recebeu {{currencyCode}} e não confirmar o recebimento, corre o risco de perder seu título.",
"Confirm you received {{amount}} {{currencyCode}}?": "Confirme que voc\u00ea recebeu {{amount}} {{currencyCode}}?",
"Confirming that you received the fiat will finalize the trade. The satoshis in the escrow will be released to the buyer. Only confirm after the {{amount}} {{currencyCode}} have arrived to your account. In addition, if you have received the payment and do not confirm it, you risk losing your bond.": "Confirmar que voc\u00ea recebeu o fiat finalizar\u00e1 a negocia\u00e7\u00e3o. Os satoshis no dep\u00f3sito ser\u00e3o liberados para o comprador. Confirme apenas depois que o {{amount}} {{currencyCode}} chegar \u00e0 sua conta. Al\u00e9m disso, se voc\u00ea recebeu {{currencyCode}} e n\u00e3o confirmar o recebimento, corre o risco de perder seu t\u00edtulo.",
"Confirm": "confirmar",
"Trade finished!": "Negociação finalizada!",
"rate_robosats": "O que você acha de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too ❤️": "Obrigada! RoboSats também te ama ❤️",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats fica melhor com mais liquidez e usuários. Conte a um amigo bitcoiner sobre Robosats!",
"Trade finished!": "Negocia\u00e7\u00e3o finalizada!",
"rate_robosats": "O que voc\u00ea acha de <1>RoboSats</1>?",
"Thank you! RoboSats loves you too \u2764\ufe0f": "Obrigada! RoboSats tamb\u00e9m te ama \u2764\ufe0f",
"RoboSats gets better with more liquidity and users. Tell a bitcoiner friend about Robosats!": "RoboSats fica melhor com mais liquidez e usu\u00e1rios. Conte a um amigo bitcoiner sobre Robosats!",
"Thank you for using Robosats!": "Obrigado por usar Robosats!",
"let_us_know_hot_to_improve": "Deixe-nos saber como a plataforma pode melhorar (<1>Telegram</1> / <3>Github</3>)",
"Start Again": "Comece de novo",
"Attempting Lightning Payment": "Tentativa de pagamento lightning",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats está tentando pagar sua lightning invoice. Lembre-se de que os nós lightning devem estar online para receber pagamentos.",
"RoboSats is trying to pay your lightning invoice. Remember that lightning nodes must be online in order to receive payments.": "RoboSats est\u00e1 tentando pagar sua lightning invoice. Lembre-se de que os n\u00f3s lightning devem estar online para receber pagamentos.",
"Retrying!": "Tentando novamente!",
"Lightning Routing Failed": "Falha no roteamento da Lightning",
"Your invoice has expired or more than 3 payment attempts have been made. Submit a new invoice.": "Sua invoice expirou ou foram feitas mais de 3 tentativas de pagamento. Envie uma nova invoice.",
"Check the list of compatible wallets": "Confira a lista de carteiras compatíveis",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "O RoboSats tentará pagar sua invoice 3 vezes com uma pausa de um minuto entre elas. Se continuar falhando, você poderá enviar uma nova fatura. Verifique se você tem liquidez de entrada suficiente. Lembre-se de que os nós lightning devem estar online para receber pagamentos.",
"Next attempt in": "Próxima tentativa em",
"Check the list of compatible wallets": "Confira a lista de carteiras compat\u00edveis",
"RoboSats will try to pay your invoice 3 times with a one minute pause in between. If it keeps failing, you will be able to submit a new invoice. Check whether you have enough inbound liquidity. Remember that lightning nodes must be online in order to receive payments.": "O RoboSats tentar\u00e1 pagar sua invoice 3 vezes com uma pausa de um minuto entre elas. Se continuar falhando, voc\u00ea poder\u00e1 enviar uma nova fatura. Verifique se voc\u00ea tem liquidez de entrada suficiente. Lembre-se de que os n\u00f3s lightning devem estar online para receber pagamentos.",
"Next attempt in": "Pr\u00f3xima tentativa em",
"Do you want to open a dispute?": "Quer abrir uma disputa?",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "A equipe do RoboSats examinará as declarações e evidências fornecidas. Você precisa construir um caso completo, pois a equipe não pode ler o chat. É melhor fornecer um método de contato do queimador com sua declaração. Os satoshis no depósito de garantia serão enviados ao vencedor da disputa, enquanto o perdedor da disputa perderá o vínculo.",
"The RoboSats staff will examine the statements and evidence provided. You need to build a complete case, as the staff cannot read the chat. It is best to provide a burner contact method with your statement. The satoshis in the trade escrow will be sent to the dispute winner, while the dispute loser will lose the bond.": "A equipe do RoboSats examinar\u00e1 as declara\u00e7\u00f5es e evid\u00eancias fornecidas. Voc\u00ea precisa construir um caso completo, pois a equipe n\u00e3o pode ler o chat. \u00c9 melhor fornecer um m\u00e9todo de contato do queimador com sua declara\u00e7\u00e3o. Os satoshis no dep\u00f3sito de garantia ser\u00e3o enviados ao vencedor da disputa, enquanto o perdedor da disputa perder\u00e1 o v\u00ednculo.",
"Disagree": "Discordar",
"Agree and open dispute": "Concordar e abrir disputa",
"A dispute has been opened": "Uma disputa foi aberta",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Por favor, envie sua declaração. Seja claro e específico sobre o que aconteceu e forneça as evidências necessárias. Você DEVE fornecer um método de contato: e-mail do gravador, nome de usuário XMPP ou telegram para acompanhar a equipe. As disputas são resolvidas a critério de robôs reais (também conhecidos como humanos), portanto, seja o mais útil possível para garantir um resultado justo. Máximo de 5000 caracteres.",
"Submit dispute statement": "Enviar declaração de disputa",
"We have received your statement": "Recebemos sua declaração",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estamos aguardando sua declaração de contrapartida comercial. Se você está hesitante sobre o estado da disputa ou deseja adicionar mais informações, entre em contato com robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Por favor, salve as informações necessárias para identificar seu pedido e seus pagamentos: ID do pedido; hashes de pagamento dos títulos ou caução (verifique sua carteira relâmpago); quantidade exata de satoshis; e apelido de robô. Você terá que se identificar como o usuário envolvido nesta negociação por e-mail (ou outros métodos de contato).",
"We have the statements": "Temos as declarações",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambas as declarações foram recebidas, aguarde a equipe para resolver a disputa. Se você está hesitante sobre o estado da disputa ou deseja adicionar mais informações, entre em contato com robosats@protonmail.com. Se você não forneceu um método de contato ou não tem certeza se escreveu certo, escreva-nos imediatamente.",
"You have won the dispute": "Você ganhou a disputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Você pode reivindicar o valor da resolução de disputas (caução e fiança) das recompensas do seu perfil. Se houver algo que a equipe possa ajudar, não hesite em entrar em contato com robosats@protonmail.com (ou através do método de contato fornecido pelo gravador).",
"You have lost the dispute": "Você perdeu a disputa",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Infelizmente você perdeu a disputa. Se você acha que isso é um erro, você pode pedir para reabrir o caso por e-mail para robosats@protonmail.com. No entanto, as chances de ser investigado novamente são baixas.",
"Expired not taken": "Expirado não tomado",
"Maker bond not locked": "Vínculo do criador não bloqueado",
"Escrow not locked": "Custódia não bloqueado",
"Invoice not submitted": "Fatura não enviada",
"Neither escrow locked or invoice submitted": "Nenhum depósito bloqueado ou fatura enviada",
"Please, submit your statement. Be clear and specific about what happened and provide the necessary evidence. You MUST provide a contact method: burner email, XMPP or telegram username to follow up with the staff. Disputes are solved at the discretion of real robots (aka humans), so be as helpful as possible to ensure a fair outcome. Max 5000 chars.": "Por favor, envie sua declara\u00e7\u00e3o. Seja claro e espec\u00edfico sobre o que aconteceu e forne\u00e7a as evid\u00eancias necess\u00e1rias. Voc\u00ea DEVE fornecer um m\u00e9todo de contato: e-mail do gravador, nome de usu\u00e1rio XMPP ou telegram para acompanhar a equipe. As disputas s\u00e3o resolvidas a crit\u00e9rio de rob\u00f4s reais (tamb\u00e9m conhecidos como humanos), portanto, seja o mais \u00fatil poss\u00edvel para garantir um resultado justo. M\u00e1ximo de 5000 caracteres.",
"Submit dispute statement": "Enviar declara\u00e7\u00e3o de disputa",
"We have received your statement": "Recebemos sua declara\u00e7\u00e3o",
"We are waiting for your trade counterpart statement. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com.": "Estamos aguardando sua declara\u00e7\u00e3o de contrapartida comercial. Se voc\u00ea est\u00e1 hesitante sobre o estado da disputa ou deseja adicionar mais informa\u00e7\u00f5es, entre em contato com robosats@protonmail.com.",
"Please, save the information needed to identify your order and your payments: order ID; payment hashes of the bonds or escrow (check on your lightning wallet); exact amount of satoshis; and robot nickname. You will have to identify yourself as the user involved in this trade via email (or other contact methods).": "Por favor, salve as informa\u00e7\u00f5es necess\u00e1rias para identificar seu pedido e seus pagamentos: ID do pedido; hashes de pagamento dos t\u00edtulos ou cau\u00e7\u00e3o (verifique sua carteira rel\u00e2mpago); quantidade exata de satoshis; e apelido de rob\u00f4. Voc\u00ea ter\u00e1 que se identificar como o usu\u00e1rio envolvido nesta negocia\u00e7\u00e3o por e-mail (ou outros m\u00e9todos de contato).",
"We have the statements": "Temos as declara\u00e7\u00f5es",
"Both statements have been received, wait for the staff to resolve the dispute. If you are hesitant about the state of the dispute or want to add more information, contact robosats@protonmail.com. If you did not provide a contact method, or are unsure whether you wrote it right, write us immediately.": "Ambas as declara\u00e7\u00f5es foram recebidas, aguarde a equipe para resolver a disputa. Se voc\u00ea est\u00e1 hesitante sobre o estado da disputa ou deseja adicionar mais informa\u00e7\u00f5es, entre em contato com robosats@protonmail.com. Se voc\u00ea n\u00e3o forneceu um m\u00e9todo de contato ou n\u00e3o tem certeza se escreveu certo, escreva-nos imediatamente.",
"You have won the dispute": "Voc\u00ea ganhou a disputa",
"You can claim the dispute resolution amount (escrow and fidelity bond) from your profile rewards. If there is anything the staff can help with, do not hesitate to contact to robosats@protonmail.com (or via your provided burner contact method).": "Voc\u00ea pode reivindicar o valor da resolu\u00e7\u00e3o de disputas (cau\u00e7\u00e3o e fian\u00e7a) das recompensas do seu perfil. Se houver algo que a equipe possa ajudar, n\u00e3o hesite em entrar em contato com robosats@protonmail.com (ou atrav\u00e9s do m\u00e9todo de contato fornecido pelo gravador).",
"You have lost the dispute": "Voc\u00ea perdeu a disputa",
"Unfortunately you have lost the dispute. If you think this is a mistake you can ask to re-open the case via email to robosats@protonmail.com. However, chances of it being investigated again are low.": "Infelizmente voc\u00ea perdeu a disputa. Se voc\u00ea acha que isso \u00e9 um erro, voc\u00ea pode pedir para reabrir o caso por e-mail para robosats@protonmail.com. No entanto, as chances de ser investigado novamente s\u00e3o baixas.",
"Expired not taken": "Expirado n\u00e3o tomado",
"Maker bond not locked": "V\u00ednculo do criador n\u00e3o bloqueado",
"Escrow not locked": "Cust\u00f3dia n\u00e3o bloqueado",
"Invoice not submitted": "Fatura n\u00e3o enviada",
"Neither escrow locked or invoice submitted": "Nenhum dep\u00f3sito bloqueado ou fatura enviada",
"Renew Order": "Renovar pedido",
"Pause the public order": "Pausar a ordem pública",
"Your order is paused": "Seu pedido está pausado",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Seu pedido público foi pausado. No momento não pode ser visto ou tomado por outros robôs. Você pode optar por retomá-lo a qualquer momento.",
"Pause the public order": "Pausar a ordem p\u00fablica",
"Your order is paused": "Seu pedido est\u00e1 pausado",
"Your public order has been paused. At the moment it cannot be seen or taken by other robots. You can choose to unpause it at any time.": "Seu pedido p\u00fablico foi pausado. No momento n\u00e3o pode ser visto ou tomado por outros rob\u00f4s. Voc\u00ea pode optar por retom\u00e1-lo a qualquer momento.",
"Unpause Order": "Retomar pedido",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Você corre o risco de perder seu título se não bloquear a garantia. O tempo total disponível é de {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Ver Carteiras Compatíveis",
"You risk losing your bond if you do not lock the collateral. Total time available is {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.": "Voc\u00ea corre o risco de perder seu t\u00edtulo se n\u00e3o bloquear a garantia. O tempo total dispon\u00edvel \u00e9 de {{deposit_timer_hours}}h {{deposit_timer_minutes}}m.",
"See Compatible Wallets": "Ver Carteiras Compat\u00edveis",
"Failure reason:": "Motivo da falha:",
"Payment isn't failed (yet)": "O pagamento não falhou (ainda)",
"There are more routes to try, but the payment timeout was exceeded.": "Há mais rotas para tentar, mas o tempo limite de pagamento foi excedido.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Todas as rotas possíveis foram tentadas e falharam permanentemente. Ou não havia nenhuma rota para o destino.",
"A non-recoverable error has occurred.": "Ocorreu um erro irrecuperável.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Os detalhes de pagamento estão incorretos (hash desconhecido, valor inválido ou delta CLTV final inválido).",
"Insufficient unlocked balance in RoboSats' node.": "Saldo desbloqueado insuficiente no nó do RoboSats.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "A fatura enviada tem apenas dicas de roteamento caras, você está usando uma carteira incompatível (provavelmente Muun?). Verifique o guia de compatibilidade da carteira em wallets.robosats.com",
"The invoice provided has no explicit amount": "A invoice fornecida não tem valor explícito",
"Does not look like a valid lightning invoice": "Não parece uma lightning invoice válida",
"The invoice provided has already expired": "O invoice fornecido já expirou",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Certifique-se de EXPORTAR o log de bate-papo. A equipe pode solicitar seu JSON de log de bate-papo exportado para resolver discrepâncias. É sua responsabilidade armazená-lo.",
"Does not look like a valid address": "Não parece um endereço válido",
"This is not a bitcoin mainnet address": "Este não é um endereço da mainnet bitcoin",
"This is not a bitcoin testnet address": "Este não é um endereço da rede de teste bitcoin",
"Submit payout info for {{amountSats}} Sats": "Enviar informações de pagamento para {{amountSats}} Sats",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Envie uma fatura válida para {{amountSats}} Satoshis.",
"Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.": "Antes de permitir que você envie {{amountFiat}} {{currencyCode}}, queremos ter certeza de que você pode receber o BTC.",
"RoboSats will do a swap and send the Sats to your onchain address.": "O RoboSats fará uma troca e enviará o Sats para o seu endereço onchain.",
"Swap fee": "Taxa de negociação",
"Mining fee": "Taxa de mineração",
"Mining Fee": "Taxa de mineração",
"Final amount you will receive": "Valor final que você receberá",
"Bitcoin Address": "Endereço Bitcoin",
"Payment isn't failed (yet)": "O pagamento n\u00e3o falhou (ainda)",
"There are more routes to try, but the payment timeout was exceeded.": "H\u00e1 mais rotas para tentar, mas o tempo limite de pagamento foi excedido.",
"All possible routes were tried and failed permanently. Or there were no routes to the destination at all.": "Todas as rotas poss\u00edveis foram tentadas e falharam permanentemente. Ou n\u00e3o havia nenhuma rota para o destino.",
"A non-recoverable error has occurred.": "Ocorreu um erro irrecuper\u00e1vel.",
"Payment details are incorrect (unknown hash, invalid amount or invalid final CLTV delta).": "Os detalhes de pagamento est\u00e3o incorretos (hash desconhecido, valor inv\u00e1lido ou delta CLTV final inv\u00e1lido).",
"Insufficient unlocked balance in RoboSats' node.": "Saldo desbloqueado insuficiente no n\u00f3 do RoboSats.",
"The invoice submitted only has expensive routing hints, you are using an incompatible wallet (probably Muun?). Check the wallet compatibility guide at wallets.robosats.com": "A fatura enviada tem apenas dicas de roteamento caras, voc\u00ea est\u00e1 usando uma carteira incompat\u00edvel (provavelmente Muun?). Verifique o guia de compatibilidade da carteira em wallets.robosats.com",
"The invoice provided has no explicit amount": "A invoice fornecida n\u00e3o tem valor expl\u00edcito",
"Does not look like a valid lightning invoice": "N\u00e3o parece uma lightning invoice v\u00e1lida",
"The invoice provided has already expired": "O invoice fornecido j\u00e1 expirou",
"Make sure to EXPORT the chat log. The staff might request your exported chat log JSON in order to solve discrepancies. It is your responsibility to store it.": "Certifique-se de EXPORTAR o log de bate-papo. A equipe pode solicitar seu JSON de log de bate-papo exportado para resolver discrep\u00e2ncias. \u00c9 sua responsabilidade armazen\u00e1-lo.",
"Does not look like a valid address": "N\u00e3o parece um endere\u00e7o v\u00e1lido",
"This is not a bitcoin mainnet address": "Este n\u00e3o \u00e9 um endere\u00e7o da mainnet bitcoin",
"This is not a bitcoin testnet address": "Este n\u00e3o \u00e9 um endere\u00e7o da rede de teste bitcoin",
"Submit payout info for {{amountSats}} Sats": "Enviar informa\u00e7\u00f5es de pagamento para {{amountSats}} Sats",
"Submit a valid invoice for {{amountSats}} Satoshis.": "Envie uma fatura v\u00e1lida para {{amountSats}} Satoshis.",
"Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.": "Antes de permitir que voc\u00ea envie {{amountFiat}} {{currencyCode}}, queremos ter certeza de que voc\u00ea pode receber o BTC.",
"RoboSats will do a swap and send the Sats to your onchain address.": "O RoboSats far\u00e1 uma troca e enviar\u00e1 o Sats para o seu endere\u00e7o onchain.",
"Swap fee": "Taxa de negocia\u00e7\u00e3o",
"Mining fee": "Taxa de minera\u00e7\u00e3o",
"Mining Fee": "Taxa de minera\u00e7\u00e3o",
"Final amount you will receive": "Valor final que voc\u00ea receber\u00e1",
"Bitcoin Address": "Endere\u00e7o Bitcoin",
"Your TXID": "Sua TXID",
"Lightning": "Lightning",
"Onchain": "Onchain",
"INFO DIALOG - InfoDiagog.js": "Informações e esclarecimentos do aplicativo e termos de uso",
"INFO DIALOG - InfoDiagog.js": "Informa\u00e7\u00f5es e esclarecimentos do aplicativo e termos de uso",
"Close": "Fechar",
"What is RoboSats?": "O que é RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "É uma troca peer-to-peer BTC/FIAT sobre lightning.",
"RoboSats is an open source project ": "RoboSats é um projeto de código aberto ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Simplifica o matchmaking e minimiza a necessidade de confiança. RoboSats se concentra em privacidade e velocidade.",
"What is RoboSats?": "O que \u00e9 RoboSats?",
"It is a BTC/FIAT peer-to-peer exchange over lightning.": "\u00c9 uma troca peer-to-peer BTC/FIAT sobre lightning.",
"RoboSats is an open source project ": "RoboSats \u00e9 um projeto de c\u00f3digo aberto ",
"It simplifies matchmaking and minimizes the need of trust. RoboSats focuses in privacy and speed.": "Simplifica o matchmaking e minimiza a necessidade de confian\u00e7a. RoboSats se concentra em privacidade e velocidade.",
"(GitHub).": "(GitHub).",
"How does it work?": "Como funciona?",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 quer vender bitcoin. Ela publica uma ordem de venda. BafflingBob02 quer comprar bitcoin e recebe a ordem de Alice. Ambos têm que postar um pequeno vínculo usando a lightning para provar que são robôs reais. Em seguida, Alice lança a garantia comercial também usando uma fatura de retenção lightning. O RoboSats bloqueia a fatura até que Alice confirme que recebeu o fiat, então os satoshis são liberados para Bob. Aproveite seus satoshis, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "Em nenhum momento, AnonymousAlice01 e BafflingBob02 precisam confiar os fundos de bitcoin um ao outro. Caso haja um conflito, a equipe da RoboSats ajudará a resolver a disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Você pode encontrar uma descrição passo a passo do pipeline comercial em ",
"AnonymousAlice01 wants to sell bitcoin. She posts a sell order. BafflingBob02 wants to buy bitcoin and he takes Alice's order. Both have to post a small bond using lightning to prove they are real robots. Then, Alice posts the trade collateral also using a lightning hold invoice. RoboSats locks the invoice until Alice confirms she received the fiat, then the satoshis are released to Bob. Enjoy your satoshis, Bob!": "AnonymousAlice01 quer vender bitcoin. Ela publica uma ordem de venda. BafflingBob02 quer comprar bitcoin e recebe a ordem de Alice. Ambos t\u00eam que postar um pequeno v\u00ednculo usando a lightning para provar que s\u00e3o rob\u00f4s reais. Em seguida, Alice lan\u00e7a a garantia comercial tamb\u00e9m usando uma fatura de reten\u00e7\u00e3o lightning. O RoboSats bloqueia a fatura at\u00e9 que Alice confirme que recebeu o fiat, ent\u00e3o os satoshis s\u00e3o liberados para Bob. Aproveite seus satoshis, Bob!",
"At no point, AnonymousAlice01 and BafflingBob02 have to entrust the bitcoin funds to each other. In case they have a conflict, RoboSats staff will help resolving the dispute.": "Em nenhum momento, AnonymousAlice01 e BafflingBob02 precisam confiar os fundos de bitcoin um ao outro. Caso haja um conflito, a equipe da RoboSats ajudar\u00e1 a resolver a disputa.",
"You can find a step-by-step description of the trade pipeline in ": "Voc\u00ea pode encontrar uma descri\u00e7\u00e3o passo a passo do pipeline comercial em ",
"How it works": "Como funciona",
"You can also check the full guide in ": "Você também pode conferir o guia completo em ",
"You can also check the full guide in ": "Voc\u00ea tamb\u00e9m pode conferir o guia completo em ",
"How to use": "Como utilizar",
"What payment methods are accepted?": "Quais métodos de pagamento são aceitos?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Todos eles, desde que sejam rápidos. Você pode anotar seu(s) método(s) de pagamento preferido(s). Você terá que combinar com um par que também aceite esse método. A etapa para trocar fiat tem um tempo de expiração de 24 horas antes que uma disputa seja aberta automaticamente. É altamente recomendável usar trilhos de pagamento fiduciário instantâneos.",
"Are there trade limits?": "Existem limites de negociações?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "O tamanho máximo de uma única negociação é {{maxAmount}} Satoshis para minimizar a falha de roteamento relâmpago. Não há limites para o número de negociações por dia. Um robô só pode ter um pedido por vez. No entanto, você pode usar vários robôs simultaneamente em diferentes navegadores (lembre-se de fazer backup de seus tokens de robô!).",
"Is RoboSats private?": "O RoboSats é privado?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats nunca pedirá seu nome, país ou ID. RoboSats não guarda seus fundos e não se importa com quem você é. A RoboSats não recolhe nem guarda quaisquer dados pessoais. Para melhor anonimato, use o Navegador Tor e acesse o serviço oculto .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Seu colega de negociação é o único que pode adivinhar algo sobre você. Mantenha seu bate-papo curto e conciso. Evite fornecer informações não essenciais além do estritamente necessário para o pagamento fiduciário.",
"What are the risks?": "Quais são os riscos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Esta é uma aplicação experimental, as coisas podem dar errado. Negocie pequenas quantidades!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "O vendedor enfrenta o mesmo risco de estorno de qualquer outro serviço ponto a ponto(peer-to-peer). Paypal ou cartões de crédito não são recomendados.",
"What is the trust model?": "Qual é o modelo de confiança?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "O comprador e o vendedor nunca precisam confiar um no outro. É necessária alguma confiança no RoboSats, pois vincular a fatura de retenção do vendedor e o pagamento do comprador não é atômico (ainda). Além disso, as disputas são resolvidas pela equipe do RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Para ser totalmente claro. Os requisitos de confiança são minimizados. No entanto, ainda há uma maneira pela qual o RoboSats pode fugir com seus satoshis: não liberando os satoshis para o comprador. Pode-se argumentar que tal movimento não é do interesse da RoboSats, pois prejudicaria a reputação de um pequeno pagamento. No entanto, você deve hesitar e negociar apenas pequenas quantidades de cada vez. Para grandes quantidades, use um serviço de custódia onchain, como Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Você pode construir mais confiança no RoboSats inspecionando o código-fonte.",
"Project source code": "Código fonte do projeto",
"What payment methods are accepted?": "Quais m\u00e9todos de pagamento s\u00e3o aceitos?",
"All of them as long as they are fast. You can write down your preferred payment method(s). You will have to match with a peer who also accepts that method. The step to exchange fiat has a expiry time of 24 hours before a dispute is automatically open. We highly recommend using instant fiat payment rails.": "Todos eles, desde que sejam r\u00e1pidos. Voc\u00ea pode anotar seu(s) m\u00e9todo(s) de pagamento preferido(s). Voc\u00ea ter\u00e1 que combinar com um par que tamb\u00e9m aceite esse m\u00e9todo. A etapa para trocar fiat tem um tempo de expira\u00e7\u00e3o de 24 horas antes que uma disputa seja aberta automaticamente. \u00c9 altamente recomend\u00e1vel usar trilhos de pagamento fiduci\u00e1rio instant\u00e2neos.",
"Are there trade limits?": "Existem limites de negocia\u00e7\u00f5es?",
"Maximum single trade size is {{maxAmount}} Satoshis to minimize lightning routing failure. There is no limits to the number of trades per day. A robot can only have one order at a time. However, you can use multiple robots simultaneously in different browsers (remember to back up your robot tokens!).": "O tamanho m\u00e1ximo de uma \u00fanica negocia\u00e7\u00e3o \u00e9 {{maxAmount}} Satoshis para minimizar a falha de roteamento rel\u00e2mpago. N\u00e3o h\u00e1 limites para o n\u00famero de negocia\u00e7\u00f5es por dia. Um rob\u00f4 s\u00f3 pode ter um pedido por vez. No entanto, voc\u00ea pode usar v\u00e1rios rob\u00f4s simultaneamente em diferentes navegadores (lembre-se de fazer backup de seus tokens de rob\u00f4!).",
"Is RoboSats private?": "O RoboSats \u00e9 privado?",
"RoboSats will never ask you for your name, country or ID. RoboSats does not custody your funds and does not care who you are. RoboSats does not collect or custody any personal data. For best anonymity use Tor Browser and access the .onion hidden service.": "RoboSats nunca pedir\u00e1 seu nome, pa\u00eds ou ID. RoboSats n\u00e3o guarda seus fundos e n\u00e3o se importa com quem voc\u00ea \u00e9. A RoboSats n\u00e3o recolhe nem guarda quaisquer dados pessoais. Para melhor anonimato, use o Navegador Tor e acesse o servi\u00e7o oculto .onion.",
"Your trading peer is the only one who can potentially guess anything about you. Keep your chat short and concise. Avoid providing non-essential information other than strictly necessary for the fiat payment.": "Seu colega de negocia\u00e7\u00e3o \u00e9 o \u00fanico que pode adivinhar algo sobre voc\u00ea. Mantenha seu bate-papo curto e conciso. Evite fornecer informa\u00e7\u00f5es n\u00e3o essenciais al\u00e9m do estritamente necess\u00e1rio para o pagamento fiduci\u00e1rio.",
"What are the risks?": "Quais s\u00e3o os riscos?",
"This is an experimental application, things could go wrong. Trade small amounts!": "Esta \u00e9 uma aplica\u00e7\u00e3o experimental, as coisas podem dar errado. Negocie pequenas quantidades!",
"The seller faces the same charge-back risk as with any other peer-to-peer service. Paypal or credit cards are not recommended.": "O vendedor enfrenta o mesmo risco de estorno de qualquer outro servi\u00e7o ponto a ponto(peer-to-peer). Paypal ou cart\u00f5es de cr\u00e9dito n\u00e3o s\u00e3o recomendados.",
"What is the trust model?": "Qual \u00e9 o modelo de confian\u00e7a?",
"The buyer and the seller never have to trust each other. Some trust on RoboSats is needed since linking the seller's hold invoice and buyer payment is not atomic (yet). In addition, disputes are solved by the RoboSats staff.": "O comprador e o vendedor nunca precisam confiar um no outro. \u00c9 necess\u00e1ria alguma confian\u00e7a no RoboSats, pois vincular a fatura de reten\u00e7\u00e3o do vendedor e o pagamento do comprador n\u00e3o \u00e9 at\u00f4mico (ainda). Al\u00e9m disso, as disputas s\u00e3o resolvidas pela equipe do RoboSats.",
"To be totally clear. Trust requirements are minimized. However, there is still one way RoboSats could run away with your satoshis: by not releasing the satoshis to the buyer. It could be argued that such move is not in RoboSats' interest as it would damage the reputation for a small payout. However, you should hesitate and only trade small quantities at a time. For large amounts use an onchain escrow service such as Bisq": "Para ser totalmente claro. Os requisitos de confian\u00e7a s\u00e3o minimizados. No entanto, ainda h\u00e1 uma maneira pela qual o RoboSats pode fugir com seus satoshis: n\u00e3o liberando os satoshis para o comprador. Pode-se argumentar que tal movimento n\u00e3o \u00e9 do interesse da RoboSats, pois prejudicaria a reputa\u00e7\u00e3o de um pequeno pagamento. No entanto, voc\u00ea deve hesitar e negociar apenas pequenas quantidades de cada vez. Para grandes quantidades, use um servi\u00e7o de cust\u00f3dia onchain, como Bisq",
"You can build more trust on RoboSats by inspecting the source code.": "Voc\u00ea pode construir mais confian\u00e7a no RoboSats inspecionando o c\u00f3digo-fonte.",
"Project source code": "C\u00f3digo fonte do projeto",
"What happens if RoboSats suddenly disappears?": "O que acontece se o RoboSats desaparecer de repente?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Seus sats retornarão para você. Qualquer fatura retida que não seja liquidada será automaticamente devolvida mesmo que o RoboSats fique inativo para sempre. Isso é verdade tanto para títulos bloqueados quanto para cauções comerciais. No entanto, há uma pequena janela entre o vendedor confirma o FIAT RECEBIDO e o momento em que o comprador recebe os satoshis, quando os fundos podem ser perdidos permanentemente se o RoboSats desaparecer. Esta janela tem cerca de 1 segundo de duração. Certifique-se de ter liquidez de entrada suficiente para evitar falhas de roteamento. Se você tiver algum problema, entre em contato pelos canais públicos do RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "Em muitos países, usar RoboSats não é diferente de usar Ebay ou Craigslist. A regulamentação pode variar. É sua responsabilidade cumprir.",
"Is RoboSats legal in my country?": "O RoboSats é legal no meu país?",
"Your sats will return to you. Any hold invoice that is not settled would be automatically returned even if RoboSats goes down forever. This is true for both, locked bonds and trading escrows. However, there is a small window between the seller confirms FIAT RECEIVED and the moment the buyer receives the satoshis when the funds could be permanently lost if RoboSats disappears. This window is about 1 second long. Make sure to have enough inbound liquidity to avoid routing failures. If you have any problem, reach out trough the RoboSats public channels.": "Seus sats retornar\u00e3o para voc\u00ea. Qualquer fatura retida que n\u00e3o seja liquidada ser\u00e1 automaticamente devolvida mesmo que o RoboSats fique inativo para sempre. Isso \u00e9 verdade tanto para t\u00edtulos bloqueados quanto para cau\u00e7\u00f5es comerciais. No entanto, h\u00e1 uma pequena janela entre o vendedor confirma o FIAT RECEBIDO e o momento em que o comprador recebe os satoshis, quando os fundos podem ser perdidos permanentemente se o RoboSats desaparecer. Esta janela tem cerca de 1 segundo de dura\u00e7\u00e3o. Certifique-se de ter liquidez de entrada suficiente para evitar falhas de roteamento. Se voc\u00ea tiver algum problema, entre em contato pelos canais p\u00fablicos do RoboSats.",
"In many countries using RoboSats is no different than using Ebay or Craiglist. Your regulation may vary. It is your responsibility to comply.": "Em muitos pa\u00edses, usar RoboSats n\u00e3o \u00e9 diferente de usar Ebay ou Craigslist. A regulamenta\u00e7\u00e3o pode variar. \u00c9 sua responsabilidade cumprir.",
"Is RoboSats legal in my country?": "O RoboSats \u00e9 legal no meu pa\u00eds?",
"Disclaimer": "Disclaimer",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Este aplicativo relâmpago é fornecido como está. Está em desenvolvimento ativo: negocie com a máxima cautela. Não há suporte privado. O suporte é oferecido apenas por meio de canais públicos ",
"This lightning application is provided as is. It is in active development: trade with the utmost caution. There is no private support. Support is only offered via public channels ": "Este aplicativo rel\u00e2mpago \u00e9 fornecido como est\u00e1. Est\u00e1 em desenvolvimento ativo: negocie com a m\u00e1xima cautela. N\u00e3o h\u00e1 suporte privado. O suporte \u00e9 oferecido apenas por meio de canais p\u00fablicos ",
"(Telegram)": "(Telegram)",
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats nunca entrará em contato com você. O RoboSats definitivamente nunca pedirá seu token de robô."
". RoboSats will never contact you. RoboSats will definitely never ask for your robot token.": ". RoboSats nunca entrar\u00e1 em contato com voc\u00ea. O RoboSats definitivamente nunca pedir\u00e1 seu token de rob\u00f4."
}

Some files were not shown because too many files have changed in this diff Show More