1/* 2 * Romanian resources for shlwapi 3 * 4 * Copyright 2004 Jon Griffiths 5 * Copyright 2008 Michael Stefaniuc 6 * 2011 Ștefan Fulea 7 * 2024 Andrei Miloiu 8 * 9 * This library is free software; you can redistribute it and/or 10 * modify it under the terms of the GNU Lesser General Public 11 * License as published by the Free Software Foundation; either 12 * version 2.1 of the License, or (at your option) any later version. 13 * 14 * This library is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 17 * Lesser General Public License for more details. 18 * 19 * You should have received a copy of the GNU Lesser General Public 20 * License along with this library; if not, write to the Free Software 21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 22 */ 23 24#pragma code_page(65001) 25 26LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL 27 28STRINGTABLE 29{ 30 IDS_BYTES_FORMAT "%ld octeți" 31 IDS_TIME_INTERVAL_HOURS " ore" 32 IDS_TIME_INTERVAL_MINUTES " min" 33 IDS_TIME_INTERVAL_SECONDS " sec" 34#ifdef __REACTOS__ 35 IDS_KB_FORMAT "%s KO" 36 IDS_MB_FORMAT "%s MO" 37 IDS_GB_FORMAT "%s GO" 38 IDS_TB_FORMAT "%s TO" 39 IDS_PB_FORMAT "%s PO" 40 IDS_EB_FORMAT "%s EO" 41#endif 42} 43 44IDD_ERR_DIALOG DIALOGEX 0, 0, 220, 60 45STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU 46CAPTION "Eroare" 47FONT 8, "MS Shell Dlg" 48{ 49 LTEXT "", IDS_ERR_USER_MSG2, 15, 5, 28, 20 50 LTEXT "", IDS_ERR_USER_MSG, 15, 5, 210, 8 51 CHECKBOX "&În viitor, nu se va afişa această casetă de dialog", IDC_ERR_DONT_SHOW, 5, 20, 210, 10, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 52 PUSHBUTTON "OK", IDOK, 105, 40, 50, 14, WS_GROUP | WS_TABSTOP 53 PUSHBUTTON "Revocare", IDCANCEL, 160, 40, 50, 14, WS_GROUP | WS_TABSTOP 54 PUSHBUTTON "&Da", IDYES, 105, 40, 50, 14, WS_GROUP | WS_TABSTOP 55 PUSHBUTTON "&Nu", IDNO, 160, 40, 50, 14, WS_GROUP | WS_TABSTOP 56} 57