From 70a1f349341aa08364b9f204585fe67d23275426 Mon Sep 17 00:00:00 2001 From: Siarzhuk Zharski Date: Sat, 19 Feb 2011 23:06:25 +0000 Subject: [PATCH] The "usage" field of property_info should not be localized. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40567 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/notification/NotificationWindow.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/servers/notification/NotificationWindow.cpp b/src/servers/notification/NotificationWindow.cpp index c85e3f444d..f33e504df9 100644 --- a/src/servers/notification/NotificationWindow.cpp +++ b/src/servers/notification/NotificationWindow.cpp @@ -34,13 +34,13 @@ property_info main_prop_list[] = { {"message", {B_GET_PROPERTY, 0}, {B_INDEX_SPECIFIER, 0}, - B_TRANSLATE_MARK("get a message")}, + "get a message"}, {"message", {B_COUNT_PROPERTIES, 0}, {B_DIRECT_SPECIFIER, 0}, - B_TRANSLATE_MARK("count messages")}, + "count messages"}, {"message", {B_CREATE_PROPERTY, 0}, {B_DIRECT_SPECIFIER, 0}, - B_TRANSLATE_MARK("create a message")}, + "create a message"}, {"message", {B_SET_PROPERTY, 0}, {B_INDEX_SPECIFIER, 0}, - B_TRANSLATE_MARK("modify a message")}, + "modify a message"}, {0} };