changing package name back

This commit is contained in:
Dominik
2012-04-14 16:18:06 +02:00
parent 30b6cc60f2
commit e95ec50b46
80 changed files with 314 additions and 302 deletions

View File

@@ -15,7 +15,7 @@
limitations under the License.
-->
<org.apg.ui.widget.KeyEditor xmlns:android="http://schemas.android.com/apk/res/android"
<org.thialfihar.android.apg.ui.widget.KeyEditor xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
@@ -131,4 +131,4 @@
android:layout_height="1dip"
android:background="?android:attr/listDivider" />
</org.apg.ui.widget.KeyEditor>
</org.thialfihar.android.apg.ui.widget.KeyEditor>

View File

@@ -15,7 +15,7 @@
limitations under the License.
-->
<org.apg.ui.widget.SectionView xmlns:android="http://schemas.android.com/apk/res/android"
<org.thialfihar.android.apg.ui.widget.SectionView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
@@ -54,4 +54,4 @@
android:orientation="vertical"
android:paddingBottom="6dip" />
</org.apg.ui.widget.SectionView>
</org.thialfihar.android.apg.ui.widget.SectionView>

View File

@@ -15,7 +15,7 @@
limitations under the License.
-->
<org.apg.ui.widget.UserIdEditor xmlns:android="http://schemas.android.com/apk/res/android"
<org.thialfihar.android.apg.ui.widget.UserIdEditor xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
@@ -104,4 +104,4 @@
android:layout_height="1dip"
android:background="?android:attr/listDivider" />
</org.apg.ui.widget.UserIdEditor>
</org.thialfihar.android.apg.ui.widget.UserIdEditor>

View File

@@ -14,7 +14,7 @@
limitations under the License.
-->
<org.apg.ui.widget.KeyServerEditor
<org.thialfihar.android.apg.ui.widget.KeyServerEditor
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
@@ -49,4 +49,4 @@
android:layout_height="1dip"
android:background="?android:attr/listDivider"/>
</org.apg.ui.widget.KeyServerEditor>
</org.thialfihar.android.apg.ui.widget.KeyServerEditor>

View File

@@ -20,7 +20,7 @@
android:layout_height="fill_parent"
android:orientation="vertical" >
<org.apg.ui.widget.DashboardLayout
<org.thialfihar.android.apg.ui.widget.DashboardLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
@@ -66,7 +66,7 @@
android:drawableTop="@drawable/dashboard_help"
android:onClick="helpOnClick"
android:text="@string/dashboard_help" />
</org.apg.ui.widget.DashboardLayout>
</org.thialfihar.android.apg.ui.widget.DashboardLayout>
<!-- <LinearLayout -->
<!-- style="@android:style/ButtonBar" -->

View File

@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name" translate="false">APG+</string>
<string name="app_name" translate="false">APG</string>
<string name="about_url" translate="false">https://github.com/dschuermann/apg</string>
</resources>

View File

@@ -327,10 +327,10 @@
<!-- about -->
<string name="about_description">Android Privacy Guard (APG) is a OpenPGP implementation for Android.\n\nAPG+ is a fork based on the original APG to introduce more features and a new user interface.</string>
<string name="about_description">Android Privacy Guard (APG) is a OpenPGP implementation for Android.</string>
<string name="about_license">License: Apache License 2.0</string>
<string name="about_version">Version:</string>
<string name="about_developer">Developer: Thialfihar (Main developer), Senecaso (QRCode, sign key, upload key), Markus Doits (AIDL), Oliver Runge, Dominik Schürmann (APG+ fork)</string>
<string name="about_developer">Developer: Thialfihar (Main developer), Senecaso (QRCode, sign key, upload key), Markus Doits (AIDL), Oliver Runge, Dominik Schürmann (New user interface)</string>
<!-- Dashboard -->
<string name="dashboard_manage_keys">Manage Keys</string>

View File

@@ -18,7 +18,7 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceCategory android:title="@string/section_general" >
<org.apg.ui.widget.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:entries="@array/pass_phrase_cache_ttl_entries"
android:entryValues="@array/pass_phrase_cache_ttl_values"
android:key="passPhraseCacheTtl"
@@ -31,19 +31,19 @@
android:title="@string/label_keyServers" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/section_defaults" >
<org.apg.ui.widget.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:key="defaultEncryptionAlgorithm"
android:persistent="false"
android:title="@string/label_encryptionAlgorithm" />
<org.apg.ui.widget.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:key="defaultHashAlgorithm"
android:persistent="false"
android:title="@string/label_hashAlgorithm" />
<org.apg.ui.widget.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:key="defaultMessageCompression"
android:persistent="false"
android:title="@string/label_messageCompression" />
<org.apg.ui.widget.IntegerListPreference
<org.thialfihar.android.apg.ui.widget.IntegerListPreference
android:key="defaultFileCompression"
android:persistent="false"
android:title="@string/label_fileCompression" />