summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2009-08-24 19:49:29 +0200
committerClaude Paroz <claude@2xlibre.net>2009-08-24 19:49:29 +0200
commitc6ffc9427ee0c89e691cb64cc8ef70673d812dbf (patch)
tree3d0452a81c2640fee72db710ec7125b73f60be5f
parent0f1e64f3b2e476ccf4a2896b4c67f0ffa0dada70 (diff)
downloadmetacity-c6ffc9427ee0c89e691cb64cc8ef70673d812dbf.tar.gz
Add missing quotes in strings (Fixes #572046)
-rw-r--r--src/core/schema-bindings.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/schema-bindings.c b/src/core/schema-bindings.c
index c19d0ca9..443fe4ea 100644
--- a/src/core/schema-bindings.c
+++ b/src/core/schema-bindings.c
@@ -166,7 +166,7 @@ main (int argc, char **argv)
* "disabled" must also stay as it is.
*/
about_keybindings = g_markup_escape_text(_( \
- "The format looks like \"<Control>a\" or <Shift><Alt>F1\".\n\n"\
+ "The format looks like \"<Control>a\" or \"<Shift><Alt>F1\".\n\n"\
"The parser is fairly liberal and allows "\
"lower or upper case, and also abbreviations such as \"<Ctl>\" and " \
"\"<Ctrl>\". If you set the option to the special string " \
@@ -174,7 +174,7 @@ main (int argc, char **argv)
-1);
about_reversible_keybindings = g_markup_escape_text(_( \
- "The format looks like \"<Control>a\" or <Shift><Alt>F1\".\n\n"\
+ "The format looks like \"<Control>a\" or \"<Shift><Alt>F1\".\n\n"\
"The parser is fairly liberal and allows "\
"lower or upper case, and also abbreviations such as \"<Ctl>\" and " \
"\"<Ctrl>\". If you set the option to the special string " \