diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-07-14 16:04:30 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-07-14 16:04:30 +0200 |
| commit | 9d593db034fc2f5f662f7a1502d6a64536ced014 (patch) | |
| tree | 27aeaf78bdbce97697a114941d2fa4797ba03ee9 /openbox/openbox.c | |
| parent | e2da61b2e7cbaace1f8799ec1fcd506c281892bf (diff) | |
no splitting _() strings
Diffstat (limited to 'openbox/openbox.c')
| -rw-r--r-- | openbox/openbox.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c index 1b5fbe8c..00fe6e6e 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -147,8 +147,7 @@ gint main(gint argc, gchar **argv) ob_display = XOpenDisplay(NULL); if (ob_display == NULL) - ob_exit_with_error(_("Failed to open the display from the DISPLAY " - "environment variable.")); + ob_exit_with_error(_("Failed to open the display from the DISPLAY environment variable.")); if (fcntl(ConnectionNumber(ob_display), F_SETFD, 1) == -1) ob_exit_with_error("Failed to set display as close-on-exec"); @@ -250,8 +249,7 @@ gint main(gint argc, gchar **argv) parse_tree(i, doc, node->xmlChildrenNode); parse_close(doc); } else - g_message(_("Unable to find a valid config file, " - "using some simple defaults")); + g_message(_("Unable to find a valid config file, using some simple defaults")); /* if (config_type != NULL) @@ -489,20 +487,16 @@ static void print_help() g_print(_("\nOptions:\n")); g_print(_(" --help Display this help and exit\n")); g_print(_(" --version Display the version and exit\n")); - g_print(_(" --replace Replace the currently running " - "window manager\n")); - g_print(_(" --sm-disable Disable connection to the " - "session manager\n")); + g_print(_(" --replace Replace the currently running window manager\n")); + g_print(_(" --sm-disable Disable connection to the session manager\n")); g_print(_("\nPassing messages to a running Openbox instance:\n")); g_print(_(" --reconfigure Reload Openbox's configuration\n")); g_print(_(" --restart Restart Openbox\n")); g_print(_("\nDebugging options:\n")); g_print(_(" --sync Run in synchronous mode\n")); g_print(_(" --debug Display debugging output\n")); - g_print(_(" --debug-focus Display debugging output for " - "focus handling\n")); - g_print(_(" --debug-xinerama Split the display into fake " - "xinerama screens\n")); + g_print(_(" --debug-focus Display debugging output for focus handling\n")); + g_print(_(" --debug-xinerama Split the display into fake xinerama screens\n")); g_print(_("\nPlease report bugs at %s\n"), PACKAGE_BUGREPORT); } |
