~ubuntu-branches/ubuntu/utopic/gramps/utopic

« back to all changes in this revision

Viewing changes to src/plugins/export/export.gpr.py

  • Committer: Package Import Robot
  • Author(s): James A. Treacy
  • Date: 2012-05-22 17:18:36 UTC
  • mfrom: (39.1.4 sid)
  • Revision ID: package-import@ubuntu.com-20120522171836-35fi62lp4w7jnrd7
Tags: 3.4.0-1
* New upstream version
* Updated desktop file. Closes: #667472

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
19
#
20
20
 
21
 
# $Id: export.gpr.py 16543 2011-02-02 18:33:16Z romjerome $
 
21
# $Id: export.gpr.py 18461 2011-11-18 11:33:14Z romjerome $
22
22
 
23
23
#------------------------------------------------------------------------
24
24
#
32
32
plg.name_accell  = _("Comma _Separated Values Spreadsheet (CSV)")
33
33
plg.description =  _("CSV is a common spreadsheet format.")
34
34
plg.version = '1.0'
35
 
plg.gramps_target_version = '3.3'
 
35
plg.gramps_target_version = '3.4'
36
36
plg.status = STABLE
37
37
plg.fname = 'ExportCsv.py'
38
38
plg.ptype = EXPORT
39
39
plg.export_function = 'exportData'
40
40
plg.export_options = 'CSVWriterOptionBox'
41
 
plg.export_options_title = ('CSV spreadsheet options')
 
41
plg.export_options_title = _('CSV spreadsheet options')
42
42
plg.extension = "csv"
43
43
 
44
44
#------------------------------------------------------------------------
53
53
plg.name_accell  = _('_Web Family Tree')
54
54
plg.description =  _("Web Family Tree format")
55
55
plg.version = '1.0'
56
 
plg.gramps_target_version = '3.3'
 
56
plg.gramps_target_version = '3.4'
57
57
plg.status = STABLE
58
58
plg.fname = 'ExportFtree.py'
59
59
plg.ptype = EXPORT
60
60
plg.export_function = 'writeData'
61
61
plg.export_options = 'WriterOptionBox'
62
 
plg.export_options_title = ('Web Family Tree export options')
 
62
plg.export_options_title = _('Web Family Tree export options')
63
63
plg.extension = "wft"
64
64
 
65
65
#------------------------------------------------------------------------
75
75
plg.description =  _('GEDCOM is used to transfer data between genealogy programs. '
76
76
                'Most genealogy software will accept a GEDCOM file as input.')
77
77
plg.version = '1.0'
78
 
plg.gramps_target_version = '3.3'
 
78
plg.gramps_target_version = '3.4'
79
79
plg.status = STABLE
80
80
plg.fname = 'ExportGedcom.py'
81
81
plg.ptype = EXPORT
82
82
plg.export_function = 'export_data'
83
83
plg.export_options = 'WriterOptionBox'
84
 
plg.export_options_title = ('GEDCOM export options')
 
84
plg.export_options_title = _('GEDCOM export options')
85
85
plg.extension = "ged"
86
86
 
87
87
#------------------------------------------------------------------------
96
96
plg.name_accell  = _('_GeneWeb')
97
97
plg.description =  _('GeneWeb is a web based genealogy program.')
98
98
plg.version = '1.0'
99
 
plg.gramps_target_version = '3.3'
 
99
plg.gramps_target_version = '3.4'
100
100
plg.status = STABLE
101
101
plg.fname = 'ExportGeneWeb.py'
102
102
plg.ptype = EXPORT
103
103
plg.export_function = 'exportData'
104
104
plg.export_options = 'WriterOptionBox'
105
 
plg.export_options_title = ('GeneWeb export options')
 
105
plg.export_options_title = _('GeneWeb export options')
106
106
plg.extension = "gw"
107
107
 
108
108
#------------------------------------------------------------------------
118
118
plg.description =  _('Gramps package is an archived XML family tree together '
119
119
                 'with the media object files.')
120
120
plg.version = '1.0'
121
 
plg.gramps_target_version = '3.3'
 
121
plg.gramps_target_version = '3.4'
122
122
plg.status = STABLE
123
123
plg.fname = 'ExportPkg.py'
124
124
plg.ptype = EXPORT
125
125
plg.export_function = 'writeData'
126
126
plg.export_options = 'WriterOptionBox'
127
 
plg.export_options_title = ('Gramps package export options')
 
127
plg.export_options_title = _('Gramps package export options')
128
128
plg.extension = "gpkg"
129
129
 
130
130
#------------------------------------------------------------------------
141
141
                 ' Gramps family tree without the media object files.'
142
142
                 ' Suitable for backup purposes.')
143
143
plg.version = '1.0'
144
 
plg.gramps_target_version = '3.3'
 
144
plg.gramps_target_version = '3.4'
145
145
plg.status = STABLE
146
146
plg.fname = 'ExportXml.py'
147
147
plg.ptype = EXPORT
148
148
plg.export_function = 'export_data'
149
149
plg.export_options = 'WriterOptionBox'
150
 
plg.export_options_title = ('Gramps XML export options')
 
150
plg.export_options_title = _('Gramps XML export options')
151
151
plg.extension = "gramps"
152
152
 
153
153
#------------------------------------------------------------------------
162
162
plg.name_accell  = _('vC_alendar')
163
163
plg.description =  _('vCalendar is used in many calendaring and PIM applications.')
164
164
plg.version = '1.0'
165
 
plg.gramps_target_version = '3.3'
 
165
plg.gramps_target_version = '3.4'
166
166
plg.status = STABLE
167
167
plg.fname = 'ExportVCalendar.py'
168
168
plg.ptype = EXPORT
169
169
plg.export_function = 'exportData'
170
170
plg.export_options = 'WriterOptionBox'
171
 
plg.export_options_title = ('vCalendar export options')
 
171
plg.export_options_title = _('vCalendar export options')
172
172
plg.extension = "vcs"
173
173
 
174
174
#------------------------------------------------------------------------
183
183
plg.name_accell  = _('_vCard')
184
184
plg.description =  _('vCard is used in many addressbook and pim applications.')
185
185
plg.version = '1.0'
186
 
plg.gramps_target_version = '3.3'
 
186
plg.gramps_target_version = '3.4'
187
187
plg.status = STABLE
188
188
plg.fname = 'ExportVCard.py'
189
189
plg.ptype = EXPORT
190
190
plg.export_function = 'exportData'
191
191
plg.export_options = 'WriterOptionBox'
192
 
plg.export_options_title = ('vCard export options')
 
192
plg.export_options_title = _('vCard export options')
193
193
plg.extension = "vcf"