summaryrefslogtreecommitdiffhomepage
path: root/gui/scripts/README.md
diff options
context:
space:
mode:
authorOskar <oskar@mullvad.net>2024-11-05 07:57:08 +0100
committerOskar <oskar@mullvad.net>2024-11-14 16:43:18 +0100
commit84f14d79c4f0dde73337820ec94ba8ff928a3797 (patch)
treece468658e5ba7b0a74950c7ad1b09b3a4d00520b /gui/scripts/README.md
parente3ce0eb5cd0610dbff6ec98cb8cb388415c74bf6 (diff)
downloadmullvadvpn-84f14d79c4f0dde73337820ec94ba8ff928a3797.tar.xz
mullvadvpn-84f14d79c4f0dde73337820ec94ba8ff928a3797.zip
Move gui directory to desktop/packages/mullvad-vpn
Diffstat (limited to 'gui/scripts/README.md')
-rw-r--r--gui/scripts/README.md41
1 files changed, 0 insertions, 41 deletions
diff --git a/gui/scripts/README.md b/gui/scripts/README.md
deleted file mode 100644
index 8556bb85fb..0000000000
--- a/gui/scripts/README.md
+++ /dev/null
@@ -1,41 +0,0 @@
-This is a folder with the supporting scripts written in Python 3, node, bash.
-
-
-## Maps and location translations
-
-### Dependency installation notes
-
-1. Run the following command in terminal to install python dependencies:
- `pip3 install -r requirements.txt`
-
-2. Make sure you have gettext utilities installed.
- https://www.gnu.org/software/gettext/
-
-
-### Update translations
-
-See [locales/README.md](../locales/README.md) for information about how to handle translations.
-
-The `<repo>/scripts/localization` script is, among other things, calling into `fetch-relay-locations.py`
-and `integrate-relay-locations.py` in this directory.
-
-* `fetch-relay-locations.py` fetches the relay list and extracts all country and city names.
-* `intregrate-relay-locations.py` integrates the fetched relay locations into
-`<repo>/gui/locales/relay-locations.pot`.
-
-### Locking Python dependencies
-
-1. Freeze dependencies:
-
-```
-pip3 freeze -r requirements.txt
-```
-
-and save the output into `requirements.txt`.
-
-
-2. Hash them with `hashin` tool:
-
-```
-hashin --python 3.7 --verbose --update-all
-```