From c68a8963c85c9eeaec9f70ca0dca297182e940f8 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Thu, 27 Mar 2008 00:22:57 +0100 Subject: [PATCH] user32: Add the Romanian translation. --- dlls/user32/resources/user32.rc | 1 + dlls/user32/resources/user32_Ro.rc | 90 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 91 insertions(+) create mode 100644 dlls/user32/resources/user32_Ro.rc diff --git a/dlls/user32/resources/user32.rc b/dlls/user32/resources/user32.rc index 2880f2cb57f..67f7a13efcc 100644 --- a/dlls/user32/resources/user32.rc +++ b/dlls/user32/resources/user32.rc @@ -61,6 +61,7 @@ #include "resources/user32_No.rc" #include "resources/user32_Pl.rc" #include "resources/user32_Pt.rc" +#include "resources/user32_Ro.rc" #include "resources/user32_Ru.rc" #include "resources/user32_Si.rc" #include "resources/user32_Sk.rc" diff --git a/dlls/user32/resources/user32_Ro.rc b/dlls/user32/resources/user32_Ro.rc new file mode 100644 index 00000000000..b2b7cd3d53d --- /dev/null +++ b/dlls/user32/resources/user32_Ro.rc @@ -0,0 +1,90 @@ +/* + * Copyright 1995 Alexandre Julliard + * Copyright 2008 Michael Stefaniuc + * + * 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL + +#pragma code_page(65001) + +SYSMENU MENU LOADONCALL MOVEABLE DISCARDABLE +{ + MENUITEM "&Restabilește", 61728 + MENUITEM "&Mută", 61456 + MENUITEM "M&ărime", 61440 + MENUITEM "Mi&nimizează", 61472 + MENUITEM "Ma&ximizează", 61488 + MENUITEM SEPARATOR + MENUITEM "&Închide\tAlt-F4", 61536 + MENUITEM SEPARATOR + MENUITEM "&Comută la ...\tCtrl-Esc", 61744 + MENUITEM SEPARATOR + MENUITEM "&Despre WINE ...", 61761 + MENUITEM SEPARATOR + MENUITEM "&Pune 'Debug mark' în jurnalul de depanare", 61762 +} + +EDITMENU MENU LOADONCALL MOVEABLE DISCARDABLE +{ + POPUP "" + BEGIN + MENUITEM "&Des-face", EM_UNDO + MENUITEM SEPARATOR + MENUITEM "&Taie", WM_CUT + MENUITEM "&Copiază", WM_COPY + MENUITEM "&Inserează", WM_PASTE + MENUITEM "&Șterge", WM_CLEAR + MENUITEM SEPARATOR + MENUITEM "&Selectează tot", EM_SETSEL + END +} + +MSGBOX DIALOG 100, 80, 216, 168 +STYLE DS_MODALFRAME | DS_NOIDLEMSG | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU +BEGIN + ICON "", 1088, 8, 20, 16, 16, WS_CHILD | WS_VISIBLE + LTEXT "", 100, 32, 4, 176, 48, WS_CHILD | WS_VISIBLE | WS_GROUP | SS_NOPREFIX + PUSHBUTTON "&OK", 1, 16, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Renunță", 2, 64, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Anulează", 3, 112, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "R&eîncearcă", 4, 160, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Ignoră", 5, 208, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Da", 6, 256, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Nu", 7, 304, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Încearcă din nou", 10, 352, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "&Continuă", 11, 400, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP + PUSHBUTTON "Ajutor", 9, 448, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP +END + +MDI_MOREWINDOWS DIALOG FIXED IMPURE 20, 20, 232, 122 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Selectare fereastră" +FONT 8, "MS Shell Dlg" +BEGIN + LISTBOX MDI_IDC_LISTBOX, 5, 7, 222, 90, WS_VSCROLL | WS_HSCROLL /* defined in mdi.h */ + DEFPUSHBUTTON "OK", IDOK, 75, 100, 35, 14 + PUSHBUTTON "Renunță", IDCANCEL, 120, 100, 35, 14 +END + + +STRINGTABLE DISCARDABLE +{ + IDS_ERROR "Eroare" + IDS_MDI_MOREWINDOWS "&Mai multe ferestre..." +} + +#pragma code_page(default) -- 2.11.4.GIT