Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

adding setting to change UI language (fixes #813) #896

Merged
merged 19 commits into from
Jun 27, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions interface/i18n/mist.de.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "Ansicht",
"fullscreen": "Vollbildmodus"
"fullscreen": "Vollbildmodus",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Konten",
Expand Down Expand Up @@ -95,7 +108,7 @@
"nodeConnectionTimeout": "Ethereum Node konnte nicht gestartet werden!<br><small>Wenn Sie <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>Geth installiert haben,</a>, verwenden Sie bitte diesen Befehl, um Geth zu starten: <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'>oder senden Sie einen Fehlerreport</a></small>",
"nodeBinaryNotFound": "Keine Programmdatei für den Ethereum Node gefunden!<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> Bitte starten Sie den Ethereum Node manuell. </a> </small>",
"nodeSyncing": "Ethereum Node muss synchronisiert werden, bitte warten...",
"nodeSyncInfo": "Block __currentBlock__ von __highestBlock__ wird heruntergeladen.",
"nodeSyncInfo": "Block __displayBlock__ von __highestBlock__ wird heruntergeladen.",
"nodeSyncConnecting": "Suche nach Peers...",
"nodeSyncProcessing": "Blöcke werden verarbeitet, bitte warten...",
"peerSearchTimeout": "Peer-Suche überspringen"
Expand Down
18 changes: 16 additions & 2 deletions interface/i18n/mist.en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,21 @@
},
"view": {
"label": "View",
"fullscreen": "Toggle Fullscreen"
"fullscreen": "Toggle Fullscreen",
"languages": "Change language",
"default": "Default",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Accounts",
Expand Down Expand Up @@ -148,7 +162,7 @@
"title": {
"sendTransaction": "Send transaction",
"contractExecution": "Execute contract",
"createContract": "Create contract"
"createContract": "Create contract"
},
"contractExecutionInfo": "You are about to execute a function on a contract. This might involve transfer of value.",
"contractCreationInfo": "You are about to create a contract from the provided data.",
Expand Down
17 changes: 15 additions & 2 deletions interface/i18n/mist.es.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "Ver",
"fullscreen": "Pantalla Completa"
"fullscreen": "Pantalla Completa",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Cuentas",
Expand Down Expand Up @@ -95,7 +108,7 @@
"nodeConnectionTimeout": "No se pudo iniciar un nodo Ethereum!<br><small>Si <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>has instalado Geth</a>, utiliza este comando para ejecutarlo: <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'> O informa del problema </a></small>",
"nodeBinaryNotFound": "No se ha encontrado el binario del nodo Ethereum!<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> Por favor, inicie antes uno manualmente. </a> </small>",
"nodeSyncing": "El nodo de Ethereum necesita sincronizarse, por favor espere...",
"nodeSyncInfo": "Descargando bloque __currentBlock__ de __highestBlock__.",
"nodeSyncInfo": "Descargando bloque __displayBlock__ de __highestBlock__.",
"nodeSyncConnecting": "Buscando pares...",
"nodeSyncProcessing": "Procesando bloques, por favor espere...",
"peerSearchTimeout": "Omitir la búsqueda de pares"
Expand Down
17 changes: 15 additions & 2 deletions interface/i18n/mist.fr.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "Voir",
"fullscreen": "Basculer en mode plein écran"
"fullscreen": "Basculer en mode plein écran",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Comptes",
Expand Down Expand Up @@ -93,7 +106,7 @@
"nodeConnectionTimeout": "Echec du démarrage du nœud Ethereum !<br><small>Si vous <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>avez installé Geth</a>, utilisez cette commande pour le lancer : <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'> Ou signalez le problème </a></small>",
"nodeBinaryNotFound": "Pas de binaire du nœud Ethereum trouvé !<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> Veuillez en lancer d'abord un manuellement. </a> </small>",
"nodeSyncing": "Le nœud Ethereum se synchronise, veuillez patienter...",
"nodeSyncInfo": "Télechargement du bloc __currentBlock__ depuis le bloc __highestBlock__.",
"nodeSyncInfo": "Télechargement du bloc __displayBlock__ depuis le bloc __highestBlock__.",
"nodeSyncConnecting": "À la recherche de pairs...",
"nodeSyncProcessing": "Traitement de bloc, veuillez patienter...",
"peerSearchTimeout": "Recherche de pairs ignorée"
Expand Down
17 changes: 15 additions & 2 deletions interface/i18n/mist.it.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "Visualizza",
"fullscreen": "Schermo intero"
"fullscreen": "Schermo intero",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Accounts",
Expand Down Expand Up @@ -95,7 +108,7 @@
"nodeConnectionTimeout": "Impossibile avviare un nodo Ethereum!<br><small>Se <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>hai installato Geth</a>, usa questo comando per eseguirlo:<br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'> o riporta il problema </a></small>",
"nodeBinaryNotFound": "Impossibile trovare l'eseguibile del nodo Ethereum !<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> Per favore avvialo manualmente prima. </a> </small>",
"nodeSyncing": "Il nodo Ethereum deve sincronizzarsi, attendere prego...",
"nodeSyncInfo": "Scaricamento blocco __currentBlock__ di __highestBlock__.",
"nodeSyncInfo": "Scaricamento blocco __displayBlock__ di __highestBlock__.",
"nodeSyncConnecting": "Alla ricerca di nodi...",
"nodeSyncProcessing": "Elaborazione blocchi, attendere prego...",
"privateChainTimeout": "Salta ricerca di nodi"
Expand Down
17 changes: 15 additions & 2 deletions interface/i18n/mist.ja.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "ビュー",
"fullscreen": "フルスクリーンをトグルする"
"fullscreen": "フルスクリーンをトグルする",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "アカウント",
Expand Down Expand Up @@ -93,7 +106,7 @@
"nodeConnectionTimeout": "Ethereum nodeをスタート出来ませんでした!<br><small>もし<a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>Geth</a>をインストールしているならば,このコマンドを使ってみてください: <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'>もしくは問題を報告して下さい。 </a></small>",
"nodeBinaryNotFound": "Ethereum node バイナリーが見つかりませんでした。<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> 手動でスタートして下さい。 </a> </small>",
"nodeSyncing": "Ethereum node は同期中です...",
"nodeSyncInfo": "blockをダウンロードしています。 __currentBlock__ of __highestBlock__.",
"nodeSyncInfo": "blockをダウンロードしています。 __displayBlock__ of __highestBlock__.",
"nodeSyncConnecting": "ピアーを探しています。...",
"nodeSyncProcessing": "ブロックを処理しています...",
"peerSearchTimeout": "ピアーの検索を中止しています"
Expand Down
15 changes: 14 additions & 1 deletion interface/i18n/mist.ko.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,20 @@
},
"view": {
"label": "보기",
"fullscreen": "전체화면으로"
"fullscreen": "전체화면으로",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "계정",
Expand Down
15 changes: 14 additions & 1 deletion interface/i18n/mist.nb.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "Vis",
"fullscreen": "Veksle Mellom Fullskjerm"
"fullscreen": "Veksle Mellom Fullskjerm",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Kontoer",
Expand Down
18 changes: 16 additions & 2 deletions interface/i18n/mist.pt.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "Ver",
"fullscreen": "Modo de tela cheia"
"fullscreen": "Modo de tela cheia",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "Contas",
Expand Down Expand Up @@ -95,7 +108,8 @@
"nodeConnectionTimeout": "Não pode inicializar um Node!<br><small> Instale <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>um manualmente</a>, e use esse comando para executa-lo: <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'> Caso não consiga, entre em contato </a></small>",
"nodeBinaryNotFound": "Nó não encontrado!<br><small><a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>Instale um manualmente</a></small>",
"nodeSyncing": "Sincronizando, favor aguarde...",
"nodeSyncInfo": "Carregando bloco __currentBlock__ de __highestBlock__.",
"nodeSyncInfoStates": "Carregando bloco __displayBlock__ de __highestBlock__, <br> Lendo estrutura __displayState__ de __displayKnownStates__",
"nodeSyncInfo": "Carregando bloco __displayBlock__ de __highestBlock__.",
"nodeSyncConnecting": "Procurando outros nós...",
"nodeSyncProcessing": "Processando blocos recebidos, favor aguarde...",
"peerSearchTimeout": "Não procure nós agora",
Expand Down
18 changes: 16 additions & 2 deletions interface/i18n/mist.zh-TW.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,21 @@
},
"view": {
"label": "檢視",
"fullscreen": "全螢幕"
"fullscreen": "全螢幕",
"languages": "語言",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "帳號",
Expand Down Expand Up @@ -92,7 +106,7 @@
"nodeConnectionTimeout": "無法開啓以太坊節點!<br><small>如果您已經<a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>安裝Geth</a>,使用此命令運行: <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'> 或者上報此問題 </a></small>",
"nodeBinaryNotFound": "找不到以太坊節點安裝文件!<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> 請事先手動開啓一個節點 </a> </small>",
"nodeSyncing": "需要同步以太坊節點,請等待……",
"nodeSyncInfo": "正在下載第__currentBlock__塊,共__highestBlock__。",
"nodeSyncInfo": "正在下載第__displayBlock__塊,共__highestBlock__。",
"nodeSyncConnecting": "正在查找節點……",
"nodeSyncProcessing": "正在處理區塊,請等待……",
"peerSearchTimeout": "跳過節點搜索"
Expand Down
17 changes: 15 additions & 2 deletions interface/i18n/mist.zh.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,20 @@
},
"view": {
"label": "视图",
"fullscreen": "全屏切换"
"fullscreen": "全屏切换",
"languages": "Change language",
"langCodes" : {
"de": "Deutsch",
"en": "English",
"es": "Español",
"fr": "Français",
"ja": "日本語",
"ko": "한국어 ",
"nb": "Norsk",
"pt": "Português",
"zh": "普通話",
"zh-TW": "國語"
}
},
"accounts": {
"label": "账户",
Expand Down Expand Up @@ -95,7 +108,7 @@
"nodeConnectionTimeout": "无法开启以太坊节点!<br><small>如果你已经<a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'>安装Geth</a>,使用此命令运行: <br> <code>geth --ipcpath __path__</code></small><br> <small><a href='https://github.com/ethereum/mist/issues' class='button' target='_blank'> 或者上报此问题 </a></small>",
"nodeBinaryNotFound": "找不到以太坊节点安装文件!<br><small> <a href='https://www.ethereum.org/cli#geth' class='button' target='_blank'> 请事先手动开启一个节点 </a> </small>",
"nodeSyncing": "需要同步以太坊节点,请等待……",
"nodeSyncInfo": "正在下载第__currentBlock__块,共__highestBlock__。",
"nodeSyncInfo": "正在下载第__displayBlock__块,共__highestBlock__。",
"nodeSyncConnecting": "正在查找节点……",
"nodeSyncProcessing": "正在处理区块,请等待……",
"peerSearchTimeout": "跳过节点搜索"
Expand Down
Loading