mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Translate operating system names (fixes #487)
This commit is contained in:
parent
0bf591b884
commit
ee8fa8cbdb
2 changed files with 14 additions and 8 deletions
|
@ -511,17 +511,17 @@ wallets:
|
|||
<li class="wallet-mobile">
|
||||
<a data-walletcompat="mobile">{% translate walletcatmobile %}</a>
|
||||
<ul>
|
||||
<li><a data-walletcompat="android">Android</a></li>
|
||||
<li><a data-walletcompat="iphone">iPhone</a></li>
|
||||
<li><a data-walletcompat="blackberry">BlackBerry</a></li>
|
||||
<li><a data-walletcompat="android">{% translate platformandroid %}</a></li>
|
||||
<li><a data-walletcompat="iphone">{% translate platformiphone %}</a></li>
|
||||
<li><a data-walletcompat="blackberry">{% translate platformblackberry %}</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="wallet-desktop">
|
||||
<a data-walletcompat="desktop">{% translate walletcatdesktop %}</a>
|
||||
<ul>
|
||||
<li><a data-walletcompat="windows">Windows</a></li>
|
||||
<li><a data-walletcompat="mac">Mac</a></li>
|
||||
<li><a data-walletcompat="linux">Linux</a></li>
|
||||
<li><a data-walletcompat="windows">{% translate platformwindows %}</a></li>
|
||||
<li><a data-walletcompat="mac">{% translate platformmac %}</a></li>
|
||||
<li><a data-walletcompat="linux">{% translate platformlinux %}</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="wallet-hardware" style="display:none;"><a data-walletcompat="hardware">{% translate walletcathardware %}</a></li>
|
||||
|
@ -535,7 +535,7 @@ wallets:
|
|||
<span></span>
|
||||
<div>
|
||||
<h2>{{ wallet[1].title }}</h2>
|
||||
<div>{% for os in platform.os %}<img src="/img/os/{{ os }}.png" alt="{{ os }}" title="{{ os }}" />{% endfor %}</div>
|
||||
<div>{% for os in platform.os %}<img src="/img/os/{{ os }}.png" alt="{% translate platform{{os}} %}" title="{% translate platform{{os}} %}" />{% endfor %}</div>
|
||||
<div>{% if platform.link contains '://' %}<a href="{{ platform.link }}">{% translate walletvisit %}</a>{% else %}{% translate {{platform.link}} %}{% endif %}{% if platform.source %}<a href="{{ platform.source }}">{% translate walletsourcecode %}</a>{% endif %}</div>
|
||||
<div>
|
||||
{% for check in platform.check %}{% if check[0] == 'privacy' and platform.privacycheck %}
|
||||
|
@ -565,7 +565,7 @@ wallets:
|
|||
<span></span>
|
||||
<div>
|
||||
<h2>{{ wallet[1].title }}</h2>
|
||||
<div>{% for os in platform[1].os %}<img src="/img/os/{{ os }}.png" alt="{{ os }}" title="{{ os }}" />{% endfor %}</div>
|
||||
<div>{% for os in platform[1].os %}<img src="/img/os/{{ os }}.png" alt="{% translate platform{{os}} %}" title="{% translate platform{{os}} %}" />{% endfor %}</div>
|
||||
<div>{% if platform[1].link contains '://' %}<a href="{{ platform[1].link }}">{% translate walletvisit %}</a>{% else %}{% translate {{platform[1].link}} %}{% endif %}{% if platform[1].source %}<a href="{{ platform[1].source }}">{% translate walletsourcecode %}</a>{% endif %}</div>
|
||||
<div>
|
||||
{% for check in platform[1].check %}{% if check[0] == 'privacy' and platform[1].privacycheck %}
|
||||
|
|
|
@ -122,6 +122,12 @@ en:
|
|||
walletdownload: "<a href=\"#download#\">Download</a>"
|
||||
walletvisit: "Visit website"
|
||||
walletsourcecode: "Source code"
|
||||
platformandroid: "Android"
|
||||
platformiphone: "iPhone"
|
||||
platformblackberry: "BlackBerry"
|
||||
platformwindows: "Windows"
|
||||
platformmac: "Mac"
|
||||
platformlinux: "Linux"
|
||||
checkgoodcontrolfull: "Control over your money"
|
||||
checkgoodcontrolfulltxt: "This wallet gives you full control over your bitcoins. This means no third party can freeze or lose your funds. You are however still responsible for securing and backing up your wallet."
|
||||
checkpasscontrolhybrid: "Hosted control over your money"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue