From dea5b1d43ff07a3d90ee363059333c15b749424e Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Mon, 28 Mar 2005 19:29:59 +0000 Subject: [PATCH] Swedish translation David Nordenberg dnordenberg@users.sourceforge.net proofread by Andreas Bjerkeholt harteex@gmail.com, steven : Will commit it to wine also svn path=/trunk/; revision=14377 --- reactos/lib/user32/Sv.rc | 99 ++++++++++++++++++++++++++++++++++++ reactos/lib/user32/user32.rc | 1 + 2 files changed, 100 insertions(+) create mode 100644 reactos/lib/user32/Sv.rc diff --git a/reactos/lib/user32/Sv.rc b/reactos/lib/user32/Sv.rc new file mode 100644 index 00000000000..1cb6fe9695a --- /dev/null +++ b/reactos/lib/user32/Sv.rc @@ -0,0 +1,99 @@ +///////////////////////////////////////////////////////////////////////////// +// Swedish (SE) resources +/* + * Copyright 2005 David Nordenberg + * + * 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 + */ + +#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_SWE) +#ifdef _WIN32 +LANGUAGE LANG_SWEDISH, SUBLANG_DEFAULT +#pragma code_page(850) +#endif //_WIN32 + +///////////////////////////////////////////////////////////////////////////// +// +// Dialogs +// + +SELWINDOW DIALOG DISCARDABLE 20, 20, 220, 140 +STYLE DS_SYSMODAL | DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | + WS_SYSMENU +FONT 8, "Bitstream Vera Sans" +CAPTION "Välj fönster" +BEGIN + LISTBOX 100, 5, 5, 210, 110, LBS_NOTIFY | LBS_NOINTEGRALHEIGHT | WS_CHILD | WS_VISIBLE | WS_BORDER | WS_VSCROLL | WS_HSCROLL + PUSHBUTTON "&OK", 1, 60, 120, 40, 15, BS_DEFPUSHBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Avbryt", 2, 120, 120, 40, 15, WS_CHILD | WS_VISIBLE | WS_TABSTOP +END + +///////////////////////////////////////////////////////////////////////////// +// +// Menus +// + +EDITMENU MENU LOADONCALL MOVEABLE DISCARDABLE +{ + POPUP "DUMMY" + BEGIN + MENUITEM "&Ångra", EM_UNDO + MENUITEM SEPARATOR + MENUITEM "&Klipp ut", WM_CUT + MENUITEM "K&opiera", WM_COPY + MENUITEM "K&listra in", WM_PASTE + MENUITEM "&Ta bort", WM_CLEAR + MENUITEM SEPARATOR + MENUITEM "&Markera allt", EM_SETSEL + END +} + + +SYSMENU MENU LOADONCALL MOVEABLE DISCARDABLE +{ + MENUITEM "&Återställ", 61728 + MENUITEM "&Flytta", 61456 + MENUITEM "S&torlek", 61440 + MENUITEM "&Minimera", 61472 + MENUITEM "Ma&ximera", 61488 + MENUITEM SEPARATOR + MENUITEM "&Stäng\tAlt-F4", 61536 +} + +///////////////////////////////////////////////////////////////////////////// +// +// Strings +// + +STRINGTABLE +{ + IDS_ERROR, "Fel" + IDS_OK, "OK" + IDS_CANCEL, "Avbryt" + IDS_ABORT, "&Avbryt" + IDS_RETRY, "&Försök igen" + IDS_IGNORE, "&Ignorera" + IDS_YES, "&Ja" + IDS_NO, "&Nej" + IDS_HELP, "Hjälp" + IDS_TRYAGAIN, "&Försök igen" + IDS_CONTINUE, "F&ortsätt" +} + +STRINGTABLE +{ + IDS_MDI_MOREWINDOWS, "&Fler fönster..." +} + diff --git a/reactos/lib/user32/user32.rc b/reactos/lib/user32/user32.rc index 3d722c32ac4..91e2998a8f5 100644 --- a/reactos/lib/user32/user32.rc +++ b/reactos/lib/user32/user32.rc @@ -61,3 +61,4 @@ OBM_MNARROW BITMAP "resources/obm_mnarrow.bmp" #include "En.rc" #include "Da.rc" #include "De.rc" +#include "Sv.rc"