Fixed wrong label for Share URL intent. Improved German label.

This commit is contained in:
PhilippC 2013-03-02 19:28:49 +01:00
parent cf25cc58f0
commit 5ff25e8441
2 changed files with 9 additions and 3 deletions

View File

@ -166,7 +166,7 @@ Der Android Robot wird genutzt und wurde modifiziert basierend auf Arbeiten, die
<string name="regular_expression">Regulärer Ausdruck</string>
<string name="TanExpiresOnUse_title">Tan verfällt bei Verwendung</string>
<string name="TanExpiresOnUse_summary">TAN Einträge als abgelaufen markieren, wenn sie geöffnet werden</string>
<string name="kp2a_findUrl">Keepass2Android: Passwort suchen</string>
<string name="kp2a_findUrl">Passwort suchen (KP2A)</string>
<string name="excludeExpiredEntries">Abgelaufene Einträge ausschließen</string>
<string name="search_options">Optionen</string>
<string name="caseSensitive">Groß-/Kleinschreibung beachten</string>

View File

@ -34,8 +34,14 @@ using KeePassLib.Serialization;
namespace keepass2android
{
[Activity (Label = "@string/app_name", ConfigurationChanges=ConfigChanges.Orientation|ConfigChanges.KeyboardHidden, Theme="@style/Base")]
[IntentFilter(new [] { Intent.ActionSend }, Categories=new[]{Intent.CategoryDefault}, DataMimeType="text/plain")]
[Activity (Label = "@string/app_name",
ConfigurationChanges=ConfigChanges.Orientation|
ConfigChanges.KeyboardHidden,
Theme="@style/Base")]
[IntentFilter(new [] { Intent.ActionSend },
Label = "@string/kp2a_findUrl",
Categories=new[]{Intent.CategoryDefault},
DataMimeType="text/plain")]
public class FileSelectActivity : ListActivity
{