-
-
Notifications
You must be signed in to change notification settings - Fork 728
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:guardianproject/haven
- Loading branch information
Showing
25 changed files
with
507 additions
and
289 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
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
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 @@ | ||
Haven | ||
Haven |
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 @@ | ||
Protége les espaces et les biens privés sans compromettre l’intimité |
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 @@ | ||
Haven | ||
Haven |
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 @@ | ||
Beskytt private rom og eiendeler uten å ofre personvernet |
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 @@ | ||
Haven |
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,25 @@ | ||
#!/bin/bash -e | ||
|
||
# Fix TypographyEllipsis programmatically | ||
sed -i 's/\.\.\./…/g' src/main/res/values*/strings.xml | ||
|
||
# Replace "--" with an "em dash" character | ||
sed -i 's,\(\>[^\<]*\)--\([^\>]\),\1—\2,g' src/main/res/values*/strings.xml | ||
|
||
# indent <string> lines like Android Studio does | ||
sed -i "s,^\s*<string, <string," src/main/res/values*/strings.xml | ||
|
||
# no indent on <resources> | ||
sed -i 's,\s*<resources>,<resources>,' src/main/res/values*/strings.xml | ||
sed -i 's,\s*</resources>,</resources>,' src/main/res/values*/strings.xml | ||
|
||
# strip leading whitespace | ||
sed -Ei 's,(<string[^>]+>)\s*,\1,' src/main/res/values*/strings.xml | ||
|
||
# strip trailing whitespace | ||
sed -i 's,\s*</string>,</string>,' src/main/res/values*/strings.xml | ||
|
||
if ! git diff --exit-code > /dev/null; then | ||
echo "Run fix-translations and include the needed differences!" | ||
exit 1 | ||
fi |
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
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,35 @@ | ||
<resources> | ||
|
||
<string name="menu_save">Захаваць</string> | ||
<string name="menu_about">Наладзiць…</string> | ||
|
||
<string name="title_activity_start">Haven</string> | ||
|
||
<string name="accelerometer_prompt">Адчувальнасць Руху</string> | ||
|
||
<string name="microphone_sensitivity">Адчувальнасць Гуку</string> | ||
|
||
<string name="timer_delay_label">Час Затрымкi</string> | ||
|
||
<string name="sms_label">Апавяшчаць праз СМС або праз дадатак Signal</string> | ||
|
||
<string name="sms_hint">+12125551212</string> | ||
|
||
<string name="camera_prompt">Выбар Камеры</string> | ||
|
||
<string name="secure_service_started">Haven Работае</string> | ||
|
||
<string name="intrusion_detected">Спрацаваў Сэнсар Haven (Тып: %s)</string> | ||
<string name="title_activity_event">Падзеi</string> | ||
|
||
<string name="action_settings">Налады</string> | ||
|
||
<string name="intro1_title">Вiтаем у Haven</string> | ||
<string name="intro1_desc">\"Now when the ark of human fate,\nLong baffled by the wayward wind,\nIs drifting with its peopled freight,\nSAFE HAVEN on the height find…\"\n-George Meredith</string> | ||
|
||
<string name="intro2_title">Haven прызначаны для людзей, што жадаюць сачыць за ўварваннямi ў iх дамы, офiсы, гастiнiчныя нумары або iншыя прыватныя месцы</string> | ||
<string name="intro3_desc">Ператварыце дадатковы тэлефон у дэтэктар руху, гуку, вiбрацыi i свету, каб назiраць за нечаканымi гасцямi i нежаданымi зламыснiкамi.</string> | ||
|
||
<string name="intro4_desc">Атрымоўвайце апавяшчэннi аб уварваннях iмгненна. Назiрайце за журналам падзей аддалена альбо асабiста.</string> | ||
|
||
</resources> |
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
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
Oops, something went wrong.