From 0e7ade19b4cf8fd57b0f663b6a1a5ce3bbe6ed13 Mon Sep 17 00:00:00 2001 From: Siarzhuk Zharski Date: Sun, 27 Feb 2011 11:19:50 +0000 Subject: [PATCH] Looks like any \-shadowed characters in comment string of the B_TRANSLATE_WITH_COMMENT macro are misinterpreted by our localization routines. I fix this one, because it provocate permanent fingerprint check failure during catkeys link procedure. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40723 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/translators/raw/RAWTranslator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/add-ons/translators/raw/RAWTranslator.cpp b/src/add-ons/translators/raw/RAWTranslator.cpp index 683bb0d6b0..666eacb37c 100644 --- a/src/add-ons/translators/raw/RAWTranslator.cpp +++ b/src/add-ons/translators/raw/RAWTranslator.cpp @@ -166,7 +166,7 @@ RAWTranslator::DerivedIdentify(BPositionIO *stream, info->capability = RAW_IN_CAPABILITY; snprintf(info->name, sizeof(info->name), B_TRANSLATE_COMMENT("%s RAW image", "Parameter (%s) is the name of " - "the manufacturer (like \"Canon\")"), meta.manufacturer); + "the manufacturer (like 'Canon')"), meta.manufacturer); strcpy(info->MIME, "image/x-vnd.photo-raw"); return B_OK;