From d5449a890583780f2d67fe4409f8ca614f6816a5 Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Mon, 9 Dec 2019 03:40:11 +0000 Subject: [PATCH] oledb32: Implement IDataSourceLocator PromptNew. Signed-off-by: Alistair Leslie-Hughes Signed-off-by: Alexandre Julliard --- dlls/oledb32/Makefile.in | 2 +- dlls/oledb32/dslocator.c | 131 ++++++++++++++++++++++++++++++++++- dlls/oledb32/main.c | 2 +- dlls/oledb32/oledb_private.h | 2 + dlls/oledb32/resource.h | 24 +++++++ dlls/oledb32/version.rc | 22 ++++++ po/ar.po | 24 ++++++- po/ast.po | 24 ++++++- po/bg.po | 20 +++++- po/ca.po | 24 ++++++- po/cs.po | 24 ++++++- po/da.po | 24 ++++++- po/de.po | 24 ++++++- po/el.po | 19 ++++- po/en.po | 18 ++++- po/en_US.po | 18 ++++- po/eo.po | 22 +++++- po/es.po | 24 ++++++- po/fa.po | 19 ++++- po/fi.po | 24 ++++++- po/fr.po | 24 ++++++- po/he.po | 23 +++++- po/hi.po | 19 ++++- po/hr.po | 24 ++++++- po/hu.po | 24 ++++++- po/it.po | 24 ++++++- po/ja.po | 24 ++++++- po/ko.po | 24 ++++++- po/lt.po | 24 ++++++- po/ml.po | 21 +++++- po/nb_NO.po | 24 ++++++- po/nl.po | 24 ++++++- po/or.po | 19 ++++- po/pa.po | 19 ++++- po/pl.po | 24 ++++++- po/pt_BR.po | 24 ++++++- po/pt_PT.po | 24 ++++++- po/rm.po | 18 ++++- po/ro.po | 24 ++++++- po/ru.po | 24 ++++++- po/si.po | 24 ++++++- po/sk.po | 25 ++++++- po/sl.po | 24 ++++++- po/sr_RS@cyrillic.po | 22 +++++- po/sr_RS@latin.po | 22 +++++- po/sv.po | 24 ++++++- po/ta.po | 20 +++++- po/te.po | 19 ++++- po/th.po | 19 ++++- po/tr.po | 24 ++++++- po/uk.po | 24 ++++++- po/wa.po | 19 ++++- po/wine.pot | 18 ++++- po/zh_CN.po | 24 ++++++- po/zh_TW.po | 24 ++++++- 55 files changed, 1224 insertions(+), 54 deletions(-) create mode 100644 dlls/oledb32/resource.h diff --git a/dlls/oledb32/Makefile.in b/dlls/oledb32/Makefile.in index b55a66c5dbe..b4698ca204a 100644 --- a/dlls/oledb32/Makefile.in +++ b/dlls/oledb32/Makefile.in @@ -1,5 +1,5 @@ MODULE = oledb32.dll -IMPORTS = uuid oleaut32 ole32 user32 advapi32 +IMPORTS = uuid oleaut32 ole32 comctl32 user32 advapi32 EXTRADLLFLAGS = -mno-cygwin diff --git a/dlls/oledb32/dslocator.c b/dlls/oledb32/dslocator.c index d397e47aa50..26ee12de53a 100644 --- a/dlls/oledb32/dslocator.c +++ b/dlls/oledb32/dslocator.c @@ -20,6 +20,7 @@ #include #define COBJMACROS +#define NONAMELESSUNION #include "windef.h" #include "winbase.h" @@ -29,8 +30,11 @@ #include "oledb.h" #include "oledberr.h" #include "msdasc.h" +#include "prsht.h" +#include "commctrl.h" #include "oledb_private.h" +#include "resource.h" #include "wine/debug.h" #include "wine/heap.h" @@ -188,13 +192,134 @@ static HRESULT WINAPI dslocator_put_hWnd(IDataSourceLocator *iface, COMPATIBLE_L return S_OK; } -static HRESULT WINAPI dslocator_PromptNew(IDataSourceLocator *iface, IDispatch **ppADOConnection) +static void create_connections_columns(HWND lv) +{ + RECT rc; + WCHAR buf[256]; + LVCOLUMNW column; + + SendMessageW(lv, LVM_SETEXTENDEDLISTVIEWSTYLE, 0, LVS_EX_FULLROWSELECT); + GetWindowRect(lv, &rc); + LoadStringW(instance, IDS_COL_PROVIDER, buf, ARRAY_SIZE(buf)); + column.mask = LVCF_WIDTH | LVCF_TEXT; + column.cx = (rc.right - rc.left) - 5; + column.pszText = buf; + SendMessageW(lv, LVM_INSERTCOLUMNW, 0, (LPARAM)&column); +} + +static void add_connections_providers(HWND lv) +{ + static const WCHAR oledbprov[] = {'\\','O','L','E',' ','D','B',' ','P','r','o','v','i','d','e','r',0}; + LONG res; + HKEY key = NULL, subkey; + DWORD index = 0; + LONG next_key; + WCHAR provider[MAX_PATH]; + WCHAR guidkey[MAX_PATH]; + LONG size; + + res = RegOpenKeyExW(HKEY_CLASSES_ROOT, L"CLSID", 0, KEY_READ, &key); + if (res == ERROR_FILE_NOT_FOUND) + return; + + next_key = RegEnumKeyW(key, index, provider, MAX_PATH); + while (next_key == ERROR_SUCCESS) + { + WCHAR description[MAX_PATH]; + + lstrcpyW(guidkey, provider); + lstrcatW(guidkey, oledbprov); + + res = RegOpenKeyW(key, guidkey, &subkey); + if (res == ERROR_SUCCESS) + { + TRACE("Found %s\n", debugstr_w(guidkey)); + + size = MAX_PATH; + res = RegQueryValueW(subkey, NULL, description, &size); + if (res == ERROR_SUCCESS) + { + LVITEMW item; + item.mask = LVIF_TEXT; + item.iItem = SendMessageW(lv, LVM_GETITEMCOUNT, 0, 0); + item.iSubItem = 0; + item.pszText = description; + SendMessageW(lv, LVM_INSERTITEMW, 0, (LPARAM)&item); + /* TODO - Add ProgID to item data */ + } + RegCloseKey(subkey); + } + + index++; + next_key = RegEnumKeyW(key, index, provider, MAX_PATH); + } + + RegCloseKey(key); +} + +static LRESULT CALLBACK data_link_properties_dlg_proc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) +{ + TRACE("(%p, %08x, %08lx, %08lx)\n", hwnd, msg, wp, lp); + + switch (msg) + { + case WM_INITDIALOG: + { + HWND btn, lv = GetDlgItem(hwnd, IDC_LST_CONNECTIONS); + create_connections_columns(lv); + add_connections_providers(lv); + + btn = GetDlgItem(GetParent(hwnd), IDOK); + EnableWindow(btn, FALSE); + + break; + } + case WM_COMMAND: + { + if (LOWORD(wp) == IDC_BTN_NEXT) + { + /* TODO: Implement Connection dialog */ + MessageBoxA(hwnd, "Not implemented yet.", "Error", MB_OK | MB_ICONEXCLAMATION); + } + break; + } + default: + break; + } + return 0; +} + +static HRESULT WINAPI dslocator_PromptNew(IDataSourceLocator *iface, IDispatch **connection) { DSLocatorImpl *This = impl_from_IDataSourceLocator(iface); + PROPSHEETHEADERW hdr; + PROPSHEETPAGEW page; + INT_PTR ret; - FIXME("(%p)->(%p)\n",This, ppADOConnection); + FIXME("(%p, %p) Semi-stub\n", iface, connection); - return E_NOTIMPL; + if(!connection) + return E_INVALIDARG; + + *connection = NULL; + + memset(&page, 0, sizeof(PROPSHEETPAGEW)); + page.dwSize = sizeof(page); + page.hInstance = instance; + page.u.pszTemplate = MAKEINTRESOURCEW(IDD_PROVIDER); + page.pfnDlgProc = data_link_properties_dlg_proc; + + memset(&hdr, 0, sizeof(hdr)); + hdr.dwSize = sizeof(hdr); + hdr.hwndParent = This->hwnd; + hdr.dwFlags = PSH_NOAPPLYNOW | PSH_PROPSHEETPAGE; + hdr.hInstance = instance; + hdr.pszCaption = MAKEINTRESOURCEW(IDS_PROPSHEET_TITLE); + hdr.u3.ppsp = &page; + hdr.nPages = 1; + ret = PropertySheetW(&hdr); + + return ret ? S_OK : S_FALSE; } static HRESULT WINAPI dslocator_PromptEdit(IDataSourceLocator *iface, IDispatch **ppADOConnection, VARIANT_BOOL *success) diff --git a/dlls/oledb32/main.c b/dlls/oledb32/main.c index f28e57a3f3a..9c8c7f231b8 100644 --- a/dlls/oledb32/main.c +++ b/dlls/oledb32/main.c @@ -36,7 +36,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(oledb); -static HINSTANCE instance; +HINSTANCE instance; DEFINE_GUID(CSLID_MSDAER, 0xc8b522cf,0x5cf3,0x11ce,0xad,0xe5,0x00,0xaa,0x00,0x44,0x77,0x3d); diff --git a/dlls/oledb32/oledb_private.h b/dlls/oledb32/oledb_private.h index 4e285b5460b..fee0318de14 100644 --- a/dlls/oledb32/oledb_private.h +++ b/dlls/oledb32/oledb_private.h @@ -26,6 +26,8 @@ HRESULT create_dslocator(IUnknown *outer, void **obj) DECLSPEC_HIDDEN; HRESULT get_data_source(IUnknown *outer, DWORD clsctx, LPWSTR initstring, REFIID riid, IUnknown **datasource) DECLSPEC_HIDDEN; +extern HINSTANCE instance; + static inline void* __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t size) { return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size); diff --git a/dlls/oledb32/resource.h b/dlls/oledb32/resource.h new file mode 100644 index 00000000000..df88a10829b --- /dev/null +++ b/dlls/oledb32/resource.h @@ -0,0 +1,24 @@ +/* + * Copyright 2019 Alistair Leslie-Hughes + * + * 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 + */ + +#define IDD_PROVIDER 1000 +#define IDC_BTN_NEXT 1001 +#define IDC_LST_CONNECTIONS 1002 + +#define IDS_PROPSHEET_TITLE 2000 +#define IDS_COL_PROVIDER 2001 diff --git a/dlls/oledb32/version.rc b/dlls/oledb32/version.rc index e082acccae7..3a200d1cd62 100644 --- a/dlls/oledb32/version.rc +++ b/dlls/oledb32/version.rc @@ -16,6 +16,10 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ +#pragma makedep po + +#include "resource.h" + #define WINE_FILEDESCRIPTION_STR "Wine oledb" #define WINE_FILENAME_STR "oledb32.dll" #define WINE_FILEVERSION 2,81,1117,0 @@ -24,3 +28,21 @@ #define WINE_PRODUCTVERSION_STR "2.81.1117.0" #include "wine/wine_common_ver.rc" + +LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT + +STRINGTABLE +{ + IDS_PROPSHEET_TITLE "Data Link Properties" + IDS_COL_PROVIDER "OLE DB Provider(s)" +} + +IDD_PROVIDER DIALOG 0, 0, 227, 225 +STYLE DS_SETFONT | WS_CHILD | WS_DISABLED | WS_CAPTION +CAPTION "Provider" +FONT 8, "MS Shell Dlg" +BEGIN + LTEXT "Select the data you want to connect to:",-1,8,7,206,8 + CONTROL "",IDC_LST_CONNECTIONS,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_SORTASCENDING | LVS_NOSORTHEADER | WS_BORDER | WS_TABSTOP,14,20,206,162 + PUSHBUTTON "&Next >",IDC_BTN_NEXT,170,194,50,14 +END diff --git a/po/ar.po b/po/ar.po index 3d9f6658c7d..21484d8d1b4 100644 --- a/po/ar.po +++ b/po/ar.po @@ -341,7 +341,7 @@ msgstr "المرشِد" msgid "< &Back" msgstr "< &السابق" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&التالي >" @@ -8585,6 +8585,28 @@ msgstr "تشغيل" msgid "Off" msgstr "إيقاف" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "صورة" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "اختر الصيغة التي ترغب باستخدامه:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "خصائص" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "عنصر إدخال" diff --git a/po/ast.po b/po/ast.po index 10b71556b45..266821cba79 100644 --- a/po/ast.po +++ b/po/ast.po @@ -343,7 +343,7 @@ msgstr "Encontu" msgid "< &Back" msgstr "< &Atrás" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Siguiente >" @@ -8259,6 +8259,28 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "videu" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Esbilla'l formatu que quies usar:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Propiedaes" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/bg.po b/po/bg.po index 6b4ada15a2c..d91c888c5b8 100644 --- a/po/bg.po +++ b/po/bg.po @@ -352,7 +352,7 @@ msgstr "" msgid "< &Back" msgstr "< На&зад" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "На&пред >" @@ -8537,6 +8537,24 @@ msgstr "Включено" msgid "Off" msgstr "Изключено" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Свойства" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/ca.po b/po/ca.po index 24720c9756f..4b7466522b0 100644 --- a/po/ca.po +++ b/po/ca.po @@ -351,7 +351,7 @@ msgstr "Assistent" msgid "< &Back" msgstr "< &Enrere" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Següent >" @@ -8470,6 +8470,28 @@ msgstr "Actiu" msgid "Off" msgstr "Inactiu" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "vídeo" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Seleccioneu el format que voleu utilitzar:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Propietats" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Inserció d'un objecte" diff --git a/po/cs.po b/po/cs.po index 9d009120945..bc64fd3f27c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -350,7 +350,7 @@ msgstr "Průvodce" msgid "< &Back" msgstr "< &Zpět" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Další >" @@ -8451,6 +8451,28 @@ msgstr "Zapnuto" msgid "Off" msgstr "Vypnuto" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Zvolte formát, který chcete použít:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "&Vlastnosti" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Vložit objekt" diff --git a/po/da.po b/po/da.po index bbf9db400f6..2e319b9aa38 100644 --- a/po/da.po +++ b/po/da.po @@ -358,7 +358,7 @@ msgstr "Guide" msgid "< &Back" msgstr "< &Tilbage" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Næste >" @@ -8661,6 +8661,28 @@ msgstr "Til" msgid "Off" msgstr "Fra" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Vælg det format do vil bruge:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Egenskaber" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Indsæt objekt" diff --git a/po/de.po b/po/de.po index 1077a5ce1f1..58ddf9022c0 100644 --- a/po/de.po +++ b/po/de.po @@ -349,7 +349,7 @@ msgstr "Assistent" msgid "< &Back" msgstr "< &Zurück" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Weiter >" @@ -8305,6 +8305,28 @@ msgstr "Ein" msgid "Off" msgstr "Aus" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "Video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Wählen Sie das gewünschte Format:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "&Eigenschaften" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Objekt einfügen" diff --git a/po/el.po b/po/el.po index 1c85978b057..1a8aad24668 100644 --- a/po/el.po +++ b/po/el.po @@ -331,7 +331,7 @@ msgstr "Βοηθός" msgid "< &Back" msgstr "< &Προηγούμενο" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Επόμενο >" @@ -8379,6 +8379,23 @@ msgstr "Ενεργό" msgid "Off" msgstr "Ανενεργό" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "Επιλογές" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/en.po b/po/en.po index 6997d7ad0e6..9e544e59f5f 100644 --- a/po/en.po +++ b/po/en.po @@ -348,7 +348,7 @@ msgstr "Wizard" msgid "< &Back" msgstr "< &Back" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Next >" @@ -8291,6 +8291,22 @@ msgstr "On" msgid "Off" msgstr "Off" +#: version.rc:42 +msgid "Provider" +msgstr "Provider" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "Select the data you want to connect to:" + +#: version.rc:36 +msgid "Data Link Properties" +msgstr "Data Link Properties" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "OLE DB Provider(s)" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Insert Object" diff --git a/po/en_US.po b/po/en_US.po index c6b3fd82749..9e727f16ce6 100644 --- a/po/en_US.po +++ b/po/en_US.po @@ -348,7 +348,7 @@ msgstr "Wizard" msgid "< &Back" msgstr "< &Back" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Next >" @@ -8291,6 +8291,22 @@ msgstr "On" msgid "Off" msgstr "Off" +#: version.rc:42 +msgid "Provider" +msgstr "Provider" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "Select the data you want to connect to:" + +#: version.rc:36 +msgid "Data Link Properties" +msgstr "Data Link Properties" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "OLE DB Provider(s)" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Insert Object" diff --git a/po/eo.po b/po/eo.po index fa4ea4b37b9..b6c3d1c36ad 100644 --- a/po/eo.po +++ b/po/eo.po @@ -340,7 +340,7 @@ msgstr "Estrita Proceduro" msgid "< &Back" msgstr "< &Retro" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Antaŭen >" @@ -8385,6 +8385,26 @@ msgstr "Ŝaltita" msgid "Off" msgstr "Malŝaltita" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Ecoj" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/es.po b/po/es.po index 88487018476..166ddd55c03 100644 --- a/po/es.po +++ b/po/es.po @@ -361,7 +361,7 @@ msgstr "Asistente" msgid "< &Back" msgstr "< &Anterior" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Siguiente >" @@ -8671,6 +8671,28 @@ msgstr "Activado" msgid "Off" msgstr "Desactivado" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "vídeo" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Seleccione el formato que quiere utilizar:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Propiedades" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Insertar objeto" diff --git a/po/fa.po b/po/fa.po index 7519a468c8b..c054cfe7688 100644 --- a/po/fa.po +++ b/po/fa.po @@ -331,7 +331,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8314,6 +8314,23 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "انتخاب &همه\tCtrl+A" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/fi.po b/po/fi.po index 962af5547a0..6ce7adb00b0 100644 --- a/po/fi.po +++ b/po/fi.po @@ -343,7 +343,7 @@ msgstr "Velho" msgid "< &Back" msgstr "< &Edellinen" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Seuraava >" @@ -8286,6 +8286,28 @@ msgstr "Päällä" msgid "Off" msgstr "Pois päältä" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Valitse käytettävä muoto:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Ominaisuudet" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Lisää objekti" diff --git a/po/fr.po b/po/fr.po index 072dc4ac164..1430c1a60f2 100644 --- a/po/fr.po +++ b/po/fr.po @@ -353,7 +353,7 @@ msgstr "Assistant" msgid "< &Back" msgstr "< &Précédent" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Suivant >" @@ -8586,6 +8586,28 @@ msgstr "Actif" msgid "Off" msgstr "Inactif" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "vidéo" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Sélectionnez le format à utiliser :" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Propriétés" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Insérer objet" diff --git a/po/he.po b/po/he.po index 872c166098e..63646352fb1 100644 --- a/po/he.po +++ b/po/he.po @@ -354,7 +354,7 @@ msgstr "" msgid "< &Back" msgstr "< ה&קודם" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "ה&בא >" @@ -8693,6 +8693,27 @@ msgstr "פעיל" msgid "Off" msgstr "כבוי" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "וידאו" + +#: version.rc:45 +#, fuzzy +msgid "Select the data you want to connect to:" +msgstr "נא לציין את הקובץ אותו ברצונך לייבא." + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "מאפיינים" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "הוספת עצם" diff --git a/po/hi.po b/po/hi.po index 4e90ffa4ebd..09bc81d89c4 100644 --- a/po/hi.po +++ b/po/hi.po @@ -329,7 +329,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8183,6 +8183,23 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "सूचना (&o)" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/hr.po b/po/hr.po index e9abec7b695..d3fd930c399 100644 --- a/po/hr.po +++ b/po/hr.po @@ -348,7 +348,7 @@ msgstr "Čarobnjak" msgid "< &Back" msgstr "< &Nazad" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "N&aprijed >" @@ -8584,6 +8584,28 @@ msgstr "Uključeno" msgid "Off" msgstr "Isključeno" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video zapis" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Odaberite format koji želite koristiti:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Svojstva" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Unos objekta" diff --git a/po/hu.po b/po/hu.po index 1f5bd7d6f78..c8ea090ec13 100644 --- a/po/hu.po +++ b/po/hu.po @@ -362,7 +362,7 @@ msgstr "Varázsló" msgid "< &Back" msgstr "< &Előző" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Következő >" @@ -8619,6 +8619,28 @@ msgstr "Be" msgid "Off" msgstr "Ki" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "videó" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Válassza ki a használni kívánt formátumot:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Tulajdonságok" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Objektum beszúrása" diff --git a/po/it.po b/po/it.po index 294c2d3cfd6..3f6e7bdf382 100644 --- a/po/it.po +++ b/po/it.po @@ -368,7 +368,7 @@ msgstr "Procedura guidata" msgid "< &Back" msgstr "< &Indietro" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Avanti >" @@ -8688,6 +8688,28 @@ msgstr "On" msgid "Off" msgstr "Off" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "Video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Seleziona il formato che vuoi usare:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Proprietà" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Inserisci oggetto" diff --git a/po/ja.po b/po/ja.po index 5aa4b0b42d5..19c3d19b5d3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -349,7 +349,7 @@ msgstr "ウィザード" msgid "< &Back" msgstr "< 戻る(&B)" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "次へ(&N) >" @@ -8286,6 +8286,28 @@ msgstr "On" msgid "Off" msgstr "Off" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "ビデオ" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "形式を選択してください:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "プロパティ" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "オブジェクトの挿入" diff --git a/po/ko.po b/po/ko.po index cd7833e682f..11c02c3e4f8 100644 --- a/po/ko.po +++ b/po/ko.po @@ -346,7 +346,7 @@ msgstr "마법사" msgid "< &Back" msgstr "< 뒤로(&B)" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "다음(&N) >" @@ -8273,6 +8273,28 @@ msgstr "작동" msgid "Off" msgstr "비작동" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "비디오" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "사용할 파일 형식 선택:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "속성" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "객체 삽입" diff --git a/po/lt.po b/po/lt.po index bf7ac4d2463..76eae14623b 100644 --- a/po/lt.po +++ b/po/lt.po @@ -348,7 +348,7 @@ msgstr "Vediklis" msgid "< &Back" msgstr "< &Atgal" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Toliau >" @@ -8296,6 +8296,28 @@ msgstr "Įjungta" msgid "Off" msgstr "Išjungta" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "vaizdas" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Išrinkite formatą, kurį norite naudoti:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Savybės" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Įterpti objektą" diff --git a/po/ml.po b/po/ml.po index 96924cbcc3f..bd815a30db3 100644 --- a/po/ml.po +++ b/po/ml.po @@ -331,7 +331,7 @@ msgstr "" msgid "< &Back" msgstr "< തിരികെ (&B)" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8191,6 +8191,25 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "വീഡിയോ" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "വി_വരം" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/nb_NO.po b/po/nb_NO.po index f634d325536..083c3e11cdc 100644 --- a/po/nb_NO.po +++ b/po/nb_NO.po @@ -347,7 +347,7 @@ msgstr "Veiviser" msgid "< &Back" msgstr "< Til&bake" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Neste >" @@ -8449,6 +8449,28 @@ msgstr "På" msgid "Off" msgstr "Av" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Velg formatet du ønsker å bruke:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Egenskaper" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Sett inn objekt" diff --git a/po/nl.po b/po/nl.po index a8de23d5810..62195d44e3e 100644 --- a/po/nl.po +++ b/po/nl.po @@ -352,7 +352,7 @@ msgstr "Assistent" msgid "< &Back" msgstr "< &Vorige" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "Volge&nde >" @@ -8662,6 +8662,28 @@ msgstr "Aan" msgid "Off" msgstr "Uit" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Selecteer het formaat dat u wilt gebruiken:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Eigenschappen" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Object invoegen" diff --git a/po/or.po b/po/or.po index ab4b4344bc1..debff999c93 100644 --- a/po/or.po +++ b/po/or.po @@ -329,7 +329,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8183,6 +8183,23 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "ସୂଚନା (&o)" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/pa.po b/po/pa.po index 3d1e12561bb..4e0a211caf1 100644 --- a/po/pa.po +++ b/po/pa.po @@ -329,7 +329,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8183,6 +8183,23 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "ਜਾਣਕਾਰੀ(&o)" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/pl.po b/po/pl.po index 1b56e786751..b4eafd82d8b 100644 --- a/po/pl.po +++ b/po/pl.po @@ -356,7 +356,7 @@ msgstr "Kreator" msgid "< &Back" msgstr "< &Wstecz" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Naprzód >" @@ -8491,6 +8491,28 @@ msgstr "Włączone" msgid "Off" msgstr "Wyłączone" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "obraz" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Wybierz format, którego chcesz użyć:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Właściwości" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Wstaw obiekt" diff --git a/po/pt_BR.po b/po/pt_BR.po index 0e7592890dc..1366b1c33ce 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -350,7 +350,7 @@ msgstr "Assistente" msgid "< &Back" msgstr "< &Voltar" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Avançar >" @@ -8310,6 +8310,28 @@ msgstr "Ligado" msgid "Off" msgstr "Desligado" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "vídeo" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Selecione o formato que deseja utilizar:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Propriedades" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Inserir objeto" diff --git a/po/pt_PT.po b/po/pt_PT.po index c07b8865183..2b724506150 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -362,7 +362,7 @@ msgstr "Assistente" msgid "< &Back" msgstr "< &Voltar" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Seguinte >" @@ -8466,6 +8466,28 @@ msgstr "Ligado" msgid "Off" msgstr "Desligado" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "vídeo" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Seleccione o formato que deseja utilizar:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Propriedades" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Inserir objecto" diff --git a/po/rm.po b/po/rm.po index 05208212d48..8ef447e7098 100644 --- a/po/rm.po +++ b/po/rm.po @@ -333,7 +333,7 @@ msgstr "" msgid "< &Back" msgstr "&Inavo" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8246,6 +8246,22 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +msgid "Data Link Properties" +msgstr "" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/ro.po b/po/ro.po index 90178cd8e5d..03a32a5ce0a 100644 --- a/po/ro.po +++ b/po/ro.po @@ -337,7 +337,7 @@ msgstr "Expert" msgid "< &Back" msgstr "< &Înapoi" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Următor >" @@ -8553,6 +8553,28 @@ msgstr "Activat" msgid "Off" msgstr "Dezactivat" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Selectați formatul pe care doriți să îl utilizați:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Proprietăți" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Inserare obiect" diff --git a/po/ru.po b/po/ru.po index 4700b3d84f0..3292c450d0f 100644 --- a/po/ru.po +++ b/po/ru.po @@ -350,7 +350,7 @@ msgstr "Мастер" msgid "< &Back" msgstr "< &Назад" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Далее >" @@ -8337,6 +8337,28 @@ msgstr "Включено" msgid "Off" msgstr "Выключено" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "видео" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Выберите формат для экспорта:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Сво&йства" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Вставить объект" diff --git a/po/si.po b/po/si.po index 73284ea5d3f..f79e6519873 100644 --- a/po/si.po +++ b/po/si.po @@ -348,7 +348,7 @@ msgstr "විශාරද" msgid "< &Back" msgstr "< ආපසු (&B)" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "ඊළඟ (&N) >" @@ -8247,6 +8247,28 @@ msgstr "" msgid "Off" msgstr "ඕෆ්" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "වීඩියෝ" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "ඔබට පාවිච්චි කරන්න ඕනේ ආකෘතිය තෝරන්න:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "ගුණාංග" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "වස්තුව ඇතුළු කරන්න" diff --git a/po/sk.po b/po/sk.po index 72365b2dcb3..3cf22943a19 100644 --- a/po/sk.po +++ b/po/sk.po @@ -368,7 +368,7 @@ msgstr "Sprievodca" msgid "< &Back" msgstr "< &Naspäť" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Ďalej >" @@ -8473,6 +8473,29 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Vlastnosti\n" +"#-#-#-#-# sk.po (Wine) #-#-#-#-#\n" +"&Properties" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/sl.po b/po/sl.po index 44a4d7f9d89..600c53e0d0f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -367,7 +367,7 @@ msgstr "Čarovnik" msgid "< &Back" msgstr "< Na&zaj" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Naprej >" @@ -8680,6 +8680,28 @@ msgstr "Vključeno" msgid "Off" msgstr "Izključeno" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Izberite obliko, ki jo želite uporabiti:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Lastnosti" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Vstavi predmet" diff --git a/po/sr_RS@cyrillic.po b/po/sr_RS@cyrillic.po index e86af4f68ab..4ab782cbc57 100644 --- a/po/sr_RS@cyrillic.po +++ b/po/sr_RS@cyrillic.po @@ -354,7 +354,7 @@ msgstr "Водич" msgid "< &Back" msgstr "< &Назад" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Напред >" @@ -8730,6 +8730,26 @@ msgstr "Укључено" msgid "Off" msgstr "Искључено" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "видео запис" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Својства" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Унос објекта" diff --git a/po/sr_RS@latin.po b/po/sr_RS@latin.po index 2acd124d7ab..ef9a2487142 100644 --- a/po/sr_RS@latin.po +++ b/po/sr_RS@latin.po @@ -359,7 +359,7 @@ msgstr "Vodič" msgid "< &Back" msgstr "< &Nazad" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Napred >" @@ -8846,6 +8846,26 @@ msgstr "Uključeno" msgid "Off" msgstr "Isključeno" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video zapis" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Svojstva" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Unos objekta" diff --git a/po/sv.po b/po/sv.po index a5d8813553f..5953fd569db 100644 --- a/po/sv.po +++ b/po/sv.po @@ -349,7 +349,7 @@ msgstr "Guide" msgid "< &Back" msgstr "< &Föregående" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Nästa >" @@ -8472,6 +8472,28 @@ msgstr "På" msgid "Off" msgstr "Av" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Välj formatet du vill använda:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Egenskaper" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Infoga objekt" diff --git a/po/ta.po b/po/ta.po index 7b2f4ab842c..e0e0a01198c 100644 --- a/po/ta.po +++ b/po/ta.po @@ -325,7 +325,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8129,6 +8129,24 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "காணொளி" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +msgid "Data Link Properties" +msgstr "" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/te.po b/po/te.po index cf7cf063070..8c59f49b2ad 100644 --- a/po/te.po +++ b/po/te.po @@ -329,7 +329,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8183,6 +8183,23 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "సమాచారము (&o)" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/th.po b/po/th.po index aaa0eb7aea5..e86f3805861 100644 --- a/po/th.po +++ b/po/th.po @@ -332,7 +332,7 @@ msgstr "" msgid "< &Back" msgstr "< ย้อนกลับ" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "ต่อไป >" @@ -8386,6 +8386,23 @@ msgstr "เปิด" msgid "Off" msgstr "ปิด" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "ปรับแต่งนาฬิกา" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/tr.po b/po/tr.po index f8b9ac4fa7c..c6fb720f877 100644 --- a/po/tr.po +++ b/po/tr.po @@ -349,7 +349,7 @@ msgstr "Sihirbazı" msgid "< &Back" msgstr "< &Geri" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&İleri >" @@ -8450,6 +8450,28 @@ msgstr "Açık" msgid "Off" msgstr "Kapalı" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "video" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Kullanmak istediğiniz biçimi seçin:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Özellikler" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Nesne Ekle" diff --git a/po/uk.po b/po/uk.po index bd3775d1c0f..ac0d44e0ec9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -344,7 +344,7 @@ msgstr "Майстер" msgid "< &Back" msgstr "< &Назад" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "&Далі >" @@ -8377,6 +8377,28 @@ msgstr "Ввімкнено" msgid "Off" msgstr "Вимкнено" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "відео" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "Виберіть формат, який ви хочете використати:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "Властивості" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "Вставка об'єкта" diff --git a/po/wa.po b/po/wa.po index 0d4979c27cc..08579e3fc56 100644 --- a/po/wa.po +++ b/po/wa.po @@ -338,7 +338,7 @@ msgstr "" msgid "< &Back" msgstr "Èn &Erî" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8297,6 +8297,23 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +#, fuzzy +msgid "Data Link Properties" +msgstr "&Propietés" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/wine.pot b/po/wine.pot index 0e724100679..fe23acd8e6a 100644 --- a/po/wine.pot +++ b/po/wine.pot @@ -320,7 +320,7 @@ msgstr "" msgid "< &Back" msgstr "" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "" @@ -8120,6 +8120,22 @@ msgstr "" msgid "Off" msgstr "" +#: version.rc:42 +msgid "Provider" +msgstr "" + +#: version.rc:45 +msgid "Select the data you want to connect to:" +msgstr "" + +#: version.rc:36 +msgid "Data Link Properties" +msgstr "" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index afa4207de1d..c24efe066ea 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -335,7 +335,7 @@ msgstr "向导" msgid "< &Back" msgstr "< 上一步(&B)" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "下一步(&N) >" @@ -8233,6 +8233,28 @@ msgstr "开" msgid "Off" msgstr "关" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "视频" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "选择您希望使用的格式:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "属性" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "插入对象" diff --git a/po/zh_TW.po b/po/zh_TW.po index 6a0e18b984a..146fc145313 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -338,7 +338,7 @@ msgstr "精靈" msgid "< &Back" msgstr "< 上一步(&B)" -#: comctl32.rc:85 +#: comctl32.rc:85 version.rc:47 msgid "&Next >" msgstr "下一步(&N) >" @@ -8555,6 +8555,28 @@ msgstr "開" msgid "Off" msgstr "關" +#: version.rc:42 +#, fuzzy +#| msgid "video" +msgid "Provider" +msgstr "視訊" + +#: version.rc:45 +#, fuzzy +#| msgid "Select the format you want to use:" +msgid "Select the data you want to connect to:" +msgstr "請選擇您要使用的格式:" + +#: version.rc:36 +#, fuzzy +#| msgid "Properties" +msgid "Data Link Properties" +msgstr "屬性" + +#: version.rc:37 +msgid "OLE DB Provider(s)" +msgstr "" + #: oledlg.rc:55 msgid "Insert Object" msgstr "插入物件"