├── .buildscript
└── deploy_google_play.sh
├── .gitignore
├── .travis.yml
├── README.md
├── Safe
├── .classpath
├── .gitignore
├── .project
├── AUTHORS
├── CHANGELOG
├── NOTES
├── README
├── build.gradle
├── build.properties
├── build.xml
├── libs
│ └── OISafeMyBackupPro.jar
├── proguard.cfg
├── project.properties
├── readme.txt
├── src
│ ├── androidTest
│ │ └── java
│ │ │ └── org
│ │ │ └── openintents
│ │ │ └── safe
│ │ │ └── test
│ │ │ └── SafeTest.java
│ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── assets
│ │ └── help.html
│ │ ├── java
│ │ ├── estreamj
│ │ │ ├── ciphers
│ │ │ │ └── trivium
│ │ │ │ │ └── Trivium.java
│ │ │ └── framework
│ │ │ │ ├── ESJException.java
│ │ │ │ ├── Engine.java
│ │ │ │ ├── ICipher.java
│ │ │ │ ├── ICipherMaker.java
│ │ │ │ └── Utils.java
│ │ └── org
│ │ │ └── openintents
│ │ │ ├── intents
│ │ │ ├── CryptoIntents.java
│ │ │ └── FileManagerIntents.java
│ │ │ ├── safe
│ │ │ ├── AskPassword.java
│ │ │ ├── Backup.java
│ │ │ ├── CSVReader.java
│ │ │ ├── CSVWriter.java
│ │ │ ├── CategoryEdit.java
│ │ │ ├── CategoryList.java
│ │ │ ├── CategoryListItemAdapter.java
│ │ │ ├── ChangePass.java
│ │ │ ├── CryptoContentProvider.java
│ │ │ ├── CryptoHelper.java
│ │ │ ├── CryptoHelperException.java
│ │ │ ├── DBHelper.java
│ │ │ ├── Export.java
│ │ │ ├── FrontDoor.java
│ │ │ ├── Help.java
│ │ │ ├── Import.java
│ │ │ ├── InputStreamData.java
│ │ │ ├── IntentHandlerActivity.java
│ │ │ ├── Intents.java
│ │ │ ├── LogOffActivity.java
│ │ │ ├── OutputStreamData.java
│ │ │ ├── PRNGFixes.java
│ │ │ ├── PassEdit.java
│ │ │ ├── PassEditFragment.java
│ │ │ ├── PassGen.java
│ │ │ ├── PassList.java
│ │ │ ├── PassView.java
│ │ │ ├── PreferenceActivity.java
│ │ │ ├── Restore.java
│ │ │ ├── RestoreFirstTimeActivity.java
│ │ │ ├── RestoreHandler.java
│ │ │ ├── Safe.java
│ │ │ ├── SafeApplication.java
│ │ │ ├── Search.java
│ │ │ ├── SearchFragment.java
│ │ │ ├── SearchListItemAdapter.java
│ │ │ ├── SimpleGestureFilter.java
│ │ │ ├── dialog
│ │ │ │ ├── AllowExternalAccessDialog.java
│ │ │ │ ├── DialogHostingActivity.java
│ │ │ │ ├── FilenameDialog.java
│ │ │ │ └── FirstTimeWarningDialog.java
│ │ │ ├── model
│ │ │ │ ├── CategoryEntry.java
│ │ │ │ ├── PackageAccessEntry.java
│ │ │ │ ├── PassEntry.java
│ │ │ │ ├── Passwords.java
│ │ │ │ ├── RestoreDataSet.java
│ │ │ │ └── SearchEntry.java
│ │ │ ├── password
│ │ │ │ └── Master.java
│ │ │ ├── service
│ │ │ │ ├── AutoLockService.java
│ │ │ │ └── ServiceNotification.java
│ │ │ └── wrappers
│ │ │ │ ├── CheckWrappers.java
│ │ │ │ └── icecreamsandwich
│ │ │ │ └── WrapNotificationBuilder.java
│ │ │ └── util
│ │ │ └── SecureDelete.java
│ │ └── res
│ │ ├── anim
│ │ ├── cycle_7.xml
│ │ └── shake.xml
│ │ ├── drawable-hdpi-v11
│ │ ├── ic_menu_add_password.png
│ │ ├── ic_menu_switch_alpha.png
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-hdpi-v5
│ │ └── ic_launcher_safe.png
│ │ ├── drawable-ldpi-v11
│ │ ├── ic_menu_add_password.png
│ │ ├── ic_menu_switch_alpha.png
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-ldpi-v5
│ │ └── ic_launcher_safe.png
│ │ ├── drawable-mdpi-v11
│ │ ├── ic_menu_add_password.png
│ │ ├── ic_menu_switch_alpha.png
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-mdpi-v5
│ │ └── ic_launcher_safe.png
│ │ ├── drawable-xhdpi-v11
│ │ ├── ic_menu_add_password.png
│ │ ├── ic_menu_switch_alpha.png
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-xhdpi-v5
│ │ └── ic_launcher_safe.png
│ │ ├── drawable
│ │ ├── ic_launcher_folder_small.png
│ │ ├── ic_launcher_safe.png
│ │ └── passicon.png
│ │ ├── layout-land
│ │ ├── front_door.xml
│ │ └── keypad.xml
│ │ ├── layout-small
│ │ └── keypad.xml
│ │ ├── layout
│ │ ├── auto_backup.xml
│ │ ├── cat_edit.xml
│ │ ├── cat_list.xml
│ │ ├── cat_row.xml
│ │ ├── chg_pass.xml
│ │ ├── dialog_allow_access.xml
│ │ ├── dialog_filename.xml
│ │ ├── front_door.xml
│ │ ├── help.xml
│ │ ├── keypad.xml
│ │ ├── log_off.xml
│ │ ├── pass_edit.xml
│ │ ├── pass_edit_fragment.xml
│ │ ├── pass_gen.xml
│ │ ├── pass_list.xml
│ │ ├── pass_view.xml
│ │ ├── preferences.xml
│ │ ├── restore.xml
│ │ ├── restore_first_time.xml
│ │ ├── search.xml
│ │ ├── search_fragment.xml
│ │ └── search_row.xml
│ │ ├── raw
│ │ ├── click6a.ogg
│ │ ├── dooropening1.ogg
│ │ ├── dtmf2a.ogg
│ │ ├── license_short.txt
│ │ └── recent_changes.txt
│ │ ├── values-ar
│ │ └── strings.xml
│ │ ├── values-be
│ │ └── strings.xml
│ │ ├── values-bg
│ │ └── strings.xml
│ │ ├── values-cs
│ │ └── strings.xml
│ │ ├── values-de
│ │ └── strings.xml
│ │ ├── values-el
│ │ └── strings.xml
│ │ ├── values-en-rGB
│ │ └── strings.xml
│ │ ├── values-es
│ │ └── strings.xml
│ │ ├── values-fi
│ │ └── strings.xml
│ │ ├── values-fr
│ │ └── strings.xml
│ │ ├── values-hi
│ │ └── strings.xml
│ │ ├── values-it
│ │ └── strings.xml
│ │ ├── values-iw
│ │ └── strings.xml
│ │ ├── values-ja
│ │ └── strings.xml
│ │ ├── values-ko
│ │ └── strings.xml
│ │ ├── values-lv
│ │ └── strings.xml
│ │ ├── values-nb
│ │ └── strings.xml
│ │ ├── values-nl
│ │ └── strings.xml
│ │ ├── values-oc
│ │ └── strings.xml
│ │ ├── values-pl
│ │ └── strings.xml
│ │ ├── values-pt-rBR
│ │ └── strings.xml
│ │ ├── values-pt
│ │ └── strings.xml
│ │ ├── values-ro
│ │ └── strings.xml
│ │ ├── values-ru
│ │ └── strings.xml
│ │ ├── values-sc
│ │ └── strings.xml
│ │ ├── values-sd
│ │ └── strings.xml
│ │ ├── values-sk
│ │ └── strings.xml
│ │ ├── values-sv
│ │ └── strings.xml
│ │ ├── values-tl
│ │ └── strings.xml
│ │ ├── values-tr
│ │ └── strings.xml
│ │ ├── values-ug
│ │ └── strings.xml
│ │ ├── values-zh-rCN
│ │ └── strings.xml
│ │ ├── values
│ │ ├── arrays.xml
│ │ ├── colors.xml
│ │ ├── donottranslate.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ │ └── xml
│ │ ├── about.xml
│ │ └── preferences.xml
├── template of build-private.properties
├── template of local.properties
└── tests
│ ├── NOTES
│ ├── oisafe-test1.csv
│ ├── oisafe-test2.csv
│ ├── oisafe-test3.csv
│ ├── oisafe-test4.csv
│ ├── oisafe-test5.csv
│ ├── oisafe-test6.csv
│ ├── oisafe-test7.csv
│ └── test-procedure.html
├── SafeDemo
├── .classpath
├── .project
├── AndroidManifest.xml
├── build.gradle
├── project.properties
├── readme.txt
├── res
│ ├── drawable
│ │ └── icon.png
│ ├── layout
│ │ └── main.xml
│ └── values
│ │ └── strings.xml
└── src
│ └── org
│ └── openintents
│ ├── intents
│ └── CryptoIntents.java
│ ├── safe
│ └── service
│ │ └── ServiceDispatch.aidl
│ └── samples
│ └── testsafe
│ └── TestSafe.java
├── build.gradle
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── icons
├── ic_menu_add_category
│ ├── ic_menu_add_category_holo_dark
│ │ ├── hdpi
│ │ │ └── ic_menu_add_category.png
│ │ ├── ic_menu_add_category.svg
│ │ ├── ldpi
│ │ │ └── ic_menu_add_category.png
│ │ ├── mdpi
│ │ │ └── ic_menu_add_category.png
│ │ └── xhdpi
│ │ │ └── ic_menu_add_category.png
│ └── ic_menu_add_category_holo_light
│ │ ├── hdpi
│ │ └── ic_menu_add_category.png
│ │ ├── ic_menu_add_category.svg
│ │ ├── ldpi
│ │ └── ic_menu_add_category.png
│ │ ├── mdpi
│ │ └── ic_menu_add_category.png
│ │ └── xhdpi
│ │ └── ic_menu_add_category.png
├── ic_menu_add_password
│ ├── holo_dark
│ │ ├── drawable-hdpi
│ │ │ └── ic_menu_add_password.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_menu_add_password.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_menu_add_password.png
│ │ ├── drawable-xdpi
│ │ │ └── ic_menu_add_password.png
│ │ └── ic_menu_add_password.svg
│ └── holo_light
│ │ ├── drawable-hdpi
│ │ └── ic_menu_add_password.png
│ │ ├── drawable-ldpi
│ │ └── ic_menu_add_password.png
│ │ ├── drawable-mdpi
│ │ └── ic_menu_add_password.png
│ │ ├── drawable-xdpi
│ │ └── ic_menu_add_password.png
│ │ └── ic_menu_add_password.svg
├── ic_menu_switch_alpha
│ ├── holo_dark
│ │ ├── drawable-hdpi
│ │ │ └── ic_menu_switch_alpha.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_menu_switch_alpha.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_menu_switch_alpha.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_menu_switch_alpha.png
│ │ └── ic_menu_switch_alpha.svg
│ └── holo_light
│ │ ├── drawable-hdpi
│ │ └── ic_menu_switch_alpha.png
│ │ ├── drawable-ldpi
│ │ └── ic_menu_switch_alpha.png
│ │ ├── drawable-mdpi
│ │ └── ic_menu_switch_alpha.png
│ │ ├── drawable-xhdpi
│ │ └── ic_menu_switch_alpha.png
│ │ └── ic_menu_switch_alpha.svg
├── ic_menu_switch_numeric
│ ├── holo_dark
│ │ ├── drawable-hdpi
│ │ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-ldpi
│ │ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-mdpi
│ │ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-xhdpi
│ │ │ └── ic_menu_switch_numeric.png
│ │ └── ic_menu_switch_numeric.svg
│ └── holo_light
│ │ ├── drawable-hdpi
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-ldpi
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-mdpi
│ │ └── ic_menu_switch_numeric.png
│ │ ├── drawable-xhdpi
│ │ └── ic_menu_switch_numeric.png
│ │ └── ic_menu_switch_numeric.svg
└── readme.txt
├── local.properties.gpg
├── promotion
├── description
│ ├── description.txt
│ ├── description_extensions.txt
│ └── translations
│ │ ├── application_names.txt
│ │ ├── description-ar.txt
│ │ ├── description-be.txt
│ │ ├── description-bg.txt
│ │ ├── description-ca.txt
│ │ ├── description-cs.txt
│ │ ├── description-da.txt
│ │ ├── description-de.txt
│ │ ├── description-el.txt
│ │ ├── description-en-rGB.txt
│ │ ├── description-en.txt
│ │ ├── description-es.txt
│ │ ├── description-fa.txt
│ │ ├── description-fi.txt
│ │ ├── description-fr.txt
│ │ ├── description-hi.txt
│ │ ├── description-hr.txt
│ │ ├── description-it.txt
│ │ ├── description-iw.txt
│ │ ├── description-ja.txt
│ │ ├── description-ko.txt
│ │ ├── description-lv.txt
│ │ ├── description-mk.txt
│ │ ├── description-nb.txt
│ │ ├── description-nl.txt
│ │ ├── description-oc.txt
│ │ ├── description-pa.txt
│ │ ├── description-pl.txt
│ │ ├── description-pt-rBR.txt
│ │ ├── description-pt.txt
│ │ ├── description-ro.txt
│ │ ├── description-ru.txt
│ │ ├── description-sc.txt
│ │ ├── description-sd.txt
│ │ ├── description-sk.txt
│ │ ├── description-sv.txt
│ │ ├── description-tl.txt
│ │ ├── description-tr.txt
│ │ ├── description-ug.txt
│ │ └── description-zh-rCN.txt
├── icons
│ ├── ic_launcher_safe.svg
│ └── ic_launcher_safe_512.png
├── market
│ ├── safe_promo.svg
│ ├── safe_promo_1024x500.png
│ └── safe_promo_180x120.png
└── screenshots
│ └── android-4-0
│ ├── OISafe01.png
│ ├── OISafe02.png
│ ├── OISafe03.png
│ ├── OISafe04.png
│ ├── OISafe05.png
│ ├── OISafe06.png
│ ├── OISafe07.png
│ ├── OISafe08.png
│ └── readme.txt
├── settings.gradle
└── settings
├── debug.keystore
├── release.keystore.gpg
├── safe.gradle
└── service_account.json.gpg
/.gitignore:
--------------------------------------------------------------------------------
1 | bin
2 | gen
3 | build-private.properties
4 | build
5 | .idea
6 | .gradle
7 | .DS_Store
8 | *.iml
9 | local.properties
10 |
11 | #private files
12 | release.keystore
13 | service_account.json
14 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: android
2 | env:
3 | global:
4 | - GRADLE_OPTS="-Xms40m -Xmx3g -XX:MaxPermSize=3g"
5 | - secure: FeDzaUloNC2A8G2v2Z5B1kx5kizTWGELnimtYeFO8VfYk+WVtvS+6dRfZN2whp0GxYJIvGr//6cnodxAUr039cXROm3zVXZu1/G7cHtJkb89/DGcKmIOaolWZ9BnggqdYTNU7xYoA0T7HNH5ILFs41L2f60rOBVzMMrEvzb8VfY=
6 | - secure: VJYe/hgudROET8hXZwB4LlhE+hlIW6R+rt9ieWBAruLlH+Udl+dRBhq3d9Vh36ImqslgSP6yZsyk3Ey7mdSgdkFu70bF1WHs925D/DVSEtByIpMEINJ/pEFFajJOk1p54kxVxhGg0gBzD8hFhPb3FoeG/8MTF31s0aahJqmPEgI=
7 | jdk: oraclejdk8
8 | android:
9 | components:
10 | - tools
11 | - tools
12 | - platform-tools
13 | - android-27
14 | - build-tools-27.0.3
15 | license:
16 | - android-sdk-license-.+
17 |
18 | before_install:
19 | - mkdir "$ANDROID_HOME/licenses" || true
20 | - echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55\nd56f5187479451eabf01fb78af6dfcb131a6481e" > "$ANDROID_HOME/licenses/android-sdk-license"
21 | - if [ -n "$GPG_PASS" ]; then echo $GPG_PASS | gpg --passphrase-fd 0 local.properties.gpg;
22 | fi
23 | - if [ -n "$GPG_PASS" ]; then echo $GPG_PASS | gpg --passphrase-fd 0 settings/service_account.json.gpg;
24 | fi
25 | - if [ -n "$GPG_PASS" ]; then echo $GPG_PASS | gpg --passphrase-fd 0 settings/release.keystore.gpg;
26 | fi
27 | - if [ -z "$GPG_PASS"]; then touch local.properties; fi
28 | after_success:
29 | - if [ -n "$GITHUB_API_KEY" ]; then .buildscript/deploy_google_play.sh; fi
30 | script: "./gradlew check"
31 | branches:
32 | except:
33 | - gh-pages
34 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # OI Safe
2 | Password manager for Android
3 | Please see https://www.openintents.org/safe for description using Trivium streaming encryption.
4 |
5 | ## Build
6 | Depends on OI Distribution.
7 |
8 | ```
9 | ./gradlew assemble
10 | ```
11 |
12 | ## Release to Googe Play alpha channel
13 | Just push to master
14 |
15 |
--------------------------------------------------------------------------------
/Safe/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Safe/.gitignore:
--------------------------------------------------------------------------------
1 | # built application files
2 | *.apk
3 | *.ap_
4 |
5 | # files for the dex VM
6 | *.dex
7 |
8 | # Java class files
9 | *.class
10 |
11 | # generated files
12 | bin/
13 | gen/
14 | release/
15 |
16 | # Eclipse settings
17 | .settings/
18 |
19 | # Local configuration file (sdk path, etc)
20 | local.properties
21 |
22 |
--------------------------------------------------------------------------------
/Safe/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | OI Safe
4 |
5 |
6 |
7 |
8 |
9 | com.android.ide.eclipse.adt.ResourceManagerBuilder
10 |
11 |
12 |
13 |
14 | com.android.ide.eclipse.adt.PreCompilerBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.android.ide.eclipse.adt.ApkBuilder
25 |
26 |
27 |
28 |
29 |
30 | com.android.ide.eclipse.adt.AndroidNature
31 | org.eclipse.jdt.core.javanature
32 |
33 |
34 |
--------------------------------------------------------------------------------
/Safe/AUTHORS:
--------------------------------------------------------------------------------
1 | Steven Osborn - http://steven.bitsetters.com
2 | Randy McEoin
3 | Isaac Potoczny-Jones - http://www.syntaxpolice.org
4 | Peli
5 |
--------------------------------------------------------------------------------
/Safe/CHANGELOG:
--------------------------------------------------------------------------------
1 | 0.1.0 [Nov 20, 2007] - Initial release of Password Safe
2 | 0.2.0 [Sept 4, 2008] - Updated to work with Android 0.9 thanks to Randy McEoin
3 | 0.2.1 [Sept 5, 2008] - Fixed delete, fixed bug where new entries wouldn't show
4 | up immediately.
5 | 0.2.2 [Sept 16, 2008] - Added categories and export to CSV.
6 | 0.2.3 [Oct 21, 2008] - Assorted bug fixes. Bumped database to version 2.
7 | Initial Market Version.
8 | 0.3.0 [Nov 2, 2008] - Improved Import/Export, Help Screen,
9 | [I7] Password Generator,
10 | [I10] Fixed issue where initial screen ate back button
11 | [I13] Fixed issue with passwords/categories not being saved after orientation change
12 | Made Delete menu option disabled on list views if there is no item selected
13 | Launching browser from password edit screen copies password to clip board
14 | 0.4.0 [Nov 15, 2008]
15 | [I14] Added the ChangePass activity allowing user to change the
16 | password used to unlock the app and encrypt the data
17 | [I19] User is not prompted before deleting a password
18 | [I20] During import a progress dialog is displayed
19 | 0.5.0 [Nov 22, 2008]
20 | [I23] Added the ability for an encrypted backup/restore
21 | [I24] Offer a ContextMenu on CategoryList when user long presses
22 | [I25] Fixed crashing when user hits Go on an invalid URL in PassEdit
23 | 0.6.0 [Dec 18, 2008]
24 | Changed encryption method to use a generated master key. User provides
25 | a master password that decrypts the master key. The master key is used
26 | to encrypt/decrypt the password entries.
27 | Database is now version 3. No upgrade path provided, user must export/import.
28 | 0.7.0 [Jan 16, 2009]
29 | Rename APWS to OI Safe.
30 |
--------------------------------------------------------------------------------
/Safe/NOTES:
--------------------------------------------------------------------------------
1 |
2 | To grab the database to work with it locally::
3 |
4 | adb pull /data/data/org.openintents.safe/databases/safe .
5 |
6 |
7 | Then to open it with sqlite3::
8 |
9 | sqlite3 safe
10 |
11 | To delete the database and force a clean start::
12 |
13 | adb shell rm /data/data/org.openintents.safe/databases/safe
14 |
15 | To uninstall the application completely::
16 |
17 | adb uninstall org.openintents.safe
18 |
19 | To make the keyword Id update::
20 |
21 | svn propset svn:keywords Id org/openintents/safe/filename.java
22 |
--------------------------------------------------------------------------------
/Safe/README:
--------------------------------------------------------------------------------
1 | LEGAL
2 | ------------------------------------------------------------------------------
3 | Key Icon is Copyright David Vignoni, http://www.icon-king.com/ and licensed
4 | under the GNU LGPL V2.1 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
5 |
6 | ALL OTHER SOURCE CODE AND CONTENT:
7 |
8 | Copyright 2007, Steven Osborn - http://steven.bitsetters.com and
9 | Randy McEoin
10 |
11 | Licensed under the Apache License, Version 2.0 (the "License");
12 | you may not use this file except in compliance with the License.
13 | You may obtain a copy of the License at
14 |
15 | http://www.apache.org/licenses/LICENSE-2.0
16 |
17 | Unless required by applicable law or agreed to in writing, software
18 | distributed under the License is distributed on an "AS IS" BASIS,
19 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 | See the License for the specific language governing permissions and
21 | limitations under the License.
22 |
23 | ------------------------------------------------------------------------------
24 |
25 | Features planned for version 1.0
26 | ------------------------------------------------------------------------------
27 | * Store username, password, site name, notes
28 | * Encrypt all data using password based encryption
29 | * A way to launch url in browser from password safe
30 |
31 | Ideas for future versions:
32 | ------------------------------------------------------------------------------
33 | * Favicon fetching and display
34 | * Customizeable encryption levels
35 | * Browser plugin
--------------------------------------------------------------------------------
/Safe/build.properties:
--------------------------------------------------------------------------------
1 | # This file is used to override default values used by the Ant build system.
2 | #
3 | # This file must be checked in Version Control Systems, as it is
4 | # integral to the build system of your project.
5 |
6 | # This file is only used by the Ant script.
7 |
8 | # You can use this to override default values such as
9 | # 'source.dir' for the location of your java source folder and
10 | # 'out.dir' for the location of your output folder.
11 |
12 | # You can also use it define how the release builds are signed by declaring
13 | # the following properties:
14 | # 'key.store' for the location of your keystore and
15 | # 'key.alias' for the name of the key to use.
16 | # The password will be asked during the build when you use the 'release' target.
17 |
--------------------------------------------------------------------------------
/Safe/build.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
10 |
19 |
20 |
23 |
24 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/Safe/libs/OISafeMyBackupPro.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/Safe/libs/OISafeMyBackupPro.jar
--------------------------------------------------------------------------------
/Safe/proguard.cfg:
--------------------------------------------------------------------------------
1 | -optimizationpasses 5
2 | -dontusemixedcaseclassnames
3 | -dontskipnonpubliclibraryclasses
4 | -dontpreverify
5 | -verbose
6 | -optimizations !code/simplification/arithmetic,!field/*,!class/merging/*
7 |
8 | -keep public class * extends android.app.Activity
9 | -keep public class * extends android.app.Application
10 | -keep public class * extends android.app.Service
11 | -keep public class * extends android.content.BroadcastReceiver
12 | -keep public class * extends android.content.ContentProvider
13 | -keep public class com.android.vending.licensing.ILicensingService
14 |
15 | -keepclasseswithmembernames class * {
16 | native ;
17 | }
18 |
19 | -keepclasseswithmembernames class * {
20 | public (android.content.Context, android.util.AttributeSet);
21 | }
22 |
23 | -keepclasseswithmembernames class * {
24 | public (android.content.Context, android.util.AttributeSet, int);
25 | }
26 |
27 | -keepclassmembers enum * {
28 | public static **[] values();
29 | public static ** valueOf(java.lang.String);
30 | }
31 |
32 | -keep class * implements android.os.Parcelable {
33 | public static final android.os.Parcelable$Creator *;
34 | }
35 |
--------------------------------------------------------------------------------
/Safe/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system use,
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 |
10 | android.library.reference.1=../../distribution/DistributionLibrary/
11 | # Project target.
12 | target=android-16
13 |
--------------------------------------------------------------------------------
/Safe/src/main/java/estreamj/framework/ESJException.java:
--------------------------------------------------------------------------------
1 | package estreamj.framework;
2 |
3 | public class ESJException extends Exception {
4 | private static final long serialVersionUID = 6375271013846829471L;
5 |
6 | public ESJException() {
7 | super();
8 | }
9 |
10 | public ESJException(String message) {
11 | super(message);
12 | }
13 |
14 | public ESJException(Throwable cause) {
15 | super(cause);
16 | }
17 |
18 | public ESJException(String message, Throwable cause) {
19 | super(message, cause);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/Safe/src/main/java/estreamj/framework/ICipher.java:
--------------------------------------------------------------------------------
1 | package estreamj.framework;
2 |
3 | /**
4 | * Generic interface every cipher needs to implement, so it can participate in
5 | * the test framework. If a cipher comes in different flavors (variable key
6 | * sizes, MAC computation or not, etc.) it should then implement a version for
7 | * each of them - this keeps the actual testing logic simple. Simple is good.
8 | */
9 | public interface ICipher {
10 | /**
11 | * mode: instance is used for encryption
12 | */
13 | public final static int MODE_ENCRYPT = 0;
14 |
15 | /**
16 | * mode: instance is used for decryption
17 | */
18 | public final static int MODE_DECRYPT = 1;
19 |
20 | ///////////////////////////////////////////////////////////////////////////
21 |
22 | /**
23 | * @return true: algorithm is patented, check with vendor for license
24 | * details / false: free to use in private and commerical applications
25 | */
26 | public boolean isPatented();
27 |
28 | /**
29 | * @return key size in bytes
30 | */
31 | public int getKeySize();
32 |
33 | /**
34 | * @return nonce size in bytes.
35 | */
36 | public int getNonceSize();
37 |
38 | /**
39 | * @return alignment of data needed during calls into process()
40 | */
41 | public int getWordSize();
42 |
43 | ///////////////////////////////////////////////////////////////////////////
44 |
45 | /**
46 | * Resets the instance, so it can be reused.
47 | *
48 | * @throws ESJException if any error occurs
49 | */
50 | public void reset() throws ESJException;
51 |
52 | /**
53 | * Sets up a new key with the existing instance.
54 | *
55 | * @param mode see MODE_xxx
56 | * @param key buffer with key material
57 | * @param ofs where the key starts
58 | * @throws ESJException if any error occurs
59 | */
60 | public void setupKey(int mode, byte[] key, int ofs)
61 | throws ESJException;
62 |
63 | /**
64 | * Sets up a new nonce with the existing cipher instance.
65 | *
66 | * @param mode see MODE_xxx
67 | * @param nonce buffer with nonce material
68 | * @param ofs where the nonce starts
69 | * @throws ESJException if any error occurs
70 | */
71 | public void setupNonce(byte[] nonce, int ofs)
72 | throws ESJException;
73 |
74 | ///////////////////////////////////////////////////////////////////////////
75 |
76 | /**
77 | * Processes data.
78 | *
79 | * @param inbuf input buffer
80 | * @param inOfs where to start reading from the input buffer
81 | * @param outbuf output buffer
82 | * @param outOfs where to start writing in the output buffer
83 | * @param len number of bytes to process, must be aligned to the cipher's
84 | * word size except on the last call where an arbitrary size can be used
85 | * @throws ESJException in any error occured
86 | */
87 | public void process(
88 | byte[] inbuf,
89 | int inOfs,
90 | byte[] outbuf,
91 | int outOfs,
92 | int len) throws ESJException;
93 | }
94 |
--------------------------------------------------------------------------------
/Safe/src/main/java/estreamj/framework/ICipherMaker.java:
--------------------------------------------------------------------------------
1 | package estreamj.framework;
2 |
3 | /**
4 | * Simple cipher factory.
5 | */
6 | public interface ICipherMaker {
7 | /**
8 | * @return the name of cipher, which is used for queries - so it must be
9 | * unique
10 | */
11 | public String getName();
12 |
13 | /**
14 | * Create a new cipher instance.
15 | *
16 | * @return new instance, which can also be of the type ICipherMAC, use the
17 | * "instanceof" keyword to find out what you are dealing with
18 | * @throws ESJException if any error occured
19 | */
20 | public ICipher create() throws ESJException;
21 | }
22 |
--------------------------------------------------------------------------------
/Safe/src/main/java/org/openintents/intents/FileManagerIntents.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (C) 2008 OpenIntents.org
3 | *
4 | * Licensed under the Apache License, Version 2.0 (the "License");
5 | * you may not use this file except in compliance with the License.
6 | * You may obtain a copy of the License at
7 | *
8 | * http://www.apache.org/licenses/LICENSE-2.0
9 | *
10 | * Unless required by applicable law or agreed to in writing, software
11 | * distributed under the License is distributed on an "AS IS" BASIS,
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | * See the License for the specific language governing permissions and
14 | * limitations under the License.
15 | */
16 |
17 | package org.openintents.intents;
18 |
19 | // Version Dec 9, 2008
20 |
21 | /**
22 | * Provides OpenIntents actions, extras, and categories used by providers.
23 | *
These specifiers extend the standard Android specifiers.
24 | */
25 | public final class FileManagerIntents {
26 |
27 | /**
28 | * Activity Action: Pick a file through the file manager, or let user
29 | * specify a custom file name.
30 | * Data is the current file name or file name suggestion.
31 | * Returns a new file name as file URI in data.
32 | *
33 | *
34 | */
35 | public static final String ACTION_PICK_FILE = "org.openintents.action.PICK_FILE";
36 |
37 | /**
38 | * Activity Action: Pick a directory through the file manager, or let user
39 | * specify a custom file name.
40 | * Data is the current directory name or directory name suggestion.
41 | * Returns a new directory name as file URI in data.
42 | *
43 | *
44 | */
45 | public static final String ACTION_PICK_DIRECTORY = "org.openintents.action.PICK_DIRECTORY";
46 |
47 | /**
48 | * The title to display.
49 | *
50 | *
This is shown in the title bar of the file manager.
51 | *
52 | *
Constant Value: "org.openintents.extra.TITLE"
53 | */
54 | public static final String EXTRA_TITLE = "org.openintents.extra.TITLE";
55 |
56 | /**
57 | * The text on the button to display.
58 | *
59 | *
Depending on the use, it makes sense to set this to "Open" or "Save".
You may want to Backup the database first with Menu->Backup
15 |
16 |
17 |
Install OI Safe and launch.
18 |
In Eclipse: right-click project OI Safe -> Run As -> Android Application
19 |
20 |
Or if build-private.properties is configured: project OI Safe -> (right-click)
21 | build.xml -> Run As -> Ant Build
22 |
23 |
24 |
25 |
Launch OI Safe. Should be presented with EULA. Hit Cancel. Application should quit.
26 |
27 |
28 |
29 |
Launch OI Safe. At EULA, hit Accept. Should be presented with
30 | AskPassword activity asking to create Master Password.
31 | Leave fields empty.
32 |
33 |
34 |
Hit Continue. Toast should remind user to provide at
35 | least 4 characters of password.
36 |
37 |
38 |
Type password in Master Password, leave Confirm empty. Hit Continue.
39 | Toast should tell user that passwords do not match.
40 |
41 |
42 |
Type correct password into Continue field. Hit Continue.
43 | CategoryList should activiate with a dialog letting user know that
44 | they should backup. Hit OK.
45 |
46 |
47 |
At CategoryList, hit Menu->Add. CategoryEdit should launch.
48 |
49 |
Leave blank and hit Save. Toast should complain about being empty.
50 | Provide a name and hit Save. Should fall back to CategoryList with the new
51 | category in the list.
52 |
53 |
54 |
Long-click the newly created category and hit Delete. Because it's empty
55 | it should disappear from the list.
56 |
57 |
58 |
59 |
Uninstall OI Safe and reinstall. Launch. Instead of providing a new Master
60 | Password, hit Restore. Restore Activity should launch.
61 |
62 |
63 |
Provide wrong password for oisafe.xml. Hit Restore. Toast should indicate bad password.
64 |
65 |
66 |
Provide correct password for oisafe.xml. Hit Restore. Dialog should prompt to overwrite
67 | existing data. Hit No. Should drop back. Hit Restore and hit Yes. CategoryList
68 | should launch with restored data.
69 |
70 |
71 |
72 |
73 |
74 |
75 |
--------------------------------------------------------------------------------
/SafeDemo/.classpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/SafeDemo/.project:
--------------------------------------------------------------------------------
1 |
2 |
3 | OI Safe Demo
4 |
5 |
6 |
7 |
8 |
9 | com.android.ide.eclipse.adt.ResourceManagerBuilder
10 |
11 |
12 |
13 |
14 | com.android.ide.eclipse.adt.PreCompilerBuilder
15 |
16 |
17 |
18 |
19 | org.eclipse.jdt.core.javabuilder
20 |
21 |
22 |
23 |
24 | com.android.ide.eclipse.adt.ApkBuilder
25 |
26 |
27 |
28 |
29 |
30 | com.android.ide.eclipse.adt.AndroidNature
31 | org.eclipse.jdt.core.javanature
32 |
33 |
34 |
--------------------------------------------------------------------------------
/SafeDemo/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
10 |
11 |
12 |
13 |
14 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/SafeDemo/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 | apply plugin: 'kotlin-android'
3 | apply plugin: 'kotlin-android-extensions'
4 |
5 |
6 | android {
7 | compileSdkVersion rootProject.ext.compileSdkVersion
8 | buildToolsVersion rootProject.ext.buildToolsVersion
9 |
10 | defaultConfig {
11 | applicationId "org.openintents.samples.testsafe"
12 | versionCode 2
13 | versionName "1.0.1"
14 | minSdkVersion 14
15 | targetSdkVersion rootProject.ext.targetSdkVersion
16 | }
17 |
18 | sourceSets {
19 | main {
20 | manifest.srcFile 'AndroidManifest.xml'
21 | java.srcDirs = ['src']
22 | aidl.srcDirs = ['src']
23 | res.srcDirs = ['res']
24 | assets.srcDirs = ['assets']
25 | }
26 |
27 | // Move the build types to build-types/
28 | // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
29 | // This moves them out of them default location under src//... which would
30 | // conflict with src/ being used by the main source set.
31 | // Adding new build types or product flavors should be accompanied
32 | // by a similar customization.
33 | debug.setRoot('build-types/debug')
34 | release.setRoot('build-types/release')
35 | }
36 |
37 | buildTypes {
38 | release {
39 | minifyEnabled false
40 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
41 |
42 | applicationVariants.all { variant ->
43 | variant.outputs.each { output ->
44 | def file = output.outputFile
45 | output.outputFileName = new File(file.parent, file.name.replace(".apk", "-" + defaultConfig.versionName + ".apk"))
46 | }
47 | }
48 | }
49 | }
50 |
51 | def propertyFile = new File(projectDir, "build-private.properties")
52 | if (propertyFile && propertyFile.exists()) {
53 | signingConfigs {
54 | release {
55 | Properties props = new Properties()
56 | props.load(new FileInputStream(propertyFile))
57 |
58 | storeFile file(props.getProperty("key.store"))
59 | storePassword props.getProperty("key.store.password")
60 | keyAlias props.getProperty("key.alias")
61 | keyPassword props.getProperty("key.alias.password")
62 | }
63 | }
64 | buildTypes.release.signingConfig signingConfigs.release
65 | println "Release apks will be signed!"
66 | } else {
67 | println "For signed release apks you need to create a build-private.properties file"
68 | }
69 |
70 | }
71 | repositories {
72 | mavenCentral()
73 | }
74 | dependencies {
75 | compile "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
76 | }
77 |
--------------------------------------------------------------------------------
/SafeDemo/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}\tools\proguard\proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-9
15 |
--------------------------------------------------------------------------------
/SafeDemo/readme.txt:
--------------------------------------------------------------------------------
1 | ****************************************************************************
2 | * Copyright (C) 2007-2011 Steven Osborn - http://steven.bitsetters.com *
3 | * and Randy McEoin (and others, see Help) *
4 | * *
5 | * Licensed under the Apache License, Version 2.0 (the "License"); *
6 | * you may not use this file except in compliance with the License. *
7 | * You may obtain a copy of the License at *
8 | * *
9 | * http://www.apache.org/licenses/LICENSE-2.0 *
10 | * *
11 | * Unless required by applicable law or agreed to in writing, software *
12 | * distributed under the License is distributed on an "AS IS" BASIS, *
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
14 | * See the License for the specific language governing permissions and *
15 | * limitations under the License. *
16 | ****************************************************************************
17 |
18 |
19 | OI Safe Demo shows how to access OI Safe from an external application.
20 |
21 | To obtain the current release, visit
22 | http://www.openintents.org
23 |
24 | ---------------------------------------------------------
25 | release: 1.0.1
26 | date: 2011-01-20
27 | - Support Android 2.3.
28 |
29 | ---------------------------------------------------------
30 | release: 1.0.0
31 | date: 2009-02-02
32 |
33 | Features:
34 | - Show how to use open intents:
35 | encypt, decrypt, get & set password.
36 |
--------------------------------------------------------------------------------
/SafeDemo/res/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/SafeDemo/res/drawable/icon.png
--------------------------------------------------------------------------------
/SafeDemo/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Hello World, ServiceTest
4 | TestSafe
5 |
6 |
--------------------------------------------------------------------------------
/SafeDemo/src/org/openintents/safe/service/ServiceDispatch.aidl:
--------------------------------------------------------------------------------
1 | /* $Id: $
2 | *
3 | * Copyright 2008 Isaac Potoczny-Jones
4 | *
5 | * Licensed under the Apache License, Version 2.0 (the "License");
6 | * you may not use this file except in compliance with the License.
7 | * You may obtain a copy of the License at
8 | *
9 | * http://www.apache.org/licenses/LICENSE-2.0
10 | *
11 | * Unless required by applicable law or agreed to in writing, software
12 | * distributed under the License is distributed on an "AS IS" BASIS,
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | * See the License for the specific language governing permissions and
15 | * limitations under the License.
16 | */
17 | package org.openintents.safe.service;
18 |
19 | interface ServiceDispatch {
20 | void setPassword (String masterPasswordIn);
21 | String getPassword ();
22 | String encrypt (String clearText);
23 | String decrypt (String cryptoText);
24 | void setTimeoutMinutes(int timeoutMinutesIn);
25 | }
26 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.2.30'
3 | repositories {
4 | jcenter()
5 | google()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:3.0.1'
9 | classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
10 | classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
11 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12 | }
13 | }
14 |
15 | ext {
16 | ci = "true".equals(System.getenv("CI"))
17 | preDexEnabled = "true".equals(System.getProperty("pre-dex", "true"))
18 |
19 | // Manifest version information!
20 | versionMajor = 2
21 | versionMinor = 0
22 | versionPatch = 0
23 | versionBuild = 1 // bump for dogfood builds, public betas, etc.
24 |
25 | versionCode = versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
26 | versionName = "${versionMajor}.${versionMinor}.${versionPatch}"
27 |
28 | compileSdkVersion = 27
29 | buildToolsVersion = "27.0.3"
30 | targetSdkVersion = 27
31 | }
32 |
33 | allprojects {
34 | repositories {
35 | jcenter()
36 | google()
37 | maven {
38 | url 'https://jitpack.io'
39 | }
40 |
41 | }
42 |
43 | apply plugin: 'findbugs'
44 | findbugs {
45 | ignoreFailures = true
46 | }
47 |
48 | apply plugin: 'pmd'
49 | pmd {
50 | ignoreFailures = true
51 | }
52 | }
53 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Thu Mar 15 16:40:57 CET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/hdpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/hdpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/ldpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/ldpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/mdpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/mdpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/xhdpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_dark/xhdpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_light/hdpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_light/hdpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_light/ldpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_light/ldpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_light/mdpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_light/mdpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_category/ic_menu_add_category_holo_light/xhdpi/ic_menu_add_category.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_category/ic_menu_add_category_holo_light/xhdpi/ic_menu_add_category.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_dark/drawable-hdpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_dark/drawable-hdpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_dark/drawable-ldpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_dark/drawable-ldpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_dark/drawable-mdpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_dark/drawable-mdpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_dark/drawable-xdpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_dark/drawable-xdpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_light/drawable-hdpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_light/drawable-hdpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_light/drawable-ldpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_light/drawable-ldpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_light/drawable-mdpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_light/drawable-mdpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_add_password/holo_light/drawable-xdpi/ic_menu_add_password.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_add_password/holo_light/drawable-xdpi/ic_menu_add_password.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_dark/drawable-hdpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_dark/drawable-hdpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_dark/drawable-ldpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_dark/drawable-ldpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_dark/drawable-mdpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_dark/drawable-mdpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_dark/drawable-xhdpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_dark/drawable-xhdpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_light/drawable-hdpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_light/drawable-hdpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_light/drawable-ldpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_light/drawable-ldpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_light/drawable-mdpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_light/drawable-mdpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_alpha/holo_light/drawable-xhdpi/ic_menu_switch_alpha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_alpha/holo_light/drawable-xhdpi/ic_menu_switch_alpha.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_dark/drawable-hdpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_dark/drawable-hdpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_dark/drawable-ldpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_dark/drawable-ldpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_dark/drawable-mdpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_dark/drawable-mdpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_dark/drawable-xhdpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_dark/drawable-xhdpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_light/drawable-hdpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_light/drawable-hdpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_light/drawable-ldpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_light/drawable-ldpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_light/drawable-mdpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_light/drawable-mdpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/ic_menu_switch_numeric/holo_light/drawable-xhdpi/ic_menu_switch_numeric.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/icons/ic_menu_switch_numeric/holo_light/drawable-xhdpi/ic_menu_switch_numeric.png
--------------------------------------------------------------------------------
/icons/readme.txt:
--------------------------------------------------------------------------------
1 | Icons for OI Safe
2 |
3 | ic_menu_add_category: Akarakas (GCI task 2011/12, issue 484)
4 | ic_menu_add_password: Julian Kuntorov (GCI task 2011/12, issue 485)
5 | ic_menu_switch_numeric: Chickenbellyfinn (GCI task 2011/12, issue 492)
6 | ic_menu_switch_alpha: Deep_Sky28 (GCI task 2011/12, issue 493)
7 |
--------------------------------------------------------------------------------
/local.properties.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/local.properties.gpg
--------------------------------------------------------------------------------
/promotion/description/description.txt:
--------------------------------------------------------------------------------
1 | # OI Safe
2 | #
3 | # Application name and promo text are extracted from the application strings.
4 | #
5 | # (Put each sentence in a separate line. Each sentence is translated separately)
6 | #
7 | # Description of application
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption.
9 | It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
10 |
11 | This application is ad free and does not require the internet permission.
12 |
13 | For the complete list of changes and a list of frequently asked questions, please visit:
14 | http://www.openintents.org
15 |
16 | You can help to improve the translation into your language at Launchpad:
17 | https://translations.launchpad.net/openintents/trunk
18 |
19 | The source code of this free and open source application is available at:
20 | http://code.google.com/p/openintents
21 |
22 | Features:
23 | * Securely protect data using AES encryption.
24 | * Freely move data entries between categories.
25 | * Import/Export data entries and databases.
26 | * Backup/Restore entries.
27 | * Includes secure password generator.
28 | * Automatic timeout to protect encrypted documents.
29 | * Encrypt OI Notepad notes.
30 | * Support for Obscura picture safe.
31 | * MyBackup Pro.
32 |
33 | Available extensions for "OI File Manager":
34 | * Show the license information with "OI About".
35 |
36 | Applications that work with "OI File Manager":
37 | * Encrypt notes created in "OI Notepad".
38 |
39 | Keywords:
40 | # Keywords: List several related key words and variations in your language and in English that people might search for.
41 | * safe, encrpytion, password, protection
42 | # Keep these keywords untranslated, or list the English version and a translation of the company name into your language in variations that people might search for.
43 | * OI, IO, OpenIntents, Open Intents
44 |
45 | International versions:
46 | #$ international
47 |
48 | Search strings for Market:
49 | # (these are not translated into other languages)
50 | #$ include description_extensions.txt
--------------------------------------------------------------------------------
/promotion/description/description_extensions.txt:
--------------------------------------------------------------------------------
1 | * Uses OI About
2 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/application_names.txt:
--------------------------------------------------------------------------------
1 | OI Kaha
2 | OI Kasa
3 | OI Safe
4 | OI Sarvu
5 | OI Seifs
6 | OI Sejf
7 | OI Sicurezza
8 | OI Trezor
9 | OI Turva
10 | OI kluis
11 | OI Κιβώτιο
12 | OI Безопасност
13 | OI بىخەتەرلىك
14 | OI सुरक्षित
15 | OI 金庫
16 | OI 금고
17 | OI安全
18 | כספת OI
19 | حماية OI
20 |
--------------------------------------------------------------------------------
/promotion/description/translations/description-ar.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | حماية OI
3 |
4 | # Promo text:
5 | خزن معلوماتك الشخصية مع حماية OI.
6 |
7 | # Description:
8 | OI آمنة بأمان يحمي جميع كلمات المرور والبيانات الخاصة الأخرى استخدام الصناعة القياسية AES تشفير. وهي أيضا بمثابة ملحق إلى OI المفكرة لتشفير الملاحظات التي تم إنشاؤها في OI برنامج "المفكرة".
9 |
10 | هذا التطبيق هو خالية من الإعلانات ولا يحتاج إذن الإنترنت.
11 |
12 | لقائمة كاملة من التغييرات وقائمة بالأسئلة المطروحة بشكل متكرر، يرجى زيارة:
13 | http://www.openintents.org
14 |
15 | يمكنك المساعدة على تحسين ترجمة إلى اللغة الخاصة بك في Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | شفرة المصدر لهذا التطبيق الحرة والمفتوحة المصدر متاحة في:
19 | http://code.google.com/p/openintents
20 |
21 | الميزات:
22 | * حماية البيانات باستخدام التشفير AES بشكل اﻷمن.
23 | * بحرية نقل إدخالات البيانات بين الفئتين.
24 | * استيراد/تصدير إدخالات البيانات وقواعد البيانات.
25 | * نسخ احتياطي/استعادة الإدخالات.
26 | * يتضمن كلمة مرور آمنة للمولدات.
27 | * مهلة التلقائي لحماية المستندات المشفرة.
28 | * تشفير OI الملاحظات "المفكرة".
29 | * الدعم للصورة Obscura آمنة.
30 | * النسخ الاحتياطي بلدي برو.
31 |
32 | الملحقات المتوفرة ل "OIإدارة الملفات":
33 | * إظهار معلومات الترخيص مع " OI حول".
34 |
35 | التطبيقات التي تعمل مع "OI إدارة الملفات":
36 | * تشفير الملاحظات التي تم إنشاؤها في " OI المفكرة".
37 |
38 | الكلمات الأساسية:
39 | * آمنة، تشفير، حماية كلمة المرور
40 | * المقاصد مفتوحة OI, IO, OpenIntents
41 |
42 | الإصدارات الدولية:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | سلاسل البحث للسوق:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-be.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | У прыкладанні няма рэкламы і яно не патрабуе доступу ў інтэрнэт.
11 |
12 | З поўным спісам змен і спісам пытянняў, якія часта задаюцца, можна азнаёміцца на:
13 | http://www.openintents.org
14 |
15 | Вы можаце палепшыць пераклад на вашу мову пры дапамозе Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Зыходны код гэтага бясплатнага прыкладання даступны на:
19 | http://code.google.com/p/openintents
20 |
21 | Магчымасці:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Даступныя пашырэнні для "OI File Manager":
33 | * Паказваць інфармацыю аб ліцэнзіі пры дапамозе "OI About".
34 |
35 | Прыкладанні, якія працуюць з "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Ключавыя словы:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Перекладзеныя версіі:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Пошук у Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-bg.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Безопасност
3 |
4 | # Promo text:
5 | Съхранявайте личната си информация с OI Безопасност.
6 |
7 | # Description:
8 | OI Safe пази в безопастност всичките Ви пароли и други лични данни, използвайки AES шифроване на индустриално ниво. То също действа и като разширение за OI Notepad за да се шифроват бележки, създадени в OI Notepad.
9 |
10 | Това приложение е безплатно и не изисква интернет за ползването ѝ.
11 |
12 | За пълен списък с промените и често задаваните въпроси,моля посетете:
13 | http://www.openintents.org
14 |
15 | Можете да помогнете за подобряване на превода на вашия език в Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Изходният код на това безплатно приложение с отворен код е достъпен на адрес:
19 | http://code.google.com/p/openintents
20 |
21 | Характеристики:
22 | * Предпазвай данни използвайки AES шифроване.
23 | * Свободно местете елементи данни между категориите.
24 | * Импортирайте/екстпортирайте елементи данни и бази данни.
25 | * Направете резервни копия на/Възстановете елементи.
26 | * Включва сигурен генератор на пароли.
27 | * Автоматично прекъсване след пресрочване на период от време, за да се предпазват шифровани документи.
28 | * Шифровайте OI Notepad бележки.
29 | * Поддържа Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Налични разширения за "OI File Manager":
33 | * Покажи информация за лиценза с "OI About".
34 |
35 | Приложения, които работят със "OI File Manager":
36 | * Шифровайте създадени с OI Notepad бележки.
37 |
38 | Ключови думи:
39 | * safe, безопастност, парола, предпазване
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Международни версии:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Стрингове за търсенето в Market
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-ca.txt:
--------------------------------------------------------------------------------
1 | OI Safe protegeix de forma segura totes les teves contrasenyes i altres dades privades emprant l'estàndard industrial d'encriptació AES. També actua com a extensió del bloc de notes d'OI per encriptar notes d'un bloc de notes d'OI.
2 |
3 | Aquesta aplicació no té anuncis i no necessita permisos a Internet.
4 |
5 | Per a una llista sencera de canvis i una llista de preguntes més freqüents, vegeu:
6 | http://www.openintents.org
7 |
8 | Podeu ajudar a millorar la traducció al vostre idioma a Launchpad
9 | https://translations.launchpad.net/openintents/trunk
10 |
11 | El codi font d'això és lliure i l'aplicació de codi obert està disponible a:
12 | http://code.google.com/p/openintents
13 |
14 | Característiques
15 | * Protegeix de forma segura dades emprant encriptació AES.
16 | * Mou lliurement entrades de dades entre categories.
17 | * Importa o exporta entrades de dades i bases de dades
18 | * Fes còpies de seguretat o restaura entrades.
19 | * Inclou un generador de contrasenyes segur.
20 | * Temps d'espera automàtic per protegir documents encriptats.
21 | * Encripta notes del bloc de notes d'OI.
22 | * Suport per a Obscura picture safe.
23 | * MyBackup Pro.
24 |
25 | Extensions disponibles per al gestor de fitxers d'OI:
26 | * Mostra informació de llicència amb "OI Quant a"
27 |
28 | Aplicacions que funcionen amb el "gestor de fitxers d'OI":
29 | * Encripta notes creades al "bloc de notes d'OI"
30 |
31 | Paraules clau:
32 | * segur, encriptació, contrasenya, protecció
33 | * OI, IO, OpenIntents, Open Intents
34 |
35 | Versions internacionals:
36 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
37 |
38 |
39 | Cerca cadenes al Mercat:
40 | * Uses OI About
41 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-cs.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Sejf
3 |
4 | # Promo text:
5 | Uložte si soukromá data s OI Sejf.
6 |
7 | # Description:
8 | OI Sejf bezpečně ochraňuje všechna Vaše hesla a jiná soukromá data pomocí AES šifrování, které je průmyslovým standardem. Funguje také jako rozšíření do OI Poznámkového bloku a umožňuje šifrovat poznámky vytvořené v OI Poznámkovém bloku.
9 |
10 | Tato aplikace je bez reklam a nevyžaduje přístup k internetu.
11 |
12 | Pro úplný seznam změn a seznam často kladených dotazů navštivte prosím:
13 | http://www.openintents.org
14 |
15 | Můžete také pomoci zlepšit překlad do Vašeho jazyka na Launchpadu:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Zdrojové kód této open source aplikace je dostupný na stránkách:
19 | http://code.google.com/p/openintents
20 |
21 | Vlastnosti:
22 | * Bezpečně ochraňuje data pomocí AES šifrování.
23 | * Bez překážek přesunuje data mezi kategoriemi.
24 | * Importuje/Exportuje data a databáze.
25 | * Zálohuje/Obnovuje záznamy.
26 | * Obsahuje generátor bezpečných hesel.
27 | * Automaticky se po určené době zamyká pro lepší ochranu zašifrovaných dokumentů.
28 | * Šifruje poznámky z OI Poznámkového bloku
29 | * Podpora pro "Obscura picture safe".
30 | * MyBackup Pro.
31 |
32 | Dostupná rozšíření pro OI Správce souborů:
33 | * Zobrazit licenční infomace s OI Infem.
34 |
35 | Aplikace, které pracují s OI Správcem souborů
36 | * Šifruje poznámky vytvořené v OI Poznámkovém bloku.
37 |
38 | Klíčová slova:
39 | * safe, encrpytion, password, protection, bezpečný, sejf, hesla, ochrana, správce hesel, heslo
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Mezinárodní verze:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Prohledat řetězce pro Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-da.txt:
--------------------------------------------------------------------------------
1 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
2 |
3 | Dette program er reklamefrit og kræver ikke internetadgang.
4 |
5 | For the complete list of changes and a list of frequently asked questions, please visit:
6 | http://www.openintents.org
7 |
8 | You can help to improve the translation into your language at Launchpad:
9 | https://translations.launchpad.net/openintents/trunk
10 |
11 | The source code of this free and open source application is available at:
12 | http://code.google.com/p/openintents
13 |
14 | Features:
15 | * Securely protect data using AES encryption.
16 | * Freely move data entries between categories.
17 | * Import/Export data entries and databases.
18 | * Backup/Restore entries.
19 | * Includes secure password generator.
20 | * Automatic timeout to protect encrypted documents.
21 | * Encrypt OI Notepad notes.
22 | * Support for Obscura picture safe.
23 | * MyBackup Pro.
24 |
25 | Available extensions for "OI File Manager":
26 | * Show the license information with "OI About".
27 |
28 | Applications that work with "OI File Manager":
29 | * Encrypt notes created in "OI Notepad".
30 |
31 | Keywords:
32 | * safe, encrpytion, password, protection
33 | * OI, IO, OpenIntents, Open Intents
34 |
35 | International versions:
36 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
37 |
38 |
39 | Search strings for Market:
40 | * Uses OI About
41 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-de.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Mit den OI Safe können Sie Ihre Passwörter sicher speichern.
6 |
7 | # Description:
8 | OI Safe schützt alle ihre Passwörter und andere privaten Daten mithilfe der Industriestandard AES Verschlüsselung. Es funktioniert auch als Erweiterung für OI Notepad, um Notizen, die in OI Notepad erstellt werden, zu verschlüsseln.
9 |
10 | Diese Applikation ist werbefrei und benötigt keine Internetverbindung.
11 |
12 | Für eine vollständige Liste der Änderungen und häufig gestellten Fragen besuchen sie bitte:
13 | http://www.openintents.org
14 |
15 | Sie können uns mit der Verbesserung der Übersetzung in ihre Sprache auf Launchpad unterstützen:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Der Quellcode dieser kostenlosen und quelloffenen Applikation ist verfügbar auf:
19 | http://code.google.com/p/openintents
20 |
21 | Leistungsmerkmale:
22 | * Daten mit der AES Verschlüsselung schützen.
23 | * Dateneinträge zwischen Kategorien frei herumbewegen.
24 | * Dateneinträge und Datenbanken importieren oder exportieren.
25 | * Einträge sichern/wiederherstellen
26 | * Mit einem sicheren Passwortgenerator
27 | * Automatisches Timeout, um verschlüsselte Dokumente zu schützen.
28 | * "OI Notepad"-Notizen verschlüsseln
29 | * Unterstützt den Obscura Bilder Safe.
30 | * MyBackup Pro.
31 |
32 | Verfügbare Erweiterungen für "OI File Manager"
33 | * Zeige die Lizenzinformationen mit OI About
34 |
35 | Anwendungen, die mit "OI File Manager" funktionieren:
36 | * Verschlüsselt Notizen, die in OI Notepad erstellt werden.
37 |
38 | Schlüsselwörter:
39 | * Safe, Verschlüsselung, Passwort, Schutz
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Internationale Versionen:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Im Market suchen nach:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-el.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Κιβώτιο
3 |
4 | # Promo text:
5 | Αποθηκέυστε τα προσωπικά σας δεδομένα με το OI Κιβώτιο.
6 |
7 | # Description:
8 | Το OI Κιβώτιο προστατεύει με ασφάλεια όλους τους κωδικούς και άλλα προσωπικά δεδομένα σας χρησιμοποιώντας το σύστημα κρυπτογράφησης AES. Δρά επίσης και ως μια επέκταση του OI Σημειωματάριο για την κρυπτογράφηση των σημειώσεων που δημιουργήθηκαν από αυτό.
9 |
10 | Αυτή η εφαρμογή δεν έχει διαφημήσεις και δεν απαιτεί άδεια στο διαδίκτυο.
11 |
12 | Για την πλήρη λίστα των αλλαγών και μια λίστα συχνών ερωτημάτων, παρακαλώ επισκευτείτε:
13 | http://www.openintents.org
14 |
15 | Μπορείτε να βοηθήσετε στη βελτίωση της μετάφρασης στη γλώσσα σας στο Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Ο πηγαίος κώδικας αυτού είναι δωρεάν και η εφαρμογή ανοικτού κώδικα είναι διαθέσιμη στο:
19 | http://code.google.com/p/openintents
20 |
21 | Χαρακτηριστικά:
22 | * Προστατεύει ε ασφάλεια τα δεδομένα χρησιμοποιώντας κρυπτογράφηση AES.
23 | * Μετακινήστε ελεύθερα τις καταχωρήσεις δεδομένων μεταξύ κατηγοριών.
24 | * Εισάγετε/Εξάγετε καταχωρήσεις δεδομένων και βάσεις δεδομένων.
25 | * Λάβετε αντίγραφα/Επαναφέρετε καταχωρήσεις.
26 | * Περιλαμβάνει έναν ασφαλή δημιουργό κωδικών.
27 | * Αυτόματο χρονικό όριο για την προστασία κρυπτογραφημένων κειμένων.
28 | * Κρυπτογράφηση σημειώσεων του OI Σημειωματάριο.
29 | * Υποστήριξη για το κιβώτιο εικόνων Obscura.
30 | * MyBackup Pro.
31 |
32 | Διαθέσιμες επεκτάσεις για τον "OI Διαχειριστή Αρχείων":
33 | * Εμφάνιση των πληροφοριών άδειας με το "OI Σχετικά".
34 |
35 | Εφαρμογές που συνεργάζονται με τον "OI Διαχειριστή Αρχείων":
36 | * Κρυπτογράφηση σημειώσεων που δημιουργήθηκαν με το "OI Σημειωματάριο".
37 |
38 | Λέξεις κλειδιά:
39 | * κιβώτιο, κρυπτογράφηση, κωδικός, προστασία
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Διεθνείς εκδόσεις:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Αναζήτηση συμβολοσειρών για το Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-en-rGB.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | This application is ad free and does not require the internet permission.
11 |
12 | For the complete list of changes and a list of frequently asked questions, please visit:
13 | http://www.openintents.org
14 |
15 | You can help to improve the translation into your language at Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | The source code of this free and open source application is available at:
19 | http://code.google.com/p/openintents
20 |
21 | Features:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Available extensions for "OI File Manager":
33 | * Show the licence information with "OI About".
34 |
35 | Applications that work with "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Keywords:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | International versions:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings for Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-en.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | This application is ad free and does not require the internet permission.
11 |
12 | For the complete list of changes and a list of frequently asked questions, please visit:
13 | http://www.openintents.org
14 |
15 | You can help to improve the translation into your language at Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | The source code of this free and open source application is available at:
19 | http://code.google.com/p/openintents
20 |
21 | Features:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Available extensions for "OI File Manager":
33 | * Show the license information with "OI About".
34 |
35 | Applications that work with "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Keywords:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | International versions:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings for Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-es.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Proteja sus datos privados con OI Safe.
6 |
7 | # Description:
8 | OI Safe protege todas sus contraseñas y otros datos privados usando el cifrado estándar AES. También actúa como una extensión de OI Notepad para encriptar notas.
9 |
10 | Esta aplicación no tiene anuncios y no requiere permisos de internet.
11 |
12 | Para la lista completa de cambios y la lista de preguntas frecuentes, por favor visite:
13 | http://www.openintents.org
14 |
15 | Usted puede ayudar a mejorar la traducción de su idioma en Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | El código fuente de esta aplicación libre y de código abierto está disponible en:
19 | http://code.google.com/p/openintents
20 |
21 | Características:
22 | * Protege los datos usando el cifrado AES.
23 | * Mueve libremente los registros de datos entre categorías.
24 | * Importar/exportar registros de datos y bases de datos.
25 | * Respaldar/restaurar registros.
26 | * Incluye un generador seguro de contraseñas.
27 | * Límite de tiempo automático para proteger documentos cifrados.
28 | * Encriptar notas de OI Notepad
29 | * Soporte para "Obscura picture safe".
30 | * My Backup Pro.
31 |
32 | Extensiones disponibles para "OI File Manager":
33 | * Mostrar la información de licencia en "OI About".
34 |
35 | Aplicaciones que funcionan con "OI File Manager":
36 | * Encriptar notas creadas en "OI Notepad"
37 |
38 | Palabras clave:
39 | * seguridad, encriptación, cifrado, contraseña, protección, encryption, protection, password, safe
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Versiones internacionales:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Buscar en el Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-fa.txt:
--------------------------------------------------------------------------------
1 | OI امن ایمن محافظت همه رمزهای عبور شما و دیگر اطلاعات خصوصی با استفاده از صنعت استاندارد رمزگذاری AES. همچنین به عنوان پسوند به OI دفترچه یادداشت برای رمزگذاری یادداشت های ایجاد شده در OI دفترچه یادداشت عمل می کند.
2 |
3 | این نرم افزار تبلیغ رایگان است و اجازه به اینترنت نیاز ندارد.
4 |
5 | برای لیست کامل تغییرات و یک لیست از سؤالاتی که مکررا پرسیده می، لطفا از سایت :
6 | http://www.openintents.org
7 |
8 | شما می توانید کمک به بهبود ترجمه به زبان خود را در گفتوگو :
9 | https://translations.launchpad.net/openintents/trunk
10 |
11 | کد منبع این نرم افزار منبع آزاد و باز در دسترس است :
12 | http://code.google.com/p/openintents
13 |
14 | ویژگی ها :
15 | * ایمن محافظت از داده ها با استفاده از رمزگذاری AES.
16 | * آزادانه داده ورودی در میان مقولهها حرکت می کند.
17 | * واردات/صادرات داده های ورودی و پایگاه داده.
18 | * پشتیبان گیری/بازیابی مدخل.
19 | * شامل ژنراتور رمز ورود ایمن است.
20 | * ایست خودکار برای محافظت از اسناد رمزنگاری شده است.
21 | * رمزبندی OI دفترچه یادداشت یادداشت.
22 | * پشتیبانی برای ایمن تصویر تاریک.
23 | * نرم افزار پشتیبان گیری من است.
24 |
25 | ماژول موجود برای "OIمدیریت فایل" :
26 | * دیدن اطلاعات مجوز "OI درباره". دیدن اطلاعات مجوز "OI درباره".
27 |
28 | برنامه های کاربردی که کار با "مدیریت فایل OI" :
29 | * یادداشت رمزبندی در "OI دفترچه یادداشت" ایجاد می شود.
30 |
31 | کلید واژه ها :
32 | * امن، رمزنگاری ، رمز عبور ، حفاظت از
33 | * OI، IO ها، مفاهیم باز، مفاهیم باز
34 |
35 | نسخه بین المللی :
36 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
37 |
38 |
39 | جستجو در رشته ها در بازار :
40 | * Uses OI About
41 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-fi.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Turva
3 |
4 | # Promo text:
5 | Säilö sinun henkilökohtaiset tietosi OI Turvan avulla.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | Tässä ohjelmassa EI OLE mainoksia ja ei vaadi internetyhteyttä ja -lupaa.
11 |
12 | Täydellinen luettelo muutoksista ja lista usein kysytyistä kysymyksistä on saatavilla osoitteessa:
13 | http://www.openintents.org
14 |
15 | Voit auttaa parantamaan käännöksiä omalle kielellesi Launchpadissa:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Tämän ilmaisen ja avoimen lähdekoodin ohjelman lähdekoodi on saatavilla osoitteesta:
19 | http://code.google.com/p/openintents
20 |
21 | Ominaisuudet:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Available extensions for "OI File Manager":
33 | * Show the license information with "OI About".
34 |
35 | Applications that work with "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Avainsanat:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Kansainvälinen versiot:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Etsintä jousille Markkinoiden:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-fr.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Stockez vos données privées avec OI Safe
6 |
7 | # Description:
8 | OI Safe protège en toute sécurité tous vos mots de passe et autres données privées à l'aide standard de l'industrie de cryptage AES. Il agit aussi comme une extension de l'OI Notepad pour crypter les notes créées dans l'OI Notepad.
9 |
10 | Cette application est petite annonce gratuite et ne nécessite pas l'autorisation d'Internet.
11 |
12 | Pour la liste complète des changements et une liste de questions fréquemment posées, s'il vous plaît visitez:
13 | http://www.openintents.org
14 |
15 | Vous pouvez contribuer à améliorer la traduction dans votre langue au Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Le code source de cette application libre et open source est disponible à l'adresse:
19 | http://code.google.com/p/openintents
20 |
21 | caractéristiques:
22 | * Solidement protéger les données en utilisant le cryptage AES.
23 | * Librement déplacer des entrées de données entre les catégories.
24 | * Importer / Exporter les entrées de données et bases de données.
25 | * Sauvegarde / Restauration des entrées.
26 | * Comprend un générateur de mot de passe sécurisé.
27 | * Temporisation automatique pour protéger les documents cryptés.
28 | * Crypter OI Notepad notes.
29 | * Prise en charge de sécurité image Obscura.
30 | * MyBackup Pro.
31 |
32 | Extensions disponibles pour "OI File Manager ":
33 | * Voir les informations de licence avec "OI propos ".
34 |
35 | Applications qui fonctionnent avec "OI File Manager ":
36 | * Crypter des notes créées dans "OI Notepad ".
37 |
38 | Mots-clés:
39 | * sécurité, le cryptage, mot de passe, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Les versions internationales:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Les chaînes de recherche pour le marché:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-hi.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI सुरक्षित
3 |
4 | # Promo text:
5 | अपना निजी डाटा को रकें OI सेफ के साथ.
6 |
7 | # Description:
8 | OI सेफ सुरक्षित रूप से आपके पासवर्ड और अन्य निजी उद्योग मानक AES एन्क्रिप्शन का उपयोग कर डेटा के सभी बचाता है. यह भी OI Notepadड के लिए एक विस्तार करने के लिए OI Notepad में बनाया नोट्स एन्क्रिप्ट रूप में कार्य करता है.
9 |
10 | यह अनुप्रयोग विज्ञापन मुक्त है और इसे इंटरनेट की अनुमति की आवश्यकता नहीं है|
11 |
12 | परिवर्तन और अक्सर पूछे जाने वाले प्रश्नों की पूरी सूची के लिए, कृपया यहाँ पर जाएँ:
13 | http://www.openintents.org
14 |
15 | आप Launchpad पर अपनी भाषा के अनुवाद को बेहतर बनाने में मदद कर सकते हैं:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | इस स्वतंत्र और खुला स्रोत अनुप्रयोग का स्रोत कोड यहाँ पर उपलब्ध है:
19 | http://code.google.com/p/openintents
20 |
21 | सुविधाएँ:
22 | * सुरक्षित रूप से अपना डाटा को सुरक्षित रखें AES एन्क्र्य्प्शन इस्तमाल करते हुए.
23 | * डाटा एंट्री को आज़ादी से चलने दे केटेगरी के बीच.
24 | * आयात/निर्यात डाटा एंट्री और डाटाबेसेस
25 | * बेकप/रिस्टोर दर्ज किया हुआ
26 | * सुरक्षित पासवर्ड जनरेटर को शामिल करें.
27 | * औतोमटिक टाइमओउट एन्क्रिप्टओचुमेंट्स को बचाएं.
28 | * एन्क्रिप्ट OI नोटपेड के नोट्स
29 | * ओब्स्कुरा पिक्चर सेफ के लिए सप्पोर्ट.
30 | * MyBackup Pro.
31 |
32 | "OI File Manager" के लिए उपलब्ध एक्सटेंशन:
33 | * "OI About" के साथ लाइसेंस जानकारी दिखाएँ .
34 |
35 | आवेदन ""OI File Manager" के साथ काम करता है:
36 | * नोट्स को एन्क्रिप्ट करें "OI नोटपद" मे
37 |
38 | कीवर्ड:
39 | * सुरक्षित, एन्क्र्प्य्शन, पास्वोर्ड,प्रोटेक्शन
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | अंतर्राष्ट्रीय संस्करण:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | बाजार के लिए स्ट्रिंग्स को खोजें :
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-hr.txt:
--------------------------------------------------------------------------------
1 | OI Siguran bezbedno štiti sve vaše pasworde i ostale privatne podatke koristeći standardni industrijiski AES šifrarnik. Takođe se ponaša kao dodatak za OI Blokče da bi šifrirao bilješke korišćene u OI Blokčet-u.
2 |
3 | Ova aplikacija nema reklame i zahtijeva internet konkciju.
4 |
5 | Za punu listu promena i listu ubičaeno pitanih pitanja, molimo posetite:
6 | http://www.openintents.org
7 |
8 | Možete pomoći u poboljšanju prevoda u vaš jezik na Launchpad-u:
9 | https://translations.launchpad.net/openintents/trunk
10 |
11 | Izvorni kod ovog programa je besplatan i otvoreni izvor aplikacije je dostupan na:
12 | http://code.google.com/p/openintents
13 |
14 | Značajke:
15 | * Bezbedno zaštiti podatke koristeći AES šifrarnik.
16 | * Slobodno pomerite unose podataka između kategorija.
17 | * Uvezi/Izvezi unose podataka i baze podataka.
18 | * Povrati unose.
19 | * Sadrži bezbeni generator lozinke.
20 | * Automatski iskljuši kod zaštićenih šifriranih dokumenata.
21 | * Šifriraj OI Blokče bilješke.
22 | * Prodška za Obscura sef slika.
23 | * MyBakup Pro.
24 |
25 | Dostupni dodatci za "OI Menadžer Datoteka":
26 | * Prikaži informacije licence sa "OI About":
27 |
28 | Aplikacije koje rade sa "OI Menadžer Datoteka":
29 | * Šifrirane bilješke u "OI Blokče".
30 |
31 | Ključne riječi:
32 | * safe, encrpytion, password, protection
33 | * OI, IO, OpenIntents, Open Intents
34 |
35 | Internacionalna verzija:
36 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
37 |
38 |
39 | Pretraži tekst na Marketu:
40 | * Uses OI About
41 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-it.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Sicurezza
3 |
4 | # Promo text:
5 | Memorizza tutti i dati privati con OI Sicurezza.
6 |
7 | # Description:
8 | OI Sicurezza protegge tutte le vostre password e gli altri dati privati utilizzando lo standard industriale di criptaggio AES. Funziona anche come un'estensione verso OI Notepad per criptare le note create in OI Notepad.
9 |
10 | Questa applicazione non contiene la pubblicità e non richiede la permissione di internet.
11 |
12 | Per la lista completa con le modifiche e una lista con le domande frequenti, prego visitare:
13 | http://www.openintents.org
14 |
15 | Potete aiutare a migliorare la traduzione nella vostra lingua a Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Il codice sorgente dell' applicazione gratuita e con la sorgente aperta è disponibile a:
19 | http://code.google.com/p/openintents
20 |
21 | Caratteristiche:
22 | * Protegge i dati in sicurezza utilizzando il criptaggio AES.
23 | * Muovere liberamente le entrate dei dati fra le categorie.
24 | * Importa/Esporta le entrate dei dati e delle basi dei dati.
25 | * Backup/Ripristina entrate.
26 | * Include il generatore delle password sicure.
27 | * Timeout automatico per proteggere i documenti criptati.
28 | * Cripta OI Notepad note.
29 | * Aiuto per la sicurezza dell'immagine Obscura.
30 | * MyBackup Pro.
31 |
32 | Estensioni disponibili per "OI File Manager":
33 | * Mostra le informazioni della licenza con "OI About".
34 |
35 | Le applicazioni che funzionano con "OI File Manager":
36 | * Cripta le note create in "OI Annotazioni".
37 |
38 | Le parole chiave:
39 | * sicuro, criptaggio, password, protezione
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Versioni internazionali:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Cerca le stringhe per Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-iw.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | כספת OI
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | כספת OI מגנה על כל הסיסמאות שלך ומידע פרטי אחר בעזרת שימוש בהצפנת AES סטנדרטי. זה גם פועל בתור הרחבה לפנס רשימות OI כדי להצפין פתקים שנוצרו בפנקס רשימות OI.
9 |
10 | באפליקציה זאת אין פרסומות והיא לא דורשת אישור אינטרנט.
11 |
12 | לרשימה המלאה של שינויים ולרשימה של שאלות נפוצות אנא לכו אל:
13 | http://www.openintents.org
14 |
15 | אתם יכולים לעזור לשפר את התרגום בשפתכם ב-Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | קוד המקור של אפליקציה חינמית ובעלת קוד פתוח זמין אצל:
19 | http://code.google.com/p/openintents
20 |
21 | מאפיינים:
22 | * הגן על מידע על ידי שימוש בהצפנת AES.
23 | * העבר רשומות מידע באופן חופשי בין קטגוריות.
24 | * ייבא/ייצא רשומות מידע ובסיסי מידע.
25 | * גבה/ שחזר רשומות.
26 | * כלול מייצר גרסה מאובטח.
27 | * פסק זמן אוטומטי כדי להגן על מסמכים מוצפנים.
28 | * הצפן פתקי פנקס פתקים OI.
29 | * תמיכה עבור כספת תמונה אובסקורה.
30 | * המגבה המקצועי שלי
31 |
32 | הרחבות זמינות בשביל "מנהל קבצים OI":
33 | * הראה מידע על הרישיון עם "אודות OI".
34 |
35 | יישומים שעובדים עם "מנהל קבצים OI":
36 | * הצפן פתקים שנוצרו בתוך "פנקס פתקים OI".
37 |
38 | מילות מפתח:
39 | * כספת, הצפנה, סיסמא, הגנה
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | גרסאות בין-לאומיות:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | חפש מחרוזות לשוק:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-ja.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI 金庫
3 |
4 | # Promo text:
5 | OI 金庫 でプライベートなデータを保管します。
6 |
7 | # Description:
8 | OI 金庫は業界基準の AES 暗号を使ってパスワードやほかのプライベートデータをすべて保護します。 更に OI メモ帳 の拡張機能として OI メモ帳 で作成されたノートを暗号化します。
9 |
10 | このアプリケーションは広告を含まず、インターネット許可を必要としません。
11 |
12 | すべての変更リストや質問リストを見るには:
13 | http://www.openintents.org
14 |
15 | あなたもこの言語の翻訳を Launchpad で改善することができます:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | この無料でオープンソースのアプリケーションのソースコードは以下の場所から取得できます:
19 | http://code.google.com/p/openintents
20 |
21 | 機能:
22 | * AES 暗号を使ってデータを安全に暗号化。
23 | * データエントリーのカテゴリーを自由に移動
24 | * データエントリーやデータベースをインポート・エクスポート。
25 | * エントリーをバックアップ・復元。
26 | * 安全パスワード作成機能が含まれています。
27 | * 暗号化されたドキュメントを保護するための自動タイムアウト。
28 | * OI メモ帳のノートを暗号化。
29 | * Obscura 画像金庫のサポート。
30 | * マイバックアップ プロ
31 |
32 | "OI ファイルマネージャー" の利用可能な拡張子:
33 | * "OI 情報" のライセンス情報を表示する。
34 |
35 | "OI ファイルマネージャー" と動作するアプリケーション:
36 | * "OI メモ帳" で作成されたノートを暗号化する。
37 |
38 | キーワード:
39 | * 金庫、暗号化、パスワード、保護
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | 国際バージョン:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | マーケット用に文字列を検索:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-ko.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI 금고
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI 금고는 산업 표준 암호화 방식인 AES를 사용하여 당신의 비밀번호와 다른 비밀 정보를 보호합니다. 확장 기능으로 OI 메모장에서 만들어진 메모를 암호화하기 위해서도 쓰입니다.
9 |
10 | 이 앱은 광고가 없으며 인터넷에 접속하지 않습니다.
11 |
12 | 모든 변경 내역과 FAQ는 다음 주소에서 볼 수 있습니다:
13 | http://www.openintents.org
14 |
15 | 당신의 언어로의 번역을 Launchpad에서 도울 수 있습니다:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | 이 무료 오픈 소스 앱의 소스 코드는 다음 주소에서 받을 수 있습니다:
19 | http://code.google.com/p/openintents
20 |
21 | 기능:
22 | * AES를 사용하여 정보를 안전하게 보호합니다.
23 | * 데이터를 카테고리 간 자유롭게 옮기세요.
24 | * 데이터베이스와 데이터 불러오기 및 내보내기.
25 | * 데이터 백업/복원하기.
26 | * 안전한 비밀번호 생성기를 포함합니다.
27 | * 암호화된 문서를 보호하기 위한 자동 타임아웃.
28 | * OI 메모장 메모 암호화 하기.
29 | * Obscura 사진 금고에 대한 지원.
30 | * MyBackup Pro.
31 |
32 | 사용 가능한 "OI 파일 관리자" 확장들:
33 | * "OI에 대해서" 로 라이선스 정보를 봅니다.
34 |
35 | "OI 파일 관리자" 와 호환되는 앱들:
36 | * "OI 메모장"에서 작성된 메모 암호화하기.
37 |
38 | 키워드:
39 | * 금고, 암호화, 비밀번호, 보호
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | 국제 버전들:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | 마켓에서 검색하기:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-lv.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Seifs
3 |
4 | # Promo text:
5 | Saglabājiet savus privātos datus ar OI Seifu.
6 |
7 | # Description:
8 | OI Seifs droši aizsargā visas Jūsu paroles un citus privātos datus izmantojot nozares standartu AES šifrēšanu. Tas arī darbojas kā paplašinājums OI Piezīmju blokam, lai šifrētu piezīmes, kuras ir izveidotas ar OI Piezīmju bloku.
9 |
10 | Šī aplikācija ir bezmaksas un tai nevajag interneta atļauju.
11 |
12 | Lai skatītu pilnīgu izmaiņu sarakstu un sarakstu ar biežāk uzdotajiem jautājumiem, lūdzu apmeklējiet:
13 | http://www.openintents.org
14 |
15 | Jūs varat palīdzēt uzlabot tulkojumu savā valodā izmantojot Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Pirmkods ir bezmaksas un atvērtā pirmkoda aplikācija ir pieejama:
19 | http://code.google.com/p/openintents
20 |
21 | Funkcijas:
22 | * Aizsargājiet datus droši izmantojot AES šifrēšanu.
23 | * Brīvi pārvietojiet datu ievades starp kategorijām
24 | * Importējiet/eksportējiet datu ievades un datubāzes.
25 | * Dublējiet/atjaunojiet ievades.
26 | * Iekļauj drošu paroļu ģeneratoru.
27 | * Automātisks noilgums, lai aizsargātu šifrētos dokumentus.
28 | * Šifrējiet OI Piezīmju bloka piezīmes.
29 | * Atbalsts Obscura attēlu seifam.
30 | * Mans rezerves kopiju Pro.
31 |
32 | Pieejamie paplašinājumi "OI Failu pārvaldnieks":
33 | * Parādīt licenzes informāciju ar "OI Paskaidrojumi".
34 |
35 | Aplikācijas, kuras strādā ar "OI Failu pārvaldnieks":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Atslēgvārdi:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Starptautiskās versijas:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Meklēt rindiņas tirgum:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-mk.txt:
--------------------------------------------------------------------------------
1 | OI Сеф безбедно ги заштитува сите лозинки и други приватни податоци користејќи енкрипција со индустриски стандард AES. 91. Исто така има улога на додаток на OI Бележник за енкрипција на белешки направени во OI Бележник.
2 |
3 | Оваа апликација е без реклами и не и е потребно интернет дозвола.
4 |
5 | За целосната листа на промени и често поставувани прашања, посетете ја:
6 | http://www.openintents.org
7 |
8 | Ти можеш да помогнеш да се подобри преводот во твојот јазик на Launchpad:
9 | https://translations.launchpad.net/openintents/trunk
10 |
11 | Изворниот код на оваа бесплатна и со отворен код апликација е достапен на:
12 | http://code.google.com/p/openintents
13 |
14 | Карактеристики:
15 | * 92. Безбедно заштити податоци користејќи AES енкрипција.
16 | * 93. Слободно движи податочни записи помеѓу категории.
17 | * 94. Внеси/Изнеси податочни записи и бази на податоци.
18 | * 95. Врати/Обнови записи.
19 | * 96. Вклучува безбеден генератор на лозинки.
20 | * 97. Автоматски истек на време за заштита на енкриптирани документи.
21 | * 98. Енкриптирај OI Бележник белешки.
22 | * 99. Подршка за Obscura picture safe.
23 | * MyBackup Pro.
24 |
25 | Достапни додатоци за „OI Управувач со датотеки“:
26 | * Покажи ги информациите за лиценцата со „OI About“.
27 |
28 | Апликации кои работат со „OI Управувач со датотеки“:
29 | * Енкриптирај белешки направени во "OI Бележник".
30 |
31 | Клучни зборови:
32 | * safe, encrpytion, password, protection, безбедност, сеф, енкрипција, лозинка, заштита
33 | * OI, IO, OpenIntents, Open Intents, Отворени Намери
34 |
35 | Меѓународни верзии:
36 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
37 |
38 |
39 | Барај стрингови за Пазар:
40 | * Uses OI About
41 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-nb.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe beskytter alle dine passord og andre private data ved bruk av AES-kryptering som er en industristandard. Den fungerer også som en utvidelse til OI Notatblokk for å kryptere notater opprettet i OI Notatblokk.
9 |
10 | Denne applikasjonen er reklamefri og trenger ikke inter
11 |
12 | For den komplette listen med endringer og en liste over vanlige spørsmål, vennligst besøk:
13 | http://www.openintents.org
14 |
15 | Du kan hjelpe til med å forbedre oversettelsen
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Kildekoden til denne gratis applikasjonen med åpen kildekode er tilgjengelig hos:
19 | http://code.google.com/p/openintents
20 |
21 | Funksjoner:
22 | * Trygt beskytt data ved bruk av AES-kryptering.
23 | * Fritt flytt dataoppføringer mellom kategorier.
24 | * Importer/Eksporter dataoppføringer og databaser.
25 | * Sikkerhetskopier/Gjenopprett oppføringer
26 | * Inkluderer sikker passordgenerator.
27 | * Automatisk tidsavbrudd for å beskytte krypterte dokumenter.
28 | * Krypter OI Notatblokk notater.
29 | * Støtte for Obscura bildesafe.
30 | * MyBackup Pro.
31 |
32 | TIlgjengelige utvidelser for "OI Filbehandler":
33 | * Vis lisensinformasjonen med "OI Info".
34 |
35 | Applikasjoner som fungerer med "OI Filbehandler":
36 | * Krypterte notater opprettet i "OI Notepad".
37 |
38 | Nøkkelord:
39 | * safe, kryptering, passord, beskyttelse
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Internasjonal versjoner:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Søkestrenger for Marked:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-nl.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI kluis
3 |
4 | # Promo text:
5 | Beveilig je privé-data met OI Kluis.
6 |
7 | # Description:
8 | OI Kluis beschermt privé-gegevens, zoals wachtwoorden, met de industriestandaard AES. Het is ook een extensie voor OI Notepad, om notities te versleutelen.
9 |
10 | Deze applicatie is advertentievrij, en heeft geen internet toegang nodig.
11 |
12 | Het complete overzicht van wijzigingen en de FAQ is te lezen op:
13 | http://www.openintents.org
14 |
15 | Jij kan helpen om de vertaling in je eigen taal te verbeteren via Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | De broncode van deze gratis en open source applicatie is beschikbaar op:
19 | http://code.google.com/p/openintents
20 |
21 | Eigenschappen:
22 | * Data beschermen met AES versleuteling.
23 | * Makkelijk data verschuiven van categorie naar categorie.
24 | * Gegevens en databases importeren en exporteren.
25 | * Gegevens back-uppen of terughalen.
26 | * Inclusief veilige wachtwoordgenerator.
27 | * Automatische time-out om beveiligde documenten te beschermen.
28 | * OI Notepad-notities versleutelen.
29 | * Ondersteuning voor Obscura picture safe.
30 | * My Backup Pro
31 |
32 | Beschikbare extensies voor "OI File Manager"
33 | * Toon licentie-informatie met OI About
34 |
35 | Applicaties die werken met "OI File Manager"
36 | * Notities versleutelen die aangemaakt zijn met OI Notepad.
37 |
38 | Sleutelwoorden:
39 | * safe, encrpytion, password, protection, encryptie, versleuteling, wachtwoord, beveiliging, kluis
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Internationale versies
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Zoektekst voor Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-oc.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | This application is ad free and does not require the internet permission.
11 |
12 | For the complete list of changes and a list of frequently asked questions, please visit:
13 | http://www.openintents.org
14 |
15 | You can help to improve the translation into your language at Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | The source code of this free and open source application is available at:
19 | http://code.google.com/p/openintents
20 |
21 | Features:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Available extensions for "OI File Manager":
33 | * Show the license information with "OI About".
34 |
35 | Applications that work with "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Mots claus :
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | International versions:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings for Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-pa.txt:
--------------------------------------------------------------------------------
1 | OI ਸੁਰੱਖਿਅਤ ਸੁਰੱਖਿਅਤ ਰੂਪ ਵਲੋਂ ਤੁਹਾਡੇ ਪਾਸਵਰਡ ਅਤੇ ਹੋਰ ਨਿਜੀ ਉਦਯੋਗ ਮਾਣਕ ਏਈਏਸ ਏੰਕਰਿਪਸ਼ਨ ਦਾ ਵਰਤੋ ਕਰ ਡੇਟਾ ਦੇ ਸਾਰੇ ਬਚਾਂਦਾ ਹੈ . ਇਹ ਵੀ OI ਨੋਟਪੈਡ ਲਈ ਇੱਕ ਵਿਸਥਾਰ ਕਰਣ ਲਈ ਪੁਰਾਨਾ ਨੋਟ ਪੈਡ ਵਿੱਚ ਬਣਾਇਆ ਨੋਟਸ ਏੰਕਰਿਪਟ ਰੂਪ ਵਿੱਚ ਕਾਰਜ ਕਰਦਾ ਹੈ .
2 |
3 | ਇਹ ਆਵੇਦਨ ਇਸ਼ਤਿਹਾਰ ਅਜ਼ਾਦ ਹੈ ਅਤੇ ਇੰਟਰਨੇਟ ਦੀ ਆਗਿਆ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ .
4 |
5 | ਤਬਦੀਲੀ ਅਤੇ ਅਕਸਰ ਪੁੱਛੇ ਜਾਣ ਵਾਲੇ ਪ੍ਰਸ਼ਨਾਂ ਦੀ ਇੱਕ ਸੂਚੀ ਦੀ ਪੂਰੀ ਸੂਚੀ ਦੇ ਲਈ , ਕ੍ਰਿਪਾ ਉੱਤੇ ਜਾਓ :
6 | http://www.openintents.org
7 |
8 | ਤੁਸੀ Launchpad ਉੱਤੇ ਆਪਣੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਨੁਵਾਦ ਨੂੰ ਬਿਹਤਰ ਬਣਾਉਣ ਵਿੱਚ ਮਦਦ ਕਰ ਸੱਕਦੇ ਹੋ :
9 | https://translations.launchpad.net/openintents/trunk
10 |
11 | ਇਸ ਆਜਾਦ ਅਤੇ ਖੁੱਲ੍ਹਾਖੁੱਲ੍ਹਾ ਸਰੋਤ ਆਵੇਦਨ ਦੇ ਸਰੋਤ ਕੋਡ ਵਿੱਚ ਉਪਲੱਬਧ ਹੈ :
12 | http://code.google.com/p/openintents
13 |
14 | ਫੀਛਰਸ
15 | * ਸੁਰੱਖਿਅਤ ਏਈਏਸ ਏੰਕਰਿਪਸ਼ਨ ਦਾ ਵਰਤੋ ਕਰ ਡੇਟਾ ਦੀ ਰੱਖਿਆ .
16 | * ਆਜ਼ਾਦੀ ਸ਼ਰੇਣੀਆਂ ਦੇ ਵਿੱਚ ਡੇਟਾ ਪ੍ਰਵਿਸ਼ਟੀਆਂ ਨੂੰ ਮੁੰਤਕਿਲ .
17 | * ਆਯਾਤ / ਨਿਰਿਆਤ ਡੇਟਾ ਪ੍ਰਵਿਸ਼ਟੀਆਂ ਅਤੇ ਡੇਟਾਬੇਸ .
18 | * ਪ੍ਰਵਿਸ਼ਟੀਆਂ ਬੈਕਅਪ / ਪੁਨਰਸਥਾਪਿਤ .
19 | * ਸੁਰੱਖਿਅਤ ਪਾਸਵਰਡ ਜਨਰੇਟਰ ਵੀ ਸ਼ਾਮਿਲ ਹੈ .
20 | * ਸਵੈਕਰ ਕਰਣ ਲਈ ਏੰਕਰਿਪਟੇਡ ਦਸਤਾਵੇਜਾਂ ਦੀ ਰੱਖਿਆ ਟਾਇਮਆਉਟ .
21 | * ਏੰਕਰਿਪਟ OI ਨੋਟਪੈਡ ਨੋਟਾਂ .
22 | * ਓਬਸਕਿਉਅਰ ਚਿੱਤਰ ਸੁਰੱਖਿਅਤ ਲਈ ਸਮਰਥਨ .
23 | * MyBackup ਪ੍ਰੋ .
24 |
25 | OI ਫਾਇਲ ਪ੍ਰਬੰਧਕ ਲਈ ਉਪਲੱਬਧ ਏਕਸਟੇਂਸ਼ਨ :
26 | * OI ਦੇ ਨਾਲ ਲਾਇਸੇਂਸ ਜਾਣਕਾਰੀ ਦਿਖਾਵਾਂ .
27 |
28 | ਆਵੇਦਨ OI ਫਾਇਲ ਪ੍ਰਬੰਧਕ ਦੇ ਨਾਲ ਕੰਮ :
29 | * ਏੰਕਰਿਪਟ ਨੋਟਸ OI ਨੋਟਪੈਡ ਬਣਾਇਆ .
30 |
31 | ਕੀਵਰਡ :
32 | * ਸੁਰਕ੍ਸ਼ਿਤ, ਏਨ੍ਕ੍ਰਿਪ੍ਸ਼ਨ, ਪਾਸਵਰ੍ਡ ਸੰਰਕ੍ਸ਼ਣ,
33 | * OI, IO, OpenIntents, Open Intents
34 |
35 | ਅੰਤਰਰਾਸ਼ਟਰੀ ਸੰਸਕਰਣ :
36 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
37 |
38 |
39 | ਬਾਜ਼ਾਰ ਲਈ ਖੋਜ ਤਾਰ :
40 | * Uses OI About
41 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-pl.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Sejf
3 |
4 | # Promo text:
5 | Zapisuj swoje prywatne dane używając OI Sejf.
6 |
7 | # Description:
8 | OI Safe bezpiecznie chroni wszystkie hasła i inne prywatne dane przy użyciu standardowego szyfrowania AES. Działa również jako rozszerzenie do Ol Notatnik pozwalające na szyfrowanie notatek w nim utworzonych.
9 |
10 | Ta aplikacja jest darmowa i nie wymaga dostępu do internetu.
11 |
12 | Aby zobaczyć pełną listę zmian oraz FAQ, odwiedź:
13 | http://www.openintents.org
14 |
15 | Możesz poprawić tłumaczenie na Twój język:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Kod źródłowy tej darmowej i open-source'owej aplikacji jest dostępny pod adresem:
19 | http://code.google.com/p/openintents
20 |
21 | Cechy:
22 | * Bezpieczna ochrona danych przy użyciu szyfrowania AES.
23 | * Swobodnie przenosić dane pomiędzy kategoriami.
24 | * Import / Eksport wpisów danych i baz danych.
25 | * Kopia zapasowa Przywracanie wpisów.
26 | * Włączając generatora bezpiecznych haseł.
27 | * Automatyczny limit czasu chroniący zaszyfrowane dokumenty.
28 | * Szyfrowanie notatek Ol Notatnik.
29 | * Wsparcie dla bezpiecznego obrazu Obscura.
30 | * MyBackup Pro.
31 |
32 | Dostępne rozszerzenia dla "Ol File Manager":
33 | * Pokaż informacje licencyjne za pomocą "OI About".
34 |
35 | Aplikacje działające z "OI Menedżer plików":
36 | * Szyfruj notatki utworzone w "Ol Notatnik".
37 |
38 | Słowa kluczowe:
39 | * szyfrowanie, sejf, hasła, ochrona, bezpieczeństwo
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Wersje międzynarodowe:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Szukaj ciągów znaków w Markecie:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-pt-rBR.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Guarde os dados privados com o OI Safe.
6 |
7 | # Description:
8 |
--------------------------------------------------------------------------------
/promotion/description/translations/description-pt.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Guarde os dados privados com o OI Safe.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | Esta aplicação é livre e não requer permissões de Internet.
11 |
12 | Para ver a lista de alterações e as perguntas frequentes, consulte:
13 | http://www.openintents.org
14 |
15 | Pode ajudar a traduzir as aplicações no Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | O código fonte desta aplicação está disponível em:
19 | http://code.google.com/p/openintents
20 |
21 | Características:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Extras para o "OI File Manager":
33 | * Mostrar a licença com o OI About.
34 |
35 | Aplicações que funcionam com o OI File Manager.
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Palavras-chave:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Versões internacionais:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Linhas de procura no Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-ro.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Stochează datele personale cu OI Safe.
6 |
7 | # Description:
8 | OI Safe vă protejează toate parolele si alte date private folosind standardul industrial de criptare AES. Acționează de asemenea ca o extensie către OI Noptepad pentru a cripta notițele create în OI Notepad.
9 |
10 | Această aplicație nu conține reclame și nu necesită permisiunea de internet.
11 |
12 | Pentru lista completă cu modificări și o listă cu întrebări frecvente, vizitați:
13 | http://www.openintents.org
14 |
15 | Puteți ajuta la îmbunătățirea traducerii în limba dumneavoastră la Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Codul sursă al acestei aplicații gratuite și cu sursă deschisă este disponibil la:
19 | http://code.google.com/p/openintents
20 |
21 | Caracteristici:
22 | * Protejează datele în siguranță folosind criptarea AES.
23 | * Mută liber intrări de date între categorii.
24 | * Importă/Exportă intrări de date și baze de date.
25 | * Copie de rezervă/Restabilire intrări.
26 | * Include generator de parole sigure.
27 | * Limită de timp automată pentru a proteja documentele criptate.
28 | * Criptează notițele OI Notepad.
29 | * Ajutor pentru siguranța imaginii Obscura.
30 | * MyBackup Pro.
31 |
32 | Extensii disponibile pentru „OI File Manager”:
33 | * Arată informaţiile de licenţă cu „OI About”.
34 |
35 | Aplicaţii care funcţionează cu „OI File Manager”:
36 | * Criptează notițele create în „OI Notepad”
37 |
38 | Cuvinte cheie:
39 | * sigur, criptare, parolă, protecție
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Versiuni internaționale:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Caută șiruri pentru Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-ru.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe надежно защищает все ваши пароли и другие личные данные при помощи AES шифрования. Он также выступает в качестве дополнения к OI Notepad для шифрования заметок созданных в там.
9 |
10 | Это приложение является бесплатным и не требует постоянного подключения к Интернет.
11 |
12 | С полным списком изменений и списком часто задаваемых вопросов можно ознакомиться на:
13 | http://www.openintents.org
14 |
15 | Вы можете помочь улучшить перевод прилоежния на ваш язык, посетите Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Исходный код этой программы является свободным и открытым. Доступен по адресу:
19 | http://code.google.com/p/openintents
20 |
21 | Возможности:
22 | * Надежная защита данных с помощью AES шифрования.
23 | * Свободно перемещение данных записей между категориями.
24 | * Импорт / экспорт данных записей и баз данных
25 | * Резервное копирование / восстановление записей.
26 | * Включает в себя безопасный генератор паролей.
27 | * Автоматический тайм-аут для защиты зашифрованных документов.
28 | * Шифрование заметок OI Notepad
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Доступные дополнения для "OI File Manager":
33 | * Показать информацию о лицензии с помощью "OI About".
34 |
35 | Приложения работающие с "OI File Manager":
36 | * Шифрование заметок созданных в "OI Notepad".
37 |
38 | Ключевые слова:
39 | * сейф, шифрование, пароль, защита
40 | * Copy text OI, IO, OpenIntents, Open Intents
41 |
42 | Переведенные версии:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings for Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-sc.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Sarvu
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 |
--------------------------------------------------------------------------------
/promotion/description/translations/description-sd.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI सुरक्षित
3 |
4 | # Promo text:
5 | पंजो निजी डाटा राख्यो OI सेफ सां गडद
6 |
7 | # Description:
8 | AES इन्क्रिप्शन जो प्रयोग करे OI सुरक्षित तहां जे पासवर्डन अऊँ गोपनीय डाटा खे सुरक्षित रखंदो आ ईयो OI नोटपैड जे लाये हिक्क एक्सटेंशन आ जेको OI नोटपैड में थाटल नोट्स खे एनक्रिप्ट कन्दो आ
9 |
10 | ईयो अनुप्रयोग विज्ञापन मुक्त आहे अऊँ इनखे इंटरनेट जी अनुमति जी आवश्यकता काने
11 |
12 | :परिवर्तन अऊँ अक्सर पुष्यन वनण वारा प्रश्नन जी पूरी सूची लाये, कृपया हेड़े वन्नो
13 | http://www.openintents.org
14 |
15 | :तहां Launchpad ते पेंजी भाषा जे अनुवाद खे बेहतर ठायण में मदद करे ता सगो
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | :इन्ह स्वतंत्र अऊँ खुले स्रोत अनुप्रयोग जो स्रोत कोड हित्ते उपलब्ध आहे
19 | http://code.google.com/p/openintents
20 |
21 | :सुविधाऊँ
22 | * AES जो प्रयोग करे पंजो डाटा सुरक्षित कयो
23 | * अजदिया सां डाटा प्रवष्टियुं खे स्थानांतरित कयो
24 | * डेटा प्रविष्टियों अऊँ डेटाबेस खे आयत/निर्यात कयो
25 | * प्रविशत्युन खे बैकअप/रेस्टोर कयो
26 | * सुरक्षित पासवर्ड जनरेटर भी शामिल आहे
27 | * दस्तावेजुन जी रक्षा करण लाये स्वचलित टाईमआऊट
28 | * OI नोटपैड जे नोट्स खे एनक्रिप्ट कयो
29 | * ओबस्क्युअर चित्र सुरक्षित जे लाये समर्थन कयो
30 | * मुंजो बैकप प्रो
31 |
32 | :OI फाईल प्रबंधक" जे लाये उपलब्ध एक्सटेंशन"
33 | * :OI जे बारे में " के साथ लाइसेंस जानकारी दिखार्यो"
34 |
35 | :अनुप्रयोग "OI फाईल प्रबंधक" सां गड्ड कम कन्दो आ
36 | * OI नोटपैड" में थात्यल नोट्स खे एनक्रिप्ट कयो"
37 |
38 | कीवर्ड:
39 | * सुरक्षित, एनक्रिप्शन, पासवर्ड, संरक्षण
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | अंतर्राष्ट्रीय संस्करण:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | बाजार जे लाये स्ट्रिंग्स खोजयो :
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-sk.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Trezor
3 |
4 | # Promo text:
5 | Uložte svoje osobné údaje s OI Trezor.
6 |
7 | # Description:
8 | OI Trezor bezpečne chráni všetky Vaše heslá a iné osobné dáta pomocou priemyselných štandardov AES šifrovania. Tiež sa správa ako rozšírenie ku OI Poznámkový Blok na šifrovanie poznámok vytvorených v OI Poznámkový Blok.
9 |
10 | Táto aplikácia neobsahuje reklamy a nepotrebuje povolenie na používanie internetu.
11 |
12 | Pre úplný zoznam zmien a zoznam často kladených otázok, navštívte prosím:
13 | http://www.openintents.org
14 |
15 | Môžete pomôcť zlepšit preklad do vášho jazyka na Launchpad-e:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Zdrojový kód tejto neplatenej a voľne prístupnej aplikácie je dostupný na:
19 | http://code.google.com/p/openintents
20 |
21 | Vlastnosti:
22 | * Bezpečne chráni dáta pomocou AES šifrovania.
23 | * Voľne presúvajte dátové záznamy medzi kategóriami.
24 | * Importovať/exportovať dátové záznamy a databázy.
25 | * Zálohovať/obnoviť záznamy.
26 | * Obsahuje generátor bezpečného hesla.
27 | * Automatická prestávka na ochranu šifrovaných dokumentov.
28 | * Šifrovať poznámky z OI Poznámkový Blok.
29 | * Podpora pre Obscura obrázková bezpečnosť.
30 | * Moja Záloha Pro.
31 |
32 | Dostupné rozšírenia pre "OI Správca Súborov":
33 | * Zobraziť informácie o licencií s "OI About".
34 |
35 | Aplikácie ktoré pracujú s "OI Správca Súborov":
36 | * Šifrovať poznámky vytvorené v "OI Poznámkový Blok".
37 |
38 | Kľúčové slová
39 | * trezor, bezpečnosť, šifrovanie, heslo, ochrana, zabezpečenie
40 | * OI, IO, OpenIntents, Open Intents, openintents, openIntents, Openintents
41 |
42 | Medzinárodné verzie:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Vyhľadávanie reťazcov pre Obchod:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-sv.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Safe
3 |
4 | # Promo text:
5 | Lagra dina privata data med OI Safe
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | This application is ad free and does not require the internet permission.
11 |
12 | For the complete list of changes and a list of frequently asked questions, please visit:
13 | http://www.openintents.org
14 |
15 | You can help to improve the translation into your language at Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | The source code of this free and open source application is available at:
19 | http://code.google.com/p/openintents
20 |
21 | Features:
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Available extensions for "OI File Manager":
33 | * Show the license information with "OI About".
34 |
35 | Applications that work with "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | Keywords:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | International versions:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings for Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-tl.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Kaha
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | Ang OI Kaha ay nagpo-protekta ng lahat ng iyong mga password at iba pang mga pribadong datos sa pamamagitan ng pamantayang industriya na AES encryption. Ito rin ay gumaganap bilang ekstensyon sa OI Talaan para i-encrypt ang mga tala na nilikha sa OI Talaan.
9 |
10 | Ang applikasyon na ito ay walang patalastas at hindi nangangailangan ng pahintulot ng internet.
11 |
12 | Para sa kumpletong listahan ng mga pagbabago at ang listahan ng mga madalas itanong, mangyaring bisitahin ang:
13 | http://www.openintents.org
14 |
15 | Maaari kang makatulong upang mapabuti ang mga pagsasalin sa iyong wika sa Launchpad:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Ang pinagmulang kodigo ng mga ito ay libre at bukas na pinagkukunang kodigo ng applikasyon ay magagamit sa:
19 | http://code.google.com/p/openintents
20 |
21 | Tampok:
22 | * Ligtas na protektahan ang mga datos sa pamamagitan ng AES encryption.
23 | * Malayang ilipat ang mga entry ng datos sa pagitan ng mga kategorya.
24 | * Import/Export ng pinasok na datos at mga database.
25 | * Backup/Ibalik ang mga entry.
26 | * Kasama ang matatag na password dyeneretor.
27 | * Awtomatikong timeout upang protektahan ang mga naka-encrypt na dokumento.
28 | * Encrypt OI Talaan tala.
29 | * Suporta para sa Obscura kaha ng larawan.
30 | * MyBackup Pro.
31 |
32 | Magagamit na mga ekstensiyon para sa "OI File Manedyer":
33 | * Ipakita ang mga impormasyon ng lisensiya sa "OI Tungkol".
34 |
35 | Applikasyon na gumagana sa "OI File Manager":
36 | * Encrypt ang mga tala na nilikha sa "OI Talaan".
37 |
38 | Keywords:
39 | * kaha, encrpytion, password, proteksyon
40 | * OI, IO, OpenIntents, Bukas na mga Layunin
41 |
42 | Internasyonal na mga bersyon:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings para sa Merkado:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-tr.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI Kasa
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe güvenli bir şekilde sizin şifrelerini korur ve AES endüstri standardı şifrelemesini kullanarak diğer özel verileride korur. Ayrıca OI Notepad içindeki şifrelenmiş notları OI Notepad 'in uzantısı olarak görür.
9 |
10 | Bu uygulama ücretsiz reklamdır ve internet izni gerektirmez.
11 |
12 | Değişiklikler ve sık sorulan sorular listesini tamamlamak için lütfen şurayı ziyaret edin:
13 | http://www.openintents.org
14 |
15 | Launchpad'te dilinize çevirileri geliştirmek için yardım edebilirsiniz:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | Bunun kaynak kodu ücretsizdir ve açık kaynak uygulamalarına şuradan ulaşabilirsiniz:
19 | http://code.google.com/p/openintents
20 |
21 | Özellikler:
22 | * AES şifreleme kullanarak verileri güvenli bir şekilde korumak
23 | * Serbestçe katagoriler arasında veri girişlerini taşıbilirsiniz.
24 | * İçe aktarım/Dışa aktarım veri girişi ve veritabanı.
25 | * Yedekleme/Geri yükleme girdileri.
26 | * Güvenli şifre üreticisi içerir.
27 | * Şifrelenmiş belgeleri korumak için otomatik zaman aşımı.
28 | * OI Notepad notlarını şifrele.
29 | * Obscura resim güvenliği için destekli.
30 | * MyBackup Pro.
31 |
32 | "OI File Manager" için uygun eklentiler:
33 | * "OI About" ile lisans bilgilerini görüntüle.
34 |
35 | "OI File Manager" ile birlikte çalışan uygulamalar:
36 | * "OI Notepad" içinde şifreli notlar oluşturuldu.
37 |
38 | Anahtar kelimeler:
39 | * güvenlik, şifreleme, şifre, koruma
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | Uluslararası versiyonlar:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Market için arama metinleri:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-ug.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI بىخەتەرلىك
3 |
4 | # Promo text:
5 | شەخسىي سانلىق مەلۇماتلىرىڭىزنى OI بىخەتەرلىك بىلەن ھەمبەھىرلەيدۇ.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | بۇ ئەپتە ئېلان يوق، ئىنتېرنېت ھوقۇقى تەلەپ قىلمايدۇ.
11 |
12 | ئۆزگىرىشنىڭ تەپسىلىي تىزىمىنى تۆۋەندىكى ئادرېستىن كۆرۈڭ:
13 | http://www.openintents.org
14 |
15 | بۇ ئەپنى Launchpad تە ئۆز تىلىڭىزغا تەرجىمە قىلالايسىز:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | كودى ئوچۇق بۇ ئەپنىڭ ئەسلى كودى:
19 | http://code.google.com/p/openintents
20 |
21 | ئىقتىدارلار:
22 | * Securely protect data using AES encryption.
23 | * سانلىق مەلۇمات تۈرلىرىنى كاتېگورىيەلەر ئارىسىدا ئەركىن يۆتكەيدۇ.
24 | * سانلىق مەلۇمات تۈرى ۋە ساندانلارنى ئەكىر/چىقار.
25 | * تۈرلەرنى زاپاسلا/ ئەسلىگە كەلتۈر.
26 | * بىخەتەر ئىم ھاسىل قىلغۇچنى ئۆز ئىچىگە ئالىدۇ.
27 | * Automatic timeout to protect encrypted documents.
28 | * OI خاتىرە دەپتەر خاتىرىلىرىنى شىفىرلايدۇ.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | «OI ھۆججەت باشقۇرغۇچ» نىڭ ئىشلەتكىلى بولىدىغان كەڭەيتىلمىلىرى:
33 | * «OI ھەققىدە» ئىجازەت ئۇچۇرىنى كۆرسىتىدۇ.
34 |
35 | «OI ھۆججەت باشقۇرغۇچ» تا ئىشلەيدىغان ئەپلەر:
36 | * «OI خاتىرە دەپتەر» دە قۇرۇلغان خاتىرىنى شىفىرلايدۇ.
37 |
38 | ھالقىلىق سۆزلەر:
39 | * بىخەتەرلىك، شىفىرلاش، ئىم، قوغداش
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | خەلقئارا نەشرى:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | بازاردا ئىزدەش ئۇچۇرى:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/description/translations/description-zh-rCN.txt:
--------------------------------------------------------------------------------
1 | # Application:
2 | OI安全
3 |
4 | # Promo text:
5 | Store your private data with OI Safe.
6 |
7 | # Description:
8 | OI Safe safely protects all of your passwords and other private data using industry standard AES encryption. It also acts as an extension to OI Notepad to encrypt notes created in OI Notepad.
9 |
10 | 本程序不含广告,也不需要网络权限
11 |
12 | 你可以在这里获得完整的改变列表和常见问题回答
13 | http://www.openintents.org
14 |
15 | 可以翻译成您的语言:
16 | https://translations.launchpad.net/openintents/trunk
17 |
18 | 本程序是开源免费的,它的源代码能在这里获得
19 | http://code.google.com/p/openintents
20 |
21 | 功能
22 | * Securely protect data using AES encryption.
23 | * Freely move data entries between categories.
24 | * Import/Export data entries and databases.
25 | * Backup/Restore entries.
26 | * Includes secure password generator.
27 | * Automatic timeout to protect encrypted documents.
28 | * Encrypt OI Notepad notes.
29 | * Support for Obscura picture safe.
30 | * MyBackup Pro.
31 |
32 | Available extensions for "OI File Manager":
33 | * Show the license information with "OI About".
34 |
35 | Applications that work with "OI File Manager":
36 | * Encrypt notes created in "OI Notepad".
37 |
38 | 关键字:
39 | * safe, encrpytion, password, protection
40 | * OI, IO, OpenIntents, Open Intents
41 |
42 | 国际版本:
43 | OI Kaha, OI Kasa, OI Safe, OI Sarvu, OI Seifs, OI Sejf, OI Sicurezza, OI Trezor, OI Turva, OI kluis, OI Κιβώτιο, OI Безопасност, OI بىخەتەرلىك, OI सुरक्षित, OI 金庫, OI 금고, OI安全, כספת OI, حماية OI
44 |
45 |
46 | Search strings for Market:
47 | * Uses OI About
48 | * Extension for OI Notepad
--------------------------------------------------------------------------------
/promotion/icons/ic_launcher_safe_512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/icons/ic_launcher_safe_512.png
--------------------------------------------------------------------------------
/promotion/market/safe_promo_1024x500.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/market/safe_promo_1024x500.png
--------------------------------------------------------------------------------
/promotion/market/safe_promo_180x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/market/safe_promo_180x120.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe01.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe02.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe03.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe04.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe05.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe05.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe06.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe06.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe07.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe07.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/OISafe08.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/promotion/screenshots/android-4-0/OISafe08.png
--------------------------------------------------------------------------------
/promotion/screenshots/android-4-0/readme.txt:
--------------------------------------------------------------------------------
1 |
2 | OISafe01: When starting-up first time, users will me asked to create a master password for the application before use.
3 |
4 | OISafe02: The home screen of the application. The passwords are grouped into two categories. Additional categories and more options can be activated by pressing the Menu button. You will need to create or select a category to create a password.
5 |
6 | OISafe03: Users can create a new entry on each category and edit their details like description, website, username, passwords and notes.
7 |
8 | OISafe04: OISafe also can generate a password if you don't want to create a password or have trouble creating a strong password.
9 |
10 | OISafe05: Users can view the entry created and edit it by pressing the menu button.
11 |
12 | OISafe06: OISafe allows you to create backup and restore entries. You will need to type in the master password to restore the backup.
13 |
14 | OISafe07: If you have lots of entries, you can search for them with ease with the built-in search tool.
15 |
16 | OIsafe08: You can access more options like export and import database, backup and restore backup or even change master password by pressing the menu button and select more options.
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':Safe'
2 | include ':SafeDemo'
--------------------------------------------------------------------------------
/settings/debug.keystore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/settings/debug.keystore
--------------------------------------------------------------------------------
/settings/release.keystore.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/settings/release.keystore.gpg
--------------------------------------------------------------------------------
/settings/safe.gradle:
--------------------------------------------------------------------------------
1 | Properties local_properties = new Properties()
2 | local_properties.load(new FileInputStream(rootProject.file('local.properties')))
3 |
4 | android {
5 | signingConfigs {
6 | debug {
7 | storeFile file("../settings/debug.keystore")
8 | keyAlias "androiddebugkey"
9 | storePassword "android"
10 | keyPassword "android"
11 | }
12 | release {
13 | storeFile file("../settings/" + (local_properties.release_keystore_name ?: "debug.keystore"))
14 | keyAlias(local_properties.release_keystore_alias ?: "androiddebugkey")
15 | storePassword(local_properties.release_keystore_pwd ?: "android")
16 | keyPassword(local_properties.release_keystore_pwd2 ?: "android")
17 | }
18 | }
19 |
20 | buildTypes {
21 | debug {
22 | signingConfig signingConfigs.debug
23 | }
24 |
25 | release {
26 | signingConfig signingConfigs.release
27 | }
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/settings/service_account.json.gpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/openintents/safe/a25a90afac11a861d62135869002969fd817e900/settings/service_account.json.gpg
--------------------------------------------------------------------------------