summary refs log tree commit diff stats
path: root/po/hu.po
AgeCommit message (Expand)Author
2013-03-29Some more l10nBerke Viktor
2013-03-29Update translationsBerke Viktor
2012-11-11Update translationsBerke Viktor
2012-11-10Update translationsBerke Viktor
2012-11-10Update translationsBerke Viktor
2012-11-07Update translationsBerke Viktor
2012-11-05Update translationsBerke Viktor
2012-11-04Update translationsBerke Viktor
2012-11-04Update translationsBerke Viktor
2012-11-03Update translationsBerke Viktor
2012-11-03Update translationsBerke Viktor
2012-11-03Update translationsBerke Viktor
2012-10-31Update translationsBerke Viktor
2012-10-30Update translation filesBerke Viktor
2012-10-30Update translationsBerke Viktor
2012-10-28Update translationsBerke Viktor
2012-10-25Update translationsBerke Viktor
2012-10-22Update translationsBerke Viktor
2012-10-22Update translationsBerke Viktor
2012-10-20Update translationsBerke Viktor
2012-10-20Finally, update translation files from TransifexBerke Viktor
2012-10-19Regenerate L10n once moar (last time I hope)Berke Viktor
2012-10-19Remove L10n test string from translations tooBerke Viktor
2012-10-19Replace email addressBerke Viktor
2012-10-19Update test strings in repoBerke Viktor
2012-10-19Add Transifex config and update translations from the online resourceBerke Viktor
2012-10-19Update translationsBerke Viktor
2012-10-19Update Hungarian translationBerke Viktor
2012-10-19Update translationsBerke Viktor
2012-10-19Update Hungarian translationBerke Viktor
2012-10-19Update translationsBerke Viktor
2012-10-15Update Hungarian translation against current HEADBerke Viktor
2012-10-15Huge commit is huge - update translationsBerke Viktor
2012-07-18Replace hardcoded "XChat:" strings in translationsBerke Viktor
2011-02-24add xchat r1489berkeviktor@aol.com
color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# Makefile.msc -- Makefile for MS-VC++ (-*- makefile -*-)
#
# Copyright (C) 2003, 2004 Raymond Penners <raymond@dotsphinx.com>
#
# $Id: Makefile.msc,v 1.3 2004/05/21 19:02:59 cinamod Exp $

#!INCLUDE Makefile.msc.config
GTK_DIR=../../../../build/Win32


##
# Target
TARGET=libwimp.dll

OBJS = \
	msw_style.obj \
	msw_theme_main.obj \
	msw_rc_style.obj \
	xp_theme.obj

##
# GTK
#
GTK_CFLAGS=\
	-I$(GTK_DIR)/include/gtk-2.0 \
	-I$(GTK_DIR)/lib/gtk-2.0/include \
	-I$(GTK_DIR)/include/atk-1.0 \
	-I$(GTK_DIR)/include/pango-1.0 \
	-I$(GTK_DIR)/include/glib-2.0 \
	-I$(GTK_DIR)/lib/glib-2.0/include \
	-I$(GTK_DIR)/include \
	-I$(GTK_DIR)/include/gdk-pixbuf-2.0

GTK_LDFLAGS=/libpath:$(GTK_DIR)/lib

GTK_LIBS= \
	gtk-win32-2.0.lib \
	gdk-win32-2.0.lib \
	atk-1.0.lib \
	gdk_pixbuf-2.0.lib \
	pangowin32-1.0.lib \
	pango-1.0.lib \
	gobject-2.0.lib \
	gmodule-2.0.lib \
	glib-2.0.lib \
	cairo.lib

##
# WIN32
#
WIN32_LIBS = \
	gdi32.lib \
	user32.lib

WIN32_CFLAGS=-I"$(SDK_DIR)\gtk-2.0" -I"$(SDK_DIR)\cairo" -I"$(SDK_DIR)\glib-2.0" -DBUILDING_STANDALONE
WIN32_LDFLAGS=/DLL /SUBSYSTEM:WINDOWS

##
# Target
#
LIBS=$(GTK_LIBS) $(WIN32_LIBS)
CFLAGS=$(WIN32_CFLAGS) $(GTK_CFLAGS)
LDFLAGS= $(WIN32_LDFLAGS) $(GTK_LDFLAGS) 

all: $(TARGET)

$(TARGET): $(OBJS)
	link $(LDFLAGS) $(LIBS) /OUT:$@ $(OBJS)

install: $(TARGET)
	copy $(TARGET) "$(INSTALL_DIR)"

clean:
	del *.obj *.dll *.exp *.lib