"!=$routeParams.v_type&&"<"!=$routeParams.v_type||($scope.from_vin="<"==$routeParams.v_type,$scope.from_vout=">"==$routeParams.v_type,$scope.v_index=parseInt($routeParams.v_index),$scope.itemsExpanded=!0),$scope.txs=[],$scope.$on("tx",function(event,txid){_findTx(txid)})}),angular.module("insight.transactions").controller("SendRawTransactionController",function($scope,$http){$scope.transaction="",$scope.status="ready",$scope.txid="",$scope.error=null,$scope.formValid=function(){return!!$scope.transaction},$scope.send=function(){var postData={rawtx:$scope.transaction};$scope.status="loading",$http.post(window.apiPrefix+"/tx/send",postData).then(function(response){response=response.data;"string"!=typeof response.txid?($scope.status="error",$scope.error="The transaction was sent but no transaction id was got back"):($scope.status="sent",$scope.txid=response.txid)}).catch(function(response){response=response.data;$scope.status="error",$scope.error=response||"No error message given (connection error?)"})}}),angular.module("insight.address").factory("Address",function($resource){return $resource(window.apiPrefix+"/addr/:addrStr/?noTxList=1",{addrStr:"@addStr"},{get:{method:"GET",interceptor:{response:function(res){return res.data},responseError:function(res){if(404===res.status)return res}}}})}).factory("AddressValidator",function(){return{test:function(addressStr){return/^[Xy789][1-9A-Za-z][^OIl]{20,40}/.test(addressStr)}}}),angular.module("insight.blocks").factory("Block",function($resource){return $resource(window.apiPrefix+"/block/:blockHash",{blockHash:"@blockHash"},{get:{method:"GET",interceptor:{response:function(res){return res.data},responseError:function(res){if(404===res.status)return res}}}})}).factory("Blocks",function($resource){return $resource(window.apiPrefix+"/blocks")}).factory("BlockHashValidator",function(HashValidator){return{test:function(blockHashStr,network){return HashValidator.test64(blockHashStr)||HashValidator.test66(blockHashStr)&&blockHashStr.startsWith("0x")}}}).factory("BlockByHeight",function($resource){return $resource(window.apiPrefix+"/block-index/:blockHeight")}),angular.module("insight.currency").factory("Currency",function($resource){return $resource(window.apiPrefix+"/currency")}),angular.module("insight.system").factory("Global",[function(){return{get:function(){return null}}}]).factory("Version",function($resource){return $resource(window.apiPrefix+"/version")}),angular.module("insight.hash").factory("HashValidator",function(){return{test64:function(hashStr){return"string"==typeof hashStr&&/^(0x)?[0-9a-f]{64}$/i.test(hashStr)},test66:function(hashStr){return"string"==typeof hashStr&&/^(0x)?[0-9a-f]{66}$/i.test(hashStr)}}}),function(socket,$rootScope){this.socket=socket,this.$rootScope=$rootScope,this.listeners=[]});ScopedSocket.prototype.removeAllListeners=function(opts){opts=opts||{};for(var i=0;iCopied!
',link:function(scope,elm){elm.on("mousedown",function(event){var text=scope.clipCopy,textArea=document.createElement("textarea");textArea.style.position="fixed",textArea.style.top=0,textArea.style.left=0,textArea.style.width="2em",textArea.style.height="2em",textArea.style.padding=0,textArea.style.border="none",textArea.style.outline="none",textArea.style.boxShadow="none",textArea.style.background="transparent";textArea.value=text.replace(/
/gi,"\n"),document.body.appendChild(textArea),textArea.select();try{var successful=document.execCommand("copy");document.execCommand("RemoveFormat");angular.element(elm[0].querySelector(".tooltip"))[0].style.display="block",angular.element(elm[0].querySelector(".tooltip"))[0].style.opacity="1",setTimeout(function(){angular.element(elm[0].querySelector(".tooltip"))[0].style.opacity="0",angular.element(elm[0].querySelector(".tooltip"))[0].style.display="none"},1e3)}catch(err){console.log("Oops, unable to copy")}document.body.removeChild(textArea)})}}}).directive("focus",function($timeout){return{scope:{trigger:"@focus"},link:function(scope,element){scope.$watch("trigger",function(value){"true"===value&&$timeout(function(){element[0].focus()})})}}}),angular.module("insight").filter("startFrom",function(){return function(input,start){return input.slice(start=+start)}}).filter("split",function(){return function(input,delimiter){delimiter=delimiter||",";return input.split(delimiter)}}),angular.module("insight").config(function($routeProvider){$routeProvider.when("/block/:blockHash",{templateUrl:"views/block.html",title:"Dash Block "}).when("/block-index/:blockHeight",{controller:"BlocksController",templateUrl:"views/redirect.html"}).when("/tx/send",{templateUrl:"views/transaction_sendraw.html",title:"Broadcast Raw Transaction"}).when("/tx/:txId/:v_type?/:v_index?",{templateUrl:"views/transaction.html",title:"Dash Transaction "}).when("/",{templateUrl:"views/index.html",title:"Home"}).when("/blocks",{templateUrl:"views/block_list.html",title:"Dash Blocks solved Today"}).when("/blocks-date/:blockDate/:startTimestamp?",{templateUrl:"views/block_list.html",title:"Dash Blocks solved "}).when("/address/:addrStr",{templateUrl:"views/address.html",title:"Dash Address "}).when("/status",{templateUrl:"views/status.html",title:"Status"}).when("/messages/verify",{templateUrl:"views/messages_verify.html",title:"Verify Message"}).otherwise({templateUrl:"views/404.html",title:"Error"})}),angular.module("insight").config(function($locationProvider){$locationProvider.html5Mode(!0),$locationProvider.hashPrefix("!")}).run(function($rootScope,$route,$location,$routeParams,$anchorScroll,ngProgressFactory,gettextCatalog,amMoment){var ngProgress=ngProgressFactory.createInstance();gettextCatalog.currentLanguage=defaultLanguage,amMoment.changeLocale(defaultLanguage),$rootScope.$on("$routeChangeStart",function(){ngProgress.start()}),$rootScope.$on("$routeChangeSuccess",function(){ngProgress.complete(),$rootScope.titleDetail="",$rootScope.title=$route.current.title,$rootScope.currentAddr=null,$location.hash($routeParams.scrollTo),$anchorScroll()})}),angular.element(document).ready(function(){}),angular.module("insight").run(["gettextCatalog",function(gettextCatalog){gettextCatalog.setStrings("de_DE",{"(Input unconfirmed)":"(Eingabe unbestätigt)","404 Page not found :(":"404 Seite nicht gefunden :(",'insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.':'insight ist ein Open Source Dash Blockchain Explorer mit vollständigen REST und Websocket APIs um eigene Wallets oder Applikationen zu implementieren. Hierbei werden fortschrittlichere Abfragen der Blockchain ermöglicht, bei denen die RPC des dashd nicht mehr ausreichen. Der aktuelle Quellcode ist auf GitHub zu finden.','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'insight befindet sich aktuell noch in der Entwicklung. Bitte sende alle gefundenen Fehler (Bugs) und Feedback zur weiteren Verbesserung an unseren GitHub Issue Tracker.',About:"Über insight",Address:"Adresse",Age:"Alter","Application Status":"Programmstatus","Best Block":"Bester Block","Dash node information":"Dash-Node Info",Block:"Block","Block Reward":"Belohnung",Blocks:"Blöcke","Bytes Serialized":"Serialisierte Bytes","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Es ist nicht möglich mit dashd zu verbinden um live Aktualisierungen vom P2P Netzwerk zu erhalten. (Verbindungsversuch zu dashd an {{host}}:{{port}} ist fehlgeschlagen.)","Can't connect to insight server. Attempting to reconnect...":"Keine Verbindung zum insight-Server möglich. Es wird versucht die Verbindung neu aufzubauen...","Can't connect to internet. Please, check your connection.":"Keine Verbindung zum Internet möglich, bitte Zugangsdaten prüfen.",Complete:"Vollständig",Confirmations:"Bestätigungen",Conn:"Verbindungen","Connections to other nodes":"Verbindungen zu Nodes","Current Blockchain Tip (insight)":"Aktueller Blockchain Tip (insight)","Current Sync Status":"Aktueller Status",Details:"Details",Difficulty:"Schwierigkeit","Double spent attempt detected. From tx:":'Es wurde ein "double Spend" Versuch erkannt. Von tx:',"Error!":"Fehler!",Fee:"Gebühr","Final Balance":"Schlussbilanz","Finish Date":"Fertigstellung","Go to home":"Zur Startseite","Hash Serialized":"Hash Serialisiert",Height:"Höhe","Included in Block":"Eingefügt in Block","Incoherence in levelDB detected:":"Es wurde eine Zusammenhangslosigkeit in der LevelDB festgestellt:","Info Errors":"Fehlerbeschreibung","Initial Block Chain Height":"Ursprüngliche Blockchain Höhe",Input:"Eingänge","Last Block":"Letzter Block","Last Block Hash (dashd)":"Letzter Hash (dashd)","Latest Blocks":"Letzte Blöcke","Latest Transactions":"Letzte Transaktionen","Loading Address Information":"Lade Adressinformationen","Loading Block Information":"Lade Blockinformation","Loading Selected Date...":"Lade gewähltes Datum...","Loading Transaction Details":"Lade Transaktionsdetails","Loading Transactions...":"Lade Transaktionen...","Loading...":"Lade...","Mined Time":"Block gefunden (Mining)","Mined by":"Gefunden von","Mining Difficulty":"Schwierigkeitgrad","Next Block":"Nächster Block","No Inputs (Newly Generated Coins)":"Keine Eingänge (Neu generierte Coins)","No blocks yet.":"Keine Blöcke bisher.","No matching records found!":"Keine passenden Einträge gefunden!","No. Transactions":"Anzahl Transaktionen","Number Of Transactions":"Anzahl der Transaktionen",Output:"Ausgänge","Powered by":"Powered by","Previous Block":"Letzter Block","Protocol version":"Protokollversion","Proxy setting":"Proxyeinstellung","Received Time":"Eingangszeitpunkt","Redirecting...":"Umleitung...","Search for block, transaction or address":"Suche Block, Transaktion oder Adresse","See all blocks":"Alle Blöcke anzeigen","Show Transaction Output data":"Zeige Abgänge","Show all":"Zeige Alles","Show input":"Zeige Eingänge","Show less":"Weniger anzeigen","Show more":"Mehr anzeigen",Size:"Größe","Size (bytes)":"Größe (bytes)","Skipped Blocks (previously synced)":"Verworfene Blöcke (bereits syncronisiert)","Start Date":"Startdatum",Status:"Status",Summary:"Zusammenfassung","Summary confirmed":"Zusammenfassung bestätigt","Sync Progress":"Fortschritt","Sync Status":"Syncronisation","Sync Type":"Art der Syncronisation","Synced Blocks":"Syncronisierte Blöcke",Testnet:"Testnet aktiv","There are no transactions involving this address.":"Es gibt keine Transaktionen zu dieser Adressse","Time Offset":"Zeitoffset zu UTC",Timestamp:"Zeitstempel",Today:"Heute","Total Amount":"Gesamtsumme","Total Received":"Insgesamt empfangen","Total Sent":"Insgesamt gesendet",Transaction:"Transaktion","Transaction Output Set Information":"Transaktions Abgänge","Transaction Outputs":"Abgänge",Transactions:"Transaktionen",Type:"Typ",Unconfirmed:"Unbestätigt","Unconfirmed Transaction!":"Unbestätigte Transaktion!","Unconfirmed Txs Balance":"Unbestätigtes Guthaben","Value Out":"Wert",Version:"Version","Waiting for blocks...":"Warte auf Blöcke...","Waiting for transactions...":"Warte auf Transaktionen...","by date.":"nach Datum.","first seen at":"zuerst gesehen am",mined:"gefunden","mined on:":"vom:","Waiting for blocks":"Warte auf Blöcke"}),gettextCatalog.setStrings("es",{"(Input unconfirmed)":"(Entrada sin confirmar)","404 Page not found :(":"404 Página no encontrada :(",'insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.':'insight es un explorador de bloques de Dash open-source con un completo conjunto de REST y APIs de websockets que pueden ser usadas para escribir monederos de Dashs y otras aplicaciones que requieran consultar un explorador de bloques. Obtén el código en el repositorio abierto de GitHub.','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'insight esta en desarrollo aún, por ello agradecemos que nos reporten errores o sugerencias para mejorar el software. GitHub issue tracker.',About:"Acerca de",Address:"Dirección",Age:"Edad","Application Status":"Estado de la Aplicación","Best Block":"Mejor Bloque","Dash node information":"Información del nodo Dash",Block:"Bloque","Block Reward":"Bloque Recompensa",Blocks:"Bloques","Bytes Serialized":"Bytes Serializados","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"No se pudo conectar a dashd para obtener actualizaciones en vivo de la red p2p. (Se intentó conectar a dashd de {{host}}:{{port}} y falló.)","Can't connect to insight server. Attempting to reconnect...":"No se pudo conectar al servidor insight. Intentando re-conectar...","Can't connect to internet. Please, check your connection.":"No se pudo conectar a Internet. Por favor, verifique su conexión.",Complete:"Completado",Confirmations:"Confirmaciones",Conn:"Con","Connections to other nodes":"Conexiones a otros nodos","Current Blockchain Tip (insight)":"Actual Blockchain Tip (insight)","Current Sync Status":"Actual Estado de Sincronización",Details:"Detalles",Difficulty:"Dificultad","Double spent attempt detected. From tx:":"Intento de doble gasto detectado. De la transacción:","Error!":"¡Error!",Fee:"Tasa","Final Balance":"Balance Final","Finish Date":"Fecha Final","Go to home":"Volver al Inicio","Hash Serialized":"Hash Serializado",Height:"Altura","Included in Block":"Incluido en el Bloque","Incoherence in levelDB detected:":"Detectada una incoherencia en levelDB:","Info Errors":"Errores de Información","Initial Block Chain Height":"Altura de la Cadena en Bloque Inicial",Input:"Entrada","Last Block":"Último Bloque","Last Block Hash (dashd)":"Último Bloque Hash (dashd)","Latest Blocks":"Últimos Bloques","Latest Transactions":"Últimas Transacciones","Loading Address Information":"Cargando Información de la Dirección","Loading Block Information":"Cargando Información del Bloque","Loading Selected Date...":"Cargando Fecha Seleccionada...","Loading Transaction Details":"Cargando Detalles de la Transacción","Loading Transactions...":"Cargando Transacciones...","Loading...":"Cargando...","Mined Time":"Hora de Minado","Mined by":"Minado por","Mining Difficulty":"Dificultad de Minado","Next Block":"Próximo Bloque","No Inputs (Newly Generated Coins)":"Sin Entradas (Monedas Recién Generadas)","No blocks yet.":"No hay bloques aún.","No matching records found!":"¡No se encontraron registros coincidentes!","No. Transactions":"Nro. de Transacciones","Number Of Transactions":"Número de Transacciones",Output:"Salida","Powered by":"Funciona con","Previous Block":"Bloque Anterior","Protocol version":"Versión del protocolo","Proxy setting":"Opción de proxy","Received Time":"Hora de Recibido","Redirecting...":"Redireccionando...","Search for block, transaction or address":"Buscar bloques, transacciones o direcciones","See all blocks":"Ver todos los bloques","Show Transaction Output data":"Mostrar dato de Salida de la Transacción","Show all":"Mostrar todos","Show input":"Mostrar entrada","Show less":"Ver menos","Show more":"Ver más",Size:"Tamaño","Size (bytes)":"Tamaño (bytes)","Skipped Blocks (previously synced)":"Bloques Saltados (previamente sincronizado)","Start Date":"Fecha de Inicio",Status:"Estado",Summary:"Resumen","Summary confirmed":"Resumen confirmados","Sync Progress":"Proceso de Sincronización","Sync Status":"Estado de Sincronización","Sync Type":"Tipo de Sincronización","Synced Blocks":"Bloques Sincornizados",Testnet:"Red de prueba","There are no transactions involving this address.":"No hay transacciones para esta dirección","Time Offset":"Desplazamiento de hora",Timestamp:"Fecha y hora",Today:"Hoy","Total Amount":"Cantidad Total","Total Received":"Total Recibido","Total Sent":"Total Enviado",Transaction:"Transacción","Transaction Output Set Information":"Información del Conjunto de Salida de la Transacción","Transaction Outputs":"Salidas de la Transacción",Transactions:"Transacciones",Type:"Tipo",Unconfirmed:"Sin confirmar","Unconfirmed Transaction!":"¡Transacción sin confirmar!","Unconfirmed Txs Balance":"Balance sin confirmar","Value Out":"Valor de Salida",Version:"Versión","Waiting for blocks...":"Esperando bloques...","Waiting for transactions...":"Esperando transacciones...","by date.":"por fecha.","first seen at":"Visto a",mined:"minado","mined on:":"minado el:","Waiting for blocks":"Esperando bloques"}),gettextCatalog.setStrings("fr_FR",{"(Input unconfirmed)":"(Entrée non confirmé)","404 Page not found :(":"404 Page introuvable :(",'insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.':'insight est un explorateur open-source de blocs avec un ensemble complet d\'API REST et websockets qui peuvent être utilisées pour écrire portefeuille et autres applications nécéssitant des requêtes plus complète que celles proposés par les commandes RPC de dashd. Consultez le code source sur GitHub.','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'insight est toujours en développement, hésitez pas à remonter tout bugs et proposer des améliorations sur notre GitHub issue tracker.',About:"À propos",Address:"Adresse",Age:"Âge","Application Status":"Status de l'application","Best Block":"Meilleur Bloc","Dash node information":"Information sur le noeud Dash",Block:"Bloc","Block Reward":"Recompense de bloc",Blocks:"Blocs","Bytes Serialized":"Octets sérialisés","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Impossible de se connecter à dashd pour récupérer les dernières informations du réseau p2p. (Tentative de connexion à dashd ({{host}}:{{port}}) échouée.)","Can't connect to insight server. Attempting to reconnect...":"Impossible de se connecter au serveur Insight. Tentative de reconnexion...","Can't connect to internet. Please, check your connection.":"Impossible de se connecter à internet. S'il vous plait, réessayer.",Complete:"Achevés",Confirmations:"Confirmations",Conn:"Conn","Connections to other nodes":"Connexion aux autre noeuds","Current Blockchain Tip (insight)":"Tip Actuel de la Blockchain (insight)","Current Sync Status":"Status actuel de synchronisation",Details:"Détails",Difficulty:"Difficultée","Double spent attempt detected. From tx:":"Tentative de double dépense détectée. Dans la tx:","Error!":"Erreur!",Fee:"Frais","Final Balance":"Solde final","Finish Date":"Date de fin","Go to home":"Retour à l'accueil","Hash Serialized":"Hash Serialisé",Height:"Hauteur","Included in Block":"Inclus dans le bloc","Incoherence in levelDB detected:":"Incohérence dans levelDB détectée:","Info Errors":"Erreurs d'informations","Initial Block Chain Height":"Hauteur de la chaîne initiale",Input:"Entrée","Last Block":"Dernier bloc","Last Block Hash (dashd)":"Hash du dernier bloc (dashd)","Latest Blocks":"Derniers Blocs","Latest Transactions":"Dernières transactions","Loading Address Information":"Chargement des informations de l'adresse","Loading Block Information":"Chagement des information du bloc","Loading Selected Date...":"Chargement de la date sélectionnée...","Loading Transaction Details":"Chargement des détails de la transaction","Loading Transactions...":"Chagement des Transactions...","Loading...":"Chargement...","Mined Time":"Heure de minage","Mined by":"Miné par","Mining Difficulty":"Difficultée de minage","Next Block":"Bloc suivant","No Inputs (Newly Generated Coins)":"Pas d'entrées (nouvellement générées)","No blocks yet.":"Aucun blocs pour l'instant.","No matching records found!":"Aucun enregistremements correspondants trouvés!","No. Transactions":"Transactions N°","Number Of Transactions":"Nombre de transaction",Output:"Sortie","Powered by":"Propulsé par","Previous Block":"Bloc précédent","Protocol version":"Version du protocol","Proxy setting":"Paramètre de proxy","Received Time":"Heure de réception","Redirecting...":"Redirection...","Search for block, transaction or address":"Rechercher des blocs, transactions ou adresses","See all blocks":"Voir tous les blocs","Show Transaction Output data":"Afficher les données de sortie de transaction","Show all":"Tout afficher","Show input":"Afficher l'entrée","Show less":"Voir moins","Show more":"Voir plus",Size:"Taille","Size (bytes)":"Taille (octets)","Skipped Blocks (previously synced)":"Blocs ignorés (préalablement synchronisés)","Start Date":"Date de début",Status:"Status",Summary:"Résumé","Summary confirmed":"Résume confirmé","Sync Progress":"Progression de la synchronication","Sync Status":"Status de la synchronisation","Sync Type":"Type de la synchronisation","Synced Blocks":"Blocs synchronisés",Testnet:"Réseau de test","There are no transactions involving this address.":"Il n'y a pas de transactions impliquant cette adresse.","Time Offset":"Décalage horaire",Timestamp:"Date et heure",Today:"Aujourd'hui","Total Amount":"Montant Total","Total Received":"Total Reçu","Total Sent":"Total Envoyés",Transaction:"Transaction","Transaction Output Set Information":"Informations sur l'ensemble des sorties de transaction","Transaction Outputs":"Sorties de transaction",Transactions:"Transactions",Type:"Type",Unconfirmed:"Non confirmée","Unconfirmed Transaction!":"Transaction non confirmée!","Unconfirmed Txs Balance":"Solde non confirmé","Value Out":"Valeur de sortie",Version:"Version","Waiting for blocks...":"En attente de blocs...","Waiting for transactions...":"En attente de transactions...","by date.":"par date.","first seen at":"aperçu la première fois le",mined:"miné","mined on:":"miné le:","Waiting for blocks":"Esperando bloques"}),gettextCatalog.setStrings("ja",{"(Input unconfirmed)":"(入力は未検証です)","404 Page not found :(":"404 ページがみつかりません (´・ω・`)",'insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.':'insightは、dashd RPCの提供するものよりも詳細なブロックチェインへの問い合わせを必要とするウェブウォレットやその他のアプリを書くのに使える、完全なRESTおよびwebsocket APIを備えたオープンソースのビットコインブロックエクスプローラです。ソースコードを確認','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'insightは現在開発中です。GitHubのissueトラッカにてバグの報告や改善案の提案をお願いします。',About:"はじめに",Address:"アドレス",Age:"生成後経過時間","An error occured in the verification process.":"検証過程でエラーが発生しました。","An error occured:
{{error}}":"エラーが発生しました:
{{error}}","Application Status":"アプリケーションの状態","Best Block":"最良ブロック","Dash comes with a way of signing arbitrary messages.":"Dashには任意のメッセージを署名する昨日が備わっています。","Dash node information":"Dashノード情報",Block:"ブロック","Block Reward":"ブロック報酬",Blocks:"ブロック","Broadcast Raw Transaction":"生のトランザクションを配信","Bytes Serialized":"シリアライズ後の容量 (バイト)","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"P2Pネットワークからライブ情報を取得するためにdashdへ接続することができませんでした。({{host}}:{{port}} への接続を試みましたが、失敗しました。)","Can't connect to insight server. Attempting to reconnect...":"insight サーバに接続できません。再接続しています...","Can't connect to internet. Please, check your connection.":"インターネットに接続できません。コネクションを確認してください。",Complete:"完了",Confirmations:"検証数",Conn:"接続数","Connections to other nodes":"他ノードへの接続","Current Blockchain Tip (insight)":"現在のブロックチェインのTip (insight)","Current Sync Status":"現在の同期状況",Details:"詳細",Difficulty:"難易度","Double spent attempt detected. From tx:":"二重支払い攻撃をこのトランザクションから検知しました:","Error message:":"エラーメッセージ:","Error!":"エラー!",Fee:"手数料","Final Balance":"最終残高","Finish Date":"終了日時","Go to home":"ホームへ","Hash Serialized":"シリアライズデータのハッシュ値",Height:"ブロック高","Included in Block":"取り込まれたブロック","Incoherence in levelDB detected:":"levelDBの破損を検知しました:","Info Errors":"エラー情報","Initial Block Chain Height":"起動時のブロック高",Input:"入力","Last Block":"直前のブロック","Last Block Hash (dashd)":"直前のブロックのハッシュ値 (dashd)","Latest Blocks":"最新のブロック","Latest Transactions":"最新のトランザクション","Loading Address Information":"アドレス情報を読み込んでいます","Loading Block Information":"ブロック情報を読み込んでいます","Loading Selected Date...":"選択されたデータを読み込んでいます...","Loading Transaction Details":"トランザクションの詳細を読み込んでいます","Loading Transactions...":"トランザクションを読み込んでいます...","Loading...":"ロード中...",Message:"メッセージ","Mined Time":"採掘時刻","Mined by":"採掘者","Mining Difficulty":"採掘難易度","Next Block":"次のブロック","No Inputs (Newly Generated Coins)":"入力なし (新しく生成されたコイン)","No blocks yet.":"ブロックはありません。","No matching records found!":"一致するレコードはありません!","No. Transactions":"トランザクション数","Number Of Transactions":"トランザクション数",Output:"出力","Powered by":"Powered by","Previous Block":"前のブロック","Protocol version":"プロトコルバージョン","Proxy setting":"プロキシ設定","Raw transaction data":"トランザクションの生データ","Raw transaction data must be a valid hexadecimal string.":"生のトランザクションデータは有効な16進数でなければいけません。","Received Time":"受信時刻","Redirecting...":"リダイレクトしています...","Search for block, transaction or address":"ブロック、トランザクション、アドレスを検索","See all blocks":"すべてのブロックをみる","Send transaction":"トランザクションを送信","Show Transaction Output data":"トランザクションの出力データをみる","Show all":"すべて表示","Show input":"入力を表示","Show less":"隠す","Show more":"表示する",Signature:"署名",Size:"サイズ","Size (bytes)":"サイズ (バイト)","Skipped Blocks (previously synced)":"スキップされたブロック (同期済み)","Start Date":"開始日時",Status:"ステータス",Summary:"概要","Summary confirmed":"サマリ 検証済み","Sync Progress":"同期の進捗状況","Sync Status":"同期ステータス","Sync Type":"同期タイプ","Synced Blocks":"同期されたブロック数",Testnet:"テストネット","The message failed to verify.":"メッセージの検証に失敗しました。","The message is verifiably from {{verification.address}}.":"メッセージは{{verification.address}}により検証されました。","There are no transactions involving this address.":"このアドレスに対するトランザクションはありません。","This form can be used to broadcast a raw transaction in hex format over\n the Dash network.":"このフォームでは、16進数フォーマットの生のトランザクションをDashネットワーク上に配信することができます。","This form can be used to verify that a message comes from\n a specific Dash address.":"このフォームでは、メッセージが特定のDashアドレスから来たかどうかを検証することができます。","Time Offset":"時間オフセット",Timestamp:"タイムスタンプ",Today:"今日","Total Amount":"Dash総量","Total Received":"総入金額","Total Sent":"総送金額",Transaction:"トランザクション","Transaction Output Set Information":"トランザクションの出力セット情報","Transaction Outputs":"トランザクションの出力","Transaction succesfully broadcast.
Transaction id: {{txid}}":"トランザクションの配信に成功しました。
トランザクションID: {{txid}}",Transactions:"トランザクション",Type:"タイプ",Unconfirmed:"未検証","Unconfirmed Transaction!":"未検証のトランザクションです!","Unconfirmed Txs Balance":"未検証トランザクションの残高","Value Out":"出力値",Verify:"検証","Verify signed message":"署名済みメッセージを検証",Version:"バージョン","Waiting for blocks...":"ブロックを待っています...","Waiting for transactions...":"トランザクションを待っています...","by date.":"日毎。","first seen at":"最初に発見された日時",mined:"採掘された","mined on:":"採掘日時:","(Mainchain)":"(メインチェーン)","(Orphaned)":"(孤立したブロック)",Bits:"Bits","Block #{{block.height}}":"ブロック #{{block.height}}",BlockHash:"ブロックのハッシュ値","Blocks
mined on:":"ブロック
採掘日",Coinbase:"コインベース",Hash:"ハッシュ値",LockTime:"ロック時間","Merkle Root":"Merkleルート",Nonce:"Nonce","Ooops!":"おぉっと!","Output is spent":"出力は使用済みです","Output is unspent":"出力は未使用です",Scan:"スキャン","Show/Hide items details":"アイテムの詳細を表示または隠す","Waiting for blocks":"ブロックを待っています","by date. {{detail}} {{before}}":"日時順 {{detail}} {{before}}",scriptSig:"scriptSig","{{tx.confirmations}} Confirmations":"{{tx.confirmations}} 検証",' (Orphaned)':' (孤立したブロック)',' Incoherence in levelDB detected: {{vin.dbError}}':' Incoherence in levelDB detected: {{vin.dbError}}','Waiting for blocks ':'ブロックを待っています '}),gettextCatalog.setStrings("de_DE",{"(Input unconfirmed)":"(Input onbevestigd)","404 Page not found :(":"404 Pagina niet gevonden :(",'insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.':'insight is een opensource Dash-blokketenexplorer met volledige REST- en websocket-API\'s om eigen webportomonnee\'s en andere apps te implementeren. Hierdoor zijn meer geavanceerde query\'s op de blokketen mogelijk, dan die door RPC worden aangeboden. De actuele broncode is op GitHub te vinden.','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'insight is nog steeds in ontwikkeling. Dus rapporteer fouten (bugs) en geef terugkoppeling voor verbeteringen via onze issuetracker op GitHub.',About:"Over",Address:"Adres",Age:"Leeftijd","Application Status":"Programmastatus","Best Block":"Beste blok","Dash node information":"Dash-knooppuntinformatie",Block:"Blok","Block Reward":"Blokbeloning",Blocks:"Blokken","Bytes Serialized":"Geserialiseerde bytes","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Kan geen verbinding maken net dashd om liveupdates van het P2P-netwerk te ontvangen. (Geprobeerd verbinding te maken met dashd op {{host}}:{{port}} en is mislukt.)","Can't connect to insight server. Attempting to reconnect...":"Kan geen verbinding maken met de insight-server. Het wordt nog eens geprobeerd...","Can't connect to internet. Please, check your connection.":"Kan geen verbinding maken met het internet. Controleer je verbinding.",Complete:"Compleet",Confirmations:"Bevestigingen",Conn:"Verbindingen","Connections to other nodes":"Verbindingen met andere knooppunten","Current Blockchain Tip (insight)":"Huidige blokketentop (insight)","Current Sync Status":"Huidige synchronisatiestatus",Details:"Details",Difficulty:"Moeilijkheid","Double spent attempt detected. From tx:":'Er is een "dubbele uitgave" gedetecteerd. Van tx:',"Error!":"Fout!",Fee:"Transactiekosten","Final Balance":"Totaalsaldo","Finish Date":"Einddatum","Go to home":"Ga naar home","Hash Serialized":"Geserialiseerde hash",Height:"Hoogte","Included in Block":"Inbegrepen in blok","Incoherence in levelDB detected:":"Incoherentie is gedetecteerd in levelDB:","Info Errors":"Foutbeschrijving","Initial Block Chain Height":"Oorspronkelijke blokketenhoogte",Input:"Input","Last Block":"Laatste blok","Last Block Hash (dashd)":"Laatste blokhash (dashd)","Latest Blocks":"Recentste blok","Latest Transactions":"Recentste transacties","Loading Address Information":"Adresinformatie aan het laden","Loading Block Information":"Blokinformatie aan het laden","Loading Selected Date...":"Geselecteerde datum aan het laden...","Loading Transaction Details":"Transactiedetails aan het laden","Loading Transactions...":"Transacties aan het laden...","Loading...":"Aan het laden...","Mined Time":"Miningtijdstip","Mined by":"Gemined door","Mining Difficulty":"Miningmoeilijkheid","Next Block":"Volgende blok","No Inputs (Newly Generated Coins)":"Geen inputs (nieuw aangemaakte munten)","No blocks yet.":"Nog geen blokken.","No matching records found!":"Geen passende records gevonden!","No. Transactions":"Aantal transacties","Number Of Transactions":"Aantal transacties",Output:"Output","Powered by":"Aangedreven door","Previous Block":"Vorig blok","Protocol version":"Protocolversie","Proxy setting":"Proxy-instellingen","Received Time":"Onvangsttijdstip","Redirecting...":"Aan het omleiden...","Search for block, transaction or address":"Zoek op blok, transactie of adres","See all blocks":"Bekijk alle blokken","Show Transaction Output data":"Toon transactieoutputgegevens","Show all":"Toon alles","Show input":"Toon input","Show less":"Toon minder","Show more":"Toon meer",Size:"Grootte","Size (bytes)":"Grootte (bytes)","Skipped Blocks (previously synced)":"Overgeslagen blokken (voorheen gesynchroniseerd)","Start Date":"Startdatum",Status:"Status",Summary:"Samenvatting","Summary confirmed":"Samenvatting bevestigd","Sync Progress":"Synchronisatievoortgang","Sync Status":"Synchronisatiestatus","Sync Type":"Synchronisatietype","Synced Blocks":"Gesynchroniseerde blokken",Testnet:"Testnet actief","There are no transactions involving this address.":"Er zijn geen transacties gerelateerd aan dit adres.","Time Offset":"Tijdsoffset tot UTC",Timestamp:"Tijdsstempel",Today:"Vandaag","Total Amount":"Totaalbedrag","Total Received":"Totaal ontvangen","Total Sent":"Totaal verstuurd",Transaction:"Transactie","Transaction Output Set Information":"Transactieoutputsetinformatie","Transaction Outputs":"Transactieoutputs",Transactions:"Transacties",Type:"Type",Unconfirmed:"Onbevestigd","Unconfirmed Transaction!":"Onbevestigde transacties!","Unconfirmed Txs Balance":"Onbevestigde transactiesaldo","Value Out":"Waarde",Version:"Versie","Waiting for blocks...":"Op blokken aan het wachten...","Waiting for transactions...":"Op transacties aan het wachten...","by date.":"op datum.","first seen at":"voor het eerst gezien op",mined:"gemined","mined on:":"gemined op:","Waiting for blocks":"Op blokken aan het wachten"}),gettextCatalog.setStrings("pt_BR",{"(Input unconfirmed)":"(Entrada não confirmada)",'insight is an open-source Bitcoin blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by bitcoind RPC. Check out the source code.':'insight é um explorador de blocos Bitcoin de código aberto com um conjunto completo de APIs de websocket e REST que podem ser usadas para programar carteiras online e outros aplicativos que necessitam consultar um explorador de blocos. Confira o código-fonte.','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'insight ainda está em desenvolvimento, portanto agradecemos que postem erros e sugestões para melhorias em nosso rastreador de problemas no GitHub.',"404 Page not found :(":"404 Página não encontrada :(",About:"Sobre",Address:"Endereço",Age:"Idade","An error occured in the verification process.":"Ocorreu um erro no processo de verificação.","An error occured:
{{error}}":"Ocorreu um erro:
{{error}}","Application Status":"Estado do Aplicativo","Bitcoin comes with a way of signing arbitrary messages.":"Bitcoin possui um método de assinar mensagens arbitrárias.","Bitcoin node information":"Informações do nó Bitcoin",Block:"Bloco","Block Reward":"Recompensa do Bloco",Blocks:"Blocos","Broadcast Raw Transaction":"Transmitir Transações Brutas","by date.":"por data.","Can't connect to bitcoind to get live updates from the p2p network. (Tried connecting to bitcoind at {{host}}:{{port}} and failed.)":"Não foi possível conectar-se ao bitcoind para obter atualizações em tempo real da rede p2p. (A tentativa de conectar-se à {{host}}:{{port}} falhou.)","Can't connect to insight server. Attempting to reconnect...":"Não foi possível conectar-se ao servidor insight. Tentando reconectar...","Can't connect to internet. Please, check your connection.":"Não foi possível conectar-se à internet. Verifique sua conexão.",Complete:"Completa",Confirmations:"Confirmações",Conn:"Con","Connections to other nodes":"Conexões a outros nós","Current Blockchain Tip (insight)":"Atual Blockchain Tip (insight)","Current Sync Status":"Estado Atual de Sincronização",Details:"Detalhes",Difficulty:"Dificuldade","Double spent attempt detected. From tx:":"Tentativa de gasto duplo detectada. Da transação:","Error message:":"Mensagem de erro:","Error!":"Erro!",Fee:"Taxa","Fee Rate":"Taxa por kilobyte","Final Balance":"Saldo Final","Finish Date":"Data de Término","first seen at":"visto pela primeira vez em","Go to home":"Voltar ao início",Height:"Altura","Included in Block":"Incluída no Bloco","Incoherence in levelDB detected:":"Incoerência no levelDB detectada:","Info Errors":"Erros de informação","Initial Block Chain Height":"Altura inicial da Blockchain",Input:"Entrada","Last Block":"Último Bloco","Last Block Hash (Bitcoind)":"Hash do Último Bloco (Bitcoind)","Latest Blocks":"Blocos Recentes","Latest Transactions":"Transações Recentes","Loading Address Information":"Carregando informações do endereço","Loading Block Information":"Carregando informações do bloco","Loading Selected Date...":"Carregando data selecionada...","Loading Transaction Details":"Carregando detalhes da transação","Loading Transactions...":"Carregando transações...","Loading...":"Carregando...",Message:"Mensagem",mined:"minerado","Mined by":"Minerado por","mined on:":"minerado em:","Mined Time":"Minerada em","Mining Difficulty":"Dificuldade de Mineração",Network:"Rede","Next Block":"Próximo Bloco","No blocks yet.":"Ainda não há blocos.","No Inputs (Newly Generated Coins)":"Nenhuma Entrada (moedas recém-geradas)","No matching records found!":"Não foram encontrados registros correspondentes!","No. Transactions":"Nº de transações","Number Of Transactions":"Número de Transações",Output:"Saída","Powered by":"Funciona com","Previous Block":"Bloco Anterior","Protocol version":"Versão do protocolo","Proxy setting":"Configuração de proxy","Raw transaction data":"Dados brutos da transação","Raw transaction data must be a valid hexadecimal string.":"Os dados brutos da transação devem ser uma string hexadecimal válida.","Received Time":"Recebida em","Redirecting...":"Redirecionando...","Search for block, transaction or address":"Procurar por blocos, transações ou endereços","See all blocks":"Visualizar todos os blocos","Send transaction":"Enviar transação","Show all":"Mostrar todos","Show input":"Mostrar entrada","Show less":"Mostrar menos","Show more":"Mostrar mais",Signature:"Assinatura",Size:"Tamanho","Size (bytes)":"Tamanho (bytes)","Skipped Blocks (previously synced)":"Blocos Ignorados (previamente sincronizados)","Start Date":"Data de Início",Status:"Estado",Summary:"Resumo","Summary confirmed":"Resumo confirmado","Sync Progress":"Progresso de Sincronização","Sync Status":"Estado de Sincronização","Sync Type":"Tipo de Sincronização","Synced Blocks":"Blocos sincronizados","The message failed to verify.":"Falha ao verificar a mensagem.","The message is verifiably from {{verification.address}}.":"A mensagem é verificável de {{verification.address}}.","There are no transactions involving this address.":"Não existem transações envolvendo este endereço.","This form can be used to broadcast a raw transaction in hex format over\r\n the Bitcoin network.":"Este formulário pode ser usado para transmitir uma transação bruta em formato \r\n hexadecimal para a rede Bitcoin.","This form can be used to verify that a message comes from\r\n a specific Bitcoin address.":"Este formulário pode ser usado para verificar se uma mensagem\r\n veio de um endereço Bitcoin específico.","Time Offset":"Compensação de Tempo",Timestamp:"Data e Hora",Today:"Hoje","Total Received":"Total Recebido","Total Sent":"Total Enviado",Transaction:"Transação","Transaction succesfully broadcast.
Transaction id: {{txid}}":"Transação transmitida com sucesso.
ID da transação: {{txid}}",Transactions:"Transações",Type:"Tipo",Unconfirmed:"Não confirmada","Unconfirmed Transaction!":"Transação não confirmada!","Unconfirmed Txs Balance":"Balanço de Transações não confirmadas","Value Out":"Valor de Saída",Verify:"Verificar","Verify signed message":"Verificar mensagem assinada",Version:"Versão","Waiting for blocks...":"Esperando por blocos...","Waiting for transactions...":"Esperando por transações..."}),gettextCatalog.setStrings("zh",{"(Input unconfirmed)":"输入未确定","404 Page not found :(":"404 页面不存在",'insight is an open-source Bitcoin blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by bitcoind RPC. Check out the source code.':'insight是一个开源的比特币区块链浏览器。支持完整的REST和Web Socket API 调用,可用于编写Web钱包和其他需要比bitcoind RPC提供的更高级区块链查询的应用程序。查看源代码','insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.':'该系统仍在开发中详情发现问题或提供反馈请报告给我们的开发人员',About:"关于",Address:"地址",Age:"生成时间","An error occured in the verification process.":"验证过程出错","An error occured:
{{error}}":"发生错误
{{error}}","Application Status":"程序状态","Best Block":"最好的块","Bitcoin comes with a way of signing arbitrary messages.":"Bitcoin可以签名任意消息","Bitcoin node information":"比特币节点信息",Block:"区块","Block Reward":"块报酬",Blocks:"区块","Blocks Num":"区块数","Broadcast Raw Transaction":"广播原始交易","Bytes Serialized":"序列化后的大小 (B)","Can't connect to bitcoind to get live updates from the p2p network. (Tried connecting to bitcoind at {{host}}:{{port}} and failed.)":"无法连接到BitCoin P2P网络。(尝试{{host}}:{{port}} 连接失败)","Can't connect to insight server. Attempting to reconnect...":"无法连接到服务器,正在重试","Can't connect to internet. Please, check your connection.":"无法连接到因特网,请检查连接",Complete:"完成",Confirmations:"个确认",Conn:"连接数","Connections to other nodes":"连接数","Current Blockchain Tip (insight)":"当前区块链Tip(insight)","Current Sync Status":"当前同步状态",Details:"详情",Difficulty:"难度","Double spent attempt detected. From tx:":"检测到双花,来自tx:","Error message:":"错误消息:","Error!":"错误",Fee:"手续费","Final Balance":"钱包余额","Finish Date":"结束日期","Go to home":"回主页","Hash Serialized":"Hash序列化",Height:"高度",BlockHeight:"区块高度","Included in Block":"所在区块","Incoherence in levelDB detected:":"在levelDB中检测到不一致:","Info Errors":"错误信息","Initial Block Chain Height":"最新区块高度",Input:"输入","Last Block":"最新区块信息","Last Block Hash (Bitcoind)":"最新区块哈希(Bitcoind)","Latest Blocks":"最新区块","Latest Transactions":"最新交易","Loading Address Information":"加载地址信息","Loading Block Information":"加载区块信息","Loading Selected Date...":"加载选择日期...","Loading Transaction Details":"加载交易详情","Loading Transactions...":"加载交易...","Loading...":"加载中...",Message:"消息","Mined Time":"挖掘时间","Mined by":"矿池","Mining Difficulty":"挖矿难度","Next Block":"下一个区块","No Inputs (Newly Generated Coins)":"没有输入(新生产的币)","No blocks yet.":"尚无区块","No Transactions.":"尚无交易...","No matching records found!":"没找到匹配的记录","No. Transactions":"交易数量","Number Of Transactions":"交易数目",Output:"输出","Powered by":"Powered by","Previous Block":"上一个区块","Protocol version":"协议版本","Proxy setting":"代理设置","Raw transaction data":"原始交易数据","Raw transaction data must be a valid hexadecimal string.":"原始交易数据必须是有效的十六进制","Received Time":"接收时间","Redirecting...":"重定向中...","Search for block, transaction or address":"查询区块高度、区块哈希、交易哈希或地址","See all blocks":"查看所有区块","See all transcations":"查看所有交易","Send transaction":"发送交易","Show Transaction Output data":"显示交易输出数据","Show all":"显示所有","Show input":"显示输入","Show less":"隐藏","Show more":"显示更多",Signature:"签名",Size:"大小","Size (bytes)":"大小(字节)","Skipped Blocks (previously synced)":"已跳过块数量","Start Date":"开始时间",Status:"状态",Summary:"摘要","Summary confirmed":"摘要已确认","Sync Progress":"同步进度","Sync Status":"同步状态","Sync Type":"同步类型","Synced Blocks":"已同步块数量",Testnet:"Testnet","The message failed to verify.":"验证消息失败","The message is verifiably from {{verification.address}}.":"消息由{{verification.address}}验证","There are no transactions involving this address.":"此地址没有发生过交易","This form can be used to broadcast a raw transaction in hex format over\n the Bitcoin network.":"此表单可用于以十六进制格式通过比特币网络广播一个原始事务。","This form can be used to verify that a message comes from\n a specific Bitcoin address.":"此表单可用于验证消息是否来自特定的比特币地址。","Time Offset":"时间偏移",Timestamp:"交易时间",Today:"今天","Total Amount":"总数","Total Received":"总收入","Total Sent":"总支出",Transaction:"交易","Transaction Hash":"交易哈希","Transaction Output Set Information":"交易输出集合信息","Transaction Outputs":"交易输出","Transaction succesfully broadcast.
Transaction id: {{txid}}":"交易成功播报,
交易ID: {{txid}}",Transactions:"交易",Type:"类别",Unconfirmed:"未确认","Unconfirmed Transaction!":"未确认!","Unconfirmed Txs Balance":"未确认的交易余额","Value Out":"输出值",Verify:"验证","Verify signed message":"验证签名消息",Version:"版本","Waiting for blocks...":"等待区块...","Waiting for transactions...":"等待交易...","by date.":"按日期","first seen at":"最初发现于",mined:"挖掘","mined on:":"挖掘日期",Home:"首页",History:"历史",Blacklist:"黑名单",Network:"网络",syncing:"同步中",synced:"同步完成","Merkle Root":"Merkle根",Nonce:"随机数",Blockhash:"区块哈希","Fee Rate":"费率"})}]);
\ No newline at end of file
diff --git a/public/src/js/controllers/footer.js b/public/src/js/controllers/footer.js
index 11f92d8e9..55c21bf83 100644
--- a/public/src/js/controllers/footer.js
+++ b/public/src/js/controllers/footer.js
@@ -23,6 +23,9 @@ angular.module('insight.system').controller('FooterController',
}, {
name: 'French',
isoCode: 'fr_FR',
+ }, {
+ name: 'Nederlands',
+ isoCode: 'nl',
}, {
name: 'Spanish',
isoCode: 'es',
diff --git a/public/src/js/translations.js b/public/src/js/translations.js
index 83693bf8c..772bff8c4 100644
--- a/public/src/js/translations.js
+++ b/public/src/js/translations.js
@@ -1,11 +1,11 @@
angular.module('insight').run(['gettextCatalog', function (gettextCatalog) {
/* jshint -W100 */
- gettextCatalog.setStrings('de_DE', {"(Input unconfirmed)":"(Eingabe unbestätigt)","404 Page not found :(":"404 Seite nicht gefunden :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight ist ein Open Source Dash Blockchain Explorer mit vollständigen REST und Websocket APIs um eigene Wallets oder Applikationen zu implementieren. Hierbei werden fortschrittlichere Abfragen der Blockchain ermöglicht, bei denen die RPC des dashd nicht mehr ausreichen. Der aktuelle Quellcode ist auf GitHub zu finden.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.":"insight befindet sich aktuell noch in der Entwicklung. Bitte sende alle gefundenen Fehler (Bugs) und Feedback zur weiteren Verbesserung an unseren GitHub Issue Tracker.","About":"Über insight","Address":"Adresse","Age":"Alter","Application Status":"Programmstatus","Best Block":"Bester Block","Dash node information":"Dash-Node Info","Block":"Block","Block Reward":"Belohnung","Blocks":"Blöcke","Bytes Serialized":"Serialisierte Bytes","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Es ist nicht möglich mit dashd zu verbinden um live Aktualisierungen vom P2P Netzwerk zu erhalten. (Verbindungsversuch zu dashd an {{host}}:{{port}} ist fehlgeschlagen.)","Can't connect to insight server. Attempting to reconnect...":"Keine Verbindung zum insight-Server möglich. Es wird versucht die Verbindung neu aufzubauen...","Can't connect to internet. Please, check your connection.":"Keine Verbindung zum Internet möglich, bitte Zugangsdaten prüfen.","Complete":"Vollständig","Confirmations":"Bestätigungen","Conn":"Verbindungen","Connections to other nodes":"Verbindungen zu Nodes","Current Blockchain Tip (insight)":"Aktueller Blockchain Tip (insight)","Current Sync Status":"Aktueller Status","Details":"Details","Difficulty":"Schwierigkeit","Double spent attempt detected. From tx:":"Es wurde ein \"double Spend\" Versuch erkannt. Von tx:","Error!":"Fehler!","Fee":"Gebühr","Final Balance":"Schlussbilanz","Finish Date":"Fertigstellung","Go to home":"Zur Startseite","Hash Serialized":"Hash Serialisiert","Height":"Höhe","Included in Block":"Eingefügt in Block","Incoherence in levelDB detected:":"Es wurde eine Zusammenhangslosigkeit in der LevelDB festgestellt:","Info Errors":"Fehlerbeschreibung","Initial Block Chain Height":"Ursprüngliche Blockchain Höhe","Input":"Eingänge","Last Block":"Letzter Block","Last Block Hash (dashd)":"Letzter Hash (dashd)","Latest Blocks":"Letzte Blöcke","Latest Transactions":"Letzte Transaktionen","Loading Address Information":"Lade Adressinformationen","Loading Block Information":"Lade Blockinformation","Loading Selected Date...":"Lade gewähltes Datum...","Loading Transaction Details":"Lade Transaktionsdetails","Loading Transactions...":"Lade Transaktionen...","Loading...":"Lade...","Mined Time":"Block gefunden (Mining)","Mined by":"Gefunden von","Mining Difficulty":"Schwierigkeitgrad","Next Block":"Nächster Block","No Inputs (Newly Generated Coins)":"Keine Eingänge (Neu generierte Coins)","No blocks yet.":"Keine Blöcke bisher.","No matching records found!":"Keine passenden Einträge gefunden!","No. Transactions":"Anzahl Transaktionen","Number Of Transactions":"Anzahl der Transaktionen","Output":"Ausgänge","Powered by":"Powered by","Previous Block":"Letzter Block","Protocol version":"Protokollversion","Proxy setting":"Proxyeinstellung","Received Time":"Eingangszeitpunkt","Redirecting...":"Umleitung...","Search for block, transaction or address":"Suche Block, Transaktion oder Adresse","See all blocks":"Alle Blöcke anzeigen","Show Transaction Output data":"Zeige Abgänge","Show all":"Zeige Alles","Show input":"Zeige Eingänge","Show less":"Weniger anzeigen","Show more":"Mehr anzeigen","Size":"Größe","Size (bytes)":"Größe (bytes)","Skipped Blocks (previously synced)":"Verworfene Blöcke (bereits syncronisiert)","Start Date":"Startdatum","Status":"Status","Summary":"Zusammenfassung","Summary confirmed":"Zusammenfassung bestätigt","Sync Progress":"Fortschritt","Sync Status":"Syncronisation","Sync Type":"Art der Syncronisation","Synced Blocks":"Syncronisierte Blöcke","Testnet":"Testnet aktiv","There are no transactions involving this address.":"Es gibt keine Transaktionen zu dieser Adressse","Time Offset":"Zeitoffset zu UTC","Timestamp":"Zeitstempel","Today":"Heute","Total Amount":"Gesamtsumme","Total Received":"Insgesamt empfangen","Total Sent":"Insgesamt gesendet","Transaction":"Transaktion","Transaction Output Set Information":"Transaktions Abgänge","Transaction Outputs":"Abgänge","Transactions":"Transaktionen","Type":"Typ","Unconfirmed":"Unbestätigt","Unconfirmed Transaction!":"Unbestätigte Transaktion!","Unconfirmed Txs Balance":"Unbestätigtes Guthaben","Value Out":"Wert","Version":"Version","Waiting for blocks...":"Warte auf Blöcke...","Waiting for transactions...":"Warte auf Transaktionen...","by date.":"nach Datum.","first seen at":"zuerst gesehen am","mined":"gefunden","mined on:":"vom:","Waiting for blocks":"Warte auf Blöcke"});
- gettextCatalog.setStrings('es', {"(Input unconfirmed)":"(Entrada sin confirmar)","404 Page not found :(":"404 Página no encontrada :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight es un explorador de bloques de Dash open-source con un completo conjunto de REST y APIs de websockets que pueden ser usadas para escribir monederos de Dashs y otras aplicaciones que requieran consultar un explorador de bloques. Obtén el código en el repositorio abierto de GitHub.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.":"insight esta en desarrollo aún, por ello agradecemos que nos reporten errores o sugerencias para mejorar el software. GitHub issue tracker.","About":"Acerca de","Address":"Dirección","Age":"Edad","Application Status":"Estado de la Aplicación","Best Block":"Mejor Bloque","Dash node information":"Información del nodo Dash","Block":"Bloque","Block Reward":"Bloque Recompensa","Blocks":"Bloques","Bytes Serialized":"Bytes Serializados","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"No se pudo conectar a dashd para obtener actualizaciones en vivo de la red p2p. (Se intentó conectar a dashd de {{host}}:{{port}} y falló.)","Can't connect to insight server. Attempting to reconnect...":"No se pudo conectar al servidor insight. Intentando re-conectar...","Can't connect to internet. Please, check your connection.":"No se pudo conectar a Internet. Por favor, verifique su conexión.","Complete":"Completado","Confirmations":"Confirmaciones","Conn":"Con","Connections to other nodes":"Conexiones a otros nodos","Current Blockchain Tip (insight)":"Actual Blockchain Tip (insight)","Current Sync Status":"Actual Estado de Sincronización","Details":"Detalles","Difficulty":"Dificultad","Double spent attempt detected. From tx:":"Intento de doble gasto detectado. De la transacción:","Error!":"¡Error!","Fee":"Tasa","Final Balance":"Balance Final","Finish Date":"Fecha Final","Go to home":"Volver al Inicio","Hash Serialized":"Hash Serializado","Height":"Altura","Included in Block":"Incluido en el Bloque","Incoherence in levelDB detected:":"Detectada una incoherencia en levelDB:","Info Errors":"Errores de Información","Initial Block Chain Height":"Altura de la Cadena en Bloque Inicial","Input":"Entrada","Last Block":"Último Bloque","Last Block Hash (dashd)":"Último Bloque Hash (dashd)","Latest Blocks":"Últimos Bloques","Latest Transactions":"Últimas Transacciones","Loading Address Information":"Cargando Información de la Dirección","Loading Block Information":"Cargando Información del Bloque","Loading Selected Date...":"Cargando Fecha Seleccionada...","Loading Transaction Details":"Cargando Detalles de la Transacción","Loading Transactions...":"Cargando Transacciones...","Loading...":"Cargando...","Mined Time":"Hora de Minado","Mined by":"Minado por","Mining Difficulty":"Dificultad de Minado","Next Block":"Próximo Bloque","No Inputs (Newly Generated Coins)":"Sin Entradas (Monedas Recién Generadas)","No blocks yet.":"No hay bloques aún.","No matching records found!":"¡No se encontraron registros coincidentes!","No. Transactions":"Nro. de Transacciones","Number Of Transactions":"Número de Transacciones","Output":"Salida","Powered by":"Funciona con","Previous Block":"Bloque Anterior","Protocol version":"Versión del protocolo","Proxy setting":"Opción de proxy","Received Time":"Hora de Recibido","Redirecting...":"Redireccionando...","Search for block, transaction or address":"Buscar bloques, transacciones o direcciones","See all blocks":"Ver todos los bloques","Show Transaction Output data":"Mostrar dato de Salida de la Transacción","Show all":"Mostrar todos","Show input":"Mostrar entrada","Show less":"Ver menos","Show more":"Ver más","Size":"Tamaño","Size (bytes)":"Tamaño (bytes)","Skipped Blocks (previously synced)":"Bloques Saltados (previamente sincronizado)","Start Date":"Fecha de Inicio","Status":"Estado","Summary":"Resumen","Summary confirmed":"Resumen confirmados","Sync Progress":"Proceso de Sincronización","Sync Status":"Estado de Sincronización","Sync Type":"Tipo de Sincronización","Synced Blocks":"Bloques Sincornizados","Testnet":"Red de prueba","There are no transactions involving this address.":"No hay transacciones para esta dirección","Time Offset":"Desplazamiento de hora","Timestamp":"Fecha y hora","Today":"Hoy","Total Amount":"Cantidad Total","Total Received":"Total Recibido","Total Sent":"Total Enviado","Transaction":"Transacción","Transaction Output Set Information":"Información del Conjunto de Salida de la Transacción","Transaction Outputs":"Salidas de la Transacción","Transactions":"Transacciones","Type":"Tipo","Unconfirmed":"Sin confirmar","Unconfirmed Transaction!":"¡Transacción sin confirmar!","Unconfirmed Txs Balance":"Balance sin confirmar","Value Out":"Valor de Salida","Version":"Versión","Waiting for blocks...":"Esperando bloques...","Waiting for transactions...":"Esperando transacciones...","by date.":"por fecha.","first seen at":"Visto a","mined":"minado","mined on:":"minado el:","Waiting for blocks":"Esperando bloques"});
- gettextCatalog.setStrings('fr_FR', {"(Input unconfirmed)":"(Entrée non confirmé)","404 Page not found :(":"404 Page introuvable :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight est un explorateur open-source de blocs avec un ensemble complet d'API REST et websockets qui peuvent être utilisées pour écrire portefeuille et autres applications nécéssitant des requêtes plus complète que celles proposés par les commandes RPC de dashd. Consultez le code source sur GitHub.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.":"insight est toujours en développement, hésitez pas à remonter tout bugs et proposer des améliorations sur notre GitHub issue tracker.","About":"À propos","Address":"Adresse","Age":"Âge","Application Status":"Status de l'application","Best Block":"Meilleur Bloc","Dash node information":"Information sur le noeud Dash","Block":"Bloc","Block Reward":"Recompense de bloc","Blocks":"Blocs","Bytes Serialized":"Octets sérialisés","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Impossible de se connecter à dashd pour récupérer les dernières informations du réseau p2p. (Tentative de connexion à dashd ({{host}}:{{port}}) échouée.)","Can't connect to insight server. Attempting to reconnect...":"Impossible de se connecter au serveur Insight. Tentative de reconnexion...","Can't connect to internet. Please, check your connection.":"Impossible de se connecter à internet. S'il vous plait, réessayer.","Complete":"Achevés","Confirmations":"Confirmations","Conn":"Conn","Connections to other nodes":"Connexion aux autre noeuds","Current Blockchain Tip (insight)":"Tip Actuel de la Blockchain (insight)","Current Sync Status":"Status actuel de synchronisation","Details":"Détails","Difficulty":"Difficultée","Double spent attempt detected. From tx:":"Tentative de double dépense détectée. Dans la tx:","Error!":"Erreur!","Fee":"Frais","Final Balance":"Solde final","Finish Date":"Date de fin","Go to home":"Retour à l'accueil","Hash Serialized":"Hash Serialisé","Height":"Hauteur","Included in Block":"Inclus dans le bloc","Incoherence in levelDB detected:":"Incohérence dans levelDB détectée:","Info Errors":"Erreurs d'informations","Initial Block Chain Height":"Hauteur de la chaîne initiale","Input":"Entrée","Last Block":"Dernier bloc","Last Block Hash (dashd)":"Hash du dernier bloc (dashd)","Latest Blocks":"Derniers Blocs","Latest Transactions":"Dernières transactions","Loading Address Information":"Chargement des informations de l'adresse","Loading Block Information":"Chagement des information du bloc","Loading Selected Date...":"Chargement de la date sélectionnée...","Loading Transaction Details":"Chargement des détails de la transaction","Loading Transactions...":"Chagement des Transactions...","Loading...":"Chargement...","Mined Time":"Heure de minage","Mined by":"Miné par","Mining Difficulty":"Difficultée de minage","Next Block":"Bloc suivant","No Inputs (Newly Generated Coins)":"Pas d'entrées (nouvellement générées)","No blocks yet.":"Aucun blocs pour l'instant.","No matching records found!":"Aucun enregistremements correspondants trouvés!","No. Transactions":"Transactions N°","Number Of Transactions":"Nombre de transaction","Output":"Sortie","Powered by":"Propulsé par","Previous Block":"Bloc précédent","Protocol version":"Version du protocol","Proxy setting":"Paramètre de proxy","Received Time":"Heure de réception","Redirecting...":"Redirection...","Search for block, transaction or address":"Rechercher des blocs, transactions ou adresses","See all blocks":"Voir tous les blocs","Show Transaction Output data":"Afficher les données de sortie de transaction","Show all":"Tout afficher","Show input":"Afficher l'entrée","Show less":"Voir moins","Show more":"Voir plus","Size":"Taille","Size (bytes)":"Taille (octets)","Skipped Blocks (previously synced)":"Blocs ignorés (préalablement synchronisés)","Start Date":"Date de début","Status":"Status","Summary":"Résumé","Summary confirmed":"Résume confirmé","Sync Progress":"Progression de la synchronication","Sync Status":"Status de la synchronisation","Sync Type":"Type de la synchronisation","Synced Blocks":"Blocs synchronisés","Testnet":"Réseau de test","There are no transactions involving this address.":"Il n'y a pas de transactions impliquant cette adresse.","Time Offset":"Décalage horaire","Timestamp":"Date et heure","Today":"Aujourd'hui","Total Amount":"Montant Total","Total Received":"Total Reçu","Total Sent":"Total Envoyés","Transaction":"Transaction","Transaction Output Set Information":"Informations sur l'ensemble des sorties de transaction","Transaction Outputs":"Sorties de transaction","Transactions":"Transactions","Type":"Type","Unconfirmed":"Non confirmée","Unconfirmed Transaction!":"Transaction non confirmée!","Unconfirmed Txs Balance":"Solde non confirmé","Value Out":"Valeur de sortie","Version":"Version","Waiting for blocks...":"En attente de blocs...","Waiting for transactions...":"En attente de transactions...","by date.":"par date.","first seen at":"aperçu la première fois le","mined":"miné","mined on:":"miné le:","Waiting for blocks":"Esperando bloques"});
- gettextCatalog.setStrings('ja', {"(Input unconfirmed)":"(入力は未検証です)","404 Page not found :(":"404 ページがみつかりません (´・ω・`)","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insightは、dashd RPCの提供するものよりも詳細なブロックチェインへの問い合わせを必要とするウェブウォレットやその他のアプリを書くのに使える、完全なRESTおよびwebsocket APIを備えたオープンソースのビットコインブロックエクスプローラです。ソースコードを確認","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.":"insightは現在開発中です。githubのissueトラッカにてバグの報告や改善案の提案をお願いします。","About":"はじめに","Address":"アドレス","Age":"生成後経過時間","An error occured in the verification process.":"検証過程でエラーが発生しました。","An error occured:
{{error}}":"エラーが発生しました:
{{error}}","Application Status":"アプリケーションの状態","Best Block":"最良ブロック","Dash comes with a way of signing arbitrary messages.":"Dashには任意のメッセージを署名する昨日が備わっています。","Dash node information":"Dashノード情報","Block":"ブロック","Block Reward":"ブロック報酬","Blocks":"ブロック","Broadcast Raw Transaction":"生のトランザクションを配信","Bytes Serialized":"シリアライズ後の容量 (バイト)","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"P2Pネットワークからライブ情報を取得するためにdashdへ接続することができませんでした。({{host}}:{{port}} への接続を試みましたが、失敗しました。)","Can't connect to insight server. Attempting to reconnect...":"insight サーバに接続できません。再接続しています...","Can't connect to internet. Please, check your connection.":"インターネットに接続できません。コネクションを確認してください。","Complete":"完了","Confirmations":"検証数","Conn":"接続数","Connections to other nodes":"他ノードへの接続","Current Blockchain Tip (insight)":"現在のブロックチェインのTip (insight)","Current Sync Status":"現在の同期状況","Details":"詳細","Difficulty":"難易度","Double spent attempt detected. From tx:":"二重支払い攻撃をこのトランザクションから検知しました:","Error message:":"エラーメッセージ:","Error!":"エラー!","Fee":"手数料","Final Balance":"最終残高","Finish Date":"終了日時","Go to home":"ホームへ","Hash Serialized":"シリアライズデータのハッシュ値","Height":"ブロック高","Included in Block":"取り込まれたブロック","Incoherence in levelDB detected:":"levelDBの破損を検知しました:","Info Errors":"エラー情報","Initial Block Chain Height":"起動時のブロック高","Input":"入力","Last Block":"直前のブロック","Last Block Hash (dashd)":"直前のブロックのハッシュ値 (dashd)","Latest Blocks":"最新のブロック","Latest Transactions":"最新のトランザクション","Loading Address Information":"アドレス情報を読み込んでいます","Loading Block Information":"ブロック情報を読み込んでいます","Loading Selected Date...":"選択されたデータを読み込んでいます...","Loading Transaction Details":"トランザクションの詳細を読み込んでいます","Loading Transactions...":"トランザクションを読み込んでいます...","Loading...":"ロード中...","Message":"メッセージ","Mined Time":"採掘時刻","Mined by":"採掘者","Mining Difficulty":"採掘難易度","Next Block":"次のブロック","No Inputs (Newly Generated Coins)":"入力なし (新しく生成されたコイン)","No blocks yet.":"ブロックはありません。","No matching records found!":"一致するレコードはありません!","No. Transactions":"トランザクション数","Number Of Transactions":"トランザクション数","Output":"出力","Powered by":"Powered by","Previous Block":"前のブロック","Protocol version":"プロトコルバージョン","Proxy setting":"プロキシ設定","Raw transaction data":"トランザクションの生データ","Raw transaction data must be a valid hexadecimal string.":"生のトランザクションデータは有効な16進数でなければいけません。","Received Time":"受信時刻","Redirecting...":"リダイレクトしています...","Search for block, transaction or address":"ブロック、トランザクション、アドレスを検索","See all blocks":"すべてのブロックをみる","Send transaction":"トランザクションを送信","Show Transaction Output data":"トランザクションの出力データをみる","Show all":"すべて表示","Show input":"入力を表示","Show less":"隠す","Show more":"表示する","Signature":"署名","Size":"サイズ","Size (bytes)":"サイズ (バイト)","Skipped Blocks (previously synced)":"スキップされたブロック (同期済み)","Start Date":"開始日時","Status":"ステータス","Summary":"概要","Summary confirmed":"サマリ 検証済み","Sync Progress":"同期の進捗状況","Sync Status":"同期ステータス","Sync Type":"同期タイプ","Synced Blocks":"同期されたブロック数","Testnet":"テストネット","The message failed to verify.":"メッセージの検証に失敗しました。","The message is verifiably from {{verification.address}}.":"メッセージは{{verification.address}}により検証されました。","There are no transactions involving this address.":"このアドレスに対するトランザクションはありません。","This form can be used to broadcast a raw transaction in hex format over\n the Dash network.":"このフォームでは、16進数フォーマットの生のトランザクションをDashネットワーク上に配信することができます。","This form can be used to verify that a message comes from\n a specific Dash address.":"このフォームでは、メッセージが特定のDashアドレスから来たかどうかを検証することができます。","Time Offset":"時間オフセット","Timestamp":"タイムスタンプ","Today":"今日","Total Amount":"Dash総量","Total Received":"総入金額","Total Sent":"総送金額","Transaction":"トランザクション","Transaction Output Set Information":"トランザクションの出力セット情報","Transaction Outputs":"トランザクションの出力","Transaction succesfully broadcast.
Transaction id: {{txid}}":"トランザクションの配信に成功しました。
トランザクションID: {{txid}}","Transactions":"トランザクション","Type":"タイプ","Unconfirmed":"未検証","Unconfirmed Transaction!":"未検証のトランザクションです!","Unconfirmed Txs Balance":"未検証トランザクションの残高","Value Out":"出力値","Verify":"検証","Verify signed message":"署名済みメッセージを検証","Version":"バージョン","Waiting for blocks...":"ブロックを待っています...","Waiting for transactions...":"トランザクションを待っています...","by date.":"日毎。","first seen at":"最初に発見された日時","mined":"採掘された","mined on:":"採掘日時:","(Mainchain)":"(メインチェーン)","(Orphaned)":"(孤立したブロック)","Bits":"Bits","Block #{{block.height}}":"ブロック #{{block.height}}","BlockHash":"ブロックのハッシュ値","Blocks
mined on:":"ブロック
採掘日","Coinbase":"コインベース","Hash":"ハッシュ値","LockTime":"ロック時間","Merkle Root":"Merkleルート","Nonce":"Nonce","Ooops!":"おぉっと!","Output is spent":"出力は使用済みです","Output is unspent":"出力は未使用です","Scan":"スキャン","Show/Hide items details":"アイテムの詳細を表示または隠す","Waiting for blocks":"ブロックを待っています","by date. {{detail}} {{before}}":"日時順 {{detail}} {{before}}","scriptSig":"scriptSig","{{tx.confirmations}} Confirmations":"{{tx.confirmations}} 検証"," (Orphaned)":" (孤立したブロック)"," Incoherence in levelDB detected: {{vin.dbError}}":" Incoherence in levelDB detected: {{vin.dbError}}","Waiting for blocks ":"ブロックを待っています "});
- gettextCatalog.setStrings('de_DE', {"(Input unconfirmed)":"(Input onbevestigd)","404 Page not found :(":"404 Pagina niet gevonden :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight is een opensource Dash-blokketenexplorer met volledige REST- en websocket-API's om eigen webportomonnee's en andere apps te implementeren. Hierdoor zijn meer geavanceerde query's op de blokketen mogelijk, dan die door RPC worden aangeboden. De actuele broncode is op GitHub te vinden.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.":"insight is nog steeds in ontwikkeling. Dus rapporteer fouten (bugs) en geef terugkoppeling voor verbeteringen via onze issuetracker op GitHub.","About":"Over","Address":"Adres","Age":"Leeftijd","Application Status":"Programmastatus","Best Block":"Beste blok","Dash node information":"Dash-knooppuntinformatie","Block":"Blok","Block Reward":"Blokbeloning","Blocks":"Blokken","Bytes Serialized":"Geserialiseerde bytes","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Kan geen verbinding maken net dashd om liveupdates van het P2P-netwerk te ontvangen. (Geprobeerd verbinding te maken met dashd op {{host}}:{{port}} en is mislukt.)","Can't connect to insight server. Attempting to reconnect...":"Kan geen verbinding maken met de insight-server. Het wordt nog eens geprobeerd...","Can't connect to internet. Please, check your connection.":"Kan geen verbinding maken met het internet. Controleer je verbinding.","Complete":"Compleet","Confirmations":"Bevestigingen","Conn":"Verbindingen","Connections to other nodes":"Verbindingen met andere knooppunten","Current Blockchain Tip (insight)":"Huidige blokketentop (insight)","Current Sync Status":"Huidige synchronisatiestatus","Details":"Details","Difficulty":"Moeilijkheid","Double spent attempt detected. From tx:":"Er is een \"dubbele uitgave\" gedetecteerd. Van tx:","Error!":"Fout!","Fee":"Transactiekosten","Final Balance":"Totaalsaldo","Finish Date":"Einddatum","Go to home":"Ga naar home","Hash Serialized":"Geserialiseerde hash","Height":"Hoogte","Included in Block":"Inbegrepen in blok","Incoherence in levelDB detected:":"Incoherentie is gedetecteerd in levelDB:","Info Errors":"Foutbeschrijving","Initial Block Chain Height":"Oorspronkelijke blokketenhoogte","Input":"Input","Last Block":"Laatste blok","Last Block Hash (dashd)":"Laatste blokhash (dashd)","Latest Blocks":"Recentste blok","Latest Transactions":"Recentste transacties","Loading Address Information":"Adresinformatie aan het laden","Loading Block Information":"Blokinformatie aan het laden","Loading Selected Date...":"Geselecteerde datum aan het laden...","Loading Transaction Details":"Transactiedetails aan het laden","Loading Transactions...":"Transacties aan het laden...","Loading...":"Aan het laden...","Mined Time":"Miningtijdstip","Mined by":"Gemined door","Mining Difficulty":"Miningmoeilijkheid","Next Block":"Volgende blok","No Inputs (Newly Generated Coins)":"Geen inputs (nieuw aangemaakte munten)","No blocks yet.":"Nog geen blokken.","No matching records found!":"Geen passende records gevonden!","No. Transactions":"Aantal transacties","Number Of Transactions":"Aantal transacties","Output":"Output","Powered by":"Aangedreven door","Previous Block":"Vorig blok","Protocol version":"Protocolversie","Proxy setting":"Proxy-instellingen","Received Time":"Onvangsttijdstip","Redirecting...":"Aan het omleiden...","Search for block, transaction or address":"Zoek op blok, transactie of adres","See all blocks":"Bekijk alle blokken","Show Transaction Output data":"Toon transactieoutputgegevens","Show all":"Toon alles","Show input":"Toon input","Show less":"Toon minder","Show more":"Toon meer","Size":"Grootte","Size (bytes)":"Grootte (bytes)","Skipped Blocks (previously synced)":"Overgeslagen blokken (voorheen gesynchroniseerd)","Start Date":"Startdatum","Status":"Status","Summary":"Samenvatting","Summary confirmed":"Samenvatting bevestigd","Sync Progress":"Synchronisatievoortgang","Sync Status":"Synchronisatiestatus","Sync Type":"Synchronisatietype","Synced Blocks":"Gesynchroniseerde blokken","Testnet":"Testnet actief","There are no transactions involving this address.":"Er zijn geen transacties gerelateerd aan dit adres.","Time Offset":"Tijdsoffset tot UTC","Timestamp":"Tijdsstempel","Today":"Vandaag","Total Amount":"Totaalbedrag","Total Received":"Totaal ontvangen","Total Sent":"Totaal verstuurd","Transaction":"Transactie","Transaction Output Set Information":"Transactieoutputsetinformatie","Transaction Outputs":"Transactieoutputs","Transactions":"Transacties","Type":"Type","Unconfirmed":"Onbevestigd","Unconfirmed Transaction!":"Onbevestigde transacties!","Unconfirmed Txs Balance":"Onbevestigde transactiesaldo","Value Out":"Waarde","Version":"Versie","Waiting for blocks...":"Op blokken aan het wachten...","Waiting for transactions...":"Op transacties aan het wachten...","by date.":"op datum.","first seen at":"voor het eerst gezien op","mined":"gemined","mined on:":"gemined op:","Waiting for blocks":"Op blokken aan het wachten"});
- gettextCatalog.setStrings('pt_BR', {"(Input unconfirmed)":"(Entrada não confirmada)","insight is an open-source Bitcoin blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by bitcoind RPC. Check out the source code.":"insight é um explorador de blocos Bitcoin de código aberto com um conjunto completo de APIs de websocket e REST que podem ser usadas para programar carteiras online e outros aplicativos que necessitam consultar um explorador de blocos. Confira o código-fonte.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insight ainda está em desenvolvimento, portanto agradecemos que postem erros e sugestões para melhorias em nosso rastreador de problemas no GitHub.","404 Page not found :(":"404 Página não encontrada :(","About":"Sobre","Address":"Endereço","Age":"Idade","An error occured in the verification process.":"Ocorreu um erro no processo de verificação.","An error occured:
{{error}}":"Ocorreu um erro:
{{error}}","Application Status":"Estado do Aplicativo","Bitcoin comes with a way of signing arbitrary messages.":"Bitcoin possui um método de assinar mensagens arbitrárias.","Bitcoin node information":"Informações do nó Bitcoin","Block":"Bloco","Block Reward":"Recompensa do Bloco","Blocks":"Blocos","Broadcast Raw Transaction":"Transmitir Transações Brutas","by date.":"por data.","Can't connect to bitcoind to get live updates from the p2p network. (Tried connecting to bitcoind at {{host}}:{{port}} and failed.)":"Não foi possível conectar-se ao bitcoind para obter atualizações em tempo real da rede p2p. (A tentativa de conectar-se à {{host}}:{{port}} falhou.)","Can't connect to insight server. Attempting to reconnect...":"Não foi possível conectar-se ao servidor insight. Tentando reconectar...","Can't connect to internet. Please, check your connection.":"Não foi possível conectar-se à internet. Verifique sua conexão.","Complete":"Completa","Confirmations":"Confirmações","Conn":"Con","Connections to other nodes":"Conexões a outros nós","Current Blockchain Tip (insight)":"Atual Blockchain Tip (insight)","Current Sync Status":"Estado Atual de Sincronização","Details":"Detalhes","Difficulty":"Dificuldade","Double spent attempt detected. From tx:":"Tentativa de gasto duplo detectada. Da transação:","Error message:":"Mensagem de erro:","Error!":"Erro!","Fee":"Taxa","Fee Rate":"Taxa por kilobyte","Final Balance":"Saldo Final","Finish Date":"Data de Término","first seen at":"visto pela primeira vez em","Go to home":"Voltar ao início","Height":"Altura","Included in Block":"Incluída no Bloco","Incoherence in levelDB detected:":"Incoerência no levelDB detectada:","Info Errors":"Erros de informação","Initial Block Chain Height":"Altura inicial da Blockchain","Input":"Entrada","Last Block":"Último Bloco","Last Block Hash (Bitcoind)":"Hash do Último Bloco (Bitcoind)","Latest Blocks":"Blocos Recentes","Latest Transactions":"Transações Recentes","Loading Address Information":"Carregando informações do endereço","Loading Block Information":"Carregando informações do bloco","Loading Selected Date...":"Carregando data selecionada...","Loading Transaction Details":"Carregando detalhes da transação","Loading Transactions...":"Carregando transações...","Loading...":"Carregando...","Message":"Mensagem","mined":"minerado","Mined by":"Minerado por","mined on:":"minerado em:","Mined Time":"Minerada em","Mining Difficulty":"Dificuldade de Mineração","Network":"Rede","Next Block":"Próximo Bloco","No blocks yet.":"Ainda não há blocos.","No Inputs (Newly Generated Coins)":"Nenhuma Entrada (moedas recém-geradas)","No matching records found!":"Não foram encontrados registros correspondentes!","No. Transactions":"Nº de transações","Number Of Transactions":"Número de Transações","Output":"Saída","Powered by":"Funciona com","Previous Block":"Bloco Anterior","Protocol version":"Versão do protocolo","Proxy setting":"Configuração de proxy","Raw transaction data":"Dados brutos da transação","Raw transaction data must be a valid hexadecimal string.":"Os dados brutos da transação devem ser uma string hexadecimal válida.","Received Time":"Recebida em","Redirecting...":"Redirecionando...","Search for block, transaction or address":"Procurar por blocos, transações ou endereços","See all blocks":"Visualizar todos os blocos","Send transaction":"Enviar transação","Show all":"Mostrar todos","Show input":"Mostrar entrada","Show less":"Mostrar menos","Show more":"Mostrar mais","Signature":"Assinatura","Size":"Tamanho","Size (bytes)":"Tamanho (bytes)","Skipped Blocks (previously synced)":"Blocos Ignorados (previamente sincronizados)","Start Date":"Data de Início","Status":"Estado","Summary":"Resumo","Summary confirmed":"Resumo confirmado","Sync Progress":"Progresso de Sincronização","Sync Status":"Estado de Sincronização","Sync Type":"Tipo de Sincronização","Synced Blocks":"Blocos sincronizados","The message failed to verify.":"Falha ao verificar a mensagem.","The message is verifiably from {{verification.address}}.":"A mensagem é verificável de {{verification.address}}.","There are no transactions involving this address.":"Não existem transações envolvendo este endereço.","This form can be used to broadcast a raw transaction in hex format over\r\n the Bitcoin network.":"Este formulário pode ser usado para transmitir uma transação bruta em formato \r\n hexadecimal para a rede Bitcoin.","This form can be used to verify that a message comes from\r\n a specific Bitcoin address.":"Este formulário pode ser usado para verificar se uma mensagem\r\n veio de um endereço Bitcoin específico.","Time Offset":"Compensação de Tempo","Timestamp":"Data e Hora","Today":"Hoje","Total Received":"Total Recebido","Total Sent":"Total Enviado","Transaction":"Transação","Transaction succesfully broadcast.
Transaction id: {{txid}}":"Transação transmitida com sucesso.
ID da transação: {{txid}}","Transactions":"Transações","Type":"Tipo","Unconfirmed":"Não confirmada","Unconfirmed Transaction!":"Transação não confirmada!","Unconfirmed Txs Balance":"Balanço de Transações não confirmadas","Value Out":"Valor de Saída","Verify":"Verificar","Verify signed message":"Verificar mensagem assinada","Version":"Versão","Waiting for blocks...":"Esperando por blocos...","Waiting for transactions...":"Esperando por transações..."});
- gettextCatalog.setStrings('zh', {"(Input unconfirmed)":"输入未确定","404 Page not found :(":"404 页面不存在","insight is an open-source Bitcoin blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by bitcoind RPC. Check out the source code.":"insight是一个开源的比特币区块链浏览器。支持完整的REST和Web Socket API 调用,可用于编写Web钱包和其他需要比bitcoind RPC提供的更高级区块链查询的应用程序。查看源代码","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.":"该系统仍在开发中详情发现问题或提供反馈请报告给我们的开发人员","About":"关于","Address":"地址","Age":"生成时间","An error occured in the verification process.":"验证过程出错","An error occured:
{{error}}":"发生错误
{{error}}","Application Status":"程序状态","Best Block":"最好的块","Bitcoin comes with a way of signing arbitrary messages.":"Bitcoin可以签名任意消息","Bitcoin node information":"比特币节点信息","Block":"区块","Block Reward":"块报酬","Blocks":"区块","Blocks Num":"区块数","Broadcast Raw Transaction":"广播原始交易","Bytes Serialized":"序列化后的大小 (B)","Can't connect to bitcoind to get live updates from the p2p network. (Tried connecting to bitcoind at {{host}}:{{port}} and failed.)":"无法连接到BitCoin P2P网络。(尝试{{host}}:{{port}} 连接失败)","Can't connect to insight server. Attempting to reconnect...":"无法连接到服务器,正在重试","Can't connect to internet. Please, check your connection.":"无法连接到因特网,请检查连接","Complete":"完成","Confirmations":"个确认","Conn":"连接数","Connections to other nodes":"连接数","Current Blockchain Tip (insight)":"当前区块链Tip(insight)","Current Sync Status":"当前同步状态","Details":"详情","Difficulty":"难度","Double spent attempt detected. From tx:":"检测到双花,来自tx:","Error message:":"错误消息:","Error!":"错误","Fee":"手续费","Final Balance":"钱包余额","Finish Date":"结束日期","Go to home":"回主页","Hash Serialized":"Hash序列化","Height":"高度","BlockHeight":"区块高度","Included in Block":"所在区块","Incoherence in levelDB detected:":"在levelDB中检测到不一致:","Info Errors":"错误信息","Initial Block Chain Height":"最新区块高度","Input":"输入","Last Block":"最新区块信息","Last Block Hash (Bitcoind)":"最新区块哈希(Bitcoind)","Latest Blocks":"最新区块","Latest Transactions":"最新交易","Loading Address Information":"加载地址信息","Loading Block Information":"加载区块信息","Loading Selected Date...":"加载选择日期...","Loading Transaction Details":"加载交易详情","Loading Transactions...":"加载交易...","Loading...":"加载中...","Message":"消息","Mined Time":"挖掘时间","Mined by":"矿池","Mining Difficulty":"挖矿难度","Next Block":"下一个区块","No Inputs (Newly Generated Coins)":"没有输入(新生产的币)","No blocks yet.":"尚无区块","No Transactions.":"尚无交易...","No matching records found!":"没找到匹配的记录","No. Transactions":"交易数量","Number Of Transactions":"交易数目","Output":"输出","Powered by":"Powered by","Previous Block":"上一个区块","Protocol version":"协议版本","Proxy setting":"代理设置","Raw transaction data":"原始交易数据","Raw transaction data must be a valid hexadecimal string.":"原始交易数据必须是有效的十六进制","Received Time":"接收时间","Redirecting...":"重定向中...","Search for block, transaction or address":"查询区块高度、区块哈希、交易哈希或地址","See all blocks":"查看所有区块","See all transcations":"查看所有交易","Send transaction":"发送交易","Show Transaction Output data":"显示交易输出数据","Show all":"显示所有","Show input":"显示输入","Show less":"隐藏","Show more":"显示更多","Signature":"签名","Size":"大小","Size (bytes)":"大小(字节)","Skipped Blocks (previously synced)":"已跳过块数量","Start Date":"开始时间","Status":"状态","Summary":"摘要","Summary confirmed":"摘要已确认","Sync Progress":"同步进度","Sync Status":"同步状态","Sync Type":"同步类型","Synced Blocks":"已同步块数量","Testnet":"Testnet","The message failed to verify.":"验证消息失败","The message is verifiably from {{verification.address}}.":"消息由{{verification.address}}验证","There are no transactions involving this address.":"此地址没有发生过交易","This form can be used to broadcast a raw transaction in hex format over\n the Bitcoin network.":"此表单可用于以十六进制格式通过比特币网络广播一个原始事务。","This form can be used to verify that a message comes from\n a specific Bitcoin address.":"此表单可用于验证消息是否来自特定的比特币地址。","Time Offset":"时间偏移","Timestamp":"交易时间","Today":"今天","Total Amount":"总数","Total Received":"总收入","Total Sent":"总支出","Transaction":"交易","Transaction Hash":"交易哈希","Transaction Output Set Information":"交易输出集合信息","Transaction Outputs":"交易输出","Transaction succesfully broadcast.
Transaction id: {{txid}}":"交易成功播报,
交易ID: {{txid}}","Transactions":"交易","Type":"类别","Unconfirmed":"未确认","Unconfirmed Transaction!":"未确认!","Unconfirmed Txs Balance":"未确认的交易余额","Value Out":"输出值","Verify":"验证","Verify signed message":"验证签名消息","Version":"版本","Waiting for blocks...":"等待区块...","Waiting for transactions...":"等待交易...","by date.":"按日期","first seen at":"最初发现于","mined":"挖掘","mined on:":"挖掘日期","Home":"首页","History":"历史","Blacklist":"黑名单","Network":"网络","syncing":"同步中","synced":"同步完成","Merkle Root":"Merkle根","Nonce":"随机数","Blockhash":"区块哈希","Fee Rate":"费率"});
+ gettextCatalog.setStrings('de_DE', {"(Input unconfirmed)":"(Eingabe unbestätigt)","404 Page not found :(":"404 Seite nicht gefunden :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight ist ein Open Source Dash Blockchain Explorer mit vollständigen REST und Websocket APIs um eigene Wallets oder Applikationen zu implementieren. Hierbei werden fortschrittlichere Abfragen der Blockchain ermöglicht, bei denen die RPC des dashd nicht mehr ausreichen. Der aktuelle Quellcode ist auf GitHub zu finden.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insight befindet sich aktuell noch in der Entwicklung. Bitte sende alle gefundenen Fehler (Bugs) und Feedback zur weiteren Verbesserung an unseren GitHub Issue Tracker.","About":"Über insight","Address":"Adresse","Age":"Alter","Application Status":"Programmstatus","Best Block":"Bester Block","Dash node information":"Dash-Node Info","Block":"Block","Block Reward":"Belohnung","Blocks":"Blöcke","Bytes Serialized":"Serialisierte Bytes","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Es ist nicht möglich mit dashd zu verbinden um live Aktualisierungen vom P2P Netzwerk zu erhalten. (Verbindungsversuch zu dashd an {{host}}:{{port}} ist fehlgeschlagen.)","Can't connect to insight server. Attempting to reconnect...":"Keine Verbindung zum insight-Server möglich. Es wird versucht die Verbindung neu aufzubauen...","Can't connect to internet. Please, check your connection.":"Keine Verbindung zum Internet möglich, bitte Zugangsdaten prüfen.","Complete":"Vollständig","Confirmations":"Bestätigungen","Conn":"Verbindungen","Connections to other nodes":"Verbindungen zu Nodes","Current Blockchain Tip (insight)":"Aktueller Blockchain Tip (insight)","Current Sync Status":"Aktueller Status","Details":"Details","Difficulty":"Schwierigkeit","Double spent attempt detected. From tx:":"Es wurde ein \"double Spend\" Versuch erkannt. Von tx:","Error!":"Fehler!","Fee":"Gebühr","Final Balance":"Schlussbilanz","Finish Date":"Fertigstellung","Go to home":"Zur Startseite","Hash Serialized":"Hash Serialisiert","Height":"Höhe","Included in Block":"Eingefügt in Block","Incoherence in levelDB detected:":"Es wurde eine Zusammenhangslosigkeit in der LevelDB festgestellt:","Info Errors":"Fehlerbeschreibung","Initial Block Chain Height":"Ursprüngliche Blockchain Höhe","Input":"Eingänge","Last Block":"Letzter Block","Last Block Hash (dashd)":"Letzter Hash (dashd)","Latest Blocks":"Letzte Blöcke","Latest Transactions":"Letzte Transaktionen","Loading Address Information":"Lade Adressinformationen","Loading Block Information":"Lade Blockinformation","Loading Selected Date...":"Lade gewähltes Datum...","Loading Transaction Details":"Lade Transaktionsdetails","Loading Transactions...":"Lade Transaktionen...","Loading...":"Lade...","Mined Time":"Block gefunden (Mining)","Mined by":"Gefunden von","Mining Difficulty":"Schwierigkeitgrad","Next Block":"Nächster Block","No Inputs (Newly Generated Coins)":"Keine Eingänge (Neu generierte Coins)","No blocks yet.":"Keine Blöcke bisher.","No matching records found!":"Keine passenden Einträge gefunden!","No. Transactions":"Anzahl Transaktionen","Number Of Transactions":"Anzahl der Transaktionen","Output":"Ausgänge","Powered by":"Powered by","Previous Block":"Letzter Block","Protocol version":"Protokollversion","Proxy setting":"Proxyeinstellung","Received Time":"Eingangszeitpunkt","Redirecting...":"Umleitung...","Search for block, transaction or address":"Suche Block, Transaktion oder Adresse","See all blocks":"Alle Blöcke anzeigen","Show Transaction Output data":"Zeige Abgänge","Show all":"Zeige Alles","Show input":"Zeige Eingänge","Show less":"Weniger anzeigen","Show more":"Mehr anzeigen","Size":"Größe","Size (bytes)":"Größe (bytes)","Skipped Blocks (previously synced)":"Verworfene Blöcke (bereits syncronisiert)","Start Date":"Startdatum","Status":"Status","Summary":"Zusammenfassung","Summary confirmed":"Zusammenfassung bestätigt","Sync Progress":"Fortschritt","Sync Status":"Syncronisation","Sync Type":"Art der Syncronisation","Synced Blocks":"Syncronisierte Blöcke","Testnet":"Testnet aktiv","There are no transactions involving this address.":"Es gibt keine Transaktionen zu dieser Adressse","Time Offset":"Zeitoffset zu UTC","Timestamp":"Zeitstempel","Today":"Heute","Total Amount":"Gesamtsumme","Total Received":"Insgesamt empfangen","Total Sent":"Insgesamt gesendet","Transaction":"Transaktion","Transaction Output Set Information":"Transaktions Abgänge","Transaction Outputs":"Abgänge","Transactions":"Transaktionen","Type":"Typ","Unconfirmed":"Unbestätigt","Unconfirmed Transaction!":"Unbestätigte Transaktion!","Unconfirmed Txs Balance":"Unbestätigtes Guthaben","Value Out":"Wert","Version":"Version","Waiting for blocks...":"Warte auf Blöcke...","Waiting for transactions...":"Warte auf Transaktionen...","by date.":"nach Datum.","first seen at":"zuerst gesehen am","mined":"gefunden","mined on:":"vom:","Waiting for blocks":"Warte auf Blöcke"});
+ gettextCatalog.setStrings('es', {"(Input unconfirmed)":"(Entrada sin confirmar)","404 Page not found :(":"404 Página no encontrada :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight es un explorador de bloques de Dash open-source con un completo conjunto de REST y APIs de websockets que pueden ser usadas para escribir monederos de Dashs y otras aplicaciones que requieran consultar un explorador de bloques. Obtén el código en el repositorio abierto de GitHub.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insight esta en desarrollo aún, por ello agradecemos que nos reporten errores o sugerencias para mejorar el software. GitHub issue tracker.","About":"Acerca de","Address":"Dirección","Age":"Edad","Application Status":"Estado de la Aplicación","Best Block":"Mejor Bloque","Dash node information":"Información del nodo Dash","Block":"Bloque","Block Reward":"Bloque Recompensa","Blocks":"Bloques","Bytes Serialized":"Bytes Serializados","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"No se pudo conectar a dashd para obtener actualizaciones en vivo de la red p2p. (Se intentó conectar a dashd de {{host}}:{{port}} y falló.)","Can't connect to insight server. Attempting to reconnect...":"No se pudo conectar al servidor insight. Intentando re-conectar...","Can't connect to internet. Please, check your connection.":"No se pudo conectar a Internet. Por favor, verifique su conexión.","Complete":"Completado","Confirmations":"Confirmaciones","Conn":"Con","Connections to other nodes":"Conexiones a otros nodos","Current Blockchain Tip (insight)":"Actual Blockchain Tip (insight)","Current Sync Status":"Actual Estado de Sincronización","Details":"Detalles","Difficulty":"Dificultad","Double spent attempt detected. From tx:":"Intento de doble gasto detectado. De la transacción:","Error!":"¡Error!","Fee":"Tasa","Final Balance":"Balance Final","Finish Date":"Fecha Final","Go to home":"Volver al Inicio","Hash Serialized":"Hash Serializado","Height":"Altura","Included in Block":"Incluido en el Bloque","Incoherence in levelDB detected:":"Detectada una incoherencia en levelDB:","Info Errors":"Errores de Información","Initial Block Chain Height":"Altura de la Cadena en Bloque Inicial","Input":"Entrada","Last Block":"Último Bloque","Last Block Hash (dashd)":"Último Bloque Hash (dashd)","Latest Blocks":"Últimos Bloques","Latest Transactions":"Últimas Transacciones","Loading Address Information":"Cargando Información de la Dirección","Loading Block Information":"Cargando Información del Bloque","Loading Selected Date...":"Cargando Fecha Seleccionada...","Loading Transaction Details":"Cargando Detalles de la Transacción","Loading Transactions...":"Cargando Transacciones...","Loading...":"Cargando...","Mined Time":"Hora de Minado","Mined by":"Minado por","Mining Difficulty":"Dificultad de Minado","Next Block":"Próximo Bloque","No Inputs (Newly Generated Coins)":"Sin Entradas (Monedas Recién Generadas)","No blocks yet.":"No hay bloques aún.","No matching records found!":"¡No se encontraron registros coincidentes!","No. Transactions":"Nro. de Transacciones","Number Of Transactions":"Número de Transacciones","Output":"Salida","Powered by":"Funciona con","Previous Block":"Bloque Anterior","Protocol version":"Versión del protocolo","Proxy setting":"Opción de proxy","Received Time":"Hora de Recibido","Redirecting...":"Redireccionando...","Search for block, transaction or address":"Buscar bloques, transacciones o direcciones","See all blocks":"Ver todos los bloques","Show Transaction Output data":"Mostrar dato de Salida de la Transacción","Show all":"Mostrar todos","Show input":"Mostrar entrada","Show less":"Ver menos","Show more":"Ver más","Size":"Tamaño","Size (bytes)":"Tamaño (bytes)","Skipped Blocks (previously synced)":"Bloques Saltados (previamente sincronizado)","Start Date":"Fecha de Inicio","Status":"Estado","Summary":"Resumen","Summary confirmed":"Resumen confirmados","Sync Progress":"Proceso de Sincronización","Sync Status":"Estado de Sincronización","Sync Type":"Tipo de Sincronización","Synced Blocks":"Bloques Sincornizados","Testnet":"Red de prueba","There are no transactions involving this address.":"No hay transacciones para esta dirección","Time Offset":"Desplazamiento de hora","Timestamp":"Fecha y hora","Today":"Hoy","Total Amount":"Cantidad Total","Total Received":"Total Recibido","Total Sent":"Total Enviado","Transaction":"Transacción","Transaction Output Set Information":"Información del Conjunto de Salida de la Transacción","Transaction Outputs":"Salidas de la Transacción","Transactions":"Transacciones","Type":"Tipo","Unconfirmed":"Sin confirmar","Unconfirmed Transaction!":"¡Transacción sin confirmar!","Unconfirmed Txs Balance":"Balance sin confirmar","Value Out":"Valor de Salida","Version":"Versión","Waiting for blocks...":"Esperando bloques...","Waiting for transactions...":"Esperando transacciones...","by date.":"por fecha.","first seen at":"Visto a","mined":"minado","mined on:":"minado el:","Waiting for blocks":"Esperando bloques"});
+ gettextCatalog.setStrings('fr_FR', {"(Input unconfirmed)":"(Entrée non confirmé)","404 Page not found :(":"404 Page introuvable :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight est un explorateur open-source de blocs avec un ensemble complet d'API REST et websockets qui peuvent être utilisées pour écrire portefeuille et autres applications nécéssitant des requêtes plus complète que celles proposés par les commandes RPC de dashd. Consultez le code source sur GitHub.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insight est toujours en développement, hésitez pas à remonter tout bugs et proposer des améliorations sur notre GitHub issue tracker.","About":"À propos","Address":"Adresse","Age":"Âge","Application Status":"Status de l'application","Best Block":"Meilleur Bloc","Dash node information":"Information sur le noeud Dash","Block":"Bloc","Block Reward":"Recompense de bloc","Blocks":"Blocs","Bytes Serialized":"Octets sérialisés","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Impossible de se connecter à dashd pour récupérer les dernières informations du réseau p2p. (Tentative de connexion à dashd ({{host}}:{{port}}) échouée.)","Can't connect to insight server. Attempting to reconnect...":"Impossible de se connecter au serveur Insight. Tentative de reconnexion...","Can't connect to internet. Please, check your connection.":"Impossible de se connecter à internet. S'il vous plait, réessayer.","Complete":"Achevés","Confirmations":"Confirmations","Conn":"Conn","Connections to other nodes":"Connexion aux autre noeuds","Current Blockchain Tip (insight)":"Tip Actuel de la Blockchain (insight)","Current Sync Status":"Status actuel de synchronisation","Details":"Détails","Difficulty":"Difficultée","Double spent attempt detected. From tx:":"Tentative de double dépense détectée. Dans la tx:","Error!":"Erreur!","Fee":"Frais","Final Balance":"Solde final","Finish Date":"Date de fin","Go to home":"Retour à l'accueil","Hash Serialized":"Hash Serialisé","Height":"Hauteur","Included in Block":"Inclus dans le bloc","Incoherence in levelDB detected:":"Incohérence dans levelDB détectée:","Info Errors":"Erreurs d'informations","Initial Block Chain Height":"Hauteur de la chaîne initiale","Input":"Entrée","Last Block":"Dernier bloc","Last Block Hash (dashd)":"Hash du dernier bloc (dashd)","Latest Blocks":"Derniers Blocs","Latest Transactions":"Dernières transactions","Loading Address Information":"Chargement des informations de l'adresse","Loading Block Information":"Chagement des information du bloc","Loading Selected Date...":"Chargement de la date sélectionnée...","Loading Transaction Details":"Chargement des détails de la transaction","Loading Transactions...":"Chagement des Transactions...","Loading...":"Chargement...","Mined Time":"Heure de minage","Mined by":"Miné par","Mining Difficulty":"Difficultée de minage","Next Block":"Bloc suivant","No Inputs (Newly Generated Coins)":"Pas d'entrées (nouvellement générées)","No blocks yet.":"Aucun blocs pour l'instant.","No matching records found!":"Aucun enregistremements correspondants trouvés!","No. Transactions":"Transactions N°","Number Of Transactions":"Nombre de transaction","Output":"Sortie","Powered by":"Propulsé par","Previous Block":"Bloc précédent","Protocol version":"Version du protocol","Proxy setting":"Paramètre de proxy","Received Time":"Heure de réception","Redirecting...":"Redirection...","Search for block, transaction or address":"Rechercher des blocs, transactions ou adresses","See all blocks":"Voir tous les blocs","Show Transaction Output data":"Afficher les données de sortie de transaction","Show all":"Tout afficher","Show input":"Afficher l'entrée","Show less":"Voir moins","Show more":"Voir plus","Size":"Taille","Size (bytes)":"Taille (octets)","Skipped Blocks (previously synced)":"Blocs ignorés (préalablement synchronisés)","Start Date":"Date de début","Status":"Status","Summary":"Résumé","Summary confirmed":"Résume confirmé","Sync Progress":"Progression de la synchronication","Sync Status":"Status de la synchronisation","Sync Type":"Type de la synchronisation","Synced Blocks":"Blocs synchronisés","Testnet":"Réseau de test","There are no transactions involving this address.":"Il n'y a pas de transactions impliquant cette adresse.","Time Offset":"Décalage horaire","Timestamp":"Date et heure","Today":"Aujourd'hui","Total Amount":"Montant Total","Total Received":"Total Reçu","Total Sent":"Total Envoyés","Transaction":"Transaction","Transaction Output Set Information":"Informations sur l'ensemble des sorties de transaction","Transaction Outputs":"Sorties de transaction","Transactions":"Transactions","Type":"Type","Unconfirmed":"Non confirmée","Unconfirmed Transaction!":"Transaction non confirmée!","Unconfirmed Txs Balance":"Solde non confirmé","Value Out":"Valeur de sortie","Version":"Version","Waiting for blocks...":"En attente de blocs...","Waiting for transactions...":"En attente de transactions...","by date.":"par date.","first seen at":"aperçu la première fois le","mined":"miné","mined on:":"miné le:","Waiting for blocks":"Esperando bloques"});
+ gettextCatalog.setStrings('ja', {"(Input unconfirmed)":"(入力は未検証です)","404 Page not found :(":"404 ページがみつかりません (´・ω・`)","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insightは、dashd RPCの提供するものよりも詳細なブロックチェインへの問い合わせを必要とするウェブウォレットやその他のアプリを書くのに使える、完全なRESTおよびwebsocket APIを備えたオープンソースのビットコインブロックエクスプローラです。ソースコードを確認","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insightは現在開発中です。GitHubのissueトラッカにてバグの報告や改善案の提案をお願いします。","About":"はじめに","Address":"アドレス","Age":"生成後経過時間","An error occured in the verification process.":"検証過程でエラーが発生しました。","An error occured:
{{error}}":"エラーが発生しました:
{{error}}","Application Status":"アプリケーションの状態","Best Block":"最良ブロック","Dash comes with a way of signing arbitrary messages.":"Dashには任意のメッセージを署名する昨日が備わっています。","Dash node information":"Dashノード情報","Block":"ブロック","Block Reward":"ブロック報酬","Blocks":"ブロック","Broadcast Raw Transaction":"生のトランザクションを配信","Bytes Serialized":"シリアライズ後の容量 (バイト)","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"P2Pネットワークからライブ情報を取得するためにdashdへ接続することができませんでした。({{host}}:{{port}} への接続を試みましたが、失敗しました。)","Can't connect to insight server. Attempting to reconnect...":"insight サーバに接続できません。再接続しています...","Can't connect to internet. Please, check your connection.":"インターネットに接続できません。コネクションを確認してください。","Complete":"完了","Confirmations":"検証数","Conn":"接続数","Connections to other nodes":"他ノードへの接続","Current Blockchain Tip (insight)":"現在のブロックチェインのTip (insight)","Current Sync Status":"現在の同期状況","Details":"詳細","Difficulty":"難易度","Double spent attempt detected. From tx:":"二重支払い攻撃をこのトランザクションから検知しました:","Error message:":"エラーメッセージ:","Error!":"エラー!","Fee":"手数料","Final Balance":"最終残高","Finish Date":"終了日時","Go to home":"ホームへ","Hash Serialized":"シリアライズデータのハッシュ値","Height":"ブロック高","Included in Block":"取り込まれたブロック","Incoherence in levelDB detected:":"levelDBの破損を検知しました:","Info Errors":"エラー情報","Initial Block Chain Height":"起動時のブロック高","Input":"入力","Last Block":"直前のブロック","Last Block Hash (dashd)":"直前のブロックのハッシュ値 (dashd)","Latest Blocks":"最新のブロック","Latest Transactions":"最新のトランザクション","Loading Address Information":"アドレス情報を読み込んでいます","Loading Block Information":"ブロック情報を読み込んでいます","Loading Selected Date...":"選択されたデータを読み込んでいます...","Loading Transaction Details":"トランザクションの詳細を読み込んでいます","Loading Transactions...":"トランザクションを読み込んでいます...","Loading...":"ロード中...","Message":"メッセージ","Mined Time":"採掘時刻","Mined by":"採掘者","Mining Difficulty":"採掘難易度","Next Block":"次のブロック","No Inputs (Newly Generated Coins)":"入力なし (新しく生成されたコイン)","No blocks yet.":"ブロックはありません。","No matching records found!":"一致するレコードはありません!","No. Transactions":"トランザクション数","Number Of Transactions":"トランザクション数","Output":"出力","Powered by":"Powered by","Previous Block":"前のブロック","Protocol version":"プロトコルバージョン","Proxy setting":"プロキシ設定","Raw transaction data":"トランザクションの生データ","Raw transaction data must be a valid hexadecimal string.":"生のトランザクションデータは有効な16進数でなければいけません。","Received Time":"受信時刻","Redirecting...":"リダイレクトしています...","Search for block, transaction or address":"ブロック、トランザクション、アドレスを検索","See all blocks":"すべてのブロックをみる","Send transaction":"トランザクションを送信","Show Transaction Output data":"トランザクションの出力データをみる","Show all":"すべて表示","Show input":"入力を表示","Show less":"隠す","Show more":"表示する","Signature":"署名","Size":"サイズ","Size (bytes)":"サイズ (バイト)","Skipped Blocks (previously synced)":"スキップされたブロック (同期済み)","Start Date":"開始日時","Status":"ステータス","Summary":"概要","Summary confirmed":"サマリ 検証済み","Sync Progress":"同期の進捗状況","Sync Status":"同期ステータス","Sync Type":"同期タイプ","Synced Blocks":"同期されたブロック数","Testnet":"テストネット","The message failed to verify.":"メッセージの検証に失敗しました。","The message is verifiably from {{verification.address}}.":"メッセージは{{verification.address}}により検証されました。","There are no transactions involving this address.":"このアドレスに対するトランザクションはありません。","This form can be used to broadcast a raw transaction in hex format over\n the Dash network.":"このフォームでは、16進数フォーマットの生のトランザクションをDashネットワーク上に配信することができます。","This form can be used to verify that a message comes from\n a specific Dash address.":"このフォームでは、メッセージが特定のDashアドレスから来たかどうかを検証することができます。","Time Offset":"時間オフセット","Timestamp":"タイムスタンプ","Today":"今日","Total Amount":"Dash総量","Total Received":"総入金額","Total Sent":"総送金額","Transaction":"トランザクション","Transaction Output Set Information":"トランザクションの出力セット情報","Transaction Outputs":"トランザクションの出力","Transaction succesfully broadcast.
Transaction id: {{txid}}":"トランザクションの配信に成功しました。
トランザクションID: {{txid}}","Transactions":"トランザクション","Type":"タイプ","Unconfirmed":"未検証","Unconfirmed Transaction!":"未検証のトランザクションです!","Unconfirmed Txs Balance":"未検証トランザクションの残高","Value Out":"出力値","Verify":"検証","Verify signed message":"署名済みメッセージを検証","Version":"バージョン","Waiting for blocks...":"ブロックを待っています...","Waiting for transactions...":"トランザクションを待っています...","by date.":"日毎。","first seen at":"最初に発見された日時","mined":"採掘された","mined on:":"採掘日時:","(Mainchain)":"(メインチェーン)","(Orphaned)":"(孤立したブロック)","Bits":"Bits","Block #{{block.height}}":"ブロック #{{block.height}}","BlockHash":"ブロックのハッシュ値","Blocks
mined on:":"ブロック
採掘日","Coinbase":"コインベース","Hash":"ハッシュ値","LockTime":"ロック時間","Merkle Root":"Merkleルート","Nonce":"Nonce","Ooops!":"おぉっと!","Output is spent":"出力は使用済みです","Output is unspent":"出力は未使用です","Scan":"スキャン","Show/Hide items details":"アイテムの詳細を表示または隠す","Waiting for blocks":"ブロックを待っています","by date. {{detail}} {{before}}":"日時順 {{detail}} {{before}}","scriptSig":"scriptSig","{{tx.confirmations}} Confirmations":"{{tx.confirmations}} 検証"," (Orphaned)":" (孤立したブロック)"," Incoherence in levelDB detected: {{vin.dbError}}":" Incoherence in levelDB detected: {{vin.dbError}}","Waiting for blocks ":"ブロックを待っています "});
+ gettextCatalog.setStrings('de_DE', {"(Input unconfirmed)":"(Input onbevestigd)","404 Page not found :(":"404 Pagina niet gevonden :(","insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.":"insight is een opensource Dash-blokketenexplorer met volledige REST- en websocket-API's om eigen webportomonnee's en andere apps te implementeren. Hierdoor zijn meer geavanceerde query's op de blokketen mogelijk, dan die door RPC worden aangeboden. De actuele broncode is op GitHub te vinden.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insight is nog steeds in ontwikkeling. Dus rapporteer fouten (bugs) en geef terugkoppeling voor verbeteringen via onze issuetracker op GitHub.","About":"Over","Address":"Adres","Age":"Leeftijd","Application Status":"Programmastatus","Best Block":"Beste blok","Dash node information":"Dash-knooppuntinformatie","Block":"Blok","Block Reward":"Blokbeloning","Blocks":"Blokken","Bytes Serialized":"Geserialiseerde bytes","Can't connect to dashd to get live updates from the p2p network. (Tried connecting to dashd at {{host}}:{{port}} and failed.)":"Kan geen verbinding maken net dashd om liveupdates van het P2P-netwerk te ontvangen. (Geprobeerd verbinding te maken met dashd op {{host}}:{{port}} en is mislukt.)","Can't connect to insight server. Attempting to reconnect...":"Kan geen verbinding maken met de insight-server. Het wordt nog eens geprobeerd...","Can't connect to internet. Please, check your connection.":"Kan geen verbinding maken met het internet. Controleer je verbinding.","Complete":"Compleet","Confirmations":"Bevestigingen","Conn":"Verbindingen","Connections to other nodes":"Verbindingen met andere knooppunten","Current Blockchain Tip (insight)":"Huidige blokketentop (insight)","Current Sync Status":"Huidige synchronisatiestatus","Details":"Details","Difficulty":"Moeilijkheid","Double spent attempt detected. From tx:":"Er is een \"dubbele uitgave\" gedetecteerd. Van tx:","Error!":"Fout!","Fee":"Transactiekosten","Final Balance":"Totaalsaldo","Finish Date":"Einddatum","Go to home":"Ga naar home","Hash Serialized":"Geserialiseerde hash","Height":"Hoogte","Included in Block":"Inbegrepen in blok","Incoherence in levelDB detected:":"Incoherentie is gedetecteerd in levelDB:","Info Errors":"Foutbeschrijving","Initial Block Chain Height":"Oorspronkelijke blokketenhoogte","Input":"Input","Last Block":"Laatste blok","Last Block Hash (dashd)":"Laatste blokhash (dashd)","Latest Blocks":"Recentste blok","Latest Transactions":"Recentste transacties","Loading Address Information":"Adresinformatie aan het laden","Loading Block Information":"Blokinformatie aan het laden","Loading Selected Date...":"Geselecteerde datum aan het laden...","Loading Transaction Details":"Transactiedetails aan het laden","Loading Transactions...":"Transacties aan het laden...","Loading...":"Aan het laden...","Mined Time":"Miningtijdstip","Mined by":"Gemined door","Mining Difficulty":"Miningmoeilijkheid","Next Block":"Volgende blok","No Inputs (Newly Generated Coins)":"Geen inputs (nieuw aangemaakte munten)","No blocks yet.":"Nog geen blokken.","No matching records found!":"Geen passende records gevonden!","No. Transactions":"Aantal transacties","Number Of Transactions":"Aantal transacties","Output":"Output","Powered by":"Aangedreven door","Previous Block":"Vorig blok","Protocol version":"Protocolversie","Proxy setting":"Proxy-instellingen","Received Time":"Onvangsttijdstip","Redirecting...":"Aan het omleiden...","Search for block, transaction or address":"Zoek op blok, transactie of adres","See all blocks":"Bekijk alle blokken","Show Transaction Output data":"Toon transactieoutputgegevens","Show all":"Toon alles","Show input":"Toon input","Show less":"Toon minder","Show more":"Toon meer","Size":"Grootte","Size (bytes)":"Grootte (bytes)","Skipped Blocks (previously synced)":"Overgeslagen blokken (voorheen gesynchroniseerd)","Start Date":"Startdatum","Status":"Status","Summary":"Samenvatting","Summary confirmed":"Samenvatting bevestigd","Sync Progress":"Synchronisatievoortgang","Sync Status":"Synchronisatiestatus","Sync Type":"Synchronisatietype","Synced Blocks":"Gesynchroniseerde blokken","Testnet":"Testnet actief","There are no transactions involving this address.":"Er zijn geen transacties gerelateerd aan dit adres.","Time Offset":"Tijdsoffset tot UTC","Timestamp":"Tijdsstempel","Today":"Vandaag","Total Amount":"Totaalbedrag","Total Received":"Totaal ontvangen","Total Sent":"Totaal verstuurd","Transaction":"Transactie","Transaction Output Set Information":"Transactieoutputsetinformatie","Transaction Outputs":"Transactieoutputs","Transactions":"Transacties","Type":"Type","Unconfirmed":"Onbevestigd","Unconfirmed Transaction!":"Onbevestigde transacties!","Unconfirmed Txs Balance":"Onbevestigde transactiesaldo","Value Out":"Waarde","Version":"Versie","Waiting for blocks...":"Op blokken aan het wachten...","Waiting for transactions...":"Op transacties aan het wachten...","by date.":"op datum.","first seen at":"voor het eerst gezien op","mined":"gemined","mined on:":"gemined op:","Waiting for blocks":"Op blokken aan het wachten"});
+ gettextCatalog.setStrings('pt_BR', {"(Input unconfirmed)":"(Entrada não confirmada)","insight is an open-source Bitcoin blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by bitcoind RPC. Check out the source code.":"insight é um explorador de blocos Bitcoin de código aberto com um conjunto completo de APIs de websocket e REST que podem ser usadas para programar carteiras online e outros aplicativos que necessitam consultar um explorador de blocos. Confira o código-fonte.","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"insight ainda está em desenvolvimento, portanto agradecemos que postem erros e sugestões para melhorias em nosso rastreador de problemas no GitHub.","404 Page not found :(":"404 Página não encontrada :(","About":"Sobre","Address":"Endereço","Age":"Idade","An error occured in the verification process.":"Ocorreu um erro no processo de verificação.","An error occured:
{{error}}":"Ocorreu um erro:
{{error}}","Application Status":"Estado do Aplicativo","Bitcoin comes with a way of signing arbitrary messages.":"Bitcoin possui um método de assinar mensagens arbitrárias.","Bitcoin node information":"Informações do nó Bitcoin","Block":"Bloco","Block Reward":"Recompensa do Bloco","Blocks":"Blocos","Broadcast Raw Transaction":"Transmitir Transações Brutas","by date.":"por data.","Can't connect to bitcoind to get live updates from the p2p network. (Tried connecting to bitcoind at {{host}}:{{port}} and failed.)":"Não foi possível conectar-se ao bitcoind para obter atualizações em tempo real da rede p2p. (A tentativa de conectar-se à {{host}}:{{port}} falhou.)","Can't connect to insight server. Attempting to reconnect...":"Não foi possível conectar-se ao servidor insight. Tentando reconectar...","Can't connect to internet. Please, check your connection.":"Não foi possível conectar-se à internet. Verifique sua conexão.","Complete":"Completa","Confirmations":"Confirmações","Conn":"Con","Connections to other nodes":"Conexões a outros nós","Current Blockchain Tip (insight)":"Atual Blockchain Tip (insight)","Current Sync Status":"Estado Atual de Sincronização","Details":"Detalhes","Difficulty":"Dificuldade","Double spent attempt detected. From tx:":"Tentativa de gasto duplo detectada. Da transação:","Error message:":"Mensagem de erro:","Error!":"Erro!","Fee":"Taxa","Fee Rate":"Taxa por kilobyte","Final Balance":"Saldo Final","Finish Date":"Data de Término","first seen at":"visto pela primeira vez em","Go to home":"Voltar ao início","Height":"Altura","Included in Block":"Incluída no Bloco","Incoherence in levelDB detected:":"Incoerência no levelDB detectada:","Info Errors":"Erros de informação","Initial Block Chain Height":"Altura inicial da Blockchain","Input":"Entrada","Last Block":"Último Bloco","Last Block Hash (Bitcoind)":"Hash do Último Bloco (Bitcoind)","Latest Blocks":"Blocos Recentes","Latest Transactions":"Transações Recentes","Loading Address Information":"Carregando informações do endereço","Loading Block Information":"Carregando informações do bloco","Loading Selected Date...":"Carregando data selecionada...","Loading Transaction Details":"Carregando detalhes da transação","Loading Transactions...":"Carregando transações...","Loading...":"Carregando...","Message":"Mensagem","mined":"minerado","Mined by":"Minerado por","mined on:":"minerado em:","Mined Time":"Minerada em","Mining Difficulty":"Dificuldade de Mineração","Network":"Rede","Next Block":"Próximo Bloco","No blocks yet.":"Ainda não há blocos.","No Inputs (Newly Generated Coins)":"Nenhuma Entrada (moedas recém-geradas)","No matching records found!":"Não foram encontrados registros correspondentes!","No. Transactions":"Nº de transações","Number Of Transactions":"Número de Transações","Output":"Saída","Powered by":"Funciona com","Previous Block":"Bloco Anterior","Protocol version":"Versão do protocolo","Proxy setting":"Configuração de proxy","Raw transaction data":"Dados brutos da transação","Raw transaction data must be a valid hexadecimal string.":"Os dados brutos da transação devem ser uma string hexadecimal válida.","Received Time":"Recebida em","Redirecting...":"Redirecionando...","Search for block, transaction or address":"Procurar por blocos, transações ou endereços","See all blocks":"Visualizar todos os blocos","Send transaction":"Enviar transação","Show all":"Mostrar todos","Show input":"Mostrar entrada","Show less":"Mostrar menos","Show more":"Mostrar mais","Signature":"Assinatura","Size":"Tamanho","Size (bytes)":"Tamanho (bytes)","Skipped Blocks (previously synced)":"Blocos Ignorados (previamente sincronizados)","Start Date":"Data de Início","Status":"Estado","Summary":"Resumo","Summary confirmed":"Resumo confirmado","Sync Progress":"Progresso de Sincronização","Sync Status":"Estado de Sincronização","Sync Type":"Tipo de Sincronização","Synced Blocks":"Blocos sincronizados","The message failed to verify.":"Falha ao verificar a mensagem.","The message is verifiably from {{verification.address}}.":"A mensagem é verificável de {{verification.address}}.","There are no transactions involving this address.":"Não existem transações envolvendo este endereço.","This form can be used to broadcast a raw transaction in hex format over\r\n the Bitcoin network.":"Este formulário pode ser usado para transmitir uma transação bruta em formato \r\n hexadecimal para a rede Bitcoin.","This form can be used to verify that a message comes from\r\n a specific Bitcoin address.":"Este formulário pode ser usado para verificar se uma mensagem\r\n veio de um endereço Bitcoin específico.","Time Offset":"Compensação de Tempo","Timestamp":"Data e Hora","Today":"Hoje","Total Received":"Total Recebido","Total Sent":"Total Enviado","Transaction":"Transação","Transaction succesfully broadcast.
Transaction id: {{txid}}":"Transação transmitida com sucesso.
ID da transação: {{txid}}","Transactions":"Transações","Type":"Tipo","Unconfirmed":"Não confirmada","Unconfirmed Transaction!":"Transação não confirmada!","Unconfirmed Txs Balance":"Balanço de Transações não confirmadas","Value Out":"Valor de Saída","Verify":"Verificar","Verify signed message":"Verificar mensagem assinada","Version":"Versão","Waiting for blocks...":"Esperando por blocos...","Waiting for transactions...":"Esperando por transações..."});
+ gettextCatalog.setStrings('zh', {"(Input unconfirmed)":"输入未确定","404 Page not found :(":"404 页面不存在","insight is an open-source Bitcoin blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by bitcoind RPC. Check out the source code.":"insight是一个开源的比特币区块链浏览器。支持完整的REST和Web Socket API 调用,可用于编写Web钱包和其他需要比bitcoind RPC提供的更高级区块链查询的应用程序。查看源代码","insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.":"该系统仍在开发中详情发现问题或提供反馈请报告给我们的开发人员","About":"关于","Address":"地址","Age":"生成时间","An error occured in the verification process.":"验证过程出错","An error occured:
{{error}}":"发生错误
{{error}}","Application Status":"程序状态","Best Block":"最好的块","Bitcoin comes with a way of signing arbitrary messages.":"Bitcoin可以签名任意消息","Bitcoin node information":"比特币节点信息","Block":"区块","Block Reward":"块报酬","Blocks":"区块","Blocks Num":"区块数","Broadcast Raw Transaction":"广播原始交易","Bytes Serialized":"序列化后的大小 (B)","Can't connect to bitcoind to get live updates from the p2p network. (Tried connecting to bitcoind at {{host}}:{{port}} and failed.)":"无法连接到BitCoin P2P网络。(尝试{{host}}:{{port}} 连接失败)","Can't connect to insight server. Attempting to reconnect...":"无法连接到服务器,正在重试","Can't connect to internet. Please, check your connection.":"无法连接到因特网,请检查连接","Complete":"完成","Confirmations":"个确认","Conn":"连接数","Connections to other nodes":"连接数","Current Blockchain Tip (insight)":"当前区块链Tip(insight)","Current Sync Status":"当前同步状态","Details":"详情","Difficulty":"难度","Double spent attempt detected. From tx:":"检测到双花,来自tx:","Error message:":"错误消息:","Error!":"错误","Fee":"手续费","Final Balance":"钱包余额","Finish Date":"结束日期","Go to home":"回主页","Hash Serialized":"Hash序列化","Height":"高度","BlockHeight":"区块高度","Included in Block":"所在区块","Incoherence in levelDB detected:":"在levelDB中检测到不一致:","Info Errors":"错误信息","Initial Block Chain Height":"最新区块高度","Input":"输入","Last Block":"最新区块信息","Last Block Hash (Bitcoind)":"最新区块哈希(Bitcoind)","Latest Blocks":"最新区块","Latest Transactions":"最新交易","Loading Address Information":"加载地址信息","Loading Block Information":"加载区块信息","Loading Selected Date...":"加载选择日期...","Loading Transaction Details":"加载交易详情","Loading Transactions...":"加载交易...","Loading...":"加载中...","Message":"消息","Mined Time":"挖掘时间","Mined by":"矿池","Mining Difficulty":"挖矿难度","Next Block":"下一个区块","No Inputs (Newly Generated Coins)":"没有输入(新生产的币)","No blocks yet.":"尚无区块","No Transactions.":"尚无交易...","No matching records found!":"没找到匹配的记录","No. Transactions":"交易数量","Number Of Transactions":"交易数目","Output":"输出","Powered by":"Powered by","Previous Block":"上一个区块","Protocol version":"协议版本","Proxy setting":"代理设置","Raw transaction data":"原始交易数据","Raw transaction data must be a valid hexadecimal string.":"原始交易数据必须是有效的十六进制","Received Time":"接收时间","Redirecting...":"重定向中...","Search for block, transaction or address":"查询区块高度、区块哈希、交易哈希或地址","See all blocks":"查看所有区块","See all transcations":"查看所有交易","Send transaction":"发送交易","Show Transaction Output data":"显示交易输出数据","Show all":"显示所有","Show input":"显示输入","Show less":"隐藏","Show more":"显示更多","Signature":"签名","Size":"大小","Size (bytes)":"大小(字节)","Skipped Blocks (previously synced)":"已跳过块数量","Start Date":"开始时间","Status":"状态","Summary":"摘要","Summary confirmed":"摘要已确认","Sync Progress":"同步进度","Sync Status":"同步状态","Sync Type":"同步类型","Synced Blocks":"已同步块数量","Testnet":"Testnet","The message failed to verify.":"验证消息失败","The message is verifiably from {{verification.address}}.":"消息由{{verification.address}}验证","There are no transactions involving this address.":"此地址没有发生过交易","This form can be used to broadcast a raw transaction in hex format over\n the Bitcoin network.":"此表单可用于以十六进制格式通过比特币网络广播一个原始事务。","This form can be used to verify that a message comes from\n a specific Bitcoin address.":"此表单可用于验证消息是否来自特定的比特币地址。","Time Offset":"时间偏移","Timestamp":"交易时间","Today":"今天","Total Amount":"总数","Total Received":"总收入","Total Sent":"总支出","Transaction":"交易","Transaction Hash":"交易哈希","Transaction Output Set Information":"交易输出集合信息","Transaction Outputs":"交易输出","Transaction succesfully broadcast.
Transaction id: {{txid}}":"交易成功播报,
交易ID: {{txid}}","Transactions":"交易","Type":"类别","Unconfirmed":"未确认","Unconfirmed Transaction!":"未确认!","Unconfirmed Txs Balance":"未确认的交易余额","Value Out":"输出值","Verify":"验证","Verify signed message":"验证签名消息","Version":"版本","Waiting for blocks...":"等待区块...","Waiting for transactions...":"等待交易...","by date.":"按日期","first seen at":"最初发现于","mined":"挖掘","mined on:":"挖掘日期","Home":"首页","History":"历史","Blacklist":"黑名单","Network":"网络","syncing":"同步中","synced":"同步完成","Merkle Root":"Merkle根","Nonce":"随机数","Blockhash":"区块哈希","Fee Rate":"费率"});
/* jshint +W100 */
}]);
\ No newline at end of file
diff --git a/public/views/index.html b/public/views/index.html
index 05febabfb..e9395ab95 100644
--- a/public/views/index.html
+++ b/public/views/index.html
@@ -63,7 +63,7 @@ Latest Transactions
About
insight is an open-source Dash blockchain explorer with complete REST and websocket APIs that can be used for writing web wallets and other apps that need more advanced blockchain queries than provided by dashd RPC. Check out the source code.
- insight is still in development, so be sure to report any bugs and provide feedback for improvement at our github issue tracker.
+ insight is still in development, so be sure to report any bugs and provide feedback for improvement at our GitHub issue tracker.