This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New rewriting of the Salix Live Installer using the salix_livetools_l…
…ibrary. For now, only the first tab, the timezone is done.
- Loading branch information
Cyrille Pontvieux
committed
Feb 9, 2013
1 parent
40adc78
commit 4885d32
Showing
20 changed files
with
967 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
*.pyc | ||
locale |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
cd $(dirname "$0") | ||
for p in ../po/*.po; do | ||
d=$(basename $p .po) | ||
if [ ! -d locale/$d ]; then | ||
mkdir -p locale/$d/LC_MESSAGES | ||
echo "$p..." | ||
msgfmt $p -o locale/$d/LC_MESSAGES/salix-live-installer.mo | ||
fi | ||
done | ||
./salix-live-installer.py --test |