/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to res/values/strings.xml

  • Committer: edam
  • Date: 2010-07-04 14:44:48 UTC
  • Revision ID: edam@waxworlds.org-20100704144448-1m30v811opup20fs
- got rid of the pretend ImportContacts activity alltogether (and made the Intro activity the startup one)
- massively simplified the WizzardActivity class so it works propperly
- moved all code to org.waxworlds.edam
- added an "aborted" message when the importion is aborted
- simplified the 3 actions the worker thread can take when stopping (only 2 were actualy used) to "aborted" or "alldone"
- changed intro message to match website
- bugfix: don't blow up when the My Contacts group is missing

Show diffs side-by-side

added added

removed removed

37
37
        <string name="intro_link">The Import Contacts homepage</string>
38
38
        <string name="intro_disclaimer">This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.</string>
39
39
 
40
 
        <string name="fileordir_file">Import contacts from a single vCard file</string>
41
 
        <string name="fileordir_filehelp">You will be asked to select a \".vcf\" file which will be scanned for contacts (vCard files can contain multiple contacts in one file).</string>
42
 
        <string name="fileordir_dir">Scan a folder to scan for vCard files and import any contacts found</string>
43
 
        <string name="fileordir_dirhelp">You will be asked to select a folder on your SD card and any contacts in any \".vcf\" files found will be imported. This is useful when you have a lot of vCard files.</string>
44
 
 
45
 
        <string name="filechooser_title_dir">Choose Directory</string>
46
 
        <string name="filechooser_title_file">Choose File</string>
47
 
        <string name="filechooser_current_dir"><b>Selected Directory:</b></string>
48
 
        <string name="filechooser_current_file"><b>Selected File:</b></string>
49
 
        <string name="filechooser_ok">Ok</string>
50
 
        <string name="filechooser_path_sdcard">SD Card</string>
51
 
 
52
40
        <string name="vcf_title">Import vCard Files</string>
53
 
        <string name="vcf_help">To import contacts from one or more vCard files, you must specify <b>either</b> a folder to look for vCard files in, <b>or</b> an individual vCard file. If you select a folder, all contacts in any \".vcf\" files in that folder will be imported. Alternatively, if you select an individual \".vcf\" file, any contacts that it contains will be imported.</string>
54
 
        <string name="vcf_location_dir">Folder (to scan) for vCards:</string>
55
 
        <string name="vcf_location_file">vCard file:</string>
 
41
        <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>
 
42
        <string name="vcf_location">vCard files directory:</string>
56
43
 
57
44
        <string name="merge_title">Duplicate Contacts</string>
58
45
        <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>
86
73
        <string name="error_continue">Continue</string>
87
74
        <string name="error_abort">Abort</string>
88
75
 
89
 
        <string name="error_locationnotfound">The location you have specified to import vCards from does not exist! Check you have specified a valid directory or file.</string>
 
76
        <string name="error_locationnotfound">Can\'t scan for files in the specified location! Check you have specified a valid directory.</string>
90
77
        <string name="error_locationpermissions">We don\'t have permission to scan for files in the specified location!</string>
91
78
        <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>
92
79
        <string name="error_filenotfound">"Can't open file: "</string>
95
82
        <string name="error_vcf_malformed">vCard is malformed</string>
96
83
        <string name="error_vcf_noname">vCard has no entries that can be used as a contact name!</string>
97
84
        <string name="error_vcf_version">vCard uses an invalid version</string>
98
 
        <string name="error_vcf_charset">vCard uses unsupported charset</string>
99
 
        <string name="error_vcf_encoding">vCard uses unsupported encoding</string>
 
85
        <string name="error_vcf_charset">vCard uses unsupported CHARSET</string>
 
86
        <string name="error_vcf_encoding">vCard uses unsupported ENCODING</string>
100
87
 
101
88
</resources>