From 2d3763d70927dd1aefbc19f9ab6d463a713f2576 Mon Sep 17 00:00:00 2001 From: Lazaridis Date: Sat, 10 Mar 2018 04:56:39 +0200 Subject: add READMEs to folders, re #3427 --- docs/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docs/README.md (limited to 'docs') diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 000000000..0739cfa46 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,13 @@ +# Documentation + + +- [How to add custom build to Chrome](./add-to-chrome.md) +- [How to add custom build to Firefox](./add-to-firefox.md) +- [How to develop a live-reloading UI](./ui-dev-mode.md) +- [Publishing Guide](./publishing.md) +- [How to develop an in-browser mocked UI](./ui-mock-mode.md) +- [How to live reload on local dependency changes](./developing-on-deps.md) +- [How to add new networks to the Provider Menu](./adding-new-networks.md) +- [How to manage notices that appear when the app starts up](./notices.md) +- [How to port MetaMask to a new platform](./porting_to_new_environment.md) +- [How to generate a visualization of this repository's development](./development-visualization.md) \ No newline at end of file -- cgit v1.2.3 From c0a2996d35ada5d744ec137661e6105ba63499f0 Mon Sep 17 00:00:00 2001 From: Le Quoc Viet Date: Sat, 17 Mar 2018 19:56:10 +0000 Subject: Small edits --- docs/add-to-chrome.md | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'docs') diff --git a/docs/add-to-chrome.md b/docs/add-to-chrome.md index ea5213182..6dd14f806 100644 --- a/docs/add-to-chrome.md +++ b/docs/add-to-chrome.md @@ -1,14 +1,10 @@ ## Add Custom Build to Chrome -Open `Settings` > `Extensions`. - -Check "Developer mode". - -At the top, click `Load Unpacked Extension`. - -Navigate to your `metamask-plugin/dist/chrome` folder. - -Click `Select`. +* Open `Settings` > `Extensions`. +* Check "Developer mode". +* Alternatively, use the URL `chrome://extensions/` in your address bar +* At the top, click `Load Unpacked Extension`. +* Navigate to your `metamask-plugin/dist/chrome` folder. +* Click `Select`. You now have the plugin, and can click 'inspect views: background plugin' to view its dev console. - -- cgit v1.2.3 From e34355ca217684b8c79a072e9a578e738e058dea Mon Sep 17 00:00:00 2001 From: Le Quoc Viet Date: Sat, 17 Mar 2018 20:33:20 +0000 Subject: Update add-to-chrome.md --- docs/add-to-chrome.md | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs') diff --git a/docs/add-to-chrome.md b/docs/add-to-chrome.md index 6dd14f806..9c321a1a6 100644 --- a/docs/add-to-chrome.md +++ b/docs/add-to-chrome.md @@ -6,5 +6,7 @@ * At the top, click `Load Unpacked Extension`. * Navigate to your `metamask-plugin/dist/chrome` folder. * Click `Select`. +* Change to your locale via `chrome://settings/languages` +* Restart the browser and test the plugin in your locale You now have the plugin, and can click 'inspect views: background plugin' to view its dev console. -- cgit v1.2.3 From 938228fba58f5ced6504d6f6d14e0b96df84c32a Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 20 Mar 2018 12:03:44 -0700 Subject: Document translation script --- docs/translating-guide.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/translating-guide.md b/docs/translating-guide.md index 62d444b5a..ae2dfecd3 100644 --- a/docs/translating-guide.md +++ b/docs/translating-guide.md @@ -14,5 +14,13 @@ That's it! When MetaMask is loaded on a computer with that language set as the s ## Testing -To verify that your translation works, you will need to [build a local copy](https://github.com/MetaMask/metamask-extension#building-locally) of MetaMask. +To automatically see if you are missing any phrases to translate, we have a script you can run (if you know how to use the command line). The script is: + +``` +node development/verify-locale-strings.js $YOUR_LOCALE +``` + +Where `$YOUR_LOCALE` is your [locale string](https://r12a.github.io/app-subtags/), i.e. the name of your language folder. + +To verify that your translation works in the app, you will need to [build a local copy](https://github.com/MetaMask/metamask-extension#building-locally) of MetaMask. You will need to change your browser language, your operating system language, and restart your browser (sorry it's so much work!). -- cgit v1.2.3