-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated help messages + manifest + gitignore
- Loading branch information
Showing
4 changed files
with
26 additions
and
24 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 |
---|---|---|
|
@@ -3,3 +3,6 @@ obj | |
gen | ||
bin | ||
doc | ||
ant.properties | ||
local.properties | ||
project.properties |
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 |
---|---|---|
|
@@ -261,4 +261,6 @@ | |
|
||
<string name="pref_help_proxy">SIP proxy hostname or ip address (optional)</string> | ||
<string name="pref_help_outbound_proxy">Route all calls through SIP proxy</string> | ||
<string name="pref_help_username">Example: john if your account is [email protected]</string> | ||
<string name="pref_help_domain">sip.linphone.org if your account is [email protected]</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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,8 +57,7 @@ private void addExtraAccountPreferencesFields(PreferenceScreen parent, final int | |
username.getEditText().setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS); | ||
username.setTitle(getString(R.string.pref_username)); | ||
username.setPersistent(true); | ||
//TODO make it translatable, use john instead of toto. | ||
//username.setDialogMessage("Example: toto if your account is [email protected]"); | ||
username.setDialogMessage(getString(R.string.pref_help_username)); | ||
username.setKey(getString(R.string.pref_username_key) + getAccountNumber(n)); | ||
username.setOnPreferenceChangeListener(preferenceChangedListener); | ||
|
||
|
@@ -72,8 +71,7 @@ private void addExtraAccountPreferencesFields(PreferenceScreen parent, final int | |
domain.getEditText().setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS); | ||
domain.setTitle(getString(R.string.pref_domain)); | ||
domain.setPersistent(true); | ||
//TODO make it translatable, use john instead of toto. | ||
//domain.setDialogMessage("Example: sip.linphone.org if your account is [email protected]"); | ||
domain.setDialogMessage(getString(R.string.pref_help_domain)); | ||
domain.setKey(getString(R.string.pref_domain_key) + getAccountNumber(n)); | ||
domain.setOnPreferenceChangeListener(preferenceChangedListener); | ||
|
||
|