From 0cb90dcf0057d72261f46b44e8ce7604711bd167 Mon Sep 17 00:00:00 2001 From: The Wine Synchronizer Date: Tue, 4 Jul 2006 14:09:35 +0000 Subject: [PATCH] Autosyncing with Wine svn path=/trunk/; revision=22830 --- reactos/dll/win32/msimg32/msimg32.rbuild | 11 +- reactos/dll/win32/netapi32/access.c | 6 + reactos/dll/win32/netapi32/netapi32.rbuild | 19 ++- reactos/dll/win32/netapi32/share.c | 85 ++++++++++++++ reactos/dll/win32/netapi32/wksta.c | 1 + reactos/dll/win32/oleacc/oleacc.rbuild | 11 +- reactos/dll/win32/oledlg/oledlg.rbuild | 11 +- reactos/dll/win32/oledlg/oledlg_Cs.rc | 11 +- reactos/dll/win32/oledlg/oledlg_Hu.rc | 111 +++++++++--------- reactos/dll/win32/oledlg/oledlg_Ja.rc | 4 +- .../oledlg/{oledlg_Ru.rc => oledlg_Tr.rc} | 41 +++---- reactos/dll/win32/oledlg/rsrc.rc | 4 +- 12 files changed, 215 insertions(+), 100 deletions(-) create mode 100644 reactos/dll/win32/netapi32/share.c rename reactos/dll/win32/oledlg/{oledlg_Ru.rc => oledlg_Tr.rc} (51%) diff --git a/reactos/dll/win32/msimg32/msimg32.rbuild b/reactos/dll/win32/msimg32/msimg32.rbuild index 7fd1e798638..1d5acd71bc4 100644 --- a/reactos/dll/win32/msimg32/msimg32.rbuild +++ b/reactos/dll/win32/msimg32/msimg32.rbuild @@ -1,12 +1,17 @@ . - include + include/reactos/wine + - ntdll - kernel32 + 0x600 + 0x501 + 0x501 + wine gdi32 + kernel32 + ntdll msimg32_main.c msimg32.spec diff --git a/reactos/dll/win32/netapi32/access.c b/reactos/dll/win32/netapi32/access.c index e3e0a36a74d..614e2a4dba3 100644 --- a/reactos/dll/win32/netapi32/access.c +++ b/reactos/dll/win32/netapi32/access.c @@ -554,6 +554,12 @@ NetGetDCName(LPCWSTR servername, LPCWSTR domainname, LPBYTE *bufptr) NET_API_STATUS WINAPI NetUserModalsGet(LPCWSTR szServer, DWORD level, LPBYTE *pbuffer) { FIXME("(%s %ld %p) stub!\n", debugstr_w(szServer), level, pbuffer); + + if (level == 2) + { + *pbuffer = NULL; + return NERR_Success; + } return NERR_InternalError; } diff --git a/reactos/dll/win32/netapi32/netapi32.rbuild b/reactos/dll/win32/netapi32/netapi32.rbuild index 83f19df6f30..4b03ec2ba72 100644 --- a/reactos/dll/win32/netapi32/netapi32.rbuild +++ b/reactos/dll/win32/netapi32/netapi32.rbuild @@ -3,26 +3,35 @@ . include/reactos/wine + 0x600 0x501 0x501 - wine - ntdll - kernel32 - advapi32 - ws2_32 iphlpapi + ws2_32 + advapi32 + kernel32 + ntdll access.c + ntdll apibuf.c + ntdll browsr.c + ntdll ds.c + ntdll nbcmdqueue.c + ntdll nbnamecache.c + ntdll nbt.c + ntdll netapi32.c + ntdll netbios.c + ntdll wksta.c netapi32.spec diff --git a/reactos/dll/win32/netapi32/share.c b/reactos/dll/win32/netapi32/share.c new file mode 100644 index 00000000000..05872a3d5db --- /dev/null +++ b/reactos/dll/win32/netapi32/share.c @@ -0,0 +1,85 @@ +/* Copyright 2006 Paul Vriens + * + * 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 + */ + +#include "wine/debug.h" +#include "lm.h" +#include "winerror.h" + +WINE_DEFAULT_DEBUG_CHANNEL(share); + +/************************************************************ + * NetSessionEnum (NETAPI32.@) + * + * PARAMS + * servername [I] Pointer to a string with the name of the server + * UncClientName [I] Pointer to a string with the name of the session + * username [I] Pointer to a string with the name of the user + * level [I] Data information level + * bufptr [O] Buffer to the data + * prefmaxlen [I] Preferred maximum length of the data + * entriesread [O] Pointer to the number of entries enumerated + * totalentries [O] Pointer to the possible number of entries + * resume_handle [I/O] Pointer to a handle for subsequent searches + * + * RETURNS + * If successful, the function returns NERR_Success + * On failure it returns: + * ERROR_ACCESS_DENIED User has no access to the requested information + * ERROR_INVALID_LEVEL Value of 'level' is not correct + * ERROR_INVALID_PARAMETER Wrong parameter + * ERROR_MORE_DATA Need a larger buffer + * ERROR_NOT_ENOUGH_MEMORY Not enough memory + * NERR_ClientNameNotFound A session does not exist on a given computer + * NERR_InvalidComputer Invalid computer name + * NERR_UserNotFound User name could not be found. + */ +NET_API_STATUS WINAPI NetSessionEnum(LPWSTR servername, LPWSTR UncClientName, + LPWSTR username, DWORD level, LPBYTE* bufptr, DWORD prefmaxlen, LPDWORD entriesread, + LPDWORD totalentries, LPDWORD resume_handle) +{ + FIXME("Stub (%s %s %s %ld %p %ld %p %p %p)\n", debugstr_w(servername), + debugstr_w(UncClientName), debugstr_w(username), + level, bufptr, prefmaxlen, entriesread, totalentries, resume_handle); + + return NERR_Success; +} + +/************************************************************ + * NetShareEnum (NETAPI32.@) + * + * PARAMS + * servername [I] Pointer to a string with the name of the server + * level [I] Data information level + * bufptr [O] Buffer to the data + * prefmaxlen [I] Preferred maximum length of the data + * entriesread [O] Pointer to the number of entries enumerated + * totalentries [O] Pointer to the possible number of entries + * resume_handle [I/O] Pointer to a handle for subsequent searches + * + * RETURNS + * If successful, the function returns NERR_Success + * On failure it returns a system error code (FIXME: find out which) + * + */ +NET_API_STATUS WINAPI NetShareEnum( LPWSTR servername, DWORD level, LPBYTE* bufptr, + DWORD prefmaxlen, LPDWORD entriesread, LPDWORD totalentries, LPDWORD resume_handle) +{ + FIXME("Stub (%s %ld %p %ld %p %p %p)\n", debugstr_w(servername), level, bufptr, + prefmaxlen, entriesread, totalentries, resume_handle); + + return ERROR_NOT_SUPPORTED; +} diff --git a/reactos/dll/win32/netapi32/wksta.c b/reactos/dll/win32/netapi32/wksta.c index 425a9893c55..5e9b3c7dfeb 100644 --- a/reactos/dll/win32/netapi32/wksta.c +++ b/reactos/dll/win32/netapi32/wksta.c @@ -36,6 +36,7 @@ #include "iphlpapi.h" #include "winerror.h" #include "winreg.h" +#include "winternl.h" #include "ntsecapi.h" #include "netbios.h" #include "wine/debug.h" diff --git a/reactos/dll/win32/oleacc/oleacc.rbuild b/reactos/dll/win32/oleacc/oleacc.rbuild index 5923a426c44..dfc4304f3fa 100644 --- a/reactos/dll/win32/oleacc/oleacc.rbuild +++ b/reactos/dll/win32/oleacc/oleacc.rbuild @@ -1,13 +1,16 @@ - - + . include/reactos/wine + + + 0x600 0x501 - ntdll - kernel32 + 0x501 wine + kernel32 + ntdll main.c oleacc.spec diff --git a/reactos/dll/win32/oledlg/oledlg.rbuild b/reactos/dll/win32/oledlg/oledlg.rbuild index 5a9bf2d6428..1e8996256f2 100644 --- a/reactos/dll/win32/oledlg/oledlg.rbuild +++ b/reactos/dll/win32/oledlg/oledlg.rbuild @@ -3,17 +3,20 @@ . include/reactos/wine + 0x600 0x501 0x501 wine - ntdll - kernel32 - comdlg32 ole32 - oledlg_main.c + comdlg32 + user32 + advapi32 + kernel32 + ntdll insobjdlg.c + oledlg_main.c rsrc.rc oledlg.spec diff --git a/reactos/dll/win32/oledlg/oledlg_Cs.rc b/reactos/dll/win32/oledlg/oledlg_Cs.rc index 71d96dd6ed3..2102779fcb0 100644 --- a/reactos/dll/win32/oledlg/oledlg_Cs.rc +++ b/reactos/dll/win32/oledlg/oledlg_Cs.rc @@ -1,4 +1,5 @@ -/* +/* Hey, Emacs, open this file with -*- coding: cp1250 -*- + * * Czech resources or oledlg * Copyright 2003 Ulrich Czekalla for CodeWeavers * Copyright 2004 David Kredba @@ -20,9 +21,11 @@ LANGUAGE LANG_CZECH, SUBLANG_DEFAULT +/* Czech strings in CP1250 */ + UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Vložit objekt" +CAPTION "Vložit objekt" FONT 8, "MS Shell Dlg" BEGIN LISTBOX IDC_OBJTYPELIST,82,19,131,66,LBS_SORT | @@ -49,8 +52,8 @@ END STRINGTABLE DISCARDABLE { - IDS_RESULTOBJDESC "Vložen nový %s objekt do Vašeho dokumentu" - IDS_RESULTFILEOBJDESC "Vložen obsah souboru jako objekt do Vašeho dokumentu, takže ho můžete upravit programem, kterým byl vytvořen." + IDS_RESULTOBJDESC "Vložen nový %s objekt do Vašeho dokumentu" + IDS_RESULTFILEOBJDESC "Vložen obsah souboru jako objekt do Vašeho dokumentu, takže ho můžete upravit programem, kterým byl vytvořen." IDS_BROWSE "Procházet" IDS_NOTOLEMOD "Soubor není platným OLE modulem. Nelze registrovat OLE propojení." IDS_NOTOLEMODCAPTION "Přidat propojení" diff --git a/reactos/dll/win32/oledlg/oledlg_Hu.rc b/reactos/dll/win32/oledlg/oledlg_Hu.rc index ea4a96f9de1..1d2b8540a14 100644 --- a/reactos/dll/win32/oledlg/oledlg_Hu.rc +++ b/reactos/dll/win32/oledlg/oledlg_Hu.rc @@ -1,56 +1,55 @@ -/* - * Copyright 2003 Ulrich Czekalla for CodeWeavers - * Copyright 2005 Gergely Risko - * - * 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 - */ - -LANGUAGE LANG_HUNGARIAN, SUBLANG_NEUTRAL - -UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151 -STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Objektum Beszúrása" -FONT 8, "MS Shell Dlg" -BEGIN - LISTBOX IDC_OBJTYPELIST,82,19,131,66,LBS_SORT | - LBS_NOINTEGRALHEIGHT | WS_VISIBLE | WS_VSCROLL | - WS_TABSTOP - LTEXT "Objektum típusa:",IDC_OBJTYPELBL,82,7,53,8,WS_VISIBLE - DEFPUSHBUTTON "OK",IDOK,221,7,66,14 - PUSHBUTTON "Mégse",IDCANCEL,221,24,66,14 - GROUPBOX "Eredmény",IDC_RESULT,7,103,208,41 - CONTROL "Új",IDC_CREATENEW,"Button",BS_AUTORADIOBUTTON | - WS_GROUP,7,20,62,10 - CONTROL "Vezérlőelem létrehozása",IDC_CREATECONTROL,"Button", - BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,54,62,10 - CONTROL "Létrehozás állományból",IDC_CREATEFROMFILE,"Button", - BS_AUTORADIOBUTTON,7,37,67,10 - LTEXT "",IDC_RESULTDESC,49,112,159,23 - PUSHBUTTON /* NOT TRANSLATED */ "&Add Control...",IDC_ADDCONTROL,81,88,63,14,NOT WS_VISIBLE - CONTROL "Megjelenítés ikonként",IDC_ASICON,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP | NOT WS_VISIBLE,223,58,64,10 - PUSHBUTTON "Böngészés...",IDC_BROWSE,83,53,50,14,NOT WS_VISIBLE - LTEXT "Állomány:",IDC_FILELBL,83,27,20,8, NOT WS_VISIBLE - EDITTEXT IDC_FILE,83,37,132,13,ES_AUTOHSCROLL | NOT WS_VISIBLE -END - -STRINGTABLE DISCARDABLE -{ - IDS_RESULTOBJDESC "Új %s objektum beszúrása a dokumentumba" - IDS_RESULTFILEOBJDESC "Az állomány tartalmának beszúrása objektumként a dokumentumba, így azzal a programmal tudod használni, amelyikkel készült." - IDS_BROWSE "Böngészés" - IDS_NOTOLEMOD "Az állomány nem tűnik helyes OLE modulnak. Nem lehet regisztrálni az OLE modult." - IDS_NOTOLEMODCAPTION "Vezérlőelem hozzáadása" -} +/* + * Copyright 2006 Andras Kovacs + * + * 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 + */ + +LANGUAGE LANG_HUNGARIAN, SUBLANG_DEFAULT + +UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151 +STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Objektum beszúrása" +FONT 8, "MS Shell Dlg" +BEGIN + LISTBOX IDC_OBJTYPELIST,82,19,131,66,LBS_SORT | + LBS_NOINTEGRALHEIGHT | WS_VISIBLE | WS_VSCROLL | + WS_TABSTOP + LTEXT "Obktum típus:",IDC_OBJTYPELBL,82,7,53,8,WS_VISIBLE + DEFPUSHBUTTON "OK",IDOK,221,7,66,14 + PUSHBUTTON "Mégse",IDCANCEL,221,24,66,14 + GROUPBOX "Eredmény",IDC_RESULT,7,103,208,41 + CONTROL "Új létrehozása",IDC_CREATENEW,"Button",BS_AUTORADIOBUTTON | + WS_GROUP,7,20,62,10 + CONTROL "Vezérlő létrehozása",IDC_CREATECONTROL,"Button", + BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,54,62,10 + CONTROL "Létrehozás fájlból",IDC_CREATEFROMFILE,"Button", + BS_AUTORADIOBUTTON,7,37,67,10 + LTEXT "",IDC_RESULTDESC,49,112,159,23 + PUSHBUTTON "Vezérlő hozzá&adása...",IDC_ADDCONTROL,81,88,63,14,NOT WS_VISIBLE + CONTROL "Megjelenítés ikonként",IDC_ASICON,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP | NOT WS_VISIBLE,223,58,64,10 + PUSHBUTTON "Tallóz...",IDC_BROWSE,83,53,50,14,NOT WS_VISIBLE + LTEXT "Fájl:",IDC_FILELBL,83,27,20,8, NOT WS_VISIBLE + EDITTEXT IDC_FILE,83,37,132,13,ES_AUTOHSCROLL | NOT WS_VISIBLE +END + +STRINGTABLE DISCARDABLE +{ + IDS_RESULTOBJDESC "Új %s objektum behelyezése az Ön dokumentumába" + IDS_RESULTFILEOBJDESC "Kérem illesssze be a fájl tartalmát, mint objektumot a dokumentumába, azzal a programmal amivel létrehozta." + IDS_BROWSE "Tallózás" + IDS_NOTOLEMOD "A fájl úgy tűnik nem egy érvényes OLE modul. Nem tudom regisztrálni az OLE vezérlőt." + IDS_NOTOLEMODCAPTION "Vezérlő hozzáadása" +} diff --git a/reactos/dll/win32/oledlg/oledlg_Ja.rc b/reactos/dll/win32/oledlg/oledlg_Ja.rc index 0e523bd638a..beef292d501 100644 --- a/reactos/dll/win32/oledlg/oledlg_Ja.rc +++ b/reactos/dll/win32/oledlg/oledlg_Ja.rc @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -LANGUAGE LANG_JAPANESE, SUBLANG_NEUTRAL +LANGUAGE LANG_JAPANESE, SUBLANG_DEFAULT UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU @@ -38,7 +38,7 @@ BEGIN BS_AUTORADIOBUTTON,7,37,67,10 LTEXT "",IDC_RESULTDESC,49,112,159,23 PUSHBUTTON "ƒRƒ“ƒgƒ[ƒ‹‚đ’ljÁ(&A)...",IDC_ADDCONTROL,81,88,63,14,NOT WS_VISIBLE - CONTROL "ƒAƒCƒRƒ“‚Ć‚ľ‚Ä•\\ŽŚ",IDC_ASICON,"Button",BS_AUTOCHECKBOX | + CONTROL "ƒAƒCƒRƒ“‚Ć‚ľ‚Ä•\ŽŚ",IDC_ASICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP | NOT WS_VISIBLE,223,58,64,10 PUSHBUTTON "ŽQĆ...",IDC_BROWSE,83,53,50,14,NOT WS_VISIBLE LTEXT "ƒtƒ@ƒCƒ‹:",IDC_FILELBL,83,27,20,8, NOT WS_VISIBLE diff --git a/reactos/dll/win32/oledlg/oledlg_Ru.rc b/reactos/dll/win32/oledlg/oledlg_Tr.rc similarity index 51% rename from reactos/dll/win32/oledlg/oledlg_Ru.rc rename to reactos/dll/win32/oledlg/oledlg_Tr.rc index 611a0917f9f..3f0d4b4175a 100644 --- a/reactos/dll/win32/oledlg/oledlg_Ru.rc +++ b/reactos/dll/win32/oledlg/oledlg_Tr.rc @@ -1,6 +1,7 @@ /* - * Copyright 2005 Mikhail Y. Zvyozdochkin - * Aleksey Bragin + * Turkish Resources + * + * Copyright 2006 Fatih Aţýcý * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -17,40 +18,40 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT +LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT UIINSERTOBJECT DIALOG DISCARDABLE 0, 0, 294, 151 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Âńňŕâęŕ îáúĺęňŕ" +CAPTION "Nesne Ekle" FONT 8, "MS Shell Dlg" BEGIN LISTBOX IDC_OBJTYPELIST,82,19,131,66,LBS_SORT | LBS_NOINTEGRALHEIGHT | WS_VISIBLE | WS_VSCROLL | WS_TABSTOP - LTEXT "Ňčď îáúĺęňŕ:",IDC_OBJTYPELBL,82,7,53,8,WS_VISIBLE - DEFPUSHBUTTON "OK",IDOK,221,7,66,14 - PUSHBUTTON "Îňěĺíŕ",IDCANCEL,221,24,66,14 - GROUPBOX "Đĺçóëüňŕň",IDC_RESULT,7,103,208,41 - CONTROL "Ńîçäŕňü íîâűé",IDC_CREATENEW,"Button",BS_AUTORADIOBUTTON | + LTEXT "Nesne Türü:",IDC_OBJTYPELBL,82,7,53,8,WS_VISIBLE + DEFPUSHBUTTON "Tamam",IDOK,221,7,66,14 + PUSHBUTTON "Ýptal",IDCANCEL,221,24,66,14 + GROUPBOX "Sonuç",IDC_RESULT,7,103,208,41 + CONTROL "Yeni Oluţtur",IDC_CREATENEW,"Button",BS_AUTORADIOBUTTON | WS_GROUP,7,20,62,10 - CONTROL "Ńîçäŕňü ýëĺěĺíň óďđŕâëĺíč˙",IDC_CREATECONTROL,"Button", + CONTROL "Denetim Oluţtur",IDC_CREATECONTROL,"Button", BS_AUTORADIOBUTTON | NOT WS_VISIBLE,7,54,62,10 - CONTROL "Ńîçäŕňü čç ôŕéëŕ",IDC_CREATEFROMFILE,"Button", + CONTROL "Dosyadan Oluţtur",IDC_CREATEFROMFILE,"Button", BS_AUTORADIOBUTTON,7,37,67,10 LTEXT "",IDC_RESULTDESC,49,112,159,23 - PUSHBUTTON "&Äîáŕâčňü ýëĺěĺíň óďđŕâëĺíč˙...",IDC_ADDCONTROL,81,88,63,14,NOT WS_VISIBLE - CONTROL "Îňîáđŕćŕňü â âčäĺ çíŕ÷ęŕ",IDC_ASICON,"Button",BS_AUTOCHECKBOX | + PUSHBUTTON "&Denetim Ekle...",IDC_ADDCONTROL,81,88,63,14,NOT WS_VISIBLE + CONTROL "Simge Olarak Göster",IDC_ASICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP | NOT WS_VISIBLE,223,58,64,10 - PUSHBUTTON "Îáçîđ...",IDC_BROWSE,83,53,50,14,NOT WS_VISIBLE - LTEXT "Ôŕéë:",IDC_FILELBL,83,27,20,8, NOT WS_VISIBLE + PUSHBUTTON "Gözat...",IDC_BROWSE,83,53,50,14,NOT WS_VISIBLE + LTEXT "Dosya:",IDC_FILELBL,83,27,20,8, NOT WS_VISIBLE EDITTEXT IDC_FILE,83,37,132,13,ES_AUTOHSCROLL | NOT WS_VISIBLE END STRINGTABLE DISCARDABLE { - IDS_RESULTOBJDESC "Âńňŕâčňü íîâűé îáúĺęň %s â Âŕř äîęóěĺíň" - IDS_RESULTFILEOBJDESC "Âńňŕâčňü ńîäĺđćčěîĺ ôŕéëŕ ęŕę îáúĺęň â Âŕř äîęóěĺíň ňŕę, ÷ňî Âű ěîćĺňĺ đŕáîňŕňü ń íčě, čńďîëüçó˙ ňó ďđîăđŕěěó, ęîňîđîé îí ńîçäŕí." - IDS_BROWSE "Îáçîđ" - IDS_NOTOLEMOD "Ôŕéë íĺ ˙âë˙ĺňń˙ ęîđđĺęňíűě ěîäóëĺě OLE. Íĺ âîçěîćíî çŕđĺăčńňđčđîâŕňü ýëĺěĺíň óďđŕâëĺíč˙ OLE." - IDS_NOTOLEMODCAPTION "Äîáŕâë˙ĺň ýëĺěĺíň óďđŕâëĺíč˙" + IDS_RESULTOBJDESC "Belgenize yeni bir %s nesnesi ekle" + IDS_RESULTFILEOBJDESC "Dosya içeriđini belgenize nesne olarak ekleyin. Böylece kendisini oluţturan programý kullanarak onu etkinleţtirebilirsiniz." + IDS_BROWSE "Gözat" + IDS_NOTOLEMOD "Dosya geçerli bir OLE modülü olarak görünmüyor. OLE denetimi kaydedilemiyor." + IDS_NOTOLEMODCAPTION "Denetim Ekle" } diff --git a/reactos/dll/win32/oledlg/rsrc.rc b/reactos/dll/win32/oledlg/rsrc.rc index 8a93db5337e..ea14a8254b7 100644 --- a/reactos/dll/win32/oledlg/rsrc.rc +++ b/reactos/dll/win32/oledlg/rsrc.rc @@ -36,11 +36,11 @@ #include "oledlg_En.rc" #include "oledlg_Es.rc" #include "oledlg_Fr.rc" +#include "oledlg_Hu.rc" #include "oledlg_It.rc" #include "oledlg_Ja.rc" #include "oledlg_Ko.rc" #include "oledlg_Nl.rc" #include "oledlg_No.rc" #include "oledlg_Pt.rc" -#include "oledlg_Ru.rc" -#include "oledlg_Hu.rc" +#include "oledlg_Tr.rc"