OSC: Add increment fader.
[ardour.git] / libs / pbd / string_convert.cc
index 3a46b8a682e20a33a59d8a0de760b252878ee4e5..a543c96ff1d464f4b9a1333a8e8378e034067bd4 100644 (file)
@@ -210,9 +210,9 @@ bool string_to_double (const std::string& str, double& val)
 bool bool_to_string (bool val, std::string& str)
 {
        if (val) {
-               str = X_("yes");
+               str = X_("1");
        } else {
-               str = X_("no");
+               str = X_("0");
        }
        return true;
 }