Commit d125a281 authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit 11.0.1 upon wine-1.4

parent fe6c7d88
Wine version 1.4-rc5
Wine version 1.4
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for Wine 1.4-rc5.
# Generated by GNU Autoconf 2.68 for Wine 1.4.
#
# Report bugs to <wine-devel@winehq.org>.
#
......@@ -560,8 +560,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='Wine'
PACKAGE_TARNAME='wine'
PACKAGE_VERSION='1.4-rc5'
PACKAGE_STRING='Wine 1.4-rc5'
PACKAGE_VERSION='1.4'
PACKAGE_STRING='Wine 1.4'
PACKAGE_BUGREPORT='wine-devel@winehq.org'
PACKAGE_URL='http://www.winehq.org'
......@@ -1384,7 +1384,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures Wine 1.4-rc5 to adapt to many kinds of systems.
\`configure' configures Wine 1.4 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
......@@ -1453,7 +1453,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Wine 1.4-rc5:";;
short | recursive ) echo "Configuration of Wine 1.4:";;
esac
cat <<\_ACEOF
......@@ -1598,7 +1598,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
Wine configure 1.4-rc5
Wine configure 1.4
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
......@@ -2116,7 +2116,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Wine $as_me 1.4-rc5, which was
It was created by Wine $as_me 1.4, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
......@@ -16243,7 +16243,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by Wine $as_me 1.4-rc5, which was
This file was extended by Wine $as_me 1.4, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
......@@ -16314,7 +16314,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
Wine config.status 1.4-rc5
Wine config.status 1.4
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"
......
......@@ -3381,9 +3381,9 @@ BOOL WINAPI GetCharABCWidthsFloatW( HDC hdc, UINT first, UINT last, LPABCFLOAT a
/* convert device units to logical */
for (i = first; i <= last; i++, abcf++)
{
abcf->abcfA = abc->abcA * dc->xformVport2World.eM11;
abcf->abcfB = abc->abcB * dc->xformVport2World.eM11;
abcf->abcfC = abc->abcC * dc->xformVport2World.eM11;
abcf->abcfA = abc[i - first].abcA * dc->xformVport2World.eM11;
abcf->abcfB = abc[i - first].abcB * dc->xformVport2World.eM11;
abcf->abcfC = abc[i - first].abcC * dc->xformVport2World.eM11;
}
}
HeapFree( GetProcessHeap(), 0, abc );
......
......@@ -573,6 +573,51 @@ static void test_ImmGetContext(void)
ok(ImmReleaseContext(hwnd, himc), "ImmReleaseContext failed\n");
}
static void test_ImmGetDescription(void)
{
HKL hkl;
WCHAR japime[] = { 'E', '0', '0', '1', '0', '4', '1', '1', 0 };
WCHAR descW[100];
CHAR descA[100];
UINT ret, lret;
/* FIXME: invalid keyboard layouts should not pass */
ret = ImmGetDescriptionW(NULL, NULL, 0);
todo_wine ok(!ret, "ImmGetDescriptionW failed, expected 0 received %d.\n", ret);
/* load a language with valid IMM descriptions */
hkl = LoadKeyboardLayoutW(japime, KLF_ACTIVATE);
todo_wine ok(hkl != 0, "LoadKeyboardLayoutW failed, expected != 0.\n");
ret = ImmGetDescriptionW(hkl, NULL, 0);
if(!ret)
{
win_skip("ImmGetDescriptionW is not working for current loaded keyboard.\n");
return;
}
ret = ImmGetDescriptionW(hkl, descW, 0);
ok(ret, "ImmGetDescriptionW failed, expected != 0 received 0.\n");
lret = ImmGetDescriptionW(hkl, descW, ret + 1);
ok(lret, "ImmGetDescriptionW failed, expected != 0 received 0.\n");
ok(lret == ret, "ImmGetDescriptionW failed to return the correct amount of data. Expected %d, got %d.\n", ret, lret);
lret = ImmGetDescriptionA(hkl, descA, ret + 1);
ok(lret, "ImmGetDescriptionA failed, expected != 0 received 0.\n");
todo_wine ok(lret == ret, "ImmGetDescriptionA failed to return the correct amount of data. Expected %d, got %d.\n", ret, lret);
ret /= 2; /* try to copy partially */
lret = ImmGetDescriptionW(hkl, descW, ret + 1);
ok(lret, "ImmGetDescriptionW failed, expected != 0 received 0.\n");
ok(lret == ret, "ImmGetDescriptionW failed to return the correct amount of data. Expected %d, got %d.\n", ret, lret);
ret = ImmGetDescriptionW(hkl, descW, 1);
ok(!ret, "ImmGetDescriptionW failed, expected 0 received %d.\n", ret);
UnloadKeyboardLayout(hkl);
}
START_TEST(imm32) {
if (init())
{
......@@ -584,6 +629,7 @@ START_TEST(imm32) {
test_ImmThreads();
test_ImmIsUIMessage();
test_ImmGetContext();
test_ImmGetDescription();
}
cleanup();
}
......@@ -82,7 +82,7 @@ static void test_capture(IAudioClient *ac, HANDLE handle, WAVEFORMATEX *wfx)
HRESULT hr;
UINT32 frames, next, pad, sum = 0;
BYTE *data;
DWORD flags;
DWORD flags, r;
UINT64 pos, qpc;
REFERENCE_TIME period;
......@@ -413,8 +413,35 @@ static void test_capture(IAudioClient *ac, HANDLE handle, WAVEFORMATEX *wfx)
/* Some w7 machines signal DATA_DISCONTINUITY here following the
* previous AUDCLNT_S_BUFFER_EMPTY, others not. What logic? */
ok(pos >= sum, "Position %u gap %d\n", (UINT)pos, (UINT)pos - sum);
IAudioCaptureClient_ReleaseBuffer(acc, frames);
}
hr = IAudioClient_Stop(ac);
ok(hr == S_OK, "Stop failed: %08x\n", hr);
ok(ResetEvent(handle), "ResetEvent\n");
/* Still receiving events! */
r = WaitForSingleObject(handle, 20);
todo_wine ok(r == WAIT_OBJECT_0, "Wait(event) after Stop gave %x\n", r);
hr = IAudioClient_Reset(ac);
ok(hr == S_OK, "Reset failed: %08x\n", hr);
ok(ResetEvent(handle), "ResetEvent\n");
r = WaitForSingleObject(handle, 120);
todo_wine ok(r == WAIT_OBJECT_0, "Wait(event) after Reset gave %x\n", r);
hr = IAudioClient_SetEventHandle(ac, NULL);
ok(hr == E_INVALIDARG, "SetEventHandle(NULL) returns %08x\n", hr);
r = WaitForSingleObject(handle, 70);
todo_wine ok(r == WAIT_OBJECT_0, "Wait(NULL event) gave %x\n", r);
hr = IAudioClient_Start(ac);
ok(hr == S_OK, "Start failed: %08x\n", hr);
IUnknown_Release(acc);
}
......
......@@ -1220,7 +1220,7 @@ void fill_cpu_info(void)
NtCurrentTeb()->Peb->NumberOfProcessors = num;
len = sizeof(num);
if (!sysctlbyname("dev.cpu.0.freq", &num, &len, NULL, 0))
if (!sysctlbyname("hw.clockrate", &num, &len, NULL, 0))
cpuHz = num * 1000 * 1000;
}
#elif defined(__sun)
......
......@@ -6736,6 +6736,7 @@ static HRESULT surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *
const struct wined3d_format *src_format, *dst_format;
struct wined3d_surface *orig_src = src_surface;
struct wined3d_mapped_rect dst_map, src_map;
const BYTE *sbase = NULL;
HRESULT hr = WINED3D_OK;
const BYTE *sbuf;
RECT xdst,xsrc;
......@@ -6861,6 +6862,17 @@ static HRESULT surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *
dstwidth = xdst.right - xdst.left;
width = (xdst.right - xdst.left) * bpp;
if (src_surface)
sbase = (BYTE *)src_map.data
+ ((xsrc.top / src_format->block_height) * src_map.row_pitch)
+ ((xsrc.left / src_format->block_width) * src_format->block_byte_count);
if (dst_rect && src_surface != dst_surface)
dbuf = dst_map.data;
else
dbuf = (BYTE *)dst_map.data
+ ((xdst.top / dst_format->block_height) * dst_map.row_pitch)
+ ((xdst.left / dst_format->block_width) * dst_format->block_byte_count);
if (src_format->flags & dst_format->flags & WINED3DFMT_FLAG_BLOCKS)
{
TRACE("%s -> %s copy.\n", debug_d3dformat(src_format->id), debug_d3dformat(dst_format->id));
......@@ -6886,17 +6898,12 @@ static HRESULT surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *
goto release;
}
hr = surface_cpu_blt_compressed(src_map.data, dst_map.data,
hr = surface_cpu_blt_compressed(sbase, dbuf,
src_map.row_pitch, dst_map.row_pitch, dstwidth, dstheight,
src_format, flags, fx);
goto release;
}
if (dst_rect && src_surface != dst_surface)
dbuf = dst_map.data;
else
dbuf = (BYTE *)dst_map.data + (xdst.top * dst_map.row_pitch) + (xdst.left * bpp);
/* First, all the 'source-less' blits */
if (flags & WINEDDBLT_COLORFILL)
{
......@@ -6936,7 +6943,6 @@ static HRESULT surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *
/* Now the 'with source' blits. */
if (src_surface)
{
const BYTE *sbase;
int sx, xinc, sy, yinc;
if (!dstwidth || !dstheight) /* Hmm... stupid program? */
......@@ -6949,7 +6955,6 @@ static HRESULT surface_cpu_blt(struct wined3d_surface *dst_surface, const RECT *
FIXME("Filter %s not supported in software blit.\n", debug_d3dtexturefiltertype(filter));
}
sbase = (BYTE *)src_map.data + (xsrc.top * src_map.row_pitch) + xsrc.left * bpp;
xinc = (srcwidth << 16) / dstwidth;
yinc = (srcheight << 16) / dstheight;
......
......@@ -759,6 +759,7 @@ static void X11DRV_FocusOut( HWND hwnd, XEvent *xev )
if (!hwnd && event->window == x11drv_thread_data()->clip_window) reset_clipping_window();
return;
}
if (!hwnd) return;
if (ximInComposeMode) return;
x11drv_thread_data()->last_focus = hwnd;
......
......@@ -30,7 +30,7 @@ README縺ィ縺≧繝輔ぃ繧、繝ォ]繧貞性繧姥ine繧ス繝シ繧ケ縺ョ繝医ャ繝励Ξ繝吶Ν繝ぅ
Wineをコンパイルし実行するには、以下のうち一つを持っていなければなりません:
Linux バージョン2.0.36以上
FreeBSD 6.3以降
FreeBSD 7.0以降
Solaris x86 9以降
NetBSD-current
Mac OS X 10.4以降
......@@ -40,14 +40,8 @@ Wine繧偵さ繝ウ繝代う繝ォ縺怜ョ溯。後☆繧九↓縺ッ縲∽サ・荳九縺■荳縺、繧呈戟縺」縺ヲ
カーネルスレッドをサポートする他のオペレーティングシステムは
将来サポートされるかもしれません。
Linux情報:
Linux 2.2.xでまだ動作するはずであり、Linux2.0.xでまだ動作する
かもしれないとはいえ(古い2.0.xバージョンにはスレッド関連のクラッシュが
あります)、2.4.xや2.6.xのような現在のカーネルを使うことが最適です。
FreeBSD情報:
FreeBSD 6.3や7.0より前のバージョン上でWineは次第に正しく動作しなくなるで
しょう。FreeBSD 6.3にはWineを実行できるようにするパッチが利用できます。
Wineは一般的にFreeBSD 7.0より前のバージョン上で正しく動作しないでしょう。
詳細については<http://wiki.freebsd.org/Wine>を参照してください。
Solaris情報:
......@@ -68,9 +62,8 @@ Mac OS X諠ア:
サポートされたファイルシステム:
Wineはほとんどのファイルシステム上で動作するはずです。Sambaを通して
アクセスしたファイルを使っていくつかの互換性問題が報告されています。同様に、
NTFSはいくつかのアプリケーションで必要なすべてのファイルシステム情報を
提供しません。ext3のようなネイティブなLinuxファイルシステムを使うことが
推奨されます。
NTFSはいくつかのアプリケーションで必要なファイルシステム機能すべてを提供し
ていません。ネイティブなUnixファイルシステムを使うことが推奨されます。
基本的な要件:
X11開発includeファイルをインストールする必要があります。
......
......@@ -9031,13 +9031,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
#, fuzzy
msgid "%1: File Not Found\n"
msgstr "تعذّر إيجاد '%s'."
......@@ -9298,7 +9298,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9318,14 +9318,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9341,25 +9341,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9370,21 +9369,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9394,17 +9393,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9416,7 +9415,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9430,24 +9429,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9489,158 +9488,158 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
#, fuzzy
msgid "No help available for %1\n"
msgstr "معلومات"
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
#, fuzzy
msgid "Delete %1?"
msgstr "اح&ذف\tDel"
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -11042,59 +11041,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12806,8 +12760,8 @@ msgstr ""
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -9156,13 +9156,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
#, fuzzy
msgid "%1: File Not Found\n"
msgstr "Файлът не е намерен"
......@@ -9422,7 +9422,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9442,14 +9442,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9465,25 +9465,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9494,21 +9493,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9518,17 +9517,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9540,7 +9539,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9554,24 +9553,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9613,158 +9612,158 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
#, fuzzy
msgid "No help available for %1\n"
msgstr "Не е наличен; "
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
#, fuzzy
msgid "Delete %1?"
msgstr "Из&трий"
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -11200,59 +11199,14 @@ msgstr ""
"Записва цялото или част от съдържанието на системния регистър във текстов "
"файл"
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12991,8 +12945,8 @@ msgstr "Program Files"
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -9023,13 +9023,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
#, fuzzy
msgid "%1: File Not Found\n"
msgstr "Το αρχείο δε βρέθηκε"
......@@ -9289,7 +9289,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9309,14 +9309,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9332,25 +9332,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9361,21 +9360,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9385,17 +9384,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9407,7 +9406,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9421,24 +9420,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9480,157 +9479,157 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
#, fuzzy
msgid "No help available for %1\n"
msgstr "ΜΗ διαθέσιμος; "
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
msgid "Delete %1?"
msgstr ""
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -11023,59 +11022,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12775,8 +12729,8 @@ msgstr ""
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -9174,13 +9174,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
#, fuzzy
msgid "%1: File Not Found\n"
msgstr "Dosiero ne estis trovita"
......@@ -9446,7 +9446,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9466,14 +9466,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9489,25 +9489,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9518,21 +9517,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9542,17 +9541,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9564,7 +9563,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9578,24 +9577,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9637,158 +9636,158 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
#, fuzzy
msgid "No help available for %1\n"
msgstr "Ne disponebla; "
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
#, fuzzy
msgid "Delete %1?"
msgstr "Forigu\tDel"
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -11241,59 +11240,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -13037,8 +12991,8 @@ msgstr "Program Files"
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -9032,13 +9032,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
#, fuzzy
msgid "%1: File Not Found\n"
msgstr "'%s' پیدا نشد."
......@@ -9299,7 +9299,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9319,14 +9319,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9342,25 +9342,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9371,21 +9370,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9395,17 +9394,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9417,7 +9416,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9431,24 +9430,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9490,158 +9489,158 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
#, fuzzy
msgid "No help available for %1\n"
msgstr "اطلاعات"
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
#, fuzzy
msgid "Delete %1?"
msgstr "&حذف\tDel"
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -11043,59 +11042,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12807,8 +12761,8 @@ msgstr ""
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -8888,13 +8888,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
msgid "%1: File Not Found\n"
msgstr ""
......@@ -9154,7 +9154,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9174,14 +9174,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9197,25 +9197,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9226,21 +9225,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9250,17 +9249,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9272,7 +9271,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9286,24 +9285,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9345,156 +9344,156 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
msgid "No help available for %1\n"
msgstr ""
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
msgid "Delete %1?"
msgstr ""
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -10864,59 +10863,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12595,8 +12549,8 @@ msgstr "सूचना (&o)"
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -8888,13 +8888,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
msgid "%1: File Not Found\n"
msgstr ""
......@@ -9154,7 +9154,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9174,14 +9174,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9197,25 +9197,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9226,21 +9225,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9250,17 +9249,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9272,7 +9271,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9286,24 +9285,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9345,156 +9344,156 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
msgid "No help available for %1\n"
msgstr ""
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
msgid "Delete %1?"
msgstr ""
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -10864,59 +10863,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12595,8 +12549,8 @@ msgstr "വി_വരം"
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -8888,13 +8888,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
msgid "%1: File Not Found\n"
msgstr ""
......@@ -9154,7 +9154,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9174,14 +9174,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9197,25 +9197,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9226,21 +9225,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9250,17 +9249,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9272,7 +9271,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9286,24 +9285,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9345,156 +9344,156 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
msgid "No help available for %1\n"
msgstr ""
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
msgid "Delete %1?"
msgstr ""
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -10864,59 +10863,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12595,8 +12549,8 @@ msgstr "ସୂଚନା (&o)"
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
......@@ -8888,13 +8888,13 @@ msgstr ""
msgid "Referral hop limit exceeded"
msgstr ""
#: attrib.rc:27 cmd.rc:315
#: attrib.rc:27 cmd.rc:314
msgid ""
"Not Yet Implemented\n"
"\n"
msgstr ""
#: attrib.rc:28 cmd.rc:318
#: attrib.rc:28 cmd.rc:317
msgid "%1: File Not Found\n"
msgstr ""
......@@ -9154,7 +9154,7 @@ msgstr ""
msgid "RMDIR <dir> deletes a subdirectory.\n"
msgstr ""
#: cmd.rc:194
#: cmd.rc:193
msgid ""
"SET displays or changes the cmd environment variables.\n"
"\n"
......@@ -9174,14 +9174,14 @@ msgid ""
"not possible to affect the operating system environment from within cmd.\n"
msgstr ""
#: cmd.rc:199
#: cmd.rc:198
msgid ""
"SHIFT is used in a batch file to remove one parameter from the head of\n"
"the list, so parameter 2 becomes parameter 1 and so on. It has no effect\n"
"if called from the command line.\n"
msgstr ""
#: cmd.rc:176
#: cmd.rc:175 start.rc:39
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
......@@ -9197,25 +9197,24 @@ msgid ""
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
msgstr ""
#: cmd.rc:201
#: cmd.rc:200
msgid "TIME sets or shows the current system time.\n"
msgstr ""
#: cmd.rc:203
#: cmd.rc:202
msgid "TITLE <string> sets the window title for the cmd window.\n"
msgstr ""
#: cmd.rc:207
#: cmd.rc:206
msgid ""
"TYPE <filename> copies <filename> to the console device (or elsewhere\n"
"if redirected). No check is made that the file is readable text.\n"
msgstr ""
#: cmd.rc:216
#: cmd.rc:215
msgid ""
"VERIFY is used to set, clear or test the verify flag. Valid forms are:\n"
"\n"
......@@ -9226,21 +9225,21 @@ msgid ""
"The verify flag has no function in Wine.\n"
msgstr ""
#: cmd.rc:219
#: cmd.rc:218
msgid "VER displays the version of cmd you are running.\n"
msgstr ""
#: cmd.rc:221
#: cmd.rc:220
msgid "VOL shows the volume label of a disk device.\n"
msgstr ""
#: cmd.rc:225
#: cmd.rc:224
msgid ""
"ENDLOCAL ends localization of environment changes in a batch file\n"
"which were introduced by a preceding SETLOCAL.\n"
msgstr ""
#: cmd.rc:233
#: cmd.rc:232
msgid ""
"SETLOCAL starts localization of environment changes in a batch file.\n"
"\n"
......@@ -9250,17 +9249,17 @@ msgid ""
"settings are restored.\n"
msgstr ""
#: cmd.rc:236
#: cmd.rc:235
msgid ""
"PUSHD <directoryname> saves the current directory onto a\n"
"stack, and then changes the current directory to the supplied one.\n"
msgstr ""
#: cmd.rc:238
#: cmd.rc:237
msgid "POPD changes current directory to the last one saved with PUSHD.\n"
msgstr ""
#: cmd.rc:246
#: cmd.rc:245
msgid ""
"ASSOC shows or modifies file extension associations.\n"
"\n"
......@@ -9272,7 +9271,7 @@ msgid ""
"association, if any.\n"
msgstr ""
#: cmd.rc:257
#: cmd.rc:256
msgid ""
"FTYPE shows or modifies open commands associated with file types.\n"
"\n"
......@@ -9286,24 +9285,24 @@ msgid ""
"associated to the specified file type.\n"
msgstr ""
#: cmd.rc:259
#: cmd.rc:258
msgid "MORE displays output of files or piped input in pages.\n"
msgstr ""
#: cmd.rc:263
#: cmd.rc:262
msgid ""
"CHOICE displays a text and waits, until the User\n"
"presses an allowed Key from a selectable list.\n"
"CHOICE is mainly used to build a menu selection in a batch file.\n"
msgstr ""
#: cmd.rc:267
#: cmd.rc:266
msgid ""
"EXIT terminates the current command session and returns\n"
"to the operating system or shell from which you invoked cmd.\n"
msgstr ""
#: cmd.rc:305
#: cmd.rc:304
msgid ""
"CMD built-in commands are:\n"
"ASSOC\t\tShow or modify file extension associations\n"
......@@ -9345,156 +9344,156 @@ msgid ""
"Enter HELP <command> for further information on any of the above commands.\n"
msgstr ""
#: cmd.rc:307
#: cmd.rc:306
msgid "Are you sure?"
msgstr ""
#: cmd.rc:308 xcopy.rc:40
#: cmd.rc:307 xcopy.rc:40
msgctxt "Yes key"
msgid "Y"
msgstr ""
#: cmd.rc:309 xcopy.rc:41
#: cmd.rc:308 xcopy.rc:41
msgctxt "No key"
msgid "N"
msgstr ""
#: cmd.rc:310
#: cmd.rc:309
msgid "File association missing for extension %1\n"
msgstr ""
#: cmd.rc:311
#: cmd.rc:310
msgid "No open command associated with file type '%1'\n"
msgstr ""
#: cmd.rc:312
#: cmd.rc:311
msgid "Overwrite %1?"
msgstr ""
#: cmd.rc:313
#: cmd.rc:312
msgid "More..."
msgstr ""
#: cmd.rc:314
#: cmd.rc:313
msgid "Line in Batch processing possibly truncated. Using:\n"
msgstr ""
#: cmd.rc:316
#: cmd.rc:315
msgid "Argument missing\n"
msgstr ""
#: cmd.rc:317
#: cmd.rc:316
msgid "Syntax error\n"
msgstr ""
#: cmd.rc:319
#: cmd.rc:318
msgid "No help available for %1\n"
msgstr ""
#: cmd.rc:320
#: cmd.rc:319
msgid "Target to GOTO not found\n"
msgstr ""
#: cmd.rc:321
#: cmd.rc:320
msgid "Current Date is %1\n"
msgstr ""
#: cmd.rc:322
#: cmd.rc:321
msgid "Current Time is %1\n"
msgstr ""
#: cmd.rc:323
#: cmd.rc:322
msgid "Enter new date: "
msgstr ""
#: cmd.rc:324
#: cmd.rc:323
msgid "Enter new time: "
msgstr ""
#: cmd.rc:325
#: cmd.rc:324
msgid "Environment variable %1 not defined\n"
msgstr ""
#: cmd.rc:326 xcopy.rc:38
#: cmd.rc:325 xcopy.rc:38
msgid "Failed to open '%1'\n"
msgstr ""
#: cmd.rc:327
#: cmd.rc:326
msgid "Cannot call batch label outside of a batch script\n"
msgstr ""
#: cmd.rc:328 xcopy.rc:42
#: cmd.rc:327 xcopy.rc:42
msgctxt "All key"
msgid "A"
msgstr ""
#: cmd.rc:329
#: cmd.rc:328
msgid "Delete %1?"
msgstr ""
#: cmd.rc:330
#: cmd.rc:329
msgid "Echo is %1\n"
msgstr ""
#: cmd.rc:331
#: cmd.rc:330
msgid "Verify is %1\n"
msgstr ""
#: cmd.rc:332
#: cmd.rc:331
msgid "Verify must be ON or OFF\n"
msgstr ""
#: cmd.rc:333
#: cmd.rc:332
msgid "Parameter error\n"
msgstr ""
#: cmd.rc:334
#: cmd.rc:333
msgid ""
"Volume Serial Number is %1!04x!-%2!04x!\n"
"\n"
msgstr ""
#: cmd.rc:335
#: cmd.rc:334
msgid "Volume label (11 characters, <Enter> for none)?"
msgstr ""
#: cmd.rc:336
#: cmd.rc:335
msgid "PATH not found\n"
msgstr ""
#: cmd.rc:337
#: cmd.rc:336
msgid "Press any key to continue... "
msgstr ""
#: cmd.rc:338
#: cmd.rc:337
msgid "Wine Command Prompt"
msgstr ""
#: cmd.rc:339
#: cmd.rc:338
msgid "CMD Version %1!S!\n"
msgstr ""
#: cmd.rc:340
#: cmd.rc:339
msgid "More? "
msgstr ""
#: cmd.rc:341
#: cmd.rc:340
msgid "The input line is too long.\n"
msgstr ""
#: cmd.rc:342
#: cmd.rc:341
msgid "Volume in drive %1!c! is %2\n"
msgstr ""
#: cmd.rc:343
#: cmd.rc:342
msgid "Volume in drive %1!c! has no label.\n"
msgstr ""
#: cmd.rc:344
#: cmd.rc:343
msgid " (Yes|No)"
msgstr ""
#: cmd.rc:345
#: cmd.rc:344
msgid " (Yes|No|All)"
msgstr ""
......@@ -10864,59 +10863,14 @@ msgstr ""
msgid "Exports selected branch of the registry to a text file"
msgstr ""
#: start.rc:46
msgid ""
"Start a program, or open a document in the program normally used for files "
"with that suffix.\n"
"Usage:\n"
"start [options] program_filename [...]\n"
"start [options] document_filename\n"
"\n"
"Options:\n"
"/M[inimized] Start the program minimized.\n"
"/MAX[imized] Start the program maximized.\n"
"/R[estored] Start the program normally (neither minimized nor maximized).\n"
"/W[ait] Wait for started program to finish, then exit with its exit "
"code.\n"
"/Unix Use a Unix filename and start the file like windows explorer.\n"
"/ProgIDOpen Open a document using the following progID.\n"
"/L Show end-user license.\n"
"/? Display this help and exit.\n"
"\n"
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"Start comes with ABSOLUTELY NO WARRANTY; for details run with /L option.\n"
"This is free software, and you are welcome to redistribute it\n"
"under certain conditions; run 'start /L' for details.\n"
msgstr ""
#: start.rc:64
msgid ""
"start.exe version 0.2 Copyright (C) 2003, Dan Kegel\n"
"This program is free software; you can redistribute it and/or\n"
"modify it under the terms of the GNU Lesser Public License\n"
"as published by the Free Software Foundation; either version 2.1\n"
"of the License, or (at your option) any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
"GNU Lesser Public License for more details.\n"
"\n"
"You should have received a copy of the GNU Lesser Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.\n"
"\n"
"See the COPYING.LIB file for license information.\n"
msgstr ""
#: start.rc:66
#: start.rc:41
msgid ""
"Application could not be started, or no application associated with the "
"specified file.\n"
"ShellExecuteEx failed"
msgstr ""
#: start.rc:68
#: start.rc:43
msgid "Could not translate the specified Unix filename to a DOS filename."
msgstr ""
......@@ -12595,8 +12549,8 @@ msgstr "ਜਾਣਕਾਰੀ(&o)"
msgid ""
"If this problem is not present under Windows and has not been reported yet, "
"you can save the detailed information to a file using the \"Save As\" "
"button, then <a href=\"http://wiki.winehq.org/Bugs\">file a bug report</a> "
"and attach that file to the report."
"button, then <a href=\"http://www.codeweavers.com/support/tickets/enter/"
"\">file a bug report</a> and attach that file to the report."
msgstr ""
#: winedbg.rc:35
......
This source diff could not be displayed because it is too large. You can view the blob instead.
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