Module: wine
Branch: master
Commit: 32089dc604ac434eed38b4da26501ae711b6f184
URL: http://source.winehq.org/git/wine.git/?a=commit;h=32089dc604ac434eed38b4da2…
Author: Luca Bennati <lucak3(a)gmail.com>
Date: Tue Sep 21 09:56:08 2010 +0200
taskkill: Add Italian translation.
---
programs/taskkill/It.rc | 44 +++++++++++++++++++++++++++++++++++++++++
programs/taskkill/Makefile.in | 3 +-
2 files changed, 46 insertions(+), 1 deletions(-)
diff --git a/programs/taskkill/It.rc b/programs/taskkill/It.rc
new file mode 100644
index 0000000..05bf2d8
--- /dev/null
+++ b/programs/taskkill/It.rc
@@ -0,0 +1,44 @@
+/*
+ * Task termination utility
+ * Italian language support
+ *
+ * Copyright 2010 Luca Bennati
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include "taskkill.h"
+
+/* UTF-8 */
+#pragma code_page(65001)
+
+LANGUAGE LANG_ITALIAN, SUBLANG_NEUTRAL
+
+STRINGTABLE
+{
+ STRING_USAGE, "Uso: taskkill [/?] [/f] [/im NomeProcesso | /pid IDProcesso]\n"
+ STRING_INVALID_OPTION, "Errore: opzione specificata dalla riga di comando sconosciuta o non valida.\n"
+ STRING_INVALID_PARAM, "Errore: parametro specificato dalla riga di comando non valido.\n"
+ STRING_MISSING_OPTION, "Errore: una delle opzioni /im o /pid deve essere specificata.\n"
+ STRING_MISSING_PARAM, "Errore: l'opzione %s richiede un parametro dalla riga di comando.\n"
+ STRING_MUTUAL_EXCLUSIVE, "Errore: le opzioni /im e /pid si escludono mutualmente.\n"
+ STRING_CLOSE_PID_SEARCH, "Messaggio di chiusura mandato alle finestre top-level del processo con PID %u.\n"
+ STRING_CLOSE_PROC_SRCH, "Messaggio di chiusura mandato alle finestre top-level del processo \"%s\" con PID %u.\n"
+ STRING_TERM_PID_SEARCH, "Il processo con PID %u è stato terminato forzatamente.\n"
+ STRING_TERM_PROC_SEARCH, "Il processo \"%s\" con PID %u è stato terminato forzatamente.\n"
+ STRING_SEARCH_FAILED, "Errore: processo non trovato \"%s\".\n"
+ STRING_ENUM_FAILED, "Errore: impossibile elencare la lista dei processi.\n"
+ STRING_TERMINATE_FAILED, "Errore: impossibile terminare il processo \"%s\".\n"
+}
diff --git a/programs/taskkill/Makefile.in b/programs/taskkill/Makefile.in
index b3bfff3..53667d2 100644
--- a/programs/taskkill/Makefile.in
+++ b/programs/taskkill/Makefile.in
@@ -6,6 +6,7 @@ IMPORTS = psapi user32
C_SRCS = taskkill.c
RC_SRCS = \
- En.rc
+ En.rc \
+ It.rc
@MAKE_PROG_RULES@
Module: wine
Branch: master
Commit: d61b73b0b655e06d22b8dfcff873eec752e19400
URL: http://source.winehq.org/git/wine.git/?a=commit;h=d61b73b0b655e06d22b8dfcff…
Author: Igor Paliychuk <Igor-hkr(a)mail.ru>
Date: Tue Sep 21 16:21:01 2010 +0300
inetcpl: Added Ukrainian translation.
---
dlls/inetcpl.cpl/Makefile.in | 1 +
dlls/inetcpl.cpl/cpl_Uk.rc | 34 ++++++++++++++++++++++++++++++++++
2 files changed, 35 insertions(+), 0 deletions(-)
diff --git a/dlls/inetcpl.cpl/Makefile.in b/dlls/inetcpl.cpl/Makefile.in
index 4c32225..c8a7543 100644
--- a/dlls/inetcpl.cpl/Makefile.in
+++ b/dlls/inetcpl.cpl/Makefile.in
@@ -16,6 +16,7 @@ RC_SRCS = \
cpl_Pl.rc \
cpl_Si.rc \
cpl_Sv.rc \
+ cpl_Uk.rc \
inetcpl.rc
SVG_SRCS = \
diff --git a/dlls/inetcpl.cpl/cpl_Uk.rc b/dlls/inetcpl.cpl/cpl_Uk.rc
new file mode 100644
index 0000000..e9bc576
--- /dev/null
+++ b/dlls/inetcpl.cpl/cpl_Uk.rc
@@ -0,0 +1,34 @@
+/*
+ * Internet control panel applet
+ *
+ * Copyright 2010 Detlef Riekenberg
+ * Copyright 2010 Igor Paliychuk
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ *
+ */
+
+#include "inetcpl.h"
+
+/* UTF-8 */
+#pragma code_page(65001)
+
+LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT
+
+STRINGTABLE DISCARDABLE
+BEGIN
+ IDS_CPL_NAME "Налаштування Інтернету"
+ IDS_CPL_INFO "Налаштувати Wine Internet Browser та пов'язані параметри"
+END