1/* 2 * PROJECT: ReactOS Local Monitor 3 * LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later) 4 * PURPOSE: Romanian resource file 5 * TRANSLATORS: Copyright 2007 Detlef Riekenberg 6 * Copyright 2008 Michael Stefaniuc 7 * Copyright 2011 Ștefan Fulea <stefan.fulea@mail.com> 8 * Copyright 2023-2024 Andrei Miloiu <miloiuandrei@gmail.com> 9 * 10 * This library is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU Lesser General Public 12 * License as published by the Free Software Foundation; either 13 * version 2.1 of the License, or (at your option) any later version. 14 * 15 * This library is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * Lesser General Public License for more details. 19 * 20 * You should have received a copy of the GNU Lesser General Public 21 * License along with this library; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 23 * 24 */ 25 26#pragma code_page(65001) 27 28LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL 29 30STRINGTABLE 31{ 32 IDS_LOCALPORT "Port local" 33 IDS_INVALIDNAME "'%s' nu este un nume valid de port" 34 IDS_PORTEXISTS "Portul %s există deja" 35 IDS_NOTHINGTOCONFIG "Acest port nu are opțiuni de configurat" 36} 37 38ADDPORT_DIALOG DIALOGEX 6, 18, 245, 47 39STYLE DS_SHELLFONT | DS_CONTEXTHELP | DS_MODALFRAME | DS_SETFOREGROUND | WS_POPUPWINDOW | WS_VISIBLE | WS_CAPTION 40CAPTION "Adăugare a unui port local" 41FONT 8, "MS Shell Dlg" 42BEGIN 43 LTEXT "&Introduceți numele portului de adăugat:", -1, 7, 13, 194, 13, WS_VISIBLE 44 EDITTEXT ADDPORT_EDIT, 6, 28, 174, 12, WS_VISIBLE | ES_AUTOHSCROLL 45 DEFPUSHBUTTON "OK", IDOK, 188, 10, 50, 14, WS_VISIBLE 46 PUSHBUTTON "Revocare", IDCANCEL, 188, 27, 50, 14, WS_VISIBLE 47END 48 49 50LPTCONFIG_DIALOG DIALOGEX 6, 18, 220, 47 51STYLE DS_SHELLFONT | DS_CONTEXTHELP | DS_MODALFRAME | DS_SETFOREGROUND | WS_POPUPWINDOW | WS_VISIBLE | WS_CAPTION 52CAPTION "Configurare port LPT" 53FONT 8, "MS Shell Dlg" 54BEGIN 55 GROUPBOX "Temporizare (secunde)", LPTCONFIG_GROUP, 6, 6, 150, 35, BS_GROUPBOX 56 LTEXT "&Reinițializare transmisie:", -1, 14, 22, 90, 13, WS_VISIBLE 57 EDITTEXT LPTCONFIG_EDIT, 112, 20, 32, 13, WS_VISIBLE | ES_NUMBER 58 DEFPUSHBUTTON "OK", IDOK, 164, 10, 50, 14, WS_VISIBLE 59 PUSHBUTTON "Revocare", IDCANCEL, 164, 27, 50, 14, WS_VISIBLE 60END 61