Commit Graph

45 Commits

Author SHA1 Message Date
nymkappa
e358a553c1
Match pool color between pools pie and pools stack 2022-02-24 20:21:13 +09:00
nymkappa
78fa3e33cd
Create stacked pools historical hashrates to see dominance over time 2022-02-24 20:21:12 +09:00
wiz
836f0f065d
Enable i18n locale Thai (th) 2021-11-17 21:03:35 +09:00
softsimon
d9cf6a2604
Update frontend/src/app/app.constants.ts
Co-authored-by: Vojtěch Strnad <43024885+vostrnad@users.noreply.github.com>
2021-11-13 10:04:38 +04:00
softsimon
9eb159617f
Adding taproot countdown 2021-11-12 21:07:57 +04:00
Miguel Medeiros
a3de75ebf4
Add mempool special block animation. 2021-11-11 16:04:00 -03:00
Miguel Medeiros
46a2854f67
Add taproot activation fireworks. 2021-11-11 16:04:00 -03:00
softsimon
07ba2f6ecc
Merge pull request #792 from mempool/i18n/add-macedonian
Add new locale: Macedonian (mk)
2021-09-17 13:54:03 +04:00
wiz
d22dc0888a
Add new locale: Macedonian (mk) 2021-09-17 15:03:52 +09:00
wiz
75fb27c690
Add new locale: Romanian (ro) 2021-09-17 15:02:15 +09:00
Miguel Medeiros
9b956ff88d
Add new component incoming-transactions-graph;
Refactor component mempool-graph;
Refactor component fee-distribution-graph;
Add incoming-transactions-graph to dashboard;
Add incoming-transactions-graph to statistics;
Add incoming-transactions-graph to television;
Add mempool-graph to dashboard;
Add mempool-graph to statistics;
Add mempool-graph to television;
Remove chartist.component;
2021-09-14 22:35:47 -03:00
wiz
7d3757676f
Enable 'ca' locale for Catalan 2021-08-08 01:05:42 +09:00
softsimon
3ac06bb983
Updating i18n from transifex. Moving hindi location. 2021-07-20 15:43:01 +03:00
softsimon
cdfc03f352
Adding Hindi 2021-07-13 11:49:04 +03:00
wiz
74c49b9ae7
Enable i18n locale for Russian (ru) 2021-06-13 15:05:21 -05:00
wiz
6dbfcc9d1a
Enable i18n for Polish language 2021-04-26 05:43:47 +09:00
softsimon
a3d9e87f0e
Adding Hebrew language 2021-02-25 17:16:22 +07:00
softsimon
47dd1f2d0b
Adding Italian language. Updating nginx conf with some missing languages. 2021-01-27 20:24:32 +07:00
softsimon
6507b5e003
Adding hungarian language. 2021-01-24 04:19:50 +07:00
wiz
ff0d1a7589
Merge remote-tracking branch 'origin/master' into simon/angular-universal 2020-12-22 06:14:12 +09:00
wiz
4b1ac88a5c
Remove duplicate locale for 'ka' in app.constants.ts 2020-12-10 23:14:29 +09:00
softsimon
d0e0ab7c24
i18n: Enabling Vietnamese 2020-12-10 11:51:27 +07:00
softsimon
d8e1023848
i18n: Enabling Finnish 2020-12-09 23:20:37 +07:00
softsimon
c9f485a775
i18n: Disabling vietnamese again 2020-12-09 23:20:10 +07:00
softsimon
5b8bcd5b7d
i18n: Fixed stacked mempool block issue and enabled vietnamese. 2020-12-09 01:31:49 +07:00
wiz
06a0abdb79
Enable 'ko' locale for Korean in app.constants.ts 2020-12-08 15:59:00 +09:00
softsimon
5659a8c086
Correcting merge conflict. 2020-12-08 11:57:03 +07:00
wiz
a2740aaa02
Enable 'ka' locale for Georgian 2020-12-07 00:20:05 +09:00
wiz
f93e1c460a
Disable Vietnamese locale 'vi' until translations are completed 2020-12-06 03:40:04 +09:00
wiz
73db9c5023
Enable 'ar' locale for Arabic 2020-12-04 04:11:14 +09:00
wiz
a831d04694
Fix incorrectly used 'nn' locale, rename it to 'nb' instead 2020-12-03 22:37:06 +09:00
wiz
83501cfdbe
Enable locale 'vi' for Vietnamese 2020-12-03 10:16:02 +09:00
wiz
9148d30fcc
Enable 'fr' locale for French 2020-12-02 20:35:46 +09:00
wiz
4658b47007
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
5b8dbfca74
Addig fronend flag (SPONSORS_ENABLED) to enable Sponsors in the gui.
refs #122
2020-10-07 23:30:45 +07:00
softsimon
24e40b25fd
New config that lets frontend connect to a separate Bisq mempool backend. 2020-07-25 21:21:53 +07:00
softsimon
c21dad88bf
WIP: Bisq DAO support. Transactions list and details. 2020-07-03 23:45:19 +07:00
softsimon
0a264a7078
Adding support for optional frontend config.
Dropdown network selector is hidden by default, and enabled using config.
fixes #79
2020-06-22 22:10:49 +07:00
softsimon
36e46249b5
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
da4ce0855c
Block transactions list now use pagination instead of infinite scroll. 2020-05-30 21:18:53 +07:00
softsimon
235c9b0bdd
Mempool gradient update, again. 2020-05-30 10:20:29 +07:00
softsimon
2c24c2de83
Corrected that horrible green color. 2020-05-30 09:56:38 +07:00
softsimon
9ef5c420d9
Change mempool gradient to green-yellow-red 2020-05-29 22:16:20 +07:00
softsimon
559a6dd19a
Slightly increased gradient span and contrast on mempool blocks 2020-05-27 17:14:02 +07:00
softsimon
ba007a4b17
Use dynamic gradient based on fee levels on mempool blocks.
fixes #64
2020-05-24 22:23:56 +07:00