net: Added Portuguese translation.
This commit is contained in:
parent
50ae1d2eb4
commit
42f63e0fac
|
@ -0,0 +1,44 @@
|
||||||
|
/*
|
||||||
|
* NET.EXE - Wine-compatible net program
|
||||||
|
* Portuguese language support
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 Ricardo Filipe
|
||||||
|
*
|
||||||
|
* 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_PORTUGUESE, SUBLANG_NEUTRAL
|
||||||
|
|
||||||
|
STRINGTABLE
|
||||||
|
{
|
||||||
|
STRING_USAGE, "A sintaxe deste comando é:\n\nNET [ HELP | START | STOP | USE ]\n"
|
||||||
|
STRING_START_USAGE, "Especifique o nome do serviço para iniciar.\n"
|
||||||
|
STRING_STOP_USAGE, "Especifique o nome do serviço para parar.\n"
|
||||||
|
STRING_STOP_DEP, "A parar o serviço dependente: %s\n"
|
||||||
|
STRING_CANT_STOP, "Não foi possível parar o serviço %s\n"
|
||||||
|
STRING_NO_SCM, "Não foi possível entregar o handle ao controlador de serviços.\n"
|
||||||
|
STRING_NO_SVCHANDLE, "Não foi possível entregar o handle ao serviço.\n"
|
||||||
|
STRING_START_SVC, "O serviço %s está a iniciar.\n"
|
||||||
|
STRING_START_SVC_SUCCESS, "O serviço %s foi iniciado com sucesso.\n"
|
||||||
|
STRING_START_SVC_FAIL, "O serviço %s falhou ao iniciar.\n"
|
||||||
|
STRING_STOP_SVC, "O serviço %s está a parar.\n"
|
||||||
|
STRING_STOP_SVC_SUCCESS, "O serviço %s foi parado com sucesso.\n"
|
||||||
|
STRING_STOP_SVC_FAIL, "O serviço %s falhou a parar.\n"
|
||||||
|
STRING_HELP_USAGE, "A sintaxe deste comando é:\n\nNET HELP command\n -or-\nNET command /HELP\n\n"\
|
||||||
|
" Os comandos disponíveis são:\n NET HELP NET START NET STOP NET USE\n"
|
||||||
|
STRING_NO_ENTRIES, "Não há entradas na lista.\n"
|
||||||
|
STRING_USE_HEADER, "\nEstado Local Remoto\n---------------------------------------------------------------\n"
|
||||||
|
STRING_USE_ENTRY, "%s %S %S Recursos disponíveis: %lu\n"
|
||||||
|
}
|
|
@ -30,5 +30,6 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||||
#include "Nl.rc"
|
#include "Nl.rc"
|
||||||
#include "No.rc"
|
#include "No.rc"
|
||||||
#include "Pl.rc"
|
#include "Pl.rc"
|
||||||
|
#include "Pt.rc"
|
||||||
#include "Ru.rc"
|
#include "Ru.rc"
|
||||||
#include "Si.rc"
|
#include "Si.rc"
|
||||||
|
|
Loading…
Reference in New Issue