https://git.reactos.org/?p=reactos.git;a=commitdiff;h=480cd1e60c9e8bebd0fdfc...
commit 480cd1e60c9e8bebd0fdfca1e1c954caa5c41468 Author: Eric Kohl eric.kohl@reactos.org AuthorDate: Sun Apr 1 12:23:15 2018 +0200 Commit: Eric Kohl eric.kohl@reactos.org CommitDate: Sun Apr 1 12:23:57 2018 +0200
[NET] Reorganize and improve the help texts (1/X) - Move common texts into separate string resources. - Add missing help texts for ACCOUNTS, COMPUTER, CONFIG and CONTINUE commands. --- base/applications/network/net/cmdAccounts.c | 15 ++- base/applications/network/net/cmdContinue.c | 7 +- base/applications/network/net/cmdHelpMsg.c | 1 + base/applications/network/net/cmdLocalGroup.c | 3 + base/applications/network/net/cmdPause.c | 1 + base/applications/network/net/cmdStop.c | 1 + base/applications/network/net/cmdUser.c | 3 + base/applications/network/net/help.c | 50 ++++++++-- base/applications/network/net/lang/en-US.rc | 130 ++++++++++++++++++++------ base/applications/network/net/lang/es-ES.rc | 130 ++++++++++++++++++++------ base/applications/network/net/lang/ro-RO.rc | 128 +++++++++++++++++++------ base/applications/network/net/lang/ru-RU.rc | 128 +++++++++++++++++++------ base/applications/network/net/lang/tr-TR.rc | 128 +++++++++++++++++++------ base/applications/network/net/lang/zh-CN.rc | 128 +++++++++++++++++++------ base/applications/network/net/lang/zh-TW.rc | 130 ++++++++++++++++++++------ base/applications/network/net/resource.h | 111 +++++++++++++--------- 16 files changed, 843 insertions(+), 251 deletions(-)
diff --git a/base/applications/network/net/cmdAccounts.c b/base/applications/network/net/cmdAccounts.c index ff986f9011..6bade9b574 100644 --- a/base/applications/network/net/cmdAccounts.c +++ b/base/applications/network/net/cmdAccounts.c @@ -36,6 +36,7 @@ cmdAccounts( if (_wcsicmp(argv[i], L"help") == 0) { /* Print short syntax help */ + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_ACCOUNTS_SYNTAX); return 0; } @@ -43,7 +44,19 @@ cmdAccounts( if (_wcsicmp(argv[i], L"/help") == 0) { /* Print full help text*/ - ConResPuts(StdOut, IDS_ACCOUNTS_HELP); + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); + ConResPuts(StdOut, IDS_ACCOUNTS_SYNTAX); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_1); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_2); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_3); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_4); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_5); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_6); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_7); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_8); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_9); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_10); + ConResPuts(StdOut, IDS_GENERIC_PAGE); return 0; }
diff --git a/base/applications/network/net/cmdContinue.c b/base/applications/network/net/cmdContinue.c index d2b3888579..7fa3a934dd 100644 --- a/base/applications/network/net/cmdContinue.c +++ b/base/applications/network/net/cmdContinue.c @@ -19,6 +19,7 @@ INT cmdContinue(INT argc, WCHAR **argv)
if (argc != 3) { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_CONTINUE_SYNTAX); return 1; } @@ -27,7 +28,11 @@ INT cmdContinue(INT argc, WCHAR **argv) { if (_wcsicmp(argv[i], L"/help") == 0) { - ConResPuts(StdOut, IDS_CONTINUE_HELP); + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); + ConResPuts(StdOut, IDS_CONTINUE_SYNTAX); + ConResPuts(StdOut, IDS_CONTINUE_HELP_1); + ConResPuts(StdOut, IDS_CONTINUE_HELP_2); + ConResPuts(StdOut, IDS_GENERIC_PAGE); return 1; } } diff --git a/base/applications/network/net/cmdHelpMsg.c b/base/applications/network/net/cmdHelpMsg.c index 47a343fc9e..e95da9cc19 100644 --- a/base/applications/network/net/cmdHelpMsg.c +++ b/base/applications/network/net/cmdHelpMsg.c @@ -21,6 +21,7 @@ INT cmdHelpMsg(INT argc, WCHAR **argv)
if (argc < 3) { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_HELPMSG_SYNTAX); return 1; } diff --git a/base/applications/network/net/cmdLocalGroup.c b/base/applications/network/net/cmdLocalGroup.c index 84bc7d5e92..c70aa1e2e4 100644 --- a/base/applications/network/net/cmdLocalGroup.c +++ b/base/applications/network/net/cmdLocalGroup.c @@ -376,7 +376,10 @@ done: RtlFreeHeap(RtlGetProcessHeap(), 0, lpMembers);
if (result != 0) + { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_LOCALGROUP_SYNTAX); + }
return result; } diff --git a/base/applications/network/net/cmdPause.c b/base/applications/network/net/cmdPause.c index a84251ae4a..eb8056ce13 100644 --- a/base/applications/network/net/cmdPause.c +++ b/base/applications/network/net/cmdPause.c @@ -19,6 +19,7 @@ INT cmdPause(INT argc, WCHAR **argv)
if (argc != 3) { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_PAUSE_SYNTAX); return 1; } diff --git a/base/applications/network/net/cmdStop.c b/base/applications/network/net/cmdStop.c index 6a7db35186..27d2897569 100644 --- a/base/applications/network/net/cmdStop.c +++ b/base/applications/network/net/cmdStop.c @@ -20,6 +20,7 @@ INT cmdStop(INT argc, WCHAR **argv)
if (argc != 3) { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_STOP_SYNTAX); return 1; } diff --git a/base/applications/network/net/cmdUser.c b/base/applications/network/net/cmdUser.c index c034bb9c6c..3ee392b6c5 100644 --- a/base/applications/network/net/cmdUser.c +++ b/base/applications/network/net/cmdUser.c @@ -624,7 +624,10 @@ done: NetApiBufferFree(pUserInfo);
if (result != 0) + { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); ConResPuts(StdOut, IDS_USER_SYNTAX); + }
return result; } diff --git a/base/applications/network/net/help.c b/base/applications/network/net/help.c index ba09babddc..f054c0efab 100644 --- a/base/applications/network/net/help.c +++ b/base/applications/network/net/help.c @@ -11,44 +11,81 @@
INT cmdHelp(INT argc, WCHAR **argv) { + ConResPuts(StdOut, IDS_GENERIC_SYNTAX); + +/* if (argc != 3) { ConResPuts(StdOut, IDS_HELP_SYNTAX); return 0; } - +*/ if (_wcsicmp(argv[2], L"ACCOUNTS") == 0) { - ConResPuts(StdOut, IDS_ACCOUNTS_HELP); + ConResPuts(StdOut, IDS_ACCOUNTS_SYNTAX); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_1); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_2); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_3); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_4); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_5); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_6); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_7); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_8); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_9); + ConResPuts(StdOut, IDS_ACCOUNTS_HELP_10); + ConResPuts(StdOut, IDS_GENERIC_PAGE); return 0; }
if (_wcsicmp(argv[2], L"COMPUTER") == 0) { - ConResPuts(StdOut, IDS_COMPUTER_HELP); + ConResPuts(StdOut, IDS_COMPUTER_SYNTAX); + ConResPuts(StdOut, IDS_COMPUTER_HELP_1); + ConResPuts(StdOut, IDS_COMPUTER_HELP_2); return 0; }
if (_wcsicmp(argv[2], L"CONFIG") == 0) { - ConResPuts(StdOut, IDS_CONFIG_HELP); - return 0; + if ((argc > 3) && (_wcsicmp(argv[3], L"SERVER") == 0)) + { + ConResPuts(StdOut, IDS_CONFIG_SERVER_SYNTAX); + ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_1); + ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_2); + ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_3); + ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_4); + ConResPuts(StdOut, IDS_CONFIG_SERVER_HELP_5); + ConResPuts(StdOut, IDS_GENERIC_PAGE); + return 0; + } + else + { + ConResPuts(StdOut, IDS_CONFIG_SYNTAX); + ConResPuts(StdOut, IDS_CONFIG_HELP_1); + ConResPuts(StdOut, IDS_CONFIG_HELP_2); + ConResPuts(StdOut, IDS_GENERIC_PAGE); + return 0; + } }
if (_wcsicmp(argv[2], L"CONTINUE") == 0) { - ConResPuts(StdOut, IDS_CONTINUE_HELP); + ConResPuts(StdOut, IDS_CONTINUE_SYNTAX); + ConResPuts(StdOut, IDS_CONTINUE_HELP_1); + ConResPuts(StdOut, IDS_CONTINUE_HELP_2); return 0; }
if (_wcsicmp(argv[2], L"FILE") == 0) { + ConResPuts(StdOut, IDS_FILE_SYNTAX); ConResPuts(StdOut, IDS_FILE_HELP); return 0; }
if (_wcsicmp(argv[2], L"GROUP") == 0) { + ConResPuts(StdOut, IDS_GROUP_SYNTAX); ConResPuts(StdOut, IDS_GROUP_HELP); return 0; } @@ -61,6 +98,7 @@ INT cmdHelp(INT argc, WCHAR **argv)
if (_wcsicmp(argv[2], L"LOCALGROUP") == 0) { + ConResPuts(StdOut, IDS_LOCALGROUP_SYNTAX); ConResPuts(StdOut, IDS_LOCALGROUP_HELP); return 0; } diff --git a/base/applications/network/net/lang/en-US.rc b/base/applications/network/net/lang/en-US.rc index 0632d58c04..c2160d6867 100644 --- a/base/applications/network/net/lang/en-US.rc +++ b/base/applications/network/net/lang/en-US.rc @@ -2,55 +2,124 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "Usage:\nNET ACCOUNTS [/FORCELOGOFF:{Minutes|NO}] [/MINPWLEN:Length]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{Minutes|NO}] [/MINPWLEN:Length]\n\ [/MAXPWAGE:{Days|UNLIMITED}] [/MINPWAGE:Days]\n\ - [/UNIQUEPW:Count] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "Usage:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "Usage:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "Usage:\nNET CONTINUE <Service Name>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "Usage:\nNET FILE ..." + [/UNIQUEPW:Count] [/DOMAIN]\n\n" + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE service\n\n" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "Usage:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "Usage:\nNET HELPMSG <Error Code>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <Error Code>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "Usage:\nNET LOCALGROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\ groupname {/ADD [/COMMENT:""text""] | /DELETE} [/DOMAIN]\n\ groupname name [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "Usage:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "Usage:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "Usage:\nNET PAUSE <Service Name>" + IDS_PAUSE_SYNTAX "NET PAUSE <Service Name>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "Usage:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "Usage:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "Usage:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "Usage:\nNET START <Service name>" + IDS_START_SYNTAX "NET START <Service name>" IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "Usage:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "Usage:\nNET STOP <Service name>" + IDS_STOP_SYNTAX "NET STOP <Service name>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "Usage:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "Usage:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "Usage:\nNET USER [username [password | *] [options]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [username [password | *] [options]] [/DOMAIN]\n\ username {password | *} /ADD [options] [/DOMAIN]\n\ username [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "Usage:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "Usage:\nNET HELP <Command>\n - or -\nNET <Command> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <Command>\n - or -\nNET <Command> /HELP\n\n\ The following commands are available:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -61,7 +130,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "Usage:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -119,9 +188,12 @@ BEGIN IDS_GENERIC_NONE "None" IDS_GENERIC_ALL "All" IDS_GENERIC_LOCKED "Locked" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "The %s option is not supported yet.\n" IDS_ERROR_INVALID_OPTION_VALUE "You entered an invalid value for the %s option.\n" IDS_ERROR_SYSTEM_ERROR "The system error %d happened.\n" - IDS_ERROR_NO_ERROR "The command got executed successfully.\n" + IDS_ERROR_NO_ERROR "The command completed successfully.\n\n\n" END diff --git a/base/applications/network/net/lang/es-ES.rc b/base/applications/network/net/lang/es-ES.rc index fe3e6ed276..8c59b5f712 100644 --- a/base/applications/network/net/lang/es-ES.rc +++ b/base/applications/network/net/lang/es-ES.rc @@ -5,55 +5,124 @@ LANGUAGE LANG_SPANISH, SUBLANG_NEUTRAL
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "Uso:\nNET ACCOUNTS [/FORCELOGOFF:{minutos | NO}] [/MINPWLEN:longitud]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{minutos | NO}] [/MINPWLEN:longitud]\n\ [/MAXPWAGE:{días | UNLIMITED}] [/MINPWAGE:días]\n\ - [/UNIQUEPW:número] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "Uso:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "Uso:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "Uso:\nNET CONTINUE <nombre del servicio>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "Uso:\nNET FILE ..." + [/UNIQUEPW:número] [/DOMAIN]\n\n" + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE <nombre del servicio>" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "Uso:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "Uso:\nNET HELPMSG <código de error>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <código de error>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "Uso:\nNET LOCALGROUP [grupo [/COMMENT:""texto""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [grupo [/COMMENT:""texto""]] [/DOMAIN]\n\ grupo {/ADD [/COMMENT:""texto""] | /DELETE} [/DOMAIN]\n\ grupo nombre [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "Uso:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "Uso:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "Uso:\nNET PAUSE <nombre del servicio>" + IDS_PAUSE_SYNTAX "NET PAUSE <nombre del servicio>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "Uso:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "Uso:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "Uso:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "Uso:\nNET START ..." + IDS_START_SYNTAX "NET START ..." IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "Uso:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "Uso:\nNET STOP <nombre del servicio>" + IDS_STOP_SYNTAX "NET STOP <nombre del servicio>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "Uso:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "Uso:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "Uso:\nNET USER [usuario [contraseña | *] [opciones]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [usuario [contraseña | *] [opciones]] [/DOMAIN]\n\ usuario {contraseña | *} /ADD [opciones] [/DOMAIN]\n\ usuario [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "Uso:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "Uso:\nNET HELP <comando>\n - o -\nNET <comando> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <comando>\n - o -\nNET <comando> /HELP\n\n\ Éstos son los argumentos de línea de comandos disponibles:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -64,7 +133,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "Uso:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -122,9 +191,12 @@ BEGIN IDS_GENERIC_NONE "Ninguno" IDS_GENERIC_ALL "Todos" IDS_GENERIC_LOCKED "Bloqueado" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "La opción %s todavía no está disponible.\n" IDS_ERROR_INVALID_OPTION_VALUE "El valor para la opción %s no es válido.\n" IDS_ERROR_SYSTEM_ERROR "The system error %d happened.\n" - IDS_ERROR_NO_ERROR "The command got executed successfully.\n" + IDS_ERROR_NO_ERROR "The command completed successfully.\n\n\n" END diff --git a/base/applications/network/net/lang/ro-RO.rc b/base/applications/network/net/lang/ro-RO.rc index 674cd0af47..ed6b98b40f 100644 --- a/base/applications/network/net/lang/ro-RO.rc +++ b/base/applications/network/net/lang/ro-RO.rc @@ -8,55 +8,124 @@ LANGUAGE LANG_ROMANIAN, SUBLANG_NEUTRAL
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "Utilizare:\nNET ACCOUNTS [/FORCELOGOFF:{Minute|NO}] [/MINPWLEN:Lungime]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{Minute|NO}] [/MINPWLEN:Lungime]\n\ [/MAXPWAGE:{Zile|UNLIMITED}] [/MINPWAGE:Zile]\n\ [/UNIQUEPW:Număr] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "Utilizare:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "Utilizare:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "Utilizare:\nNET CONTINUE <nume serviciu>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "Utilizare:\nNET FILE ..." + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE <nume serviciu>" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "Utilizare:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "Utilizare:\nNET HELPMSG <Error Code>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <Error Code>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "Utilizare:\nNET LOCALGROUP [nume-de-grup [/COMMENT:""text""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [nume-de-grup [/COMMENT:""text""]] [/DOMAIN]\n\ nume-de-grup {/ADD [/COMMENT:""text""] | /DELETE} [/DOMAIN]\n\ nume-de-grup nume [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "Utilizare:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "Utilizare:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "Utilizare:\nNET PAUSE <nume serviciu>" + IDS_PAUSE_SYNTAX "NET PAUSE <nume serviciu>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "Utilizare:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "Utilizare:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "Utilizare:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "Utilizare:\nNET START ..." + IDS_START_SYNTAX "NET START ..." IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "Utilizare:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "Utilizare:\nNET STOP <nume serviciu>" + IDS_STOP_SYNTAX "NET STOP <nume serviciu>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "Utilizare:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "Utilizare:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "Utilizare:\nNET USER [nume-utilizator [parolă | *] [opțiuni]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [nume-utilizator [parolă | *] [opțiuni]] [/DOMAIN]\n\ nume-utilizator {parolă | *} /ADD [opțiuni] [/DOMAIN]\n\ nume-utilizator [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "Utilizare:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "Utilizare:\nNET HELP <comandă>\n - sau -\nNET <comandă> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <comandă>\n - sau -\nNET <comandă> /HELP\n\n\ Sunt disponibile următoarele comenzi:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -67,7 +136,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "Utilizare:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -125,9 +194,12 @@ BEGIN IDS_GENERIC_NONE "Nespecificat" IDS_GENERIC_ALL "Toate" IDS_GENERIC_LOCKED "Blocat" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "Opțiunea %s încă nu este admisă.\n" IDS_ERROR_INVALID_OPTION_VALUE "Ați introdus o valoare nevalidă pentru opțiunea %s.\n" IDS_ERROR_SYSTEM_ERROR "A survenit eroarea de sistem %d.\n" - IDS_ERROR_NO_ERROR "Comanda a fost executată cu succes.\n" + IDS_ERROR_NO_ERROR "Comanda a fost executată cu succes.\n\n\n" END diff --git a/base/applications/network/net/lang/ru-RU.rc b/base/applications/network/net/lang/ru-RU.rc index 937f79a86d..98db6e612b 100644 --- a/base/applications/network/net/lang/ru-RU.rc +++ b/base/applications/network/net/lang/ru-RU.rc @@ -4,55 +4,124 @@ LANGUAGE LANG_RUSSIAN, SUBLANG_DEFAULT
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "Использование:\nNET ACCOUNTS [/FORCELOGOFF:{минуты | NO}] [/MINPWLEN:длина]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{минуты | NO}] [/MINPWLEN:длина]\n\ [/MAXPWAGE:{дни | UNLIMITED}] [/MINPWAGE:дни]\n\ [/UNIQUEPW:число] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "Использование:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "Использование:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "Использование:\nNET CONTINUE <имя_службы>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "Использование:\nNET FILE ..." + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE <имя_службы>" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "Использование:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "Использование:\nNET HELPMSG <Код ошибки>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <Код ошибки>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "Использование:\nNET LOCALGROUP [имя_группы [/COMMENT:""текст""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [имя_группы [/COMMENT:""текст""]] [/DOMAIN]\n\ имя_группы {/ADD [/COMMENT:""текст""] | /DELETE} [/DOMAIN]\n\ имя_группы имя [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "Использование:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "Использование:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "Использование:\nNET PAUSE <имя_службы>" + IDS_PAUSE_SYNTAX "NET PAUSE <имя_службы>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "Использование:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "Использование:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "Использование:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "Использование:\nNET START ..." + IDS_START_SYNTAX "NET START ..." IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "Использование:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "Использование:\nNET STOP <имя_службы>" + IDS_STOP_SYNTAX "NET STOP <имя_службы>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "Использование:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "Использование:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "Использование:\nNET USER [имя_пользователя [пароль | *] [параметры]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [имя_пользователя [пароль | *] [параметры]] [/DOMAIN]\n\ имя_пользователя {пароль | *} /ADD [параметры] [/DOMAIN]\n\ имя_пользователя [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "Использование:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "Использование:\nNET HELP <Команда>\n - или -\nNET <Команда> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <Команда>\n - или -\nNET <Команда> /HELP\n\n\ Доступны следующие команды:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -63,7 +132,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "Использование:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -121,9 +190,12 @@ BEGIN IDS_GENERIC_NONE "Нет" IDS_GENERIC_ALL "Все" IDS_GENERIC_LOCKED "Заблокировано" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "Опция %s в данный момент не поддерживается.\n" IDS_ERROR_INVALID_OPTION_VALUE "Вы ввели неверный данные для данной опции %s.\n" IDS_ERROR_SYSTEM_ERROR "Произошла системная ошибка: %d.\n" - IDS_ERROR_NO_ERROR "Команда успешно выполнена.\n" + IDS_ERROR_NO_ERROR "Команда успешно выполнена.\n\n\n" END diff --git a/base/applications/network/net/lang/tr-TR.rc b/base/applications/network/net/lang/tr-TR.rc index 4deb893fd9..ec3ddebc7f 100644 --- a/base/applications/network/net/lang/tr-TR.rc +++ b/base/applications/network/net/lang/tr-TR.rc @@ -4,55 +4,124 @@ LANGUAGE LANG_TURKISH, SUBLANG_DEFAULT
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "Kullanım:\nNET ACCOUNTS [/FORCELOGOFF:{Dakîka|NO}] [/MINPWLEN:Uzunluk]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{Dakîka|NO}] [/MINPWLEN:Uzunluk]\n\ [/MAXPWAGE:{Gün|UNLIMITED}] [/MINPWAGE:Gün]\n\ [/UNIQUEPW:Sayı] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "Kullanım:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "Kullanım:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "Kullanım:\nNET CONTINUE <Hizmet Adı>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "Kullanım:\nNET FILE ..." + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE <Hizmet Adı>" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "Kullanım:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "Kullanım:\nNET HELPMSG <Yanlışlık Kodu>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <Yanlışlık Kodu>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "Kullanım:\nNET LOCALGROUP [takım adı [/COMMENT:""metin""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [takım adı [/COMMENT:""metin""]] [/DOMAIN]\n\ takım adı {/ADD [/COMMENT:""metin""] | /DELETE} [/DOMAIN]\n\ takım adı ad [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "Kullanım:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "Kullanım:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "Kullanım:\nNET PAUSE <Hizmet Adı>" + IDS_PAUSE_SYNTAX "NET PAUSE <Hizmet Adı>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "Kullanım:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "Kullanım:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "Kullanım:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "Kullanım:\nNET START <Hizmet Adı>" + IDS_START_SYNTAX "NET START <Hizmet Adı>" IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "Kullanım:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "Kullanım:\nNET STOP <Hizmet Adı>" + IDS_STOP_SYNTAX "NET STOP <Hizmet Adı>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "Kullanım:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "Kullanım:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "Kullanım:\nNET USER [kullanıcı adı [şifre | *] [seçenekler]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [kullanıcı adı [şifre | *] [seçenekler]] [/DOMAIN]\n\ kullanıcı adı {şifre | *} /ADD [seçenekler] [/DOMAIN]\n\ kullanıcı adı [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "Kullanım:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "Kullanım:\nNET HELP <Komut>\n - ya da -\nNET <Komut> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <Komut>\n - ya da -\nNET <Komut> /HELP\n\n\ Aşağıdaki komutlar kullanılabilir:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -63,7 +132,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "Kullanım:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -121,9 +190,12 @@ BEGIN IDS_GENERIC_NONE "Yok" IDS_GENERIC_ALL "Tümü" IDS_GENERIC_LOCKED "Kilitli" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "%s seçeneği daha desteklenmiyor.\n" IDS_ERROR_INVALID_OPTION_VALUE "%s seçeneği için geçersiz bir değer girdiniz.\n" IDS_ERROR_SYSTEM_ERROR "%d dizge hatâsı oldu.\n" - IDS_ERROR_NO_ERROR "Komut başarılı bir şekilde çalıştırıldı.\n" + IDS_ERROR_NO_ERROR "Komut başarılı bir şekilde çalıştırıldı.\n\n\n" END diff --git a/base/applications/network/net/lang/zh-CN.rc b/base/applications/network/net/lang/zh-CN.rc index 41c14c3c5b..6b6adab3e2 100644 --- a/base/applications/network/net/lang/zh-CN.rc +++ b/base/applications/network/net/lang/zh-CN.rc @@ -4,55 +4,124 @@ LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_SIMPLIFIED
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "用法:\nNET ACCOUNTS [/FORCELOGOFF:{Minutes|NO}] [/MINPWLEN:Length]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{Minutes|NO}] [/MINPWLEN:Length]\n\ [/MAXPWAGE:{Days|UNLIMITED}] [/MINPWAGE:Days]\n\ [/UNIQUEPW:Count] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "用法:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "用法:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "用法:\nNET CONTINUE <Service Name>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "用法:\nNET FILE ..." + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE <Service Name>" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "用法:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "用法:\nNET HELPMSG <Error Code>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <Error Code>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "用法:\nNET LOCALGROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [groupname [/COMMENT:""text""]] [/DOMAIN]\n\ groupname {/ADD [/COMMENT:""text""] | /DELETE} [/DOMAIN]\n\ groupname name [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "用法:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "用法:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "用法:\nNET PAUSE <Service Name>" + IDS_PAUSE_SYNTAX "NET PAUSE <Service Name>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "用法:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "用法:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "用法:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "用法:\nNET START <Service name>" + IDS_START_SYNTAX "NET START <Service name>" IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "用法:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "用法:\nNET STOP <Service name>" + IDS_STOP_SYNTAX "NET STOP <Service name>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "用法:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "用法:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "用法:\nNET USER [username [password | *] [options]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [username [password | *] [options]] [/DOMAIN]\n\ username {password | *} /ADD [options] [/DOMAIN]\n\ username [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "用法:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "用法:\nNET HELP <Command>\n - or -\nNET <Command> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <Command>\n - or -\nNET <Command> /HELP\n\n\ 以下命令可用:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -63,7 +132,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "用法:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -121,9 +190,12 @@ BEGIN IDS_GENERIC_NONE "无" IDS_GENERIC_ALL "所有" IDS_GENERIC_LOCKED "锁定" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "尚不支持 %s 选项。\n" IDS_ERROR_INVALID_OPTION_VALUE "您输入了 %s 选项的无效的值。\n" IDS_ERROR_SYSTEM_ERROR "发生了系统错误 %d。\n" - IDS_ERROR_NO_ERROR "命令执行成功。\n" + IDS_ERROR_NO_ERROR "命令执行成功。\n\n\n" END diff --git a/base/applications/network/net/lang/zh-TW.rc b/base/applications/network/net/lang/zh-TW.rc index 3a6ba77613..df68b2e34c 100644 --- a/base/applications/network/net/lang/zh-TW.rc +++ b/base/applications/network/net/lang/zh-TW.rc @@ -4,55 +4,124 @@ LANGUAGE LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL
STRINGTABLE BEGIN - IDS_ACCOUNTS_SYNTAX "使用方法:\nNET ACCOUNTS [/FORCELOGOFF:{分鐘|NO}] [/MINPWLEN:長度]\n\ + IDS_ACCOUNTS_SYNTAX "NET ACCOUNTS [/FORCELOGOFF:{分鐘|NO}] [/MINPWLEN:長度]\n\ [/MAXPWAGE:{天|UNLIMITED}] [/MINPWAGE:天]\n\ - [/UNIQUEPW:計數] [/DOMAIN]\n" - IDS_ACCOUNTS_HELP "ACCOUNTS\n..." - IDS_COMPUTER_SYNTAX "使用方法:\nNET COMPUTER ..." - IDS_COMPUTER_HELP "COMPUTER\n..." - IDS_CONFIG_SYNTAX "使用方法:\nNET CONFIG ..." - IDS_CONFIG_HELP "CONFIG\n..." - IDS_CONTINUE_SYNTAX "使用方法:\nNET CONTINUE <服務名稱>" - IDS_CONTINUE_HELP "CONTINUE\n..." - IDS_FILE_SYNTAX "使用方法:\nNET FILE ..." + [/UNIQUEPW:計數] [/DOMAIN]\n\n" + IDS_ACCOUNTS_HELP_1 "NET ACCOUNTS updates the user accounts database and modifies password\n\ +and logon requirements for all accounts.\n\ +When used without parameters, NET ACCOUNTS displays the current settings for\n\ +passwords, logon limitations, and domain information.\n\n" + IDS_ACCOUNTS_HELP_2 "Two conditions are required in order for options used with\n\ +NET ACCOUNTS to take effect.\n\n" + IDS_ACCOUNTS_HELP_3 "- The password and logon requirements are only effective if user\n\ + accounts havebeen set up (user User Manager or the NET USER command).\n\n" + IDS_ACCOUNTS_HELP_4 "- The Net Logon service must be running on all servers in the domain\n\ + that verify logon. Net Logon is started autmatically when the\n\ + operating system starts.\n\n" + IDS_ACCOUNTS_HELP_5 "/FORECELOGOFF:{minutes | NO} Sets the number of minutes a user has before\n\ + being forced to log off when the\n\ + account expires or valid logon hours expire.\n\ + NO, the default, prevents forced logoff.\n" + IDS_ACCOUNTS_HELP_6 "/MINPWLEN:length Sets the minimum number of characters for\n\ + a password. The range is 0-14 characters;\n\ + the default is 6 characters.\n" + IDS_ACCOUNTS_HELP_7 "/MAXPWAGE:{days | UNLIMITED} Sets the maximum numer of days that a\n\ + password is valid. No limit is specified\n\ + by using UNLIMITED. /MAXPWAGE cannot be less\n\ + than /MINPWAGE. The range is 1-999; the\n\ + default is to leave the value unchanged.\n" + IDS_ACCOUNTS_HELP_8 "/MINPWAGE:days Sets the minimum number of days that must\n\ + pass before a user can change a password.\n\ + A value of 0 sets no minimum time. The range\n\ + is 0-999; the default is 0 days. /MINPWAGE\n\ + cannot be more than /MAXPWAGE.\n" + IDS_ACCOUNTS_HELP_9 "/UNIQUEPW:number Requires that a users passwords be unique\n\ + through the specified number of password\n\ + changes. The maximum value is 24.\n" + IDS_ACCOUNTS_HELP_10 "/DOMAIN Performs the operation on a domain\n\ + controller of the current domain. Otherwise,\n\ + the operation is performed on the local\n\ + computer.\n\n" + IDS_COMPUTER_SYNTAX "NET COMPUTER \computername {/ADD | /DEL}\n\n" + IDS_COMPUTER_HELP_1 "NET COMPUTER adds or deletes computers from a domain database. This\n\ +command is available only on server operating systems.\n\n" + IDS_COMPUTER_HELP_2 "\computername Specifies the computer to add or delete from\n\ + the domain.\n\ +/ADD Adds the specified computer to the domain.\n\ +/DEL Removes the specified computer from the domain.\n\n" + IDS_CONFIG_SYNTAX "NET CONFIG [SERVER | WORKSTATION]\n\n" + IDS_CONFIG_HELP_1 "NET CONFIG displays coniguration information of the Workstation or\n\ +Server service. When used without the WORKSTATION or SERVER switch,\n\ +it displays a list of configurable services. To get help with\n\ +configuring a service, type NET HELP CONFIG service.\n\n" + IDS_CONFIG_HELP_2 "SERVER Displays information about the configuration of the\n\ + Server service.\n\ +WORKSTATION Displays information about the configuration of the\n\ + Workstation service.\n\n" + IDS_CONFIG_SERVER_SYNTAX "NET CONFIG SERVER [/AUTODISCONNECT:time] [/SRVCOMMENT:""text""]\n\ + [/HIDDEN:{YES | NO}]\n\n" + IDS_CONFIG_SERVER_HELP_1 "NET CONFIG SERVER displays or changes settings for the Server service.\n\n" + IDS_CONFIG_SERVER_HELP_2 "/AUTODISCONNECT:time Sets the maximum number of minutes a user's\n\ + session can be inactive before it is disconected.\n\ + You can specify -1 to never disconnect. The range\n\ + is -1-65535 minutes; the default is 15.\n" + IDS_CONFIG_SERVER_HELP_3 "/SRVCOMMENT:""text"" Adds a comment for the server that is displayed on\n\ + screen and with the NET VIEW command.\n\ + Enclose the text in quotation marks.\n" + IDS_CONFIG_SERVER_HELP_4 "/HIDDEN:{YES | NO} Specifies whether the server's computer name\n\ + appears on displays listings of servers. Note that\n\ + hiding a serverdoes not alter the permissions\n\ + on that server. The default is NO.\n\n" + IDS_CONFIG_SERVER_HELP_5 "To display the current configuration for the Servr service,\n\ +type NET CONFIG SERVER without parameters.\n\n" + IDS_CONTINUE_SYNTAX "NET CONTINUE <服務名稱>" + IDS_CONTINUE_HELP_1 "NET CONTINUE reactivates a service that has been suspended by NET PAUSE.\n\n" + IDS_CONTINUE_HELP_2 "service Is the paused service\n\ + For example, one of the following:\n\ + NET LOGON\n\ + NT LM SECURITY SUPPORT PROVIDER\n\ + SCHEDULE\n\ + SERVER\n\ + WORKSTATION\n\n" + IDS_FILE_SYNTAX "NET FILE ..." IDS_FILE_HELP "FILE\n..." - IDS_GROUP_SYNTAX "使用方法:\nNET GROUP ..." + IDS_GROUP_SYNTAX "NET GROUP ..." IDS_GROUP_HELP "GROUP\n..." - IDS_HELPMSG_SYNTAX "使用方法:\nNET HELPMSG <錯誤程式碼>" + IDS_HELPMSG_SYNTAX "NET HELPMSG <錯誤程式碼>" IDS_HELPMSG_HELP "HELPMSG\n..." - IDS_LOCALGROUP_SYNTAX "使用方法:\nNET LOCALGROUP [組名 [/COMMENT:""文字""]] [/DOMAIN]\n\ + IDS_LOCALGROUP_SYNTAX "NET LOCALGROUP [組名 [/COMMENT:""文字""]] [/DOMAIN]\n\ 組名 {/ADD [/COMMENT:""文字""] | /DELETE} [/DOMAIN]\n\ 組名稱 [...] {/ADD | /DELETE} [/DOMAIN]" IDS_LOCALGROUP_HELP "LOCALGROUP\n..." - IDS_NAME_SYNTAX "使用方法:\nNET NAME ..." + IDS_NAME_SYNTAX "NET NAME ..." IDS_NAME_HELP "NAME\n..." - IDS_PRINT_SYNTAX "使用方法:\nNET PRINT ..." + IDS_PRINT_SYNTAX "NET PRINT ..." IDS_PRINT_HELP "PRINT\n..." - IDS_PAUSE_SYNTAX "使用方法:\nNET PAUSE <服務名稱>" + IDS_PAUSE_SYNTAX "NET PAUSE <服務名稱>" IDS_PAUSE_HELP "PAUSE\n..." - IDS_SEND_SYNTAX "使用方法:\nNET SEND ..." + IDS_SEND_SYNTAX "NET SEND ..." IDS_SEND_HELP "SEND\n..." - IDS_SESSION_SYNTAX "使用方法:\nNET SESSION ..." + IDS_SESSION_SYNTAX "NET SESSION ..." IDS_SESSION_HELP "SESSION\n..." - IDS_SHARE_SYNTAX "使用方法:\nNET SHARE ..." + IDS_SHARE_SYNTAX "NET SHARE ..." IDS_SHARE_HELP "SHARE\n..." - IDS_START_SYNTAX "使用方法:\nNET START <服務名稱>" + IDS_START_SYNTAX "NET START <服務名稱>" IDS_START_HELP "START\n..." - IDS_STATISTICS_SYNTAX "使用方法:\nNET STATISTICS ..." + IDS_STATISTICS_SYNTAX "NET STATISTICS ..." IDS_STATISTICS_HELP "STATISTICS\n..." - IDS_STOP_SYNTAX "使用方法:\nNET STOP <服務名稱>" + IDS_STOP_SYNTAX "NET STOP <服務名稱>" IDS_STOP_HELP "STOP\n..." - IDS_TIME_SYNTAX "使用方法:\nNET TIME ..." + IDS_TIME_SYNTAX "NET TIME ..." IDS_TIME_HELP "TIME\n..." - IDS_USE_SYNTAX "使用方法:\nNET USE ..." + IDS_USE_SYNTAX "NET USE ..." IDS_USE_HELP "USE\n..." - IDS_USER_SYNTAX "使用方法:\nNET USER [使用者名 [密碼 | *] [選項]] [/DOMAIN]\n\ + IDS_USER_SYNTAX "NET USER [使用者名 [密碼 | *] [選項]] [/DOMAIN]\n\ 使用者名 {密碼 | *} /ADD [選項] [/DOMAIN]\n\ 使用者名 [/DELETE] [/DOMAIN]" IDS_USER_HELP "USER\n..." - IDS_VIEW_SYNTAX "使用方法:\nNET VIEW ..." + IDS_VIEW_SYNTAX "NET VIEW ..." IDS_VIEW_HELP "VIEW\n..." - IDS_HELP_SYNTAX "使用方法:\nNET HELP <命令>\n - 或 -\nNET <命令> /HELP\n\n\ + IDS_HELP_SYNTAX "NET HELP <命令>\n - 或 -\nNET <命令> /HELP\n\n\ 以下命令是可用的:\n\n\ NET ACCOUNTS NET HELP NET SHARE\n\ NET COMPUTER NET HELPMSG NET START\n\ @@ -63,7 +132,7 @@ BEGIN NET FILE NET SEND NET USER\n\ NET GROUP NET SESSION NET VIEW\n\n\ ..." - IDS_NET_SYNTAX "使用方法:\nNET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ + IDS_NET_SYNTAX "NET [ ACCOUNTS | COMPUTER | CONFIG | CONTINUE | FILE | GROUP | HELP |\n\ HELPMSG | LOCALGROUP | NAME | PAUSE | PRINT | SEND | SESSION |\n\ SHARE | START | STATISTICS | STOP | TIME | USE | USER | VIEW ]\n"
@@ -121,9 +190,12 @@ BEGIN IDS_GENERIC_NONE "無" IDS_GENERIC_ALL "所有" IDS_GENERIC_LOCKED "鎖定" + IDS_GENERIC_UNLIMITED "Unlimited" + IDS_GENERIC_SYNTAX "The syntax of this command is:\n\n" + IDS_GENERIC_PAGE "NET HELP command | MORE displays one screen at a time.\n\n"
IDS_ERROR_OPTION_NOT_SUPPORTED "尚不支援 %s 選項。\n" IDS_ERROR_INVALID_OPTION_VALUE "您輸入了無效的值為 %s 選項。\n" IDS_ERROR_SYSTEM_ERROR "The system error %d happened.\n" - IDS_ERROR_NO_ERROR "The command got executed successfully.\n" + IDS_ERROR_NO_ERROR "The command completed successfully.\n\n\n" END diff --git a/base/applications/network/net/resource.h b/base/applications/network/net/resource.h index ebe658898e..3d00b0da60 100644 --- a/base/applications/network/net/resource.h +++ b/base/applications/network/net/resource.h @@ -1,49 +1,69 @@ #pragma once
-#define IDS_ACCOUNTS_SYNTAX 100 -#define IDS_ACCOUNTS_HELP 101 -#define IDS_COMPUTER_SYNTAX 102 -#define IDS_COMPUTER_HELP 103 -#define IDS_CONFIG_SYNTAX 104 -#define IDS_CONFIG_HELP 105 -#define IDS_CONTINUE_SYNTAX 106 -#define IDS_CONTINUE_HELP 107 -#define IDS_FILE_SYNTAX 108 -#define IDS_FILE_HELP 109 -#define IDS_GROUP_SYNTAX 110 -#define IDS_GROUP_HELP 111 -#define IDS_HELPMSG_SYNTAX 112 -#define IDS_HELPMSG_HELP 113 -#define IDS_LOCALGROUP_SYNTAX 114 -#define IDS_LOCALGROUP_HELP 115 -#define IDS_NAME_SYNTAX 116 -#define IDS_NAME_HELP 117 -#define IDS_PAUSE_SYNTAX 118 -#define IDS_PAUSE_HELP 119 -#define IDS_PRINT_SYNTAX 120 -#define IDS_PRINT_HELP 121 -#define IDS_SEND_SYNTAX 122 -#define IDS_SEND_HELP 123 -#define IDS_SESSION_SYNTAX 124 -#define IDS_SESSION_HELP 125 -#define IDS_SHARE_SYNTAX 126 -#define IDS_SHARE_HELP 127 -#define IDS_START_SYNTAX 128 -#define IDS_START_HELP 129 -#define IDS_STATISTICS_SYNTAX 130 -#define IDS_STATISTICS_HELP 131 -#define IDS_STOP_SYNTAX 132 -#define IDS_STOP_HELP 133 -#define IDS_TIME_SYNTAX 134 -#define IDS_TIME_HELP 135 -#define IDS_USE_SYNTAX 136 -#define IDS_USE_HELP 137 -#define IDS_USER_SYNTAX 138 -#define IDS_USER_HELP 139 -#define IDS_VIEW_SYNTAX 140 -#define IDS_VIEW_HELP 141 -#define IDS_HELP_SYNTAX 142 -#define IDS_NET_SYNTAX 143 +#define IDS_ACCOUNTS_SYNTAX 100 +#define IDS_ACCOUNTS_HELP_1 101 +#define IDS_ACCOUNTS_HELP_2 102 +#define IDS_ACCOUNTS_HELP_3 103 +#define IDS_ACCOUNTS_HELP_4 104 +#define IDS_ACCOUNTS_HELP_5 105 +#define IDS_ACCOUNTS_HELP_6 106 +#define IDS_ACCOUNTS_HELP_7 107 +#define IDS_ACCOUNTS_HELP_8 108 +#define IDS_ACCOUNTS_HELP_9 109 +#define IDS_ACCOUNTS_HELP_10 110 +#define IDS_COMPUTER_SYNTAX 111 +#define IDS_COMPUTER_HELP_1 112 +#define IDS_COMPUTER_HELP_2 113 +#define IDS_CONFIG_SYNTAX 114 +#define IDS_CONFIG_HELP_1 115 +#define IDS_CONFIG_HELP_2 116 +#define IDS_CONFIG_SERVER_SYNTAX 117 +#define IDS_CONFIG_SERVER_HELP_1 118 +#define IDS_CONFIG_SERVER_HELP_2 119 +#define IDS_CONFIG_SERVER_HELP_3 120 +#define IDS_CONFIG_SERVER_HELP_4 121 +#define IDS_CONFIG_SERVER_HELP_5 122 +#define IDS_CONTINUE_SYNTAX 123 +#define IDS_CONTINUE_HELP_1 124 +#define IDS_CONTINUE_HELP_2 125 + +#define IDS_FILE_SYNTAX 126 +#define IDS_FILE_HELP 127 + +#define IDS_GROUP_SYNTAX 132 +#define IDS_GROUP_HELP 133 +#define IDS_HELPMSG_SYNTAX 134 +#define IDS_HELPMSG_HELP 135 +#define IDS_LOCALGROUP_SYNTAX 136 +#define IDS_LOCALGROUP_HELP 137 +#define IDS_NAME_SYNTAX 138 +#define IDS_NAME_HELP 139 +#define IDS_PAUSE_SYNTAX 140 +#define IDS_PAUSE_HELP 141 +#define IDS_PRINT_SYNTAX 142 +#define IDS_PRINT_HELP 143 +#define IDS_SEND_SYNTAX 144 +#define IDS_SEND_HELP 145 +#define IDS_SESSION_SYNTAX 146 +#define IDS_SESSION_HELP 147 +#define IDS_SHARE_SYNTAX 148 +#define IDS_SHARE_HELP 149 +#define IDS_START_SYNTAX 150 +#define IDS_START_HELP 151 +#define IDS_STATISTICS_SYNTAX 152 +#define IDS_STATISTICS_HELP 153 +#define IDS_STOP_SYNTAX 154 +#define IDS_STOP_HELP 155 +#define IDS_TIME_SYNTAX 156 +#define IDS_TIME_HELP 157 +#define IDS_USE_SYNTAX 158 +#define IDS_USE_HELP 159 +#define IDS_USER_SYNTAX 160 +#define IDS_USER_HELP 161 +#define IDS_VIEW_SYNTAX 162 +#define IDS_VIEW_HELP 163 +#define IDS_HELP_SYNTAX 164 +#define IDS_NET_SYNTAX 165
#define IDS_ACCOUNTS_FORCE_LOGOFF 200 #define IDS_ACCOUNTS_LOGOFF_SECONDS 201 @@ -99,6 +119,9 @@ #define IDS_GENERIC_NONE 603 #define IDS_GENERIC_ALL 604 #define IDS_GENERIC_LOCKED 605 +#define IDS_GENERIC_UNLIMITED 606 +#define IDS_GENERIC_SYNTAX 607 +#define IDS_GENERIC_PAGE 608
#define IDS_ERROR_OPTION_NOT_SUPPORTED 700 #define IDS_ERROR_INVALID_OPTION_VALUE 701