Swedish translation
Andreas Bjerkeholt
harteex(a)gmail.com,
proofread by
David Nordenberg
dnordenberg(a)users.sourceforge.net
Modified: trunk/reactos/lib/aclui/aclui.rc
Added: trunk/reactos/lib/aclui/aclui_Sv.rc
_____
Modified: trunk/reactos/lib/aclui/aclui.rc
--- trunk/reactos/lib/aclui/aclui.rc 2005-03-28 18:52:52 UTC (rev
14374)
+++ trunk/reactos/lib/aclui/aclui.rc 2005-03-28 19:03:06 UTC (rev
14375)
@@ -11,3 +11,4 @@
#include "aclui_En.rc"
#include "aclui_De.rc"
+#include "aclui_Sv.rc"
_____
Added: trunk/reactos/lib/aclui/aclui_Sv.rc
--- trunk/reactos/lib/aclui/aclui_Sv.rc 2005-03-28 18:52:52 UTC (rev
14374)
+++ trunk/reactos/lib/aclui/aclui_Sv.rc 2005-03-28 19:03:06 UTC (rev
14375)
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2005 Andreas Bjerkeholt
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA
+ */
+
+#include <reactos/resource.h>
+#include <defines.h>
+#include "resource.h"
+
+#ifdef _WIN32
+LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT
+#pragma code_page(850)
+#endif //_WIN32
+
+IDD_SECPAGE DIALOGEX 0, 0, 227, 215
+STYLE WS_CHILD | WS_VISIBLE | WS_CAPTION
+CAPTION "Sõkerhet"
+FONT 8, "MS Shell Dlg", 0, 0, 0x0
+BEGIN
+ LTEXT "&Grupp eller anvõndarnamn:", -1, 7, 7, 105, 8
+ CONTROL "", IDC_ACELIST, "SysListView32", LVS_REPORT | LVS_SINGLESEL
| LVS_SHOWSELALWAYS | LVS_SORTASCENDING | LVS_NOCOLUMNHEADER |
LVS_NOSORTHEADER | WS_CHILD | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP, 7,
17, 213, 66, WS_EX_NOPARENTNOTIFY | WS_EX_CLIENTEDGE
+ PUSHBUTTON "&Lõgg till...", IDC_ACELIST_ADD, 116, 87, 50, 14
+ PUSHBUTTON "&Ta bort", IDC_ACELIST_REMOVE, 170, 87, 50, 14
+ LTEXT "TillÕt", -1, 135, 107, 32, 8, SS_CENTER
+ LTEXT "Neka", -1, 176, 107, 32, 8, SS_CENTER
+END
+
+STRINGTABLE DISCARDABLE
+{
+ IDS_PSP_TITLE "Beh÷righeter f÷r %1"
+}
+
Make w3seek happy. Setting OPTIMIZE=yes as en enviro-var (do NOT add to
config) will force optimizations for debug builds too (not recommended).
Previous commit was a mistake.
Modified: trunk/reactos/tools/helper.mk
_____
Modified: trunk/reactos/tools/helper.mk
--- trunk/reactos/tools/helper.mk 2005-03-28 18:12:31 UTC (rev
14370)
+++ trunk/reactos/tools/helper.mk 2005-03-28 18:37:39 UTC (rev
14371)
@@ -644,7 +644,7 @@
endif
#
-# Enable Tree-Wide Optimization.
+# Enable Tree-Wide Optimization if Debug is on.
# Protect uncompatible files here with an ifneq
# if needed, until their problems can be found
#
@@ -653,6 +653,17 @@
MK_CPPFLAGS += -O2 -Wno-strict-aliasing
endif
+#
+# Force Optimization for w3seek
+#
+ifeq ($(OPTIMIZE),yes)
+ # Don't double it
+ ifneq ($(DBG),0)
+ MK_CFLAGS += -O2 -Wno-strict-aliasing
+ MK_CPPFLAGS += -O2 -Wno-strict-aliasing
+ endif
+endif
+
ifneq ($(TARGET_LIBS),)
MK_LIBS := $(TARGET_LIBS) $(MK_LIBS)
endif
Make w3seek happy. Setting OPTIMIZE=yes as en enviro-var (do NOT add to
config) will force optimizations for debug builds too (not recommended)
Modified: trunk/reactos/tools/helper.mk
_____
Modified: trunk/reactos/tools/helper.mk
--- trunk/reactos/tools/helper.mk 2005-03-28 17:25:19 UTC (rev
14367)
+++ trunk/reactos/tools/helper.mk 2005-03-28 17:27:20 UTC (rev
14368)
@@ -648,7 +648,7 @@
# Protect uncompatible files here with an ifneq
# if needed, until their problems can be found
#
-ifeq ($(DBG), 0)
+ifneq ($(DBG),1)
MK_CFLAGS += -O2 -Wno-strict-aliasing
MK_CPPFLAGS += -O2 -Wno-strict-aliasing
endif