47 Commits

Author SHA1 Message Date
softsimon
3fb4d987a9 i18n: Updated strings for "x confirmations", "x transactions", "x blocks" and "block ETA". Peg-out, and bisq headers. 2020-12-06 23:44:08 +07:00
wiz
46ad261d84 Implement i18n support in frontend using Angular + Transifex + NGINX
This PR adds basic i18n support into the mempool frontend, together with
a smooth workflow for developers and translators to collaborate:

* Using the existing @angular/localize module, developers add i18n
metadata to any frontend strings their new features or changes modify

* Using the new npm script `i18n-extract-from-source`, developers
extract the i18n data from source code into `src/locale/messages.xlf`

* After pushing the updated `src/locale/messages.xlf` to GitHub, the
Transifex service will update its database from the new source data

* Using the Transifex website UI, translators can work together to
translate all the mempool frontend strings into their native languages

* Using the new npm script `i18n-pull-from-transifex`, developers can
pull in completed translations from Transifex, and commit them into git.

This flow requires an API key from Transifex, which can be obtained at
https://www.transifex.com/user/settings/api/ to be used with the python
script installed by `pip install transifex-client` - after preparing
these, run the npm script which will ask you for the API key the first
time. When downloading is complete, you can test building the frontend,
and if successful, commit the new strings files into git.

This PR implements a new locale selector in the footer of the homepage
dashboard, and includes WIP translations for the following languages:

* Czech (cs)
* German (de)
* Japanese (ja)
* Norwegian (nn)
* Spanish (es)
* Swedish (sv)
* Ukrainian (uk)
* Persian (fa)
* Portugese (pt)
* Turkish (tr)
* Dutch (nl)
* French (fr)
* Chinese (zh)
* Slovenian (sl)
* Korean (ko)
* Polish (pl)

The user-agent's `Accept-Language` header is used to automatically
detect their preferred language, which can be manually overriden by the
pull-down selector, which saves their preference to a cookie, which is
used by nginx to serve the correct HTML bundle to the user.

Remaining tasks include adding i18n metadata for strings in the Bisq and
Liquid frontend code, mouseover hover tooltip strings, hard-coded og
metadata inside HTML templates, and many other places. This will be done
in a separate PR.

When upgrading to add i18n support, mempool instance operators must take
care to install the new nginx.conf and nginx-mempool.conf files, and
tweak for their specific site configuration.

