Module: wine
Branch: master
Commit: 62484719334cd76aa9c133ba894107639fb5ba53
URL: http://source.winehq.org/git/wine.git/?a=commit;h=62484719334cd76aa9c133ba8…
Author: Konstantin Kondratyuk <kondratyuk(a)etersoft.ru>
Date: Tue Oct 2 17:25:11 2007 +0400
net.exe: Add Russian resources.
---
programs/net/Ru.rc | 40 ++++++++++++++++++++++++++++++++++++++++
programs/net/rsrc.rc | 1 +
2 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/programs/net/Ru.rc b/programs/net/Ru.rc
new file mode 100644
index 0000000..17c2c81
--- /dev/null
+++ b/programs/net/Ru.rc
@@ -0,0 +1,40 @@
+/*
+ * NET.EXE - Wine-compatible net program
+ * Russian language support
+ *
+ * Copyright (C) 2007 Konstantin Kondratyuk (Etersoft)
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
+
+STRINGTABLE
+{
+ STRING_USAGE, "�������������:\n\nNET [ HELP | START | STOP ]\n"
+ STRING_START_USAGE, "������� ����������� ������.\n"
+ STRING_STOP_USAGE, "������� ��������������� ������.\n"
+ STRING_STOP_DEP, "��������� ��������� ������: %s\n"
+ STRING_CANT_STOP, "���������� ���������� ������ %s\n"
+ STRING_NO_SCM, "���������� �������� ������ � ���������� �����.\n"
+ STRING_NO_SVCHANDLE, "���������� �������� ������ � ������.\n"
+ STRING_START_SVC, "������ ������ %s.\n"
+ STRING_START_SVC_SUCCESS, "������ %s ������� ��������.\n"
+ STRING_START_SVC_FAIL, "������ ��� ������� ������ %s.\n"
+ STRING_STOP_SVC, "��������� ������ %s.\n"
+ STRING_STOP_SVC_SUCCESS, "������ %s ������� �����������.\n"
+ STRING_STOP_SVC_FAIL, "������ ��� ��������� ������ %s.\n"
+ STRING_HELP_USAGE, "�������������:\n\nNET HELP �������\n -���-\nNET ������� /HELP\n\n ��������� �������:\n NET HELP NET START NET STOP\n"
+}
diff --git a/programs/net/rsrc.rc b/programs/net/rsrc.rc
index 3125252..a6a1c40 100644
--- a/programs/net/rsrc.rc
+++ b/programs/net/rsrc.rc
@@ -24,3 +24,4 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include "En.rc"
#include "Ko.rc"
+#include "Ru.rc"
Module: wine
Branch: master
Commit: dc7ee864b5033c01760cb3928a258f9587b3deac
URL: http://source.winehq.org/git/wine.git/?a=commit;h=dc7ee864b5033c01760cb3928…
Author: Juan Lang <juan.lang(a)gmail.com>
Date: Tue Oct 2 09:50:49 2007 -0700
ntdll: Fix a typo.
---
dlls/ntdll/heap.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c
index 440939d..e6ba48c 100644
--- a/dlls/ntdll/heap.c
+++ b/dlls/ntdll/heap.c
@@ -44,7 +44,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(heap);
-/* Note: the heap data structures are losely based on what Pietrek describes in his
+/* Note: the heap data structures are loosely based on what Pietrek describes in his
* book 'Windows 95 System Programming Secrets', with some adaptations for
* better compatibility with NT.
*/