/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts
1 by edam
Initial import
1
<?xml version="1.0" encoding="utf-8"?>
2
<resources>
3
4
    <string name="app_name">Import Contacts</string>
5
6
	<string name="back">Back</string>
7
	<string name="next">Next</string>
8
9
	<string name="vcf_title">Import vCard Files</string>
10
	<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>
11
	<string name="vcf_location">vCard files directory:</string>
12
13
	<string name="merge_title">Duplicate Contacts</string>
14
	<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>
15
	<string name="merge_prompt">Ask me what to do</string>
16
	<string name="merge_keep">Skip; keep the phone contact</string>
17
	<string name="merge_merge">Merge; overwriting details in the phone contact</string>
18
	<string name="merge_overwrite">Replace; discard the phone contact, then import</string>
19
20
	<string name="doit_title">Import Contacts</string>
21
	<string name="doit_ready">Are you ready to begin importing contacts?</string>
22
	<string name="doit_begin">Begin</string>
23
	<string name="doit_creates">Created:</string>
24
	<string name="doit_overwrites">Replaced:</string>
25
	<string name="doit_merges">Merged:</string>
26
	<string name="doit_skips">Skipped:</string>
27
	<string name="doit_caching">Caching...</string>
28
	<string name="doit_scanning">Scanning...</string>
29
	<string name="doit_alldone">All done!</string>
30
	<string name="doit_close">Close</string>
31
	<string name="doit_mergeask1">"Contact '"</string>
32
	<string name="doit_mergeask2">"' already exists:"</string>
33
34
	<string name="mergeprompt_title">Duplicate Contact</string>
35
	<string name="mergeprompt_help">This contact already exists:</string>
36
	<string name="mergeprompt_always">Always do this, stop asking!</string>
37
38
	<string name="error_title">An error occured!</string>
39
	<string name="error_ok">Ok</string>
40
	<string name="error_continue">Continue</string>
41
	<string name="error_abort">Abort</string>
42
43
	<string name="error_locationnotfound">Can\'t scan for files in the specified location! Check you have specified a valid directory.</string>
44
	<string name="error_locationpermissions">We don\'t have permission to scan for files in the specified location!</string>
45
	<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>
46
	<string name="error_filenotfound">"Can't open file: "</string>
47
	<string name="error_ioerror">"Can\'t read file: "</string>
48
	<string name="error_vcf_parse">"Error parsing vCard in: "</string>
49
	<string name="error_vcf_malformed">vCard is malformed</string>
50
	<string name="error_vcf_noname">vCard has no entries that can be used as a contact name!</string>
51
	<string name="error_vcf_version">vCard uses an invalid version</string>
52
	<string name="error_vcf_charset">vCard uses unsupported CHARSET</string>
53
	<string name="error_vcf_encoding">vCard uses unsupported ENCODING</string>
54
55
</resources>