diff options
author | Ryan Lortie <desrt@desrt.ca> | 2012-08-05 15:22:54 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2012-08-06 16:48:54 -0400 |
commit | ff98e96217fdad5429ecb73c90efc80f8f7a5466 (patch) | |
tree | f3ec3d67133207356ce11aad508c356249cb37dd /editor | |
parent | e28b351f6706b1286833b1cefdf6f868a50e5dfb (diff) | |
download | dconf-ff98e96217fdad5429ecb73c90efc80f8f7a5466.tar.gz |
editor: use 'dconf' consistently
Various bits of UI used "dconf Editor" and others "DConf Editor". Use
"dconf" consistently. Remove a lone instance of "Configuration Editor"
as well.
Diffstat (limited to 'editor')
-rw-r--r-- | editor/dconf-editor.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/dconf-editor.vala b/editor/dconf-editor.vala index 476d4ee..f4849e4 100644 --- a/editor/dconf-editor.vala +++ b/editor/dconf-editor.vala @@ -36,7 +36,7 @@ class ConfigurationEditor : Gtk.Application { base.startup(); - Environment.set_application_name (_("DConf Editor")); + Environment.set_application_name (_("dconf Editor")); add_action_entries (action_entries, this); @@ -56,7 +56,7 @@ class ConfigurationEditor : Gtk.Application } window = new Gtk.ApplicationWindow(this); window.set_default_size(600, 300); - window.title = _("Configuration Editor"); + window.title = _("dconf Editor"); window.window_state_event.connect(main_window_window_state_event_cb); window.configure_event.connect(main_window_configure_event_cb); window.add((Gtk.Box)ui.get_object("box1")); @@ -335,7 +335,7 @@ class ConfigurationEditor : Gtk.Application string[] authors = { "Robert Ancell", null }; string license = _("This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.\n\nThis 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.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA"); Gtk.show_about_dialog (window, - "program-name", _("DConf Editor"), + "program-name", _("dconf Editor"), "version", Config.VERSION, "comments", _("Directly edit your entire configuration database"), |