-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from TpmKranz/feature-testsettings
Add proper UI response for changed settings
- Loading branch information
Showing
4 changed files
with
174 additions
and
45 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
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,16 +1,26 @@ | ||
<resources> | ||
<string name="app_name">SMS Forward</string> | ||
<string name="action_settings">Settings</string> | ||
<string name="hint_email">Email address</string> | ||
<string name="hint_password">Password</string> | ||
<string name="hint_server">SMTP Server</string> | ||
<string name="hint_port">Port</string> | ||
<string name="hint_target">Target address</string> | ||
<string name="hint_email">Email address*</string> | ||
<string name="hint_password">Password*</string> | ||
<string name="hint_server">SMTP Server*</string> | ||
<string name="hint_port">Port*</string> | ||
<string name="hint_target">Target address*</string> | ||
<string name="hint_pubkey">Public PGP key</string> | ||
<string name="intro">Here you can set the email account to be used for sending SMS contents.\nThe button starts the service that catches SMS and forwards them via the specified email account.</string> | ||
<string name="intro">Here you can set up the email account to be used for sending SMS contents.\nThe button starts the receiver that catches and forwards SMS via email.\nIf you\'ve changed settings along the way, a test mail will be sent and you\'ll be asked to confirm its receipt to really start the receiver.</string> | ||
<string name="service_notification_ticker">Forwarding SMS via Email</string> | ||
<string name="snackbar_settings_changed">Confirm that you\'ve received the test mail</string> | ||
<string name="snackbar_settings_confirmed">Confirm</string> | ||
<string name="email_body_template" formatted="false">SMS from %s:%n%n%s</string> | ||
<string name="email_subject_template" formatted="false">%d new SMS</string> | ||
<string name="email_subject_test">SMS Forward Test Mail</string> | ||
<string name="email_body_test">If you see this mail, your settings are set correctly and your SMS should be forwarded properly to this mail address.</string> | ||
<string name="email_body_test">If you see this mail, your settings are set correctly and your SMS should be forwarded properly to this mail address once you\'ve confirmed the receipt of this mail on your device.</string> | ||
<string name="invalid_email">Not a valid email address</string> | ||
<string name="invalid_password">No password stored or set here</string> | ||
<string name="invalid_server">Not a valid fully qualified domain name</string> | ||
<string name="invalid_port">Not a valid port</string> | ||
<string name="invalid_pubkey">Not a valid PGP pubkey</string> | ||
<string name="invalid_something">Not a valid input</string> | ||
<string name="hint_intro0">Tap to expand explanation</string> | ||
<string name="hint_intro1">Tap to collapse explanation</string> | ||
</resources> |