Commit 91c1c05f authored by Shaun Ren's avatar Shaun Ren Committed by Alexandre Julliard

ir50_32: Add stub dll.

parent a958b5ae
......@@ -1162,6 +1162,7 @@ enable_inkobj
enable_inseng
enable_iphlpapi
enable_iprop
enable_ir50_32
enable_irprops_cpl
enable_itircl
enable_itss
......@@ -21281,6 +21282,7 @@ wine_fn_config_makefile dlls/inseng enable_inseng
wine_fn_config_makefile dlls/iphlpapi enable_iphlpapi
wine_fn_config_makefile dlls/iphlpapi/tests enable_tests
wine_fn_config_makefile dlls/iprop enable_iprop
wine_fn_config_makefile dlls/ir50_32 enable_ir50_32
wine_fn_config_makefile dlls/irprops.cpl enable_irprops_cpl
wine_fn_config_makefile dlls/itircl enable_itircl
wine_fn_config_makefile dlls/itss enable_itss
......
......@@ -2653,6 +2653,7 @@ WINE_CONFIG_MAKEFILE(dlls/inseng)
WINE_CONFIG_MAKEFILE(dlls/iphlpapi)
WINE_CONFIG_MAKEFILE(dlls/iphlpapi/tests)
WINE_CONFIG_MAKEFILE(dlls/iprop)
WINE_CONFIG_MAKEFILE(dlls/ir50_32)
WINE_CONFIG_MAKEFILE(dlls/irprops.cpl)
WINE_CONFIG_MAKEFILE(dlls/itircl)
WINE_CONFIG_MAKEFILE(dlls/itss)
......
MODULE = ir50_32.dll
IMPORTS = user32
C_SRCS = \
ir50.c
RC_SRCS = ir50_32.rc
/*
* Intel Indeo 5 Video Decoder
* Copyright 2023 Shaun Ren for CodeWeavers
*
* 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 <stdarg.h>
#include <stdlib.h>
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winuser.h"
#include "commdlg.h"
#include "vfw.h"
#include "ir50_private.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(ir50_32);
static HINSTANCE IR50_32_hModule;
#define IV50_MAGIC mmioFOURCC('I','V','5','0')
static LRESULT
IV50_Open( const ICINFO *icinfo )
{
FIXME("DRV_OPEN %p\n", icinfo);
return 0;
}
static LRESULT
IV50_DecompressQuery( LPBITMAPINFO in, LPBITMAPINFO out )
{
FIXME("ICM_DECOMPRESS_QUERY %p %p\n", in, out);
return ICERR_UNSUPPORTED;
}
static LRESULT
IV50_DecompressGetFormat( LPBITMAPINFO in, LPBITMAPINFO out )
{
FIXME("ICM_DECOMPRESS_GETFORMAT %p %p\n", in, out);
return ICERR_UNSUPPORTED;
}
static LRESULT IV50_DecompressBegin( IMFTransform *decoder, LPBITMAPINFO in, LPBITMAPINFO out )
{
FIXME("ICM_DECOMPRESS_BEGIN %p %p %p\n", decoder, in, out);
return ICERR_UNSUPPORTED;
}
static LRESULT IV50_Decompress( IMFTransform *decoder, ICDECOMPRESS *icd, DWORD size )
{
FIXME("ICM_DECOMPRESS %p %p %lu\n", decoder, icd, size);
return ICERR_UNSUPPORTED;
}
static LRESULT IV50_GetInfo( ICINFO *icinfo, DWORD dwSize )
{
FIXME("ICM_GETINFO %p %lu\n", icinfo, dwSize);
return ICERR_UNSUPPORTED;
}
/***********************************************************************
* DriverProc (IR50_32.@)
*/
LRESULT WINAPI IV50_DriverProc( DWORD_PTR dwDriverId, HDRVR hdrvr, UINT msg,
LPARAM lParam1, LPARAM lParam2 )
{
IMFTransform *decoder = (IMFTransform *) dwDriverId;
LRESULT r = ICERR_UNSUPPORTED;
TRACE("%Id %p %04x %08Ix %08Ix\n", dwDriverId, hdrvr, msg, lParam1, lParam2);
switch( msg )
{
case DRV_LOAD:
TRACE("DRV_LOAD\n");
r = 1;
break;
case DRV_OPEN:
r = IV50_Open((ICINFO *)lParam2);
break;
case DRV_CLOSE:
FIXME("DRV_CLOSE\n");
break;
case DRV_ENABLE:
case DRV_DISABLE:
case DRV_FREE:
break;
case ICM_GETINFO:
r = IV50_GetInfo( (ICINFO *) lParam1, (DWORD) lParam2 );
break;
case ICM_DECOMPRESS_QUERY:
r = IV50_DecompressQuery( (LPBITMAPINFO) lParam1, (LPBITMAPINFO) lParam2 );
break;
case ICM_DECOMPRESS_GET_FORMAT:
r = IV50_DecompressGetFormat( (LPBITMAPINFO) lParam1, (LPBITMAPINFO) lParam2 );
break;
case ICM_DECOMPRESS_GET_PALETTE:
FIXME("ICM_DECOMPRESS_GET_PALETTE\n");
break;
case ICM_DECOMPRESS:
r = IV50_Decompress( decoder, (ICDECOMPRESS *) lParam1, (DWORD) lParam2 );
break;
case ICM_DECOMPRESS_BEGIN:
r = IV50_DecompressBegin( decoder, (LPBITMAPINFO) lParam1, (LPBITMAPINFO) lParam2 );
break;
case ICM_DECOMPRESS_END:
r = ICERR_UNSUPPORTED;
break;
case ICM_DECOMPRESSEX_QUERY:
FIXME("ICM_DECOMPRESSEX_QUERY\n");
break;
case ICM_DECOMPRESSEX:
FIXME("ICM_DECOMPRESSEX\n");
break;
case ICM_COMPRESS_QUERY:
r = ICERR_BADFORMAT;
/* fall through */
case ICM_COMPRESS_GET_FORMAT:
case ICM_COMPRESS_END:
case ICM_COMPRESS:
FIXME("compression not implemented\n");
break;
case ICM_CONFIGURE:
break;
default:
FIXME("Unknown message: %04x %Id %Id\n", msg, lParam1, lParam2);
}
return r;
}
/***********************************************************************
* DllMain
*/
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD dwReason, LPVOID lpReserved)
{
TRACE("(%p,%lu,%p)\n", hModule, dwReason, lpReserved);
switch (dwReason)
{
case DLL_PROCESS_ATTACH:
DisableThreadLibraryCalls(hModule);
IR50_32_hModule = hModule;
break;
}
return TRUE;
}
/*
* Copyright 2023 Shaun Ren for CodeWeavers
*
* 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 "ir50_private.h"
#pragma makedep po
LANGUAGE LANG_ENGLISH, SUBLANG_DEFAULT
STRINGTABLE
{
IDS_NAME "Indeo5"
IDS_DESCRIPTION "Indeo Video Interactive version 5 video codec"
}
@ stdcall -private DriverProc(long long long long long) IV50_DriverProc
/*
* Copyright 2023 Shaun Ren for CodeWeavers
*
* 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
*/
#ifndef __IR50_PRIVATE_H
#define __IR50_PRIVATE_H
#include <windef.h>
#define COBJMACROS
#include "mfapi.h"
#include "mferror.h"
#include "mfobjects.h"
#include "mfidl.h"
#include "mftransform.h"
#define IDS_NAME 100
#define IDS_DESCRIPTION 101
#endif /* __IR50_PRIVATE_H */
......@@ -3732,6 +3732,18 @@ msgstr "زائد"
msgid "High"
msgstr "عالي"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "الفهرس"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "ترميز واين المرئي الأول"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "مقابض اللعب"
......
......@@ -3626,6 +3626,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3744,6 +3744,16 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
msgid "Indeo5"
msgstr "&Съдържание"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine MS-RLE видео кодек"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3724,6 +3724,18 @@ msgstr "Elevat"
msgid "High"
msgstr "Alt"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Índex"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Còdec de vídeo Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Palanques de control"
......
......@@ -3681,6 +3681,18 @@ msgstr "Zvýšená"
msgid "High"
msgstr "Vysoká"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Rejstřík"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Videokodek Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Pákové ovladače"
......
......@@ -3763,6 +3763,18 @@ msgstr "Øget"
msgid "High"
msgstr "&Høj"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Indeks"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 videokodeks"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3714,6 +3714,18 @@ msgstr "Erhöht"
msgid "High"
msgstr "Hoch"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Index"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine-Video-1-Videocodec"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3661,6 +3661,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3707,6 +3707,14 @@ msgstr "Increased"
msgid "High"
msgstr "High"
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr "Indeo5"
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Indeo Video Interactive version 5 video codec"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3707,6 +3707,14 @@ msgstr "Increased"
msgid "High"
msgstr "High"
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr "Indeo5"
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Indeo Video Interactive version 5 video codec"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3649,6 +3649,16 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Indekso"
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3727,6 +3727,18 @@ msgstr "Aumentada"
msgid "High"
msgstr "Alta"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Índice"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Códec de vídeo Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Comando de juego"
......
......@@ -3692,6 +3692,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3701,6 +3701,18 @@ msgstr "Korotettu"
msgid "High"
msgstr "Korkea"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Sisällys"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Winen Video 1 -videokoodekki"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joystickit"
......
......@@ -3732,6 +3732,18 @@ msgstr "Augmentée"
msgid "High"
msgstr "Haute"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Index"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Codec vidéo Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3727,6 +3727,18 @@ msgstr "מוגברת"
msgid "High"
msgstr "גבוהה"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "מפתח"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "מקודד הווידאו Video 1 של Wine"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3625,6 +3625,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3737,6 +3737,18 @@ msgstr "Povećane"
msgid "High"
msgstr "Visoke"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Indeks"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 video codec"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joystici"
......
......@@ -3779,6 +3779,18 @@ msgstr "Megnövelt"
msgid "High"
msgstr "Magas"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "&Témakörök"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 video kodek"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3787,6 +3787,18 @@ msgstr "Aumentato"
msgid "High"
msgstr "Alta"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Indice"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Codec Video Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3699,6 +3699,18 @@ msgstr "中高"
msgid "High"
msgstr "高"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "索引"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine ビデオ 1 ビデオコーデック"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "ジョイスティック"
......
......@@ -3689,6 +3689,18 @@ msgstr "증가"
msgid "High"
msgstr "높음"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "인덱스"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine 비디오 1 비디오 코덱"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "조이스틱"
......
......@@ -3710,6 +3710,18 @@ msgstr "Padidintos"
msgid "High"
msgstr "Aukštos"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Indeksas"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "„Wine“ Video 1 vaizdo kodekas"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Vairasvirtės"
......
......@@ -3627,6 +3627,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3715,6 +3715,18 @@ msgstr "Økt"
msgid "High"
msgstr "Høy"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Innhold"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 videokodeks"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Styrespaker"
......
......@@ -3720,6 +3720,18 @@ msgstr "Verhoogd"
msgid "High"
msgstr "Hoog"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Index"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 video codec"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3625,6 +3625,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3625,6 +3625,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3726,6 +3726,18 @@ msgstr "Wysoki"
msgid "High"
msgstr "Najwyższy"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Indeks"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Kodek Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticki"
......
......@@ -3722,6 +3722,18 @@ msgstr "Elevada"
msgid "High"
msgstr "Alta"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Índice"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Codec de vídeo Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Controles"
......
......@@ -3763,6 +3763,18 @@ msgstr "Aumentada"
msgid "High"
msgstr "Alta"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Índice"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "codec video Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3653,6 +3653,15 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
msgid "Indeo5"
msgstr "&Cuntgn�"
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3720,6 +3720,18 @@ msgstr "Mărit"
msgid "High"
msgstr "Înalt"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Index"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Codecul video Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joystick-uri"
......
......@@ -3725,6 +3725,18 @@ msgstr "Повышенный"
msgid "High"
msgstr "Высокий"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Указатель"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Видео кодек Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Джойстики"
......
......@@ -3652,6 +3652,18 @@ msgstr ""
msgid "High"
msgstr "වැඩි"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "දර්ශකය"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine වීඩියෝ 1 වීඩියෝ කොඩෙක්"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "නියාමක යටි"
......
......@@ -3694,6 +3694,16 @@ msgstr "Zvýšené"
msgid "High"
msgstr "Vysoké"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Obsah"
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3781,6 +3781,18 @@ msgstr "Povečano"
msgid "High"
msgstr "Visoka"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Kazalo"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 video kodek"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3762,6 +3762,17 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
msgid "Indeo5"
msgstr "&Попис"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 видео кодек"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3846,6 +3846,18 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Index"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 video kodek"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3742,6 +3742,18 @@ msgstr "Ökad"
msgid "High"
msgstr "Hög"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Index"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 videokodek"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Joysticks"
......
......@@ -3637,6 +3637,16 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine வீடியோ 1 வீடியோ கோடெக்"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3625,6 +3625,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3680,6 +3680,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3716,6 +3716,18 @@ msgstr "Arttırılmış"
msgid "High"
msgstr "Yüksek"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "İçindekiler"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 video çözücü"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Oyun Kolları"
......
......@@ -3713,6 +3713,18 @@ msgstr "Збільшені"
msgid "High"
msgstr "Високі"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "Вказівник"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Відео кодек Wine Video 1"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "Джойстик"
......
......@@ -3688,6 +3688,15 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
msgid "Indeo5"
msgstr "Å&dvins"
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3580,6 +3580,14 @@ msgstr ""
msgid "High"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:28
msgid "Indeo5"
msgstr ""
#: dlls/ir50_32/ir50_32.rc:29
msgid "Indeo Video Interactive version 5 video codec"
msgstr ""
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr ""
......
......@@ -3657,6 +3657,18 @@ msgstr "较高"
msgid "High"
msgstr "高"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "索引"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine Video 1 视频编解码器"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "操纵杆"
......
......@@ -3663,6 +3663,18 @@ msgstr "稍高"
msgid "High"
msgstr "高"
#: dlls/ir50_32/ir50_32.rc:28
#, fuzzy
#| msgid "Index"
msgid "Indeo5"
msgstr "索引"
#: dlls/ir50_32/ir50_32.rc:29
#, fuzzy
#| msgid "Wine Video 1 video codec"
msgid "Indeo Video Interactive version 5 video codec"
msgstr "Wine 視訊 1 視訊編碼解碼器"
#: dlls/joy.cpl/joy.rc:37
msgid "Joysticks"
msgstr "搖桿"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment