Skip to content

Commit

Permalink
update make_locale doc references, and small nits
Browse files Browse the repository at this point in the history
  • Loading branch information
SomberNight committed Jul 3, 2019
1 parent f1516d6 commit 5ed6a68
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Compile the protobuf description file::
Create translations (optional)::

sudo apt-get install python-requests gettext
./contrib/make_locale
./contrib/pull_locale



Expand Down
10 changes: 2 additions & 8 deletions contrib/build-linux/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,13 @@ Source tarballs

_This script does not produce reproducible output (yet!)._

1. Build locale files

```
contrib/make_locale
```
2. Prepare python dependencies used by Electrum.
1. Prepare python dependencies used by Electrum.

```
contrib/make_packages
```
3. Create source tarball.
2. Create source tarball.
```
contrib/make_tgz
Expand Down
7 changes: 3 additions & 4 deletions contrib/build-wine/build-electrum-git.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ here="$(dirname "$(readlink -e "$0")")"

pushd $WINEPREFIX/drive_c/electrum

# Load electrum-locale for this release
git submodule init
git submodule update

VERSION=`git describe --tags --dirty --always`
info "Last commit: $VERSION"

# Load electrum-locale for this release
git submodule update --init

pushd ./contrib/deterministic-build/electrum-locale
if ! which msgfmt > /dev/null 2>&1; then
fail "Please install gettext"
Expand Down
2 changes: 1 addition & 1 deletion contrib/make_apk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PACKAGES="$ROOT_FOLDER"/packages/
LOCALE="$ROOT_FOLDER"/electrum/locale/

if [ ! -d "$LOCALE" ]; then
echo "Run make_locale first!"
echo "Run pull_locale first!"
exit 1
fi

Expand Down
1 change: 1 addition & 0 deletions contrib/make_tgz
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ git submodule update --init
dir="$ROOT_FOLDER"/electrum/$i/LC_MESSAGES
mkdir -p $dir
msgfmt --output-file=$dir/electrum.mo $i/electrum.po || true
cp $i/electrum.po "$ROOT_FOLDER"/electrum/$i/electrum.po
done
)

Expand Down
2 changes: 1 addition & 1 deletion electrum/gui/kivy/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ folder.
3. Build locale files
```
$ ./contrib/make_locale
$ ./contrib/pull_locale
```
4. Prepare pure python dependencies
Expand Down

0 comments on commit 5ed6a68

Please sign in to comment.