From 542d517297fcb6f650897e640eee4a2e020b118a Mon Sep 17 00:00:00 2001 From: Saivann Date: Wed, 19 Jun 2013 00:29:52 -0400 Subject: [PATCH] Re-structure and simplify menu layout (fixes #198) Add translated page redirections using _redirects.yml Redirect for bitcoin-for-press to press Redirect bitcoin-for-enthusiasts to innovation Ignore page redirections in sitemap.rb plugin Move template plugin to template.rb instead of translate.rb Add a small documentation in the template plugin --- README.md | 2 +- _layouts/base.html | 46 ++-- _less/screen.less | 108 +++++++- _plugins/sitemap.rb | 21 +- _plugins/templates.rb | 33 ++- _redirects.yml | 14 ++ _templates/innovation.html | 27 ++ .../{bitcoin-for-press.html => press.html} | 2 +- _translations/en.yml | 237 +++++++++--------- css/ie.css | 57 +++-- js/main.js | 12 + 11 files changed, 392 insertions(+), 167 deletions(-) create mode 100644 _redirects.yml create mode 100755 _templates/innovation.html rename _templates/{bitcoin-for-press.html => press.html} (99%) diff --git a/README.md b/README.md index 6a58e30a..f37b26de 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ You can import all translations (complete and incomplete) from transifex using t tx set --auto-remote https://www.transifex.com/projects/p/bitcoinorg/ tx pull -a -s --skip -Then, you can overwrite any specific translation in the _translations folder by one of these files. You might also need to make sure that each .html files (including the layout) don't serve outdated content for those languages. You should also make sure that no urls or anchor has been changed. +Then, you can overwrite any specific translation in the _translations folder by one of these files. You might also need to make sure that each .html files (in _layouts, _templates and _redirects.yml) don't serve outdated content for those languages. You should also make sure that no urls or anchor has been changed by translators. ### Update source english strings diff --git a/_layouts/base.html b/_layouts/base.html index c82863c0..14bd56d8 100644 --- a/_layouts/base.html +++ b/_layouts/base.html @@ -4,7 +4,6 @@ menufor: - id: bitcoin-for-businesses - id: bitcoin-for-developers - id: bitcoin-for-enthusiasts -- id: bitcoin-for-press menu: - id: how-it-works - id: vocabulary @@ -53,25 +52,12 @@ menu: + + {% case page.lang %} + {% when 'ar' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' %} + {% else %} + + {% endcase %}
diff --git a/_less/screen.less b/_less/screen.less index ed693f08..dd5f90f9 100644 --- a/_less/screen.less +++ b/_less/screen.less @@ -149,7 +149,7 @@ li p{ } #head{ - margin:22px 0px 10px 0px; + margin:30px 0px 30px 0px; } #head>div{ max-width:1050px; @@ -183,7 +183,7 @@ li p{ #lang{ position:absolute; right:5px; - top:0px; + top:5px; height:30px; border-left:2px solid transparent; border-right:2px solid transparent; @@ -238,6 +238,82 @@ li p{ display:none; } +#menusimple{ + margin:0px; + position:absolute; + top:8px; + left:250px; + padding:0px; + height:35px; +} +#menusimple li{ + list-style:none; + display:inline-block; + position:relative; + padding:0px; + margin:0px 6px; + border-radius:5px; + -webkit-border-radius:5px; +} +#menusimple li:first-child,#menusimple li:first-child+li{ + border-bottom-left-radius:0px; + border-bottom-right-radius:0px; + -webkit-border-bottom-left-radius:0px; + -webkit-border-bottom-right-radius:0px; +} +#menusimple li a{ + font-family:'Ubuntu', sans-serif; + font-weight:300; + font-size:110%; + display:block; + text-decoration:none; + padding:6px 10px 3px 10px; + color:#2c6fad; + white-space:nowrap; +} +#menusimple li:hover, +#menusimple li.active{ + background-color:#2c6fad; +} +#menusimple li:hover a, +#menusimple li.active a{ + color:#fff; +} +#menusimple li ul{ + display:none; + position:absolute; + background-color:#fff; + border:1px solid #2c6fad; + min-width:120%; + padding:5px 0px; + margin:0px; +} +#menusimple li:hover ul{ + display:block; +} +#menusimple li ul li{ + padding:0px; + margin:0px; + display:block; + width:100%; + border-radius:0px; + -webkit-border-radius:0px; +} +#menusimple li ul li a, +#menusimple li ul li a:active, +#menusimple li ul li a:visited, +#menusimple li ul li a:link{ + display:block; + color:#2c6fad; + font-size:100%; + width:100%; + padding:6px 10px 3px 10px; +} +#menusimple li ul li:hover a, +#menusimple li ul li.active a{ + color:#fff; +} + #menufor{ margin:0px; position:absolute; @@ -275,7 +351,7 @@ li p{ #menu{ padding:0px; - margin:12px auto 0px 32px; + margin:12px auto -12px 32px; } #menu li{ list-style:none; @@ -333,7 +409,7 @@ li p{ #choose a,#before a,#support a{ font-family:'Ubuntu', sans-serif; - font-weight:700; + font-weight:300; padding:10px 8px 10px 48px; color:#fff; display:block; @@ -823,9 +899,6 @@ li p{ #head{ margin:0px; } - #head>div{ - overflow:hidden; - } #langselect{ background-color:transparent; border:0px; @@ -846,9 +919,28 @@ li p{ background-repeat:no-repeat; background-position:center center; } - #lang,#menufor,#menu{ + #lang, + #menufor, + #menu, + #menusimple{ display:none; } + #menusimple{ + position:static; + bottom:0px; + margin:0px 0px 10px 0px; + height:auto; + } + #menusimple li a{ + padding:6px 6px 3px 6px; + } + #menusimple li{ + margin:6px; + position:static; + } + #menusimple li ul{ + min-width:140px; + } #menufor{ position:static; bottom:0px; diff --git a/_plugins/sitemap.rb b/_plugins/sitemap.rb index 622736b0..079e6141 100644 --- a/_plugins/sitemap.rb +++ b/_plugins/sitemap.rb @@ -19,6 +19,13 @@ module Jekyll lang=file.split('.')[0] locs[lang] = YAML.load_file('_translations/'+file)[lang] end + #Load redirections + redirects = YAML.load_file('_redirects.yml')['redirects'] + rredirects = {} + redirects.each do |id,value| + dst = value['dst'] + rredirects[dst] = id + end #Create destination directory if does not exists if !File.directory?(site.dest) Dir.mkdir(site.dest) @@ -31,15 +38,25 @@ module Jekyll #Add translated pages with their alternative in each languages locs['en']['url'].each do |id,value| locs.each do |lang,value| + #Don't add a page if their url is not translated or if they are a redirection next if locs[lang]['url'][id].nil? or locs[lang]['url'][id] == '' + next if redirects.has_key?(id) and ( !redirects[id].has_key?('except') or !redirects[id]['except'].has_key?(lang) ) sitemap.puts '' sitemap.puts ' http://bitcoin.org/'+lang+'/'+CGI::escape(locs[lang]['url'][id])+'' locs.each do |altlang,value| - next if locs[altlang]['url'][id].nil? or locs[altlang]['url'][id] == '' or altlang == lang + #Find appropriate alternative page even with redirections that are not fully deployed in translations + altid = id + if redirects.has_key?(id) and redirects[id].has_key?('except') and !redirects[id]['except'].has_key?(altlang) + altid = redirects[id]['dst'] + end + if rredirects.has_key?(id) + altid = rredirects[id] + end + next if locs[altlang]['url'][altid].nil? or locs[altlang]['url'][altid] == '' or altlang == lang sitemap.puts ' ' + sitemap.puts ' href="http://bitcoin.org/'+altlang+'/'+CGI::escape(locs[altlang]['url'][altid])+'" />' end sitemap.puts '' end diff --git a/_plugins/templates.rb b/_plugins/templates.rb index 33b1ee30..11ebb623 100644 --- a/_plugins/templates.rb +++ b/_plugins/templates.rb @@ -1,9 +1,13 @@ require 'yaml' +require 'cgi' #This plugin generates all translated pages using templates in #_templates. The final file name of each page is defined in #the url section of each translations in _translations. +#If a page is defined in _redirects.yml, this plugin will +#generate a redirection instead of using the template. + module Jekyll class TranslatePage < Page @@ -18,6 +22,12 @@ module Jekyll end end + class TranslateRedirect < StaticFile + def write(dest) + # do nothing + end + end + class TranslatePageGenerator < Generator def generate(site) #load translations files @@ -27,11 +37,14 @@ module Jekyll lang = file.split('.')[0] locs[lang] = YAML.load_file("_translations/"+file)[lang] end - #generate each translated page based on templates + #Load redirections + redirects = YAML.load_file('_redirects.yml')['redirects'] + #Generate each translated page based on templates locs.each do |lang,value| Dir.foreach('_templates') do |file| next if file == '.' or file == '..' id = file.split('.')[0] + next if redirects.has_key?(id) and ( !redirects[id].has_key?('except') or !redirects[id]['except'].has_key?(lang) ) dst = locs[lang]['url'][id] next if dst.nil? src = file @@ -39,6 +52,24 @@ module Jekyll site.pages << TranslatePage.new(site, site.source, lang, '_templates', src, lang, dst) end site.pages << TranslatePage.new(site, site.source, lang, '_templates', 'index.html', lang, 'index.html') + #Generate each redirection page based on _redirects.yml + redirects.each do |id,redirect| + next if redirect.has_key?('except') and redirect['except'].has_key?(lang) + src = locs[lang]['url'][id] + next if src.nil? + src = src+'.html' + dst = redirect['dst'] + dst = locs[lang]['url'][dst] + next if dst.nil? + File.open(site.dest + '/' + lang + '/' + src, 'w+') do |file| + file.puts '' + file.puts '' + file.puts '' + file.puts '' + file.puts '' + end + site.static_files << TranslateRedirect.new(site, site.source, '', lang+'/'+src) + end end end end diff --git a/_redirects.yml b/_redirects.yml new file mode 100644 index 00000000..8b620463 --- /dev/null +++ b/_redirects.yml @@ -0,0 +1,14 @@ +redirects: + bitcoin-for-enthusiasts: + dst: innovation + except: + ar: true + es: true + fa: true + fr: true + it: true + nl: true + pl: true + ru: true + bitcoin-for-press: + dst: press diff --git a/_templates/innovation.html b/_templates/innovation.html new file mode 100755 index 00000000..5ce77a25 --- /dev/null +++ b/_templates/innovation.html @@ -0,0 +1,27 @@ +--- +layout: base +id: innovation +--- +

{% translate pagetitle %}

+

{% translate summary %}

+ +

Icon{% translate consensus %}

+

{% translate consensustext %}

+ +

Icon{% translate network %}

+

{% translate networktext %}

+ +

Icon{% translate freedom %}

+

{% translate freedomtext %}

+ +

Icon{% translate global %}

+

{% translate globaltext %}

+ +

Icon{% translate transparency %}

+

{% translate transparencytext %}

+ +

Icon{% translate secure %}

+

{% translate securetext %}

+ +

Icon{% translate trust %}

+

{% translate trusttext %}

diff --git a/_templates/bitcoin-for-press.html b/_templates/press.html similarity index 99% rename from _templates/bitcoin-for-press.html rename to _templates/press.html index 04a5a7d5..5be10e97 100755 --- a/_templates/bitcoin-for-press.html +++ b/_templates/press.html @@ -1,6 +1,6 @@ --- layout: base -id: bitcoin-for-press +id: press mode: wide ---

{% translate pagetitle %}

diff --git a/_translations/en.yml b/_translations/en.yml index d5a96474..110a14e6 100644 --- a/_translations/en.yml +++ b/_translations/en.yml @@ -65,24 +65,6 @@ en: instanttext: "A Bitcoin transaction is usually received within a few seconds and confirmed within 10 minutes. Before that, the transaction can be considered authentic but reversible. If you really require instant transactions, it is recommended that you ask for a small transaction fee and use a double-spend detection system." micro: "Cheap micro payments" microtext: "Bitcoin offers the lowest payment processing fees for any type of transaction, including micro-payments. This means that it can also be used to design and implement new creative online services that could not exist before only because of financial limitations." - bitcoin-for-enthusiasts: - title: "Bitcoin for Enthusiasts - Bitcoin" - pagetitle: "Bitcoin for Enthusiasts" - summary: "Bitcoin is changing the world of finance, by giving you control over your money." - consensus: "Bitcoin is a worldwide consensus" - consensustext: "Because of its decentralized, open-source nature, Bitcoin is the first payment network that is powered by its users with no central authority. Even Bitcoin developers have no power to force updates in the protocol if enough users, developers, or miners disagree. You have exclusive control over your money." - network: "Digital money made for the Internet" - networktext: "Bitcoin was born from the Internet, bringing the freedom of physical money to the virtual world while making payments easier and more secure in both worlds. Bitcoin can offer an alternative to previous cumbersome and costly systems, and it can increase online business access to developing countries." - freedom: "Protecting individual rights and freedom" - freedomtext: "Bitcoin allows people to securely store and exchange value on a network that cannot be seized, manipulated, or stopped by any organization or individual. It gives many powerful tools to the people so that it is easier to protect individual rights against various levels of corruption." - global: "The first neutral global currency" - globaltext: "Not often in our history has money been disconnected from any political influence or national economy. Could Bitcoin be the first global currency to cross all barriers between nations, politics, and cultures for the benefit of the common good? It certainly looks like it might happen. One for all and all for one!" - transparency: "Promoting transparency" - transparencytext: "All Bitcoin transactions are public, but the owners or recipients of these transactions are not. Organizations can choose to reveal their ownership of some Bitcoin addresses to their members, allowing them to implement high levels of transparency." - secure: "Making money more secure" - securetext: "Thanks to a clever use of strict cryptographic rules, Bitcoin provides an amazing list of security features. Not only are bitcoins impossible to counterfeit or spoof, but the protocol is also built to be very resistant against an impressive list of attacks, including distributed denial of service." - trust: "Solving issues with trust in banks" - trusttext: "Bitcoin offers solutions to many of the trust problems that plague banks thanks to selective accounting transparency, signature proofs, and irreversible transactions. It also increases the risks for crooked bankers: no bitcoins can be created to save them from their own mistakes at the expense of the people." bitcoin-for-individuals: title: "Bitcoin for Individuals - Bitcoin" pagetitle: "Bitcoin for Individuals" @@ -99,102 +81,6 @@ en: lowfeetext: "Bitcoin allows you to send and receive payments at very low cost. Except for special cases like micro-payments, there is no enforced fee. It is however recommended to pay a higher voluntary fee for faster confirmation of your transaction and to remunerate the people who operate the Bitcoin network." anonymous: "Pseudo-anonymous online payments" anonymoustext: "Anonymous payments are a part of our everyday lives - most real life purchases are done without the requirement to provide proper identification. Bitcoin now introduces the same freedom to the online world. It allows you to buy services or make donations without the hassle of being passed under x-ray. However, you should note that full anonymity requires special efforts." - bitcoin-for-press: - title: "Bitcoin Press Center - Bitcoin" - pagetitle: "Bitcoin Press Center" - summary: "Find potential interviewees and high quality press materials." - volunteer: "Contact Potential Interviewees" - volunteerdiscl: "Bitcoin has no official organization, individuals with authority, nor spokespeople. Read more" - volunteerdiscltext: "The Bitcoin project is open-source and, likewise, no one can speak with authority for Bitcoin. The Bitcoin community contains individuals who hold a wide spectrum of business experience or involvement, political ideas, personal opinions, technical competency, and style. This list of potential interviewees has been curated by Bitcoin community members with the intent to include individuals possessing a wide spectrum of experience, ideas, and geography. The individuals listed have been involved in the Bitcoin community for a significant period making tangible contributions, have demonstrated competence and professionalism when discussing Bitcoin, are flexible and willing to assist members of the press in both objective and persuasive ways, and are generally respected by other members of the Bitcoin community. However, an individual's appearance here should not be misconstrued as a general endorsement, either by the Bitcoin community or any particular individuals with, regards to potential interviewees and any businesses they may operate, nor any political or personal ideas they may expound, including prognostications about Bitcoin or the price or any other topic." - faq: "Facts, FAQs and Myths" - faqwhat: "What is Bitcoin?" - faqwhattxt: "Bitcoin is an Internet protocol and open-source software platform that enables a new, completely digital and decentralized currency called bitcoins (BTC)." - faqacquire: "How does one acquire bitcoins?" - faqacquiretxt1: "Accept bitcoins as payment for goods or services." - faqacquiretxt2: "Buy bitcoins at one of the Bitcoin Exchanges." - faqacquiretxt3: "Trade traditional currency for bitcoins using one of several services." - faqacquiretxt4: "Trade traditional currency for bitcoins face to face using a local directory." - faqacquiretxt5: "Earn bitcoins through competitive mining." - faqhow: "How does Bitcoin work?" - faqhowtxt: "Bitcoin is a triple entry bookkeeping system where a public ledger of every Bitcoin transaction is validated and distributed in real-time through the peer-to-peer Bitcoin network. The whole network is secured and regulated through cryptography. Anyone can process transactions using computer processing power, often with specialized hardware, and potentially earn a reward in bitcoins for this service. This is often called \"bitcoin mining\"." - faqmining: "How does Bitcoin mining work?" - faqminingtxt1: "Bitcoin miners perform a function that is analogous to gold mining, but very different. While gold miners deal with rocks, Bitcoin miners deal with data." - faqminingtxt2: "Bitcoin mining is the mechanism that keeps everyone in the system synchronized together. To mine, computers that take part listen for transactions (ledger transfer announcements) broadcast through the peer-to-peer network. The miners process and confirm these transactions by including them in a block and adding the block to the block chain." - faqminingtxt3: "Bitcoin miners perform this labor because miners that solve a block earn (1) any transaction fees paid by customers for faster transaction processing and (2) newly created coins, issued into existence according to a fixed formula." - faqminingtxt4: "Bitcoin mining is a very competitive market. Bitcoin miners are neither able to increase their own block reward beyond the rules in the protocol nor process fraudulent transactions that could corrupt the Bitcoin network. Because anyone can become a Bitcoin miner and the Bitcoin network is the largest distributed computer network in the world, it is extremely improbable that a malicious Bitcoin miner could compromise the block chain. Thus, Bitcoin mining is used to protect the neutrality and the consensus of the network, even if not all Bitcoin miners can be trusted." - faqdifficult: "How difficult is it to make a Bitcoin payment?" - faqdifficulttxt: "Bitcoin payments are easier to make than any existing banking or credit card process. Payments are made from a wallet application, either on your computer or smartphone, by entering the recipient's address. This can be done by scanning a QR code, touching two phones together with NFC technology, or copying and pasting, entering the amount, and pressing send." - faqadvantage: "What are the advantages of Bitcoin?" - faqadvantagetxt1: "Unrestrained payments - It is possible to send and receive any amount of money anywhere in the world at any time. No bank holidays. No borders. No imposed limits." - faqadvantagetxt2: "Low or zero fees - Bitcoin payments are currently processed with either no fees or extremely small fees. Users may include fees with transactions to receive priority processing, which results in faster confirmation of transactions by the network. Additionally, merchant processors exist to assist merchants in processing transactions, converting bitcoins to fiat currencies with daily direct deposits to bank accounts, and to provide these services for much lower fees and less risk than with PayPal or credit card networks." - faqadvantagetxt3: "Fewer fees and risks for merchants - Bitcoin transactions are secure, irreversible, and do not contain customers’ sensitive or personal information. This protects merchants from losses caused by fraud or fraudulent chargebacks and there is no need for PCI compliance. Consequently, merchants can easily expand to new markets where either credit cards are not available or fraud rates are unacceptably high. The net results are lower fees, larger markets, and fewer administrative costs." - faqadvantagetxt4: "More protection for consumers - Bitcoin payments are made without needing the personal information tied to the transaction. This offers strong protection against identity theft. Users are in full control of their transactions, therefore it is impossible for merchants to force unwanted or unnoticed charges - this can happen with ACH debits, debit cards, PayPal, and credit cards." - faqadvantagetxt5: "Transparency - All information concerning the Bitcoin money supply is readily available on the block chain for anybody to see, verify, measure, and use in real-time." - faqadvantagetxt6: "Distributed - The Bitcoin ledger, commonly called the block chain, is distributed throughout the world and stored by Bitcoin miners. This adds a level of resiliency and redundancy that is unmatched in the payments space and a payment processing network. For example, the Federal Reserve does all their payment processing at 100 Orchard Street, East Rutherford, New Jersey and it has back-up systems that can be brought online within 60-90 minutes at the Federal Reserve Banks of Richmond and Dallas. If those three centers were compromised or destroyed then the entire monetary system of the Federal Reserve would be greatly impaired and probably completely non-functional." - faqdisadvantage: "What are the disadvantages of Bitcoin?" - faqdisadvantagetxt1: "Not widely accepted - Many people are still unaware of Bitcoin. Every day more businesses accept bitcoins because they want the advantages of doing so, but the list remains small and still needs to grow in order to gain improved usefulness through networking effects." - faqdisadvantagetxt2: "Volatile - The total value of bitcoins in circulation and the number of businesses using Bitcoin are still very small compared to what they could be. Therefore, relatively small movements in the market can significantly affect the price. In theory, this volatility will persist as the market scrambles to determine a bitcoin’s price and as this new currency matures. Never before has the world seen a start-up currency, so it is truly difficult (and exciting) to imagine how it will play out." - faqdisadvantagetxt3: "For geeks - Many of the user tools are still not ready for everyone and users still need to protect their money by themselves, or trust young online wallet services that still don’t offer any insurance against theft or other bad events. New tools and services are constantly being developed to make Bitcoin more accessible to the masses. From now, Bitcoin is a bright new invention that starts to meet the real world." - faqsecure: "Is Bitcoin secure?" - faqsecuretxt: "The Bitcoin technology - the protocol and the cryptography - has a strong security track record. Bitcoin's vulnerability is in user error. Bitcoin wallet files that store the necessary private keys can be accidentally deleted, lost, stolen, or compromised. Consequently, users need to employ security practices to protect their money or use service providers that offer good levels of security and insurance. As more people have adopted Bitcoin, more service providers have appeared to make it easier, safer, and more convenient to use and safely secure bitcoins. Bitcoins are not covered by insurance schemes or depositor insurance like the FDIC, but users' wallets could be with a service provider that offers that provision." - faqlegal: "Is Bitcoin legal?" - faqlegaltxt1: "To the best of our knowledge, Bitcoin has not been made illegal by legislation in any jurisdiction." - faqlegaltxt2: "Additionally, regulators from various jurisdictions have taken steps to provide individuals and businesses with rules on how to integrate this new technology into businesses and other activities. For example, the United States' FinCEN has issued non-binding and non-determinative guidance on how it characterizes certain activities involving virtual currencies." - faqlegalresource: "Useful resources:" - faqtax: "What about Bitcoin and taxes?" - faqtaxtxt: "Bitcoin is not a fiat currency with legal tender status in any jurisdiction, but often tax liability accrues regardless of the medium used. There is a wide variety of legislation in many different jurisdictions which could cause income, sales, payroll, capital gains, or some other form of tax liability to arise with Bitcoin. Because all transactions are public record and stored permanently, it is a bad idea to attempt to use Bitcoin to evade taxes." - faqillegal: "Is Bitcoin useful for illegal activities?" - faqillegaltxt1: "Bitcoin is a censorship-resistant technology. This means transactions cannot be stopped. However, it is not anonymous, and the use of Bitcoin leaves extensive and permanent public records." - faqillegaltxt2: "The Federal Bureau of Investigation concluded on page two of the report Bitcoin Virtual Currency: Unique Features Present Distinct Challenges for Deterring Illicit Activity that ‘The FBI assesses with low confidence, based on current user and vendor acceptance, that malicious actors will exploit Bitcoin to launder money.’" - faqillegaltxt3: "Bitcoin prevents many criminals from being able to engage in illegal behavior. Because of the way Bitcoin works, customers do not need to reveal personal information to merchants. This decreases the amount of data available to illegal actors and acts as significant protection against identity theft, credit card fraud, and several other attack vectors. Bitcoin transactions are irreversible which prevents chargebacks or frauds, and transaction traceability means it is impossible to counterfeit bitcoins." - faqillegaltxt4: "Additionally, law enforcement authorities have already begun using sophisticated techniques to analyze Bitcoin transactions in their criminal investigations. So it may be that the Bitcoin software is not very attractive for criminal enterprises." - faqbubble: "Is Bitcoin a bubble?" - faqbubbletxt1: "A fast rise in price does not constitute a bubble. An artificial over-valuation that will suddenly downward correct constitutes a bubble." - faqbubbletxt2: "Choices based on individual human action by hundreds of thousands of market participants is the cause for Bitcoin's price to fluctuate as the market seeks price discovery. Some reasons for this change in sentiment may be a loss of confidence in the currency, a large difference between value and price not based on the fundamentals of the Bitcoin economy, excessive press coverage stimulating speculative demand, fear of uncertainty, and just old-fashioned irrational exuberance and greed." - faqjune: "Why did Bitcoin’s price crash in June 2011?" - faqjunetxt: "Choices based on individual human action by hundreds of thousands of market participants was the cause for Bitcoin's price crash in June 2011. Some reasons for this change in sentiment may be a loss of confidence in the currency, the largest exchange, MtGox, having a security incident, a large difference between value and price from the large amount of press coverage which stimulated speculative demand not based on the fundamentals of the Bitcoin economy, and just old fashioned irrational exuberance and greed." - faqprice: "What determines Bitcoin’s price?" - faqpricetxt: "The price of bitcoins is determined by supply and demand. The supply is fixed at 21 million because of the rules of the Bitcoin protocol. There are two main types of demand: speculative and transactional. As more people use bitcoins for transactions, demand will increase and so will the price of bitcoins. Likewise, as more people speculate on the future of Bitcoin by saving or hoarding bitcoins, this increases the demand for bitcoins and the price. The result is an increase of network effects and increased adoption." - faqponzi: "Is Bitcoin a Ponzi scheme?" - faqponzitxt1: "A Ponzi scheme is a fraudulent investment operation that pays returns to its investors from their own money, or the money paid by subsequent investors, instead of from profit earned by the individual or organization running the operation." - faqponzitxt2: "Bitcoin is an open-source software project with no central authority and consequently no one is in a position to make fraudulent representations about investment returns. Like other major currencies such as gold, United States dollars, Euros, Yen, etc. there is no guaranteed purchasing power and the exchange rate freely floats. This can lead to volatility where owners of bitcoins can make or lose value." - faqponzitxt3: "Bitcoin is an innovative currency and payment system and not a Ponzi scheme. However, since Bitcoin transactions are irreversible it can be attractive for a Ponzi scam operator, and there have been several notable Ponzi scams which have failed and did use Bitcoin." - faqsatoshi: "Who is Satoshi Nakamoto, the creator of Bitcoin?" - faqsatoshitxt: "The creator of Bitcoin never revealed his real identity and simply left his invention to the world. Satoshi created the first Bitcoin implementation and remained active in the development for a few years before choosing to leave the project. Meanwhile, a strong community of developers, miners, users, and supporters have spontaneously emerged to continue the project." - faqworthless: "Can bitcoins become worthless?" - faqworthlesstxt1: "Yes. There are thousands of currencies in the fiat currency graveyard as a result of hyperinflation, such as the German Mark, United States gold and silver certificates, Argentine Peso, and, more recently, the Zimbabwe Dollar. Unlike a physical currency, such as gold, Bitcoin is a completely virtual currency. While Bitcoin was designed to be censorship-resistant, to enable it to continue existing if there were to be some type of technological problem of significant severity, it is still possible, although more unlikely every day, that Bitcoin could stop working as intended. Then all bitcoins could become worthless." - faqworthlesstxt2: "Being an open-source project allows anyone to contribute software code and those with value stored in bitcoins have a strong financial incentive in making sure Bitcoin continues to exist. For example, there has been only one major security incident in the protocol and it was fixed in August 2010. While there have been no major incidents since that does not preclude the possibility that there could be others. There was an unanticipated \"hard fork\" on 12 March 2013 which was quickly resolved with minimal impact on Bitcoin users. But the longer Bitcoin exists without a major security incident, or other unanticipated software bugs, then the more likely market participants will gain greater confidence in Bitcoin." - faqworthlesstxt3: "As a payment tool bitcoins are like gold because bitcoins are no-one’s liability, and Bitcoin transactions are not subject to the same counterparty risk like traditional banks engaged in fractional reserve banking. Thus, using Bitcoin can help protect merchants and users from bank failures and Cyprus-style problems. Bitcoin empowers its users to have exclusive control of their funds." - faqvirtual: "Is Bitcoin virtual and immaterial?" - faqvirtualtxt1: "Bitcoin is as virtual as the credit cards and online banking networks that people are using every day. They are both a balance stored in a network." - faqvirtualtxt2: "While Bitcoin is better suited for use on the Internet than other payment systems, Bitcoin can also be used to pay in physical stores, just like real money." - faqvirtualtxt3: "Bitcoin users have exclusive control over their funds. Bitcoin balances are stored in an extremely large, decentralized distributed computer network and they cannot be fraudulently altered by anybody. In other terms, bitcoins cannot vanish or be seized by any means. But they can be stolen or lost due to users' mistakes." - faqtrust: "Why do people trust Bitcoin?" - faqtrusttxt1: "Bitcoin is open-source software, which means that everyone has access to all of the source code all of the time. The rules of the system are embedded into the source code and the participants all impose those rules on each other simultaneously. To change the system would require everyone to switch to a new version of the software that used different rules, and because Bitcoin users are spread across the world, it is outside the power of any single jurisdictional authority to mandate such a change." - faqtrusttxt2: "Cryptography is well established and a fundamental technology used in online banking. But unlike fiat currency with central banks and online banking with heavily peer-reviewed cryptographic ciphers, Bitcoin has been able to construct a currency and payment network that removes the need to trust a central authority." - faqtrusttxt3: "Consequently, many people trust Bitcoin because it requires absolutely no trust at all." - faqanonymous: "Bitcoin is an anonymous currency?" - faqanonymoustxt1: "Bitcoin is a censorship-resistant technology. It is not anonymous but it is pseudo-anonymous. The use of Bitcoin leaves extensive and permanent public records for each transaction. All transactions can be traced since their origin and IP addresses are permanently logged by organizations listening on the network. All of this information can easily be accessed by competitors, law enforcement, or anyone else." - faqanonymoustxt2: "However, there are a few technically difficult and costly methods that can enable users to interact with Bitcoin in very private ways. The Federal Bureau of Investigation concluded on page two of the report Bitcoin Virtual Currency: Unique Features Present Distinct Challenges for Deterring Illicit Activity that ‘The FBI assesses with low confidence, based on current user and vendor acceptance, that malicious actors will exploit Bitcoin to launder money.’" - faqanonymoustxt3: "Transactions are difficult to conceal from best practices in network data analysis, data mining, and forensic accounting techniques. In most transactions, personal information must be revealed to receive the goods or services from an order. This makes keeping full anonymity with Bitcoin transactions very difficult or impossible." - faqmore: "For more FAQ on Bitcoin, please visit the Bitcoin Wiki." - materialvideo: "Videos" - materialvideoformat: "More formats and languages" - materialvideoyoutube: "Video on Youtube" - materialvideomore: "More videos" - materialpicture: "Pictures" - materialpicturemore: "more pictures" - materialquote: "Quotes" - materialquotemore: "More quotes" - quotesatoshi: "“With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless.”Satoshi Nakamoto, Bitcoin developer" - quotetonygallippi: "“Bitcoin is Money Over Internet Protocol.”Tony Gallippi, BitInstant CEO" - quotedankaminsky: "“Entire classes of bugs are missing.”Dan Kaminsky, Security Researcher" - quotechrisdixon: "“There are 3 eras of currency: Commodity based, politically based, and now, math based.”Chris Dixon, Technology Investor" - quotejeremyliew: "“The potential for disruption is enormous.”Jeremy Liew, Lightspeed Venture Partners" - quotewencescasares: "“Right now Bitcoin feels like the Internet before the browser.”Wences Casares, Technology Entrepreneur" - quotetylerwinklevoss: "“We have elected to put our money and faith in a mathematical framework that is free of politics and human error.”Tyler Winklevoss, Entrepreneur" - quotemaxkeiser: "“It's the cheapest way to
move money around.”
Max Keiser, Journalist & TV Host" - presscoverage: "Press coverage" community: title: "Community - Bitcoin" pagetitle: "Bitcoin communities" @@ -302,6 +188,120 @@ en: list4: "And much more" desc: "Bitcoin uses peer-to-peer technology to operate with no central authority; managing transactions and the issuing of bitcoins is carried out collectively by the network. Through many of its unique properties, Bitcoin allows exciting uses that could not be covered by any previous payment systems." license: "The software is a community-driven, free, open-source project released under the MIT license." + innovation: + title: "Innovation - Bitcoin" + pagetitle: "Why Bitcoin is changing the world" + summary: "Bitcoin is a major innovation that is giving you control over your money. Just like these inventions that seemed impossible until their time has come, Bitcoin is real and it might change our everyday lifes. A wide range of new exciting possibilities are still to be discovered in years to come." + consensus: "Bitcoin is a worldwide consensus" + consensustext: "Because of its decentralized, open-source nature, Bitcoin is the first payment network that is powered by its users with no central authority. Even Bitcoin developers have no power to force updates in the protocol if enough users, developers, or miners disagree. You have exclusive control over your money." + network: "Digital money made for the Internet" + networktext: "Bitcoin was born from the Internet, bringing the freedom of physical money to the virtual world while making payments easier and more secure in both worlds. Bitcoin can offer an alternative to previous cumbersome and costly systems, and it can increase online business access to developing countries." + freedom: "Protecting individual rights and freedom" + freedomtext: "Bitcoin allows people to securely store and exchange value on a network that cannot be seized, manipulated, or stopped by any organization or individual. It gives many powerful tools to the people so that it is easier to protect individual rights against various levels of corruption." + global: "The first neutral global currency" + globaltext: "Not often in our history has money been disconnected from any political influence or national economy. Could Bitcoin be the first global currency to cross all barriers between nations, politics, and cultures for the benefit of the common good? It certainly looks like it might happen. One for all and all for one!" + transparency: "Promoting transparency" + transparencytext: "All Bitcoin transactions are public, but the owners or recipients of these transactions are not. Organizations can choose to reveal their ownership of some Bitcoin addresses to their members, allowing them to implement high levels of transparency." + secure: "Making money more secure" + securetext: "Thanks to a clever use of strict cryptographic rules, Bitcoin provides an amazing list of security features. Not only are bitcoins impossible to counterfeit or spoof, but the protocol is also built to be very resistant against an impressive list of attacks, including distributed denial of service." + trust: "Solving issues with trust in banks" + trusttext: "Bitcoin offers solutions to many of the trust problems that plague banks thanks to selective accounting transparency, signature proofs, and irreversible transactions. It also increases the risks for crooked bankers: no bitcoins can be created to save them from their own mistakes at the expense of the people." + press: + title: "Bitcoin Press Center - Bitcoin" + pagetitle: "Bitcoin Press Center" + summary: "Find potential interviewees and high quality press materials." + volunteer: "Contact Potential Interviewees" + volunteerdiscl: "Bitcoin has no official organization, individuals with authority, nor spokespeople. Read more" + volunteerdiscltext: "The Bitcoin project is open-source and, likewise, no one can speak with authority for Bitcoin. The Bitcoin community contains individuals who hold a wide spectrum of business experience or involvement, political ideas, personal opinions, technical competency, and style. This list of potential interviewees has been curated by Bitcoin community members with the intent to include individuals possessing a wide spectrum of experience, ideas, and geography. The individuals listed have been involved in the Bitcoin community for a significant period making tangible contributions, have demonstrated competence and professionalism when discussing Bitcoin, are flexible and willing to assist members of the press in both objective and persuasive ways, and are generally respected by other members of the Bitcoin community. However, an individual's appearance here should not be misconstrued as a general endorsement, either by the Bitcoin community or any particular individuals with, regards to potential interviewees and any businesses they may operate, nor any political or personal ideas they may expound, including prognostications about Bitcoin or the price or any other topic." + faq: "Facts, FAQs and Myths" + faqwhat: "What is Bitcoin?" + faqwhattxt: "Bitcoin is an Internet protocol and open-source software platform that enables a new, completely digital and decentralized currency called bitcoins (BTC)." + faqacquire: "How does one acquire bitcoins?" + faqacquiretxt1: "Accept bitcoins as payment for goods or services." + faqacquiretxt2: "Buy bitcoins at one of the Bitcoin Exchanges." + faqacquiretxt3: "Trade traditional currency for bitcoins using one of several services." + faqacquiretxt4: "Trade traditional currency for bitcoins face to face using a local directory." + faqacquiretxt5: "Earn bitcoins through competitive mining." + faqhow: "How does Bitcoin work?" + faqhowtxt: "Bitcoin is a triple entry bookkeeping system where a public ledger of every Bitcoin transaction is validated and distributed in real-time through the peer-to-peer Bitcoin network. The whole network is secured and regulated through cryptography. Anyone can process transactions using computer processing power, often with specialized hardware, and potentially earn a reward in bitcoins for this service. This is often called \"bitcoin mining\"." + faqmining: "How does Bitcoin mining work?" + faqminingtxt1: "Bitcoin miners perform a function that is analogous to gold mining, but very different. While gold miners deal with rocks, Bitcoin miners deal with data." + faqminingtxt2: "Bitcoin mining is the mechanism that keeps everyone in the system synchronized together. To mine, computers that take part listen for transactions (ledger transfer announcements) broadcast through the peer-to-peer network. The miners process and confirm these transactions by including them in a block and adding the block to the block chain." + faqminingtxt3: "Bitcoin miners perform this labor because miners that solve a block earn (1) any transaction fees paid by customers for faster transaction processing and (2) newly created coins, issued into existence according to a fixed formula." + faqminingtxt4: "Bitcoin mining is a very competitive market. Bitcoin miners are neither able to increase their own block reward beyond the rules in the protocol nor process fraudulent transactions that could corrupt the Bitcoin network. Because anyone can become a Bitcoin miner and the Bitcoin network is the largest distributed computer network in the world, it is extremely improbable that a malicious Bitcoin miner could compromise the block chain. Thus, Bitcoin mining is used to protect the neutrality and the consensus of the network, even if not all Bitcoin miners can be trusted." + faqdifficult: "How difficult is it to make a Bitcoin payment?" + faqdifficulttxt: "Bitcoin payments are easier to make than any existing banking or credit card process. Payments are made from a wallet application, either on your computer or smartphone, by entering the recipient's address. This can be done by scanning a QR code, touching two phones together with NFC technology, or copying and pasting, entering the amount, and pressing send." + faqadvantage: "What are the advantages of Bitcoin?" + faqadvantagetxt1: "Unrestrained payments - It is possible to send and receive any amount of money anywhere in the world at any time. No bank holidays. No borders. No imposed limits." + faqadvantagetxt2: "Low or zero fees - Bitcoin payments are currently processed with either no fees or extremely small fees. Users may include fees with transactions to receive priority processing, which results in faster confirmation of transactions by the network. Additionally, merchant processors exist to assist merchants in processing transactions, converting bitcoins to fiat currencies with daily direct deposits to bank accounts, and to provide these services for much lower fees and less risk than with PayPal or credit card networks." + faqadvantagetxt3: "Fewer fees and risks for merchants - Bitcoin transactions are secure, irreversible, and do not contain customers’ sensitive or personal information. This protects merchants from losses caused by fraud or fraudulent chargebacks and there is no need for PCI compliance. Consequently, merchants can easily expand to new markets where either credit cards are not available or fraud rates are unacceptably high. The net results are lower fees, larger markets, and fewer administrative costs." + faqadvantagetxt4: "More protection for consumers - Bitcoin payments are made without needing the personal information tied to the transaction. This offers strong protection against identity theft. Users are in full control of their transactions, therefore it is impossible for merchants to force unwanted or unnoticed charges - this can happen with ACH debits, debit cards, PayPal, and credit cards." + faqadvantagetxt5: "Transparency - All information concerning the Bitcoin money supply is readily available on the block chain for anybody to see, verify, measure, and use in real-time." + faqadvantagetxt6: "Distributed - The Bitcoin ledger, commonly called the block chain, is distributed throughout the world and stored by Bitcoin miners. This adds a level of resiliency and redundancy that is unmatched in the payments space and a payment processing network. For example, the Federal Reserve does all their payment processing at 100 Orchard Street, East Rutherford, New Jersey and it has back-up systems that can be brought online within 60-90 minutes at the Federal Reserve Banks of Richmond and Dallas. If those three centers were compromised or destroyed then the entire monetary system of the Federal Reserve would be greatly impaired and probably completely non-functional." + faqdisadvantage: "What are the disadvantages of Bitcoin?" + faqdisadvantagetxt1: "Not widely accepted - Many people are still unaware of Bitcoin. Every day more businesses accept bitcoins because they want the advantages of doing so, but the list remains small and still needs to grow in order to gain improved usefulness through networking effects." + faqdisadvantagetxt2: "Volatile - The total value of bitcoins in circulation and the number of businesses using Bitcoin are still very small compared to what they could be. Therefore, relatively small movements in the market can significantly affect the price. In theory, this volatility will persist as the market scrambles to determine a bitcoin’s price and as this new currency matures. Never before has the world seen a start-up currency, so it is truly difficult (and exciting) to imagine how it will play out." + faqdisadvantagetxt3: "For geeks - Many of the user tools are still not ready for everyone and users still need to protect their money by themselves, or trust young online wallet services that still don’t offer any insurance against theft or other bad events. New tools and services are constantly being developed to make Bitcoin more accessible to the masses. From now, Bitcoin is a bright new invention that starts to meet the real world." + faqsecure: "Is Bitcoin secure?" + faqsecuretxt: "The Bitcoin technology - the protocol and the cryptography - has a strong security track record. Bitcoin's vulnerability is in user error. Bitcoin wallet files that store the necessary private keys can be accidentally deleted, lost, stolen, or compromised. Consequently, users need to employ security practices to protect their money or use service providers that offer good levels of security and insurance. As more people have adopted Bitcoin, more service providers have appeared to make it easier, safer, and more convenient to use and safely secure bitcoins. Bitcoins are not covered by insurance schemes or depositor insurance like the FDIC, but users' wallets could be with a service provider that offers that provision." + faqlegal: "Is Bitcoin legal?" + faqlegaltxt1: "To the best of our knowledge, Bitcoin has not been made illegal by legislation in any jurisdiction." + faqlegaltxt2: "Additionally, regulators from various jurisdictions have taken steps to provide individuals and businesses with rules on how to integrate this new technology into businesses and other activities. For example, the United States' FinCEN has issued non-binding and non-determinative guidance on how it characterizes certain activities involving virtual currencies." + faqlegalresource: "Useful resources:" + faqtax: "What about Bitcoin and taxes?" + faqtaxtxt: "Bitcoin is not a fiat currency with legal tender status in any jurisdiction, but often tax liability accrues regardless of the medium used. There is a wide variety of legislation in many different jurisdictions which could cause income, sales, payroll, capital gains, or some other form of tax liability to arise with Bitcoin. Because all transactions are public record and stored permanently, it is a bad idea to attempt to use Bitcoin to evade taxes." + faqillegal: "Is Bitcoin useful for illegal activities?" + faqillegaltxt1: "Bitcoin is a censorship-resistant technology. This means transactions cannot be stopped. However, it is not anonymous, and the use of Bitcoin leaves extensive and permanent public records." + faqillegaltxt2: "The Federal Bureau of Investigation concluded on page two of the report Bitcoin Virtual Currency: Unique Features Present Distinct Challenges for Deterring Illicit Activity that ‘The FBI assesses with low confidence, based on current user and vendor acceptance, that malicious actors will exploit Bitcoin to launder money.’" + faqillegaltxt3: "Bitcoin prevents many criminals from being able to engage in illegal behavior. Because of the way Bitcoin works, customers do not need to reveal personal information to merchants. This decreases the amount of data available to illegal actors and acts as significant protection against identity theft, credit card fraud, and several other attack vectors. Bitcoin transactions are irreversible which prevents chargebacks or frauds, and transaction traceability means it is impossible to counterfeit bitcoins." + faqillegaltxt4: "Additionally, law enforcement authorities have already begun using sophisticated techniques to analyze Bitcoin transactions in their criminal investigations. So it may be that the Bitcoin software is not very attractive for criminal enterprises." + faqbubble: "Is Bitcoin a bubble?" + faqbubbletxt1: "A fast rise in price does not constitute a bubble. An artificial over-valuation that will suddenly downward correct constitutes a bubble." + faqbubbletxt2: "Choices based on individual human action by hundreds of thousands of market participants is the cause for Bitcoin's price to fluctuate as the market seeks price discovery. Some reasons for this change in sentiment may be a loss of confidence in the currency, a large difference between value and price not based on the fundamentals of the Bitcoin economy, excessive press coverage stimulating speculative demand, fear of uncertainty, and just old-fashioned irrational exuberance and greed." + faqjune: "Why did Bitcoin’s price crash in June 2011?" + faqjunetxt: "Choices based on individual human action by hundreds of thousands of market participants was the cause for Bitcoin's price crash in June 2011. Some reasons for this change in sentiment may be a loss of confidence in the currency, the largest exchange, MtGox, having a security incident, a large difference between value and price from the large amount of press coverage which stimulated speculative demand not based on the fundamentals of the Bitcoin economy, and just old fashioned irrational exuberance and greed." + faqprice: "What determines Bitcoin’s price?" + faqpricetxt: "The price of bitcoins is determined by supply and demand. The supply is fixed at 21 million because of the rules of the Bitcoin protocol. There are two main types of demand: speculative and transactional. As more people use bitcoins for transactions, demand will increase and so will the price of bitcoins. Likewise, as more people speculate on the future of Bitcoin by saving or hoarding bitcoins, this increases the demand for bitcoins and the price. The result is an increase of network effects and increased adoption." + faqponzi: "Is Bitcoin a Ponzi scheme?" + faqponzitxt1: "A Ponzi scheme is a fraudulent investment operation that pays returns to its investors from their own money, or the money paid by subsequent investors, instead of from profit earned by the individual or organization running the operation." + faqponzitxt2: "Bitcoin is an open-source software project with no central authority and consequently no one is in a position to make fraudulent representations about investment returns. Like other major currencies such as gold, United States dollars, Euros, Yen, etc. there is no guaranteed purchasing power and the exchange rate freely floats. This can lead to volatility where owners of bitcoins can make or lose value." + faqponzitxt3: "Bitcoin is an innovative currency and payment system and not a Ponzi scheme. However, since Bitcoin transactions are irreversible it can be attractive for a Ponzi scam operator, and there have been several notable Ponzi scams which have failed and did use Bitcoin." + faqsatoshi: "Who is Satoshi Nakamoto, the creator of Bitcoin?" + faqsatoshitxt: "The creator of Bitcoin never revealed his real identity and simply left his invention to the world. Satoshi created the first Bitcoin implementation and remained active in the development for a few years before choosing to leave the project. Meanwhile, a strong community of developers, miners, users, and supporters have spontaneously emerged to continue the project." + faqworthless: "Can bitcoins become worthless?" + faqworthlesstxt1: "Yes. There are thousands of currencies in the fiat currency graveyard as a result of hyperinflation, such as the German Mark, United States gold and silver certificates, Argentine Peso, and, more recently, the Zimbabwe Dollar. Unlike a physical currency, such as gold, Bitcoin is a completely virtual currency. While Bitcoin was designed to be censorship-resistant, to enable it to continue existing if there were to be some type of technological problem of significant severity, it is still possible, although more unlikely every day, that Bitcoin could stop working as intended. Then all bitcoins could become worthless." + faqworthlesstxt2: "Being an open-source project allows anyone to contribute software code and those with value stored in bitcoins have a strong financial incentive in making sure Bitcoin continues to exist. For example, there has been only one major security incident in the protocol and it was fixed in August 2010. While there have been no major incidents since that does not preclude the possibility that there could be others. There was an unanticipated \"hard fork\" on 12 March 2013 which was quickly resolved with minimal impact on Bitcoin users. But the longer Bitcoin exists without a major security incident, or other unanticipated software bugs, then the more likely market participants will gain greater confidence in Bitcoin." + faqworthlesstxt3: "As a payment tool bitcoins are like gold because bitcoins are no-one’s liability, and Bitcoin transactions are not subject to the same counterparty risk like traditional banks engaged in fractional reserve banking. Thus, using Bitcoin can help protect merchants and users from bank failures and Cyprus-style problems. Bitcoin empowers its users to have exclusive control of their funds." + faqvirtual: "Is Bitcoin virtual and immaterial?" + faqvirtualtxt1: "Bitcoin is as virtual as the credit cards and online banking networks that people are using every day. They are both a balance stored in a network." + faqvirtualtxt2: "While Bitcoin is better suited for use on the Internet than other payment systems, Bitcoin can also be used to pay in physical stores, just like real money." + faqvirtualtxt3: "Bitcoin users have exclusive control over their funds. Bitcoin balances are stored in an extremely large, decentralized distributed computer network and they cannot be fraudulently altered by anybody. In other terms, bitcoins cannot vanish or be seized by any means. But they can be stolen or lost due to users' mistakes." + faqtrust: "Why do people trust Bitcoin?" + faqtrusttxt1: "Bitcoin is open-source software, which means that everyone has access to all of the source code all of the time. The rules of the system are embedded into the source code and the participants all impose those rules on each other simultaneously. To change the system would require everyone to switch to a new version of the software that used different rules, and because Bitcoin users are spread across the world, it is outside the power of any single jurisdictional authority to mandate such a change." + faqtrusttxt2: "Cryptography is well established and a fundamental technology used in online banking. But unlike fiat currency with central banks and online banking with heavily peer-reviewed cryptographic ciphers, Bitcoin has been able to construct a currency and payment network that removes the need to trust a central authority." + faqtrusttxt3: "Consequently, many people trust Bitcoin because it requires absolutely no trust at all." + faqanonymous: "Bitcoin is an anonymous currency?" + faqanonymoustxt1: "Bitcoin is a censorship-resistant technology. It is not anonymous but it is pseudo-anonymous. The use of Bitcoin leaves extensive and permanent public records for each transaction. All transactions can be traced since their origin and IP addresses are permanently logged by organizations listening on the network. All of this information can easily be accessed by competitors, law enforcement, or anyone else." + faqanonymoustxt2: "However, there are a few technically difficult and costly methods that can enable users to interact with Bitcoin in very private ways. The Federal Bureau of Investigation concluded on page two of the report Bitcoin Virtual Currency: Unique Features Present Distinct Challenges for Deterring Illicit Activity that ‘The FBI assesses with low confidence, based on current user and vendor acceptance, that malicious actors will exploit Bitcoin to launder money.’" + faqanonymoustxt3: "Transactions are difficult to conceal from best practices in network data analysis, data mining, and forensic accounting techniques. In most transactions, personal information must be revealed to receive the goods or services from an order. This makes keeping full anonymity with Bitcoin transactions very difficult or impossible." + faqmore: "For more FAQ on Bitcoin, please visit the Bitcoin Wiki." + materialvideo: "Videos" + materialvideoformat: "More formats and languages" + materialvideoyoutube: "Video on Youtube" + materialvideomore: "More videos" + materialpicture: "Pictures" + materialpicturemore: "more pictures" + materialquote: "Quotes" + materialquotemore: "More quotes" + quotesatoshi: "“With e-currency based on cryptographic proof, without the need to trust a third party middleman, money can be secure and transactions effortless.”Satoshi Nakamoto, Bitcoin developer" + quotetonygallippi: "“Bitcoin is Money Over Internet Protocol.”Tony Gallippi, BitInstant CEO" + quotedankaminsky: "“Entire classes of bugs are missing.”Dan Kaminsky, Security Researcher" + quotechrisdixon: "“There are 3 eras of currency: Commodity based, politically based, and now, math based.”Chris Dixon, Technology Investor" + quotejeremyliew: "“The potential for disruption is enormous.”Jeremy Liew, Lightspeed Venture Partners" + quotewencescasares: "“Right now Bitcoin feels like the Internet before the browser.”Wences Casares, Technology Entrepreneur" + quotetylerwinklevoss: "“We have elected to put our money and faith in a mathematical framework that is free of politics and human error.”Tyler Winklevoss, Entrepreneur" + quotemaxkeiser: "“It's the cheapest way to
move money around.”
Max Keiser, Journalist & TV Host" + presscoverage: "Press coverage" resources: title: "Resources - Bitcoin" pagetitle: "Bitcoin resources" @@ -452,16 +452,17 @@ en: blockchain: the Block chain blockchaintxt: (a shared public transaction log) layout: + menu-intro: Introduction menu-bitcoin-for-individuals: Individuals menu-bitcoin-for-businesses: Businesses menu-bitcoin-for-developers: Developers - menu-bitcoin-for-enthusiasts: Enthusiasts - menu-bitcoin-for-press: Press menu-how-it-works: "How it works" - menu-vocabulary: Vocabulary menu-resources: Resources + menu-vocabulary: Vocabulary menu-community: Community menu-development: Development + menu-press: Press + menu-innovation: Innovation menu-foundation: Foundation menu-about: About button-wallet: "Choose your wallet" @@ -481,6 +482,8 @@ en: download: download foundation: foundation how-it-works: how-it-works + innovation: innovation + press: press resources: resources secure-your-wallet: secure-your-wallet support-bitcoin: support-bitcoin diff --git a/css/ie.css b/css/ie.css index db145b39..213ccf93 100644 --- a/css/ie.css +++ b/css/ie.css @@ -22,46 +22,65 @@ h3 .ieimg{ width:800px; } #content{ - width: 690px; - overflow:hidden; + width:690px; + overflow:hidden; } #lang{ border-left:2px solid #f7f7f7; border-right:2px solid #f7f7f7; border-top:2px solid #f7f7f7; } + +#menusimple li{ + /*This one is also required for IE7*/ + zoom:1; + display:inline; +} +#menusimple li a{ + font-family:sans-serif; +} +#menusimple li:hover a, +#menusimple li.active a{ + color:#fff; +} +#menusimple li ul{ + width:180px; + min-width:auto; +} +#menusimple li ul li a:hover, +#menusimple li ul li.active a, +#menusimple li ul li.active a:link, +#menusimple li ul li.active a:visited, +#menusimple li ul li.active a:active{ + color:#fff; +} + #menu li{ /*This one is also required for IE7*/ zoom:1; display:inline; } #menu li a,#menu li a:active,#menu li a:visited,#menu li a:link{ + font-family:sans-serif; border:2px solid #f7f7f7; } -#menu li a:hover, -#menu li a:active:hover, -#menu li a:visited:hover, -#menu li a:link:hover, -#menu li.active a, -#menu li.active a:active, -#menu li.active a:visited, -#menu li.active a:link { +#menu li:hover a, +#menu li.active a{ color: #000; background-color: #fff; border: 2px solid #ebebeb; } -#menufor li a:hover, -#menufor li a:active:hover, -#menufor li a:visited:hover, -#menufor li a:link:hover, -#menufor li.active a, -#menufor li.active a:active, -#menufor li.active a:visited, -#menufor li.active a:link{ +#menufor li a,#menufor li a:active,#menufor li a:visited,#menufor li a:link{ + font-family:sans-serif; +} +#menufor li:hover a, +#menufor li.active a{ color:#fff; } - +#choose a,#before a,#support a{ + font-family:sans-serif; +} #choose .ieimg, #before .ieimg, #support .ieimg { diff --git a/js/main.js b/js/main.js index 3b585da5..85097541 100644 --- a/js/main.js +++ b/js/main.js @@ -82,6 +82,17 @@ cancelEvent(e); function mobileshow(e){ +if(document.getElementById('menusimple')){ +var mm=document.getElementById('menusimple'); +var ml=document.getElementById('langselect'); +var t=document.getElementById('menumobile'); +if(mm.style.display=='block'){mm.style.display='';ml.style.display='';} +else{mm.style.display='block';ml.style.display='inline-block';} +t.parentNode.removeChild(t); +cancelEvent(e); +} +else{ +//Will be deprecated when all translation will use the new menu var mm=document.getElementById('menu'); var mf=document.getElementById('menufor'); var ml=document.getElementById('langselect'); @@ -91,6 +102,7 @@ else{mf.style.display='block';mm.style.display='block';ml.style.display='inline- t.parentNode.removeChild(t); cancelEvent(e); } +} function boxshow(e){