Fixes #81
2020-12-02 04:19:33 +09:00
softsimon
093739d2ce Fix pluralization for "transactions".
Display "genesis block" on block 0
2020-09-10 14:55:49 +07:00
softsimon
2b91f2fe16 Revert "Display whole fee span on mined blocks."
This reverts commit cb51b711289cb092a82f5d36ebc6a766abaed48b.
2020-08-13 02:53:52 +07:00
softsimon
4151579c04 Display whole fee span on mined blocks.
fixes #101
2020-08-10 14:48:09 +07:00
softsimon
29090d5c97 Subscription refactoring to increase performance. 2020-07-30 17:01:13 +07:00
softsimon
ad61374cbe Fix for block transition when switching networks. 2020-07-22 20:09:02 +07:00
softsimon
b1ab95bfd3 Fix for weird block animation when navigating back to main page. 2020-07-21 12:47:51 +07:00
softsimon
be074b21a4 Block text corrections. 2020-07-21 10:26:43 +07:00
softsimon
5dcb17a19d Block design corrections 2020-07-20 12:21:08 +07:00
softsimon
e10dc79675 Restoring "fee span" on blocks. 2020-07-20 11:03:53 +07:00
softsimon
d39b4a5c92 WIP: Bisq DAO support. Transactions list and details. 2020-07-03 23:45:19 +07:00
6102bitcoin
728fafc39a Remove shadown on Block-Height value 2020-06-30 18:19:09 +01:00
softsimon
0ba604609a Reducing mempool detection sensitivity to 25%
refs #76
2020-06-18 17:10:07 +07:00
softsimon
ae7715ea8c Don't fully animate when tab is deactivated.
refs #47
2020-06-11 01:38:59 +07:00
softsimon
e5a537e240 Disabling new block sound until we have a setting for this.
refs #84
2020-06-11 00:41:39 +07:00
softsimon
32c3f0c182 Bigfix: Don't chime when switching networks.
fixes #84
2020-06-11 00:11:15 +07:00
softsimon
e0a451eb05 Transition new blocks from the mempool onto the blockchain.
Chime on new blocks.
fixes #47
fixes #84
2020-06-10 23:52:14 +07:00
softsimon
820642cf1c Bootstrap version update and progressbar fix.
Yellow fee text is now white.
2020-05-25 22:36:50 +07:00
softsimon
4eec633359 Fixed keyboard navigation bugs. 2020-05-13 13:03:57 +07:00
softsimon
e565815dfd Removing halving event code. 2020-05-12 14:49:29 +07:00
softsimon
a7828af0fc Network based blockchain colors. 2020-05-10 21:34:25 +07:00
softsimon
b1819e4ef5 Arrow navigation fix.
Liquid native asset notification fix.
2020-05-10 01:34:28 +07:00
softsimon
688a73cf75 Identify and display mining pool.
fixes #59
2020-05-10 00:35:21 +07:00
softsimon
7974cbbc83 Liquid and Testnet now accessable from the main site
fixes #35
2020-05-09 20:37:50 +07:00
softsimon
6f182a2fc0 Changing sats to sat. 2020-04-11 23:23:39 +07:00
softsimon
611aa0ec93 Special halvening block and fireworks.
fixes #50
2020-04-09 17:46:30 +07:00
softsimon
6483fbe1db Round medianFee instead of ceil
Minor ui fixes.
2020-04-09 15:23:46 +07:00
softsimon
7ea20378e9 Format transaction count numbers. 2020-04-07 00:44:22 +07:00
softsimon
827bfcef3d Refactord blockchain is rendering, block arrow location propagation and keynavigation. 2020-03-22 17:44:36 +07:00
softsimon
e6bb2cbffa Navigate between blocks using keyboard arrows. 2020-03-21 03:38:18 +07:00
softsimon
dd21c2ff44 Adding median fee to block. 2020-03-15 17:12:09 +07:00
softsimon
a21afeb7fa Adjusting font-sizes. Logo size. 2020-03-13 22:05:44 +07:00
wiz
4b0f230c1f Tweak projected blocks to match blockchain blocks, tweak font size 2020-03-13 22:22:15 +09:00
wiz
e7e050a792 Tweak to the block layout, move block height down, only show median fee 2020-03-13 21:33:45 +09:00
wiz
2f86c0184a Remove "#" from block-height number for cleaner look 2020-03-13 20:56:05 +09:00
wiz
9c36e23fd9 Increase block height font-size from 12px to 18px 2020-03-13 20:29:00 +09:00
softsimon
c7ddeecd18 General responsive improvments. 2020-03-05 16:13:46 +07:00
softsimon
f96728292c Improvments to responsiveness 2020-03-03 17:47:01 +07:00
softsimon
2422356704 Added first seen on mempool transactions. 2020-02-28 01:09:07 +07:00
Simon Lindh
90a1fcaf8d Various fixes and design updates. 2020-02-26 03:37:00 +09:00
Simon Lindh
c550c888a4 Footer and header design updates. 2020-02-26 03:34:20 +09:00
Simon Lindh
d6bfb77abe Basic address tracking. 2020-02-26 03:31:45 +09:00
Simon Lindh
ae7bff924b Track transaction among mempool blocks. 2020-02-26 03:30:51 +09:00
Simon Lindh
6e724d4203 Transaction tracking revamped.
Blockchain block arrow.
2020-02-26 03:28:57 +09:00
Simon Lindh
98391580b3 Refactor. API explanations. UX revamp. 2020-02-26 03:26:16 +09:00
Simon Lindh
43f41b8aab New base code for mempool blockchain explorerer 2020-02-26 03:19:26 +09:00