bzr branch
http://bzr.ed.am/android/import-contacts
1
by edam
Initial import |
1 |
<?xml version="1.0" encoding="utf-8"?> |
6
by edam
- added GPL header comments to all files |
2 |
|
3 |
<!-- |
|
4 |
* strings.xml |
|
5 |
* |
|
6 |
* Copyright (C) 2009 Tim Marston <edam@waxworlds.org> |
|
7 |
* |
|
8 |
* This file is part of the Import Contacts program (hereafter referred |
|
9 |
* to as "this program"). For more information, see |
|
10 |
* http://www.waxworlds.org/edam/software/android/import-contacts |
|
11 |
* |
|
12 |
* This program is free software: you can redistribute it and/or modify |
|
13 |
* it under the terms of the GNU General Public License as published by |
|
14 |
* the Free Software Foundation, either version 3 of the License, or |
|
15 |
* (at your option) any later version. |
|
16 |
* |
|
17 |
* This program is distributed in the hope that it will be useful, |
|
18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
20 |
* GNU General Public License for more details. |
|
21 |
* |
|
22 |
* You should have received a copy of the GNU General Public License |
|
23 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
24 |
--> |
|
25 |
||
1
by edam
Initial import |
26 |
<resources> |
27 |
||
28 |
<string name="app_name">Import Contacts</string> |
|
29 |
||
30 |
<string name="back">Back</string> |
|
31 |
<string name="next">Next</string> |
|
32 |
||
33 |
<string name="vcf_title">Import vCard Files</string> |
|
34 |
<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> |
|
35 |
<string name="vcf_location">vCard files directory:</string> |
|
36 |
||
37 |
<string name="merge_title">Duplicate Contacts</string> |
|
38 |
<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> |
|
39 |
<string name="merge_prompt">Ask me what to do</string> |
|
40 |
<string name="merge_keep">Skip; keep the phone contact</string> |
|
41 |
<string name="merge_merge">Merge; overwriting details in the phone contact</string> |
|
42 |
<string name="merge_overwrite">Replace; discard the phone contact, then import</string> |
|
43 |
||
44 |
<string name="doit_title">Import Contacts</string> |
|
45 |
<string name="doit_ready">Are you ready to begin importing contacts?</string> |
|
46 |
<string name="doit_begin">Begin</string> |
|
47 |
<string name="doit_creates">Created:</string> |
|
48 |
<string name="doit_overwrites">Replaced:</string> |
|
49 |
<string name="doit_merges">Merged:</string> |
|
50 |
<string name="doit_skips">Skipped:</string> |
|
51 |
<string name="doit_caching">Caching...</string> |
|
52 |
<string name="doit_scanning">Scanning...</string> |
|
53 |
<string name="doit_alldone">All done!</string> |
|
54 |
<string name="doit_close">Close</string> |
|
55 |
<string name="doit_mergeask1">"Contact '"</string> |
|
56 |
<string name="doit_mergeask2">"' already exists:"</string> |
|
2
by edam
- added toaster message about import abortion in onPause() |
57 |
<string name="doit_importaborted">Importing contacts was aborted!</string> |
1
by edam
Initial import |
58 |
|
59 |
<string name="mergeprompt_title">Duplicate Contact</string> |
|
60 |
<string name="mergeprompt_help">This contact already exists:</string> |
|
61 |
<string name="mergeprompt_always">Always do this, stop asking!</string> |
|
62 |
||
63 |
<string name="error_title">An error occured!</string> |
|
64 |
<string name="error_ok">Ok</string> |
|
65 |
<string name="error_continue">Continue</string> |
|
66 |
<string name="error_abort">Abort</string> |
|
67 |
||
68 |
<string name="error_locationnotfound">Can\'t scan for files in the specified location! Check you have specified a valid directory.</string> |
|
69 |
<string name="error_locationpermissions">We don\'t have permission to scan for files in the specified location!</string> |
|
70 |
<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> |
|
71 |
<string name="error_filenotfound">"Can't open file: "</string> |
|
72 |
<string name="error_ioerror">"Can\'t read file: "</string> |
|
73 |
<string name="error_vcf_parse">"Error parsing vCard in: "</string> |
|
74 |
<string name="error_vcf_malformed">vCard is malformed</string> |
|
75 |
<string name="error_vcf_noname">vCard has no entries that can be used as a contact name!</string> |
|
76 |
<string name="error_vcf_version">vCard uses an invalid version</string> |
|
77 |
<string name="error_vcf_charset">vCard uses unsupported CHARSET</string> |
|
78 |
<string name="error_vcf_encoding">vCard uses unsupported ENCODING</string> |
|
79 |
||
80 |
</resources> |