Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
32089dc6
Commit
32089dc6
authored
Sep 21, 2010
by
Luca Bennati
Committed by
Alexandre Julliard
Sep 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
taskkill: Add Italian translation.
parent
fa5f61f5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
1 deletion
+46
-1
It.rc
programs/taskkill/It.rc
+44
-0
Makefile.in
programs/taskkill/Makefile.in
+2
-1
No files found.
programs/taskkill/It.rc
0 → 100644
View file @
32089dc6
/*
* 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"
}
programs/taskkill/Makefile.in
View file @
32089dc6
...
...
@@ -6,6 +6,7 @@ IMPORTS = psapi user32
C_SRCS
=
taskkill.c
RC_SRCS
=
\
En.rc
En.rc
\
It.rc
@MAKE_PROG_RULES@
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment