mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-25 10:42:17 -05:00
Fixed wrong label for Share URL intent. Improved German label.
This commit is contained in:
parent
cf25cc58f0
commit
5ff25e8441
@ -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>
|
||||
|
@ -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
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user