<h2>Master Password</h2>
-<p>When you run Password Safe for the very first time, you are
+<p>When you run OI Safe for the very first time, you are
prompted for a 'Master Password'. This password is
used to encrypt a generated Master Key. The Master Key is in turn
used to encrypt and decrypt all the password entries.</p>
-<p>Each time that you launch Password Safe, the Master Password that
+<p>Each time that you launch OI Safe, the Master Password that
you type is used to decrypt, or unlock, the Master Key. The Master
Key is used to decrypt/encrypt the password entries.</p>
<h2>Import and Export</h2>
-<p>You can import data into Password Safe using CSV files. It is easiest to
+<p>You can import data into OI Safe using CSV files. It is easiest to
create and manage a CSV within a spreadsheet program like Excel or
OpenOffice. Create a file with the following columns in the first row.</p>
</tr>
</table>
-<p>Password Safe import is very sensitive about the first row,
+<p>OI Safe import is very sensitive about the first row,
so please specify the first
row exactly like the above list. You may also find it helpful to
- put some data into the Password Safe and perform an export first, so
+ put some data into the OI Safe and perform an export first, so
that you can see what the CSV should look like.</p>
<p>Use the name 'passwordsafe.csv' for your filename. Connect the
<h2>Security Concerns</h2>
-<p>Password Safe was written to safely store your passwords so that nobody can see
+<p>OI Safe was written to safely store your passwords so that nobody can see
them other than you.
- The password you use to unlock Password Safe is used to encrypt the data.
+ The password you use to unlock OI Safe is used to encrypt the data.
Data is stored within a SQLite database within your phone. That database stays
local. It does not get transferred to the Internet. In fact, the application
doesn't have the security privileges to even access the Internet.</p>
-<p>Because Password Safe cannot access the Internet, the data is not
+<p>Because OI Safe cannot access the Internet, the data is not
automatically backed up.
In order to backup, you will need to use Menu -> Backup.</p>
<h3>Locking</h3>
-<p>Any of the following actions will cause Password Safe to lock:</p>
+<p>Any of the following actions will cause OI Safe to lock:</p>
<ul>
<li>The screen turns off. This is a default behavior of the phone and is controlled
in the phone's Settings -> Sound & display -> Screen timeout.
The default timeout is 1 minute.
- After 1 minute the phone will go to sleep. When this happens, Password Safe will
+ After 1 minute the phone will go to sleep. When this happens, OI Safe will
lock itself.</li>
<li>You select <i>Lock</i> from the Menu on the Categories screen.</li>
<li>Android only allows six active applications. Once you launch the seventh,
- the oldest used application will be killed. If Password Safe is killed, than
+ the oldest used application will be killed. If OI Safe is killed, than
the next time you launch it, it will be locked.</li>
</ul>
<ul>
<li>Steven Osborn - <a href="http://steven.bitsetters.com">Blog</a></li>
<li>Randy McEoin</li>
+<li>Isaac Potoczny-Jones</li>
+<li>Peli</li>
</ul>
<p>Key Icon is Copyright <a href="http://www.icon-king.com/">David Vignoni</a>, and licensed
under the <a href="http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html">GNU LGPL V2.1</a> </p>
<h2>More Information</h2>
<p>For further information about this application, please visit the
- <a href="http://code.google.com/p/android-passwordsafe">Android Password Safe</a>
+ <a href="http://code.google.com/p/openintents">OpenIntents</a>
project web page at
- <a href="http://code.google.com/p/android-passwordsafe">http://code.google.com/p/android-passwordsafe</a>.</p>
+ <a href="http://www.openintents.org">http://www.openintents.org/</a>.</p>
</body>
-</html>
\ No newline at end of file
+</html>
android:layout_height="wrap_content" />\r
\r
<Button android:id="@+id/continue_button" \r
- android:text="Continue"\r
+ android:text="@string/continue_text"\r
android:layout_width="wrap_content"\r
android:layout_height="wrap_content" /> \r
</LinearLayout>
\ No newline at end of file
android:layout_height="wrap_content"\r
android:orientation="horizontal">\r
<Button android:id="@+id/logoff_button" \r
- android:text="Lock"\r
+ android:text="@string/lock"\r
android:layout_width="0dip"\r
android:layout_weight="1"\r
android:layout_height="wrap_content" />\r
\r
<Button android:id="@+id/goto_pws" \r
- android:text="Open Password Safe"\r
+ android:text="@string/open_safe"\r
android:layout_width="0dip"\r
android:layout_weight="1"\r
android:layout_height="wrap_content" /> \r
android:layout_height="wrap_content" />\r
\r
<Button android:id="@+id/goto_pws" \r
- android:text="Continue"\r
+ android:text="@string/continue"\r
android:layout_width="wrap_content"\r
android:layout_toRightOf="@id/logoff_button"\r
android:layout_alignTop="@id/logoff_button"\r
<TableRow>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="Password Length" />
+ android:text="@string/pass_gen_length" />
<EditText android:id="@+id/pass_length"\r
android:singleLine="true"
android:layout_width="3pt"
<TableRow>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:text="Uppercase [A-Z]" />
+ android:text="@string/pass_gen_uppercase" />
<CheckBox\r
android:id="@+id/pass_upper"\r
android:layout_height="wrap_content"\r
<TableRow>\r
<TextView android:layout_width="wrap_content"\r
android:layout_height="wrap_content" \r
- android:text="Lowercase [a-z]" />\r
+ android:text="@string/pass_gen_lowercase" />\r
<CheckBox android:id="@+id/pass_lower" \r
android:layout_width="wrap_content"\r
android:layout_height="wrap_content" android:checked="true"/>\r
<TableRow>\r
<TextView android:layout_width="wrap_content"\r
android:layout_height="wrap_content" \r
- android:text="Numbers [0-9]" />\r
+ android:text="@string/pass_gen_numbers" />\r
<CheckBox android:id="@+id/pass_num" \r
android:layout_width="wrap_content"\r
android:layout_height="wrap_content" android:checked="true"/>\r
<TableRow>\r
<TextView android:layout_width="wrap_content"\r
android:layout_height="wrap_content" \r
- android:text="Symbols [!@#$%^\*]" />\r
+ android:text="@string/pass_gen_symbols" />\r
<CheckBox android:id="@+id/pass_symbol" \r
android:layout_width="wrap_content"\r
android:layout_height="wrap_content" />\r
android:editable="false"/>\r
<Button android:id="@+id/copy_entry"
- android:text="Copy to Current Entry"
+ android:text="@string/pass_gen_copy_to_current_entry"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />\r
\r
<Button android:id="@+id/copy_clip" \r
- android:text="Copy to Clipboard"\r
+ android:text="@string/pass_gen_copy_to_clipboard"\r
android:layout_width="fill_parent"\r
android:layout_height="wrap_content" />\r
\r
<Button android:id="@+id/cancel" \r
- android:text="Cancel"\r
+ android:text="@string/cancel"\r
android:layout_width="fill_parent"\r
android:layout_height="wrap_content" />
<string name="dialog_delete_password_title">Delete Password</string>\r
<string name="dialog_delete_password_msg">Are you sure you want to delete this password?</string>\r
<string name="change_password">Change Master Password</string>\r
- <string name="chg_pass_explaination">Use this to change the password you use to unlock Password Safe. Your data will be re-encrypted with the new password. The more complex your password is, the safer your data will be.</string>\r
+ <string name="chg_pass_explaination">Use this to change the password you use to unlock OI Safe. Your data will be re-encrypted with the new password. The more complex your password is, the safer your data will be.</string>\r
<string name="old_password">Old password</string>\r
<string name="new_password">New password</string>\r
<string name="verify_password">Verify password</string>\r
<string name="intent_encrypt">Encrypt (OI Safe)</string>\r
<string name="intent_get_password">Get password (OI Safe)</string>\r
<string name="intent_set_password">Set password (OI Safe)</string>\r
+ <string name="open_safe">Open OI Safe</string>\r
+ <string name="lock">Lock</string>\r
+ <string name="continue_text">Continue</string>\r
+ <string name="pass_gen_length">Password Length</string>\r
+ <string name="pass_gen_uppercase">Uppercase [A-Z]</string>\r
+ <string name="pass_gen_lowercase">Lowercase [a-z]</string>\r
+ <string name="pass_gen_numbers">Numbers [0-9]</string>\r
+ <string name="pass_gen_symbols">Symbols [!@#$%^\*]</string>\r
+ <string name="pass_gen_copy_to_current_entry">Copy to Current Entry</string>\r
+ <string name="pass_gen_copy_to_clipboard">Copy to Clipboard</string>\r
+ <string name="cancel">Cancel</string>\r
</resources>