/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">Import Contacts</string>

	<string name="back">Back</string>
	<string name="next">Next</string>

	<string name="vcf_title">Import vCard Files</string>
	<string name="vcf_help">To import contacts from one or more vCard files, you must specify a directory to look for those files in. All contacts in all \".vcf\" files in the directory you select below will be imported.</string>
	<string name="vcf_location">vCard files directory:</string>

	<string name="merge_title">Duplicate Contacts</string>
	<string name="merge_help">What should we do if we import a contact with the same name as a contact that already exists on the phone?</string>
	<string name="merge_prompt">Ask me what to do</string>
	<string name="merge_keep">Skip; keep the phone contact</string>
	<string name="merge_merge">Merge; overwriting details in the phone contact</string>
	<string name="merge_overwrite">Replace; discard the phone contact, then import</string>

	<string name="doit_title">Import Contacts</string>
	<string name="doit_ready">Are you ready to begin importing contacts?</string>
	<string name="doit_begin">Begin</string>
	<string name="doit_creates">Created:</string>
	<string name="doit_overwrites">Replaced:</string>
	<string name="doit_merges">Merged:</string>
	<string name="doit_skips">Skipped:</string>
	<string name="doit_caching">Caching...</string>
	<string name="doit_scanning">Scanning...</string>
	<string name="doit_alldone">All done!</string>
	<string name="doit_close">Close</string>
	<string name="doit_mergeask1">"Contact '"</string>
	<string name="doit_mergeask2">"' already exists:"</string>

	<string name="mergeprompt_title">Duplicate Contact</string>
	<string name="mergeprompt_help">This contact already exists:</string>
	<string name="mergeprompt_always">Always do this, stop asking!</string>

	<string name="error_title">An error occured!</string>
	<string name="error_ok">Ok</string>
	<string name="error_continue">Continue</string>
	<string name="error_abort">Abort</string>

	<string name="error_locationnotfound">Can\'t scan for files in the specified location! Check you have specified a valid directory.</string>
	<string name="error_locationpermissions">We don\'t have permission to scan for files in the specified location!</string>
	<string name="error_locationnofiles">There are no files to import at the specified location! Check you have specified the right location and that the files from which you want to import contacts are there.</string>
	<string name="error_filenotfound">"Can't open file: "</string>
	<string name="error_ioerror">"Can\'t read file: "</string>
	<string name="error_vcf_parse">"Error parsing vCard in: "</string>
	<string name="error_vcf_malformed">vCard is malformed</string>
	<string name="error_vcf_noname">vCard has no entries that can be used as a contact name!</string>
	<string name="error_vcf_version">vCard uses an invalid version</string>
	<string name="error_vcf_charset">vCard uses unsupported CHARSET</string>
	<string name="error_vcf_encoding">vCard uses unsupported ENCODING</string>

</resources>