Fixed wrong label for Share URL intent. Improved German label.
This commit is contained in:
		| @@ -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 | ||||
| 	{ | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 PhilippC
					PhilippC