Skip to content
This repository has been archived by the owner on May 29, 2018. It is now read-only.

Update es.yml #163

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
104 changes: 62 additions & 42 deletions index.html.erb
Expand Up @@ -53,11 +53,6 @@ gtag('config', 'UA-17656782-2');
<span><%= I18n.t(:'sections.about').strip %></span>
</a>
</li>
<li>
<a href="#features" data-nav-section="features" class="inner-link">
<span><%= I18n.t(:'sections.features').strip %></span>
</a>
</li>
<li>
<a href="#nodes" data-nav-section="nodes" class="inner-link">
<span><%= I18n.t(:'sections.nodes').strip %></span>
Expand Down Expand Up @@ -102,8 +97,8 @@ gtag('config', 'UA-17656782-2');
</div>
</li>
<li>
<a href="#faq" data-nav-section="faq" class="inner-link">
<span><%= I18n.t(:'sections.faq').strip %></span>
<a href="#why" data-nav-section="why" class="inner-link">
<span><%= I18n.t(:'sections.benefits').strip %></span>
</a>
</li>
<li class="dropdown">
Expand Down Expand Up @@ -211,36 +206,6 @@ gtag('config', 'UA-17656782-2');
</div>
</div>
</section>
<a id="announcement"></a>
<section class="space--xxs" id="announcement-section" data-section="announcement">
<div class="container">
<div class="row text-center to-animate">
<div class='col-sm-12 section-heading '>
<h2><%= I18n.t(:'headings.announcement').strip %></h2>
</div>
</div>
<div class="row to-animate">
<div class="col-sm-12 col-md-12">
<%= I18n.t(:'content.announcement').map { |c| "<p>#{c.strip}</p>" }.join("\n#{' ' * 28}") %>
</div>
</div>
</div>
</section>
<a id="features"></a>
<section class="space--xxs" id="features-section" data-section="features">
<div class="container">
<div class="row text-center to-animate">
<div class='col-sm-12 section-heading '>
<h2><%= I18n.t(:'headings.features').strip %></h2>
</div>
</div>
<div class="row to-animate">
<div class="col-sm-12 col-md-12">
<%= I18n.t(:'content.features').map { |c| "<p>#{c.strip}#{c == I18n.t(:'content.features').last ? '<br><br>' : ''}</p>" }.join("\n#{' ' * 28}") %>
</div>
</div>
</div>
</section>
<a id="nodes"></a>
<section class="space--xxs text-center gray border-bottom" id="nodes-section" data-section="nodes">
<div class="container nodes">
Expand Down Expand Up @@ -628,22 +593,77 @@ gtag('config', 'UA-17656782-2');
</div>
</div>
</section>
<a id="faq"></a>
<section class="space--xxs" id="faq-section" data-section="faq">
<a id="benefits"></a>



<section class="space--xxs" id="why-section" data-section="why">
<div class="container">
<div class="row text-center to-animate">
<div class="col-xs-12 section-heading">
<h2><%= I18n.t(:'headings.why').strip %></h2>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<% I18n.t(:'content.why').each do |qa| %><%= ' ' * 28 %><p class="question to-animate"><%= qa['benefit'].strip %></p>
<%= qa['descrip'].map { |a| "<p class='to-animate'>#{a.strip}</p>" }.join("\n#{' ' * 28}") %><%= if qa != I18n.t(:'content.why').last; "\n"; end %><% end %>
</div>
</div>
</div>
</section>

<section class="space--xxs" id="merchant-benefits-section" data-section="benefits">
<div class="container">
<div class="row text-center to-animate">
<div class="col-xs-12 section-heading">
<h2><%= I18n.t(:'headings.faq').strip %></h2>
<h2><%= I18n.t(:'headings.benefits').strip %></h2>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<% I18n.t(:'content.faq').each do |qa| %><%= ' ' * 28 %><p class="question to-animate"><%= qa['question'].strip %></p>
<%= qa['answer'].map { |a| "<p class='to-animate'>#{a.strip}</p>" }.join("\n#{' ' * 28}") %><%= if qa != I18n.t(:'content.faq').last; "\n"; end %><% end %>
<% I18n.t(:'content.benefits').each do |qa| %><%= ' ' * 28 %><p class="question to-animate"><%= qa['benefit'].strip %></p>
<%= qa['descrip'].map { |a| "<p class='to-animate'>#{a.strip}</p>" }.join("\n#{' ' * 28}") %><%= if qa != I18n.t(:'content.benefits').last; "\n"; end %><% end %>
</div>
</div>
</div>
</section>

<section class="space--xxs" id="history-section" data-section="history">
<div class="container">
<div class="row text-center to-animate">
<div class='col-sm-12 section-heading '>
<h2><%= I18n.t(:'headings.history').strip %></h2>
</div>
</div>
<div class="row to-animate">
<div class="col-sm-12 col-md-12">
<%= I18n.t(:'content.history').map { |c| "<p>#{c.strip}</p>" }.join("\n#{' ' * 28}") %>
</div>
</div>
</div>
</section>


<section class="space--xxs" id="development-section" data-section="development">
<div class="container">
<div class="row text-center to-animate">
<div class='col-sm-12 section-heading '>
<h2><%= I18n.t(:'headings.development').strip %></h2>
</div>
</div>
<div class="row to-animate">
<div class="col-sm-12 col-md-12">
<%= I18n.t(:'content.development').map { |c| "<p>#{c.strip}</p>" }.join("\n#{' ' * 28}") %>
</div>
</div>
</div>
</section>





<footer class="space--xs footer-1">
<div class="container">
<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion translations/de.yml
Expand Up @@ -122,7 +122,7 @@ de:
- question: "Welches Entwicklerteam leitet Bitcoin Cash?"
answer:
- |
Im Gegensatz zur Situation bei Bitoin gibt es kein einzelnes Entwicklerteam für Bitcoin Cash, sondern es existieren mehrere unabhängige Entwicklerteams.
Im Gegensatz zur Situation bei Bitcoin gibt es kein einzelnes Entwicklerteam für Bitcoin Cash, sondern es existieren mehrere unabhängige Entwicklerteams.
- |
Die Dezentralisierung der Entwicklung und Softwareimplementierung ist ein notwendiger und wichtiger Schritt in die richtige Richtung.
- question: "Was ist der Ticker für Bitcoin Cash?"
Expand Down