diff --git a/src/data/tips.xml.in b/src/data/tips.xml.in index 26d0dfebb..611b462e2 100644 --- a/src/data/tips.xml.in +++ b/src/data/tips.xml.in @@ -393,7 +393,7 @@ other file types to your Gramps family tree. Gramps allows you to generate a number of reports (both text and graphical) based on your genealogical information. There is great flexibility in selecting what people are included in the reports as well as the output -format (html, pdf, Open Document Text, RTF, LaTeX and plain text). +format (html, pdf, OpenDocument Text, RTF, LaTeX and plain text). Experiment with the reports under the Reports menu to get an idea of how powerful Gramps is. diff --git a/src/gui/views/listview.py b/src/gui/views/listview.py index cb18a6df8..a97b474e7 100644 --- a/src/gui/views/listview.py +++ b/src/gui/views/listview.py @@ -769,7 +769,7 @@ class ListView(NavigationView): box.pack_start(label, True, True, padding=12) box.pack_start(combobox, False, False) combobox.append_text(_('CSV')) - combobox.append_text(_('Open Document Spreadsheet')) + combobox.append_text(_('OpenDocument Spreadsheet')) combobox.set_active(0) box.show_all() chooser.set_extra_widget(box) diff --git a/src/plugins/docgen/docgen.gpr.py b/src/plugins/docgen/docgen.gpr.py index 9ee87be2a..99c32833a 100644 --- a/src/plugins/docgen/docgen.gpr.py +++ b/src/plugins/docgen/docgen.gpr.py @@ -104,9 +104,9 @@ plg.extension = "tex" plg = newplugin() plg.id = 'odfdoc' -plg.name = _('Open Document Text') -plg.description = _("Generates documents in Open " - "Document Text format (.odt).") +plg.name = _('OpenDocument Text') +plg.description = _("Generates documents in OpenDocument " + "Text format (.odt).") plg.version = '1.0' plg.status = STABLE plg.fname = 'ODFDoc.py'