Patch by humdinger: localize BSnow. (#7528)

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@42954 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Adrien Destugues 2011-10-29 15:20:26 +00:00
parent 1e52d1c2d5
commit c143c10312
2 changed files with 14 additions and 4 deletions

View File

@ -6,6 +6,12 @@ Application BSnow :
Flakes.cpp
SnowView.cpp
SnowApp.cpp
: be $(TARGET_LIBSUPC++)
: be $(TARGET_LIBSUPC++) $(HAIKU_LOCALE_LIBS)
: BSnow.rdef
;
DoCatalogs BSnow :
x-vnd.mmu_man.BSnow
:
SnowView.h
;

View File

@ -3,11 +3,12 @@
#include <Bitmap.h>
#include <Catalog.h>
#include <Dragger.h>
#include <List.h>
#include <MessageRunner.h>
#include <OS.h>
#include <View.h>
#include <MessageRunner.h>
#include "Flakes.h"
@ -26,8 +27,11 @@
#define FALLEN_HEIGHT 30
#define INVALIDATOR_THREAD_NAME "You're Neo? I'm the Snow Maker!"
#define MSG_DRAG_ME "Drag me on your desktop..."
#define MSG_CLICK_ME "Click me to remove BSnow..."
#undef B_TRANSLATE_CONTEXT
#define B_TRANSLATE_CONTEXT "BSnow"
#define MSG_DRAG_ME B_TRANSLATE("Drag me on your desktop...")
#define MSG_CLICK_ME B_TRANSLATE("Click me to remove BSnow...")
typedef struct flake {