mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 17:05:45 +00:00
[MC] Fix build of message text files for latest VS version
* Latest VS does not like half translated files :/ * errcodes.mc is duplicated in kernel32 * It would probably be better to separate each language into it's own file, but we need a build mechanism for that
This commit is contained in:
parent
2afb483a9e
commit
c73c4f0cb3
3 changed files with 5557 additions and 2 deletions
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,13 @@
|
||||||
;
|
;
|
||||||
; netevent.mc MESSAGE resources for netevent.dll
|
; netevent.mc MESSAGE resources for netevent.dll
|
||||||
;
|
;
|
||||||
|
;
|
||||||
|
; IMPORTANT: When a new language is added, all messages in this file need to be
|
||||||
|
; either translated or at least duplicated for the new language.
|
||||||
|
; This is a new requirement by MS mc.exe
|
||||||
|
; To do this, start with a regex replace:
|
||||||
|
; - In VS IDE: "Language=English\r\n(?<String>(?:[^\.].*\r\n)*\.\r\n)" -> "Language=English\r\n${String}Language=MyLanguage\r\n${String}"
|
||||||
|
;
|
||||||
|
|
||||||
MessageIdTypedef=DWORD
|
MessageIdTypedef=DWORD
|
||||||
|
|
||||||
|
@ -134,6 +141,15 @@ Language=English
|
||||||
Eventlog Service %0
|
Eventlog Service %0
|
||||||
.
|
.
|
||||||
Language=Russian
|
Language=Russian
|
||||||
|
|
||||||
|
;
|
||||||
|
; IMPORTANT: When a new language is added, all messages in this file need to be
|
||||||
|
; either translated or at least duplicated for the new language.
|
||||||
|
; This is a new requirement by MS mc.exe
|
||||||
|
; To do this, start with a regex replace:
|
||||||
|
; - In VS IDE: "Language=English\r\n(?<String>(?:[^\.].*\r\n)*\.\r\n)" -> "Language=English\r\n${String}Language=MyLanguage\r\n${String}"
|
||||||
|
;
|
||||||
|
|
||||||
Служба журнала событий %0
|
Служба журнала событий %0
|
||||||
.
|
.
|
||||||
Language=French
|
Language=French
|
||||||
|
@ -161,6 +177,9 @@ SymbolicName=EVENT_EventLogProductInfo
|
||||||
Language=English
|
Language=English
|
||||||
ReactOS %1 %2 %3 %4.
|
ReactOS %1 %2 %3 %4.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
ReactOS %1 %2 %3 %4.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
ReactOS %1 %2 %3 %4.
|
ReactOS %1 %2 %3 %4.
|
||||||
.
|
.
|
||||||
|
@ -308,6 +327,9 @@ SymbolicName=EVENT_CALL_TO_FUNCTION_FAILED_II
|
||||||
Language=English
|
Language=English
|
||||||
The %1 call failed for %2 with the following error: %n%3
|
The %1 call failed for %2 with the following error: %n%3
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 call failed for %2 with the following error: %n%3
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
L'appel %1 a échoué pour %2 avec l'erreur suivante : %n%3
|
L'appel %1 a échoué pour %2 avec l'erreur suivante : %n%3
|
||||||
.
|
.
|
||||||
|
@ -319,6 +341,9 @@ SymbolicName=EVENT_REVERTED_TO_LASTKNOWNGOOD
|
||||||
Language=English
|
Language=English
|
||||||
The system reverted to its last known good configuration. The system is restarting....
|
The system reverted to its last known good configuration. The system is restarting....
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The system reverted to its last known good configuration. The system is restarting....
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le système a restauré sa dernière bonne configuration connue. Le système redémarre...
|
Le système a restauré sa dernière bonne configuration connue. Le système redémarre...
|
||||||
.
|
.
|
||||||
|
@ -330,6 +355,9 @@ SymbolicName=EVENT_BAD_ACCOUNT_NAME
|
||||||
Language=English
|
Language=English
|
||||||
No backslash is in the account name.
|
No backslash is in the account name.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
No backslash is in the account name.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Aucun backslash n'est présent dans le nom de compte.
|
Aucun backslash n'est présent dans le nom de compte.
|
||||||
.
|
.
|
||||||
|
@ -341,6 +369,9 @@ SymbolicName=EVENT_CONNECTION_TIMEOUT
|
||||||
Language=English
|
Language=English
|
||||||
Timeout (%1 milliseconds) waiting for the %2 service to connect.
|
Timeout (%1 milliseconds) waiting for the %2 service to connect.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Timeout (%1 milliseconds) waiting for the %2 service to connect.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Expiration du délai (%1 millisecondes) lors de l'attente du service %2 pour se connecter.
|
Expiration du délai (%1 millisecondes) lors de l'attente du service %2 pour se connecter.
|
||||||
.
|
.
|
||||||
|
@ -352,6 +383,9 @@ SymbolicName=EVENT_READFILE_TIMEOUT
|
||||||
Language=English
|
Language=English
|
||||||
Timeout (%1 milliseconds) waiting for ReadFile.
|
Timeout (%1 milliseconds) waiting for ReadFile.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Timeout (%1 milliseconds) waiting for ReadFile.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Expiration du délai (%1 millisecondes) lors de l'attente de ReadFile.
|
Expiration du délai (%1 millisecondes) lors de l'attente de ReadFile.
|
||||||
.
|
.
|
||||||
|
@ -363,6 +397,9 @@ SymbolicName=EVENT_TRANSACT_TIMEOUT
|
||||||
Language=English
|
Language=English
|
||||||
Timeout (%1 milliseconds) waiting for a transaction response from the %2 service.
|
Timeout (%1 milliseconds) waiting for a transaction response from the %2 service.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Timeout (%1 milliseconds) waiting for a transaction response from the %2 service.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Expiration du délai (%1 millisecondes) lors de l'attente pour une transaction réponse du service %2.
|
Expiration du délai (%1 millisecondes) lors de l'attente pour une transaction réponse du service %2.
|
||||||
.
|
.
|
||||||
|
@ -374,6 +411,9 @@ SymbolicName=EVENT_TRANSACT_INVALID
|
||||||
Language=English
|
Language=English
|
||||||
Message returned in transaction has incorrect size.
|
Message returned in transaction has incorrect size.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Message returned in transaction has incorrect size.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le message retourné dans la transaction a une taille incorrecte.
|
Le message retourné dans la transaction a une taille incorrecte.
|
||||||
.
|
.
|
||||||
|
@ -385,6 +425,9 @@ SymbolicName=EVENT_FIRST_LOGON_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
Logon attempt with current password failed with the following error: %n%1
|
Logon attempt with current password failed with the following error: %n%1
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Logon attempt with current password failed with the following error: %n%1
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
La tentative de connexion avec le mot de passe actuel a échoué avec l'erreur suivante : %n%1
|
La tentative de connexion avec le mot de passe actuel a échoué avec l'erreur suivante : %n%1
|
||||||
.
|
.
|
||||||
|
@ -396,6 +439,9 @@ SymbolicName=EVENT_SECOND_LOGON_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
Second logon attempt with old password also failed with the following error: %n%1
|
Second logon attempt with old password also failed with the following error: %n%1
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Second logon attempt with old password also failed with the following error: %n%1
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
La seconde tentative de connexion avec l'ancien mot de passe a également échoué avec l'erreur suivante : %n%1
|
La seconde tentative de connexion avec l'ancien mot de passe a également échoué avec l'erreur suivante : %n%1
|
||||||
.
|
.
|
||||||
|
@ -407,6 +453,9 @@ SymbolicName=EVENT_INVALID_DRIVER_DEPENDENCY
|
||||||
Language=English
|
Language=English
|
||||||
Boot-start or system-start driver (%1) must not depend on a service.
|
Boot-start or system-start driver (%1) must not depend on a service.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Boot-start or system-start driver (%1) must not depend on a service.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Un pilote au démarrage ou système (%1) ne doit pas dépendre d'un service.
|
Un pilote au démarrage ou système (%1) ne doit pas dépendre d'un service.
|
||||||
.
|
.
|
||||||
|
@ -418,6 +467,9 @@ SymbolicName=EVENT_BAD_SERVICE_STATE
|
||||||
Language=English
|
Language=English
|
||||||
The %1 service has reported an invalid current state %2.
|
The %1 service has reported an invalid current state %2.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service has reported an invalid current state %2.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 a reporté un état courant invalide %2.
|
Le service %1 a reporté un état courant invalide %2.
|
||||||
.
|
.
|
||||||
|
@ -429,6 +481,9 @@ SymbolicName=EVENT_CIRCULAR_DEPENDENCY_DEMAND
|
||||||
Language=English
|
Language=English
|
||||||
Detected circular dependencies demand starting %1.
|
Detected circular dependencies demand starting %1.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Detected circular dependencies demand starting %1.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Dépendances circulaires détectées lors du démarrage de %1.
|
Dépendances circulaires détectées lors du démarrage de %1.
|
||||||
.
|
.
|
||||||
|
@ -440,6 +495,9 @@ SymbolicName=EVENT_CIRCULAR_DEPENDENCY_AUTO
|
||||||
Language=English
|
Language=English
|
||||||
Detected circular dependencies auto-starting services.
|
Detected circular dependencies auto-starting services.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Detected circular dependencies auto-starting services.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Dépendances circulaires détectées lors du démarrage automatique des services.
|
Dépendances circulaires détectées lors du démarrage automatique des services.
|
||||||
.
|
.
|
||||||
|
@ -451,6 +509,9 @@ SymbolicName=EVENT_DEPEND_ON_LATER_SERVICE
|
||||||
Language=English
|
Language=English
|
||||||
Circular dependency: The %1 service depends on a service in a group which starts later.
|
Circular dependency: The %1 service depends on a service in a group which starts later.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Circular dependency: The %1 service depends on a service in a group which starts later.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Dépendance circulaire : le service %1 dépend d'un service dans un groupe qui démarre plus tard.
|
Dépendance circulaire : le service %1 dépend d'un service dans un groupe qui démarre plus tard.
|
||||||
.
|
.
|
||||||
|
@ -462,6 +523,9 @@ SymbolicName=EVENT_DEPEND_ON_LATER_GROUP
|
||||||
Language=English
|
Language=English
|
||||||
Circular dependency: The %1 service depends on a group which starts later.
|
Circular dependency: The %1 service depends on a group which starts later.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Circular dependency: The %1 service depends on a group which starts later.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Dépendance circulaire : le service %1 dépend d'un groupe qui démarre plus tard.
|
Dépendance circulaire : le service %1 dépend d'un groupe qui démarre plus tard.
|
||||||
.
|
.
|
||||||
|
@ -473,6 +537,9 @@ SymbolicName=EVENT_SEVERE_SERVICE_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
About to revert to the last known good configuration because the %1 service failed to start.
|
About to revert to the last known good configuration because the %1 service failed to start.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
About to revert to the last known good configuration because the %1 service failed to start.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Sur le point de revenir à la dernière bonne configuration connue car le service %1 n'a pas réussi à démarrer.
|
Sur le point de revenir à la dernière bonne configuration connue car le service %1 n'a pas réussi à démarrer.
|
||||||
.
|
.
|
||||||
|
@ -498,6 +565,9 @@ SymbolicName=EVENT_SERVICE_EXIT_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
The %1 service terminated with the following error: %n%2
|
The %1 service terminated with the following error: %n%2
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service terminated with the following error: %n%2
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 s'est terminé avec l'erreur suivante : %n%2
|
Le service %1 s'est terminé avec l'erreur suivante : %n%2
|
||||||
.
|
.
|
||||||
|
@ -509,6 +579,9 @@ SymbolicName=EVENT_SERVICE_EXIT_FAILED_SPECIFIC
|
||||||
Language=English
|
Language=English
|
||||||
The %1 service terminated with service-specific error %2.
|
The %1 service terminated with service-specific error %2.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service terminated with service-specific error %2.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 s'est terminé avec une erreur spécifique au service %2.
|
Le service %1 s'est terminé avec une erreur spécifique au service %2.
|
||||||
.
|
.
|
||||||
|
@ -520,6 +593,9 @@ SymbolicName=EVENT_SERVICE_START_AT_BOOT_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
At least one service or driver failed during system startup. Use Event Viewer to examine the event log for details.
|
At least one service or driver failed during system startup. Use Event Viewer to examine the event log for details.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
At least one service or driver failed during system startup. Use Event Viewer to examine the event log for details.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Au moins un service ou pilote a échoué durant le démarrage du système. Utilisez la visionneuse d'évènements pour examiner les journaux d'évènements pour plus de détails.
|
Au moins un service ou pilote a échoué durant le démarrage du système. Utilisez la visionneuse d'évènements pour examiner les journaux d'évènements pour plus de détails.
|
||||||
.
|
.
|
||||||
|
@ -531,6 +607,9 @@ SymbolicName=EVENT_BOOT_SYSTEM_DRIVERS_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
The following boot-start or system-start driver(s) failed to load: %1
|
The following boot-start or system-start driver(s) failed to load: %1
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The following boot-start or system-start driver(s) failed to load: %1
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le pilote au démarrage ou système suivant n'a pas pu être chargé : %1
|
Le pilote au démarrage ou système suivant n'a pas pu être chargé : %1
|
||||||
.
|
.
|
||||||
|
@ -542,6 +621,9 @@ SymbolicName=EVENT_RUNNING_LASTKNOWNGOOD
|
||||||
Language=English
|
Language=English
|
||||||
ReactOS could not be started as configured. A previous working configuration was used instead.
|
ReactOS could not be started as configured. A previous working configuration was used instead.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
ReactOS could not be started as configured. A previous working configuration was used instead.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
ReactOS n'a pas pu démarrer tel que configuré. Une précédente configuration fonctionnelle a été utilisé à la place.
|
ReactOS n'a pas pu démarrer tel que configuré. Une précédente configuration fonctionnelle a été utilisé à la place.
|
||||||
.
|
.
|
||||||
|
@ -553,6 +635,9 @@ SymbolicName=EVENT_TAKE_OWNERSHIP
|
||||||
Language=English
|
Language=English
|
||||||
The %1 Registry key denied access to SYSTEM account programs so the Service Control Manager took ownership of the Registry key.
|
The %1 Registry key denied access to SYSTEM account programs so the Service Control Manager took ownership of the Registry key.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 Registry key denied access to SYSTEM account programs so the Service Control Manager took ownership of the Registry key.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
La clé de registre %1 a refusé l'accès aux programmes du compte SYSTEM. Le gestionnaire de contrôle des services s'est approprié la clé de registre.
|
La clé de registre %1 a refusé l'accès aux programmes du compte SYSTEM. Le gestionnaire de contrôle des services s'est approprié la clé de registre.
|
||||||
.
|
.
|
||||||
|
@ -564,6 +649,9 @@ SymbolicName=TITLE_SC_MESSAGE_BOX
|
||||||
Language=English
|
Language=English
|
||||||
Service Control Manager %0
|
Service Control Manager %0
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
Service Control Manager %0
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Gestionnaire de contrôle des services %0
|
Gestionnaire de contrôle des services %0
|
||||||
.
|
.
|
||||||
|
@ -575,6 +663,9 @@ SymbolicName=EVENT_SERVICE_NOT_INTERACTIVE
|
||||||
Language=English
|
Language=English
|
||||||
The %1 service is marked as an interactive service. However, the system is configured to not allow interactive services. This service may not function properly.
|
The %1 service is marked as an interactive service. However, the system is configured to not allow interactive services. This service may not function properly.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service is marked as an interactive service. However, the system is configured to not allow interactive services. This service may not function properly.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 est marqué comme service interactif. Cependant, le système est configuré pour ne pas autoriser les services interactifs. Ce service pourrait ne pas fonctionner correctement.
|
Le service %1 est marqué comme service interactif. Cependant, le système est configuré pour ne pas autoriser les services interactifs. Ce service pourrait ne pas fonctionner correctement.
|
||||||
.
|
.
|
||||||
|
@ -586,6 +677,9 @@ SymbolicName=EVENT_SERVICE_CRASH
|
||||||
Language=English
|
Language=English
|
||||||
The %1 service terminated unexpectedly. It has done this %2 time(s). The following corrective action will be taken in %3 milliseconds: %5.
|
The %1 service terminated unexpectedly. It has done this %2 time(s). The following corrective action will be taken in %3 milliseconds: %5.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service terminated unexpectedly. It has done this %2 time(s). The following corrective action will be taken in %3 milliseconds: %5.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 s'est terminée de façon non prévue. Il l'a fait %2 fois. L'action corrective suivante va être prise dans %3 millisecondes : %5.
|
Le service %1 s'est terminée de façon non prévue. Il l'a fait %2 fois. L'action corrective suivante va être prise dans %3 millisecondes : %5.
|
||||||
.
|
.
|
||||||
|
@ -597,6 +691,9 @@ SymbolicName=EVENT_SERVICE_RECOVERY_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
The Service Control Manager tried to take a corrective action (%2) after the unexpected termination of the %3 service, but this action failed with the following error: %n%4
|
The Service Control Manager tried to take a corrective action (%2) after the unexpected termination of the %3 service, but this action failed with the following error: %n%4
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The Service Control Manager tried to take a corrective action (%2) after the unexpected termination of the %3 service, but this action failed with the following error: %n%4
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le gestionnaire de contrôle des services a tenté de prendre une action corrective (%2) après la fin inattendue du service %3, mais cette action a échoué avec l'erreur suivante : %n%4
|
Le gestionnaire de contrôle des services a tenté de prendre une action corrective (%2) après la fin inattendue du service %3, mais cette action a échoué avec l'erreur suivante : %n%4
|
||||||
.
|
.
|
||||||
|
@ -610,6 +707,11 @@ The Service Control Manager did not initialize successfully. The security
|
||||||
configuration server (scesrv.dll) failed to initialize with error %1. The
|
configuration server (scesrv.dll) failed to initialize with error %1. The
|
||||||
system is restarting...
|
system is restarting...
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The Service Control Manager did not initialize successfully. The security
|
||||||
|
configuration server (scesrv.dll) failed to initialize with error %1. The
|
||||||
|
system is restarting...
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le gestionnaire de contrôle des services ne s'est pas initialisé correctement.
|
Le gestionnaire de contrôle des services ne s'est pas initialisé correctement.
|
||||||
Le serveur de configuration de sécurité (scesrv.dll) n'a pas réussi à s'initialiser
|
Le serveur de configuration de sécurité (scesrv.dll) n'a pas réussi à s'initialiser
|
||||||
|
@ -666,6 +768,14 @@ Language=English
|
||||||
The Service Control Manager encountered an error undoing a configuration change
|
The Service Control Manager encountered an error undoing a configuration change
|
||||||
to the %1 service. The service's %2 is currently in an unpredictable state.
|
to the %1 service. The service's %2 is currently in an unpredictable state.
|
||||||
|
|
||||||
|
If you do not correct this configuration, you may not be able to restart the %1
|
||||||
|
service or may encounter other errors. To ensure that the service is configured
|
||||||
|
properly, use the Services snap-in in Microsoft Management Console (MMC).
|
||||||
|
.
|
||||||
|
Language=Russian
|
||||||
|
The Service Control Manager encountered an error undoing a configuration change
|
||||||
|
to the %1 service. The service's %2 is currently in an unpredictable state.
|
||||||
|
|
||||||
If you do not correct this configuration, you may not be able to restart the %1
|
If you do not correct this configuration, you may not be able to restart the %1
|
||||||
service or may encounter other errors. To ensure that the service is configured
|
service or may encounter other errors. To ensure that the service is configured
|
||||||
properly, use the Services snap-in in Microsoft Management Console (MMC).
|
properly, use the Services snap-in in Microsoft Management Console (MMC).
|
||||||
|
@ -691,6 +801,12 @@ password due to the following error: %n%3%n%nTo ensure that the service is
|
||||||
configured properly, use the Services snap-in in Microsoft Management
|
configured properly, use the Services snap-in in Microsoft Management
|
||||||
Console (MMC).
|
Console (MMC).
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service was unable to log on as %2 with the currently configured
|
||||||
|
password due to the following error: %n%3%n%nTo ensure that the service is
|
||||||
|
configured properly, use the Services snap-in in Microsoft Management
|
||||||
|
Console (MMC).
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 n'a pas réussi à s'identifier en tant que %2 avec le mot de passe
|
Le service %1 n'a pas réussi à s'identifier en tant que %2 avec le mot de passe
|
||||||
actuellement configuré en raison de l'erreur suivante : %n%3%n%nPour vous assurer
|
actuellement configuré en raison de l'erreur suivante : %n%3%n%nPour vous assurer
|
||||||
|
@ -707,6 +823,13 @@ A service process other than the one launched by the Service Control Manager
|
||||||
connected when starting the %1 service. The Service Control Manager launched
|
connected when starting the %1 service. The Service Control Manager launched
|
||||||
process %2 and process %3 connected instead.%n%n
|
process %2 and process %3 connected instead.%n%n
|
||||||
|
|
||||||
|
Note that if this service is configured to start under a debugger, this behavior is expected.
|
||||||
|
.
|
||||||
|
Language=Russian
|
||||||
|
A service process other than the one launched by the Service Control Manager
|
||||||
|
connected when starting the %1 service. The Service Control Manager launched
|
||||||
|
process %2 and process %3 connected instead.%n%n
|
||||||
|
|
||||||
Note that if this service is configured to start under a debugger, this behavior is expected.
|
Note that if this service is configured to start under a debugger, this behavior is expected.
|
||||||
.
|
.
|
||||||
Language=French
|
Language=French
|
||||||
|
@ -751,6 +874,22 @@ user right appears to be removed, a Group Policy object associated with this
|
||||||
node might be removing the right. Check with your domain administrator to find
|
node might be removing the right. Check with your domain administrator to find
|
||||||
out if this is happening.
|
out if this is happening.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service was unable to log on as %2 with the currently configured password due to the following error:%n
|
||||||
|
Logon failure: the user has not been granted the requested logon type at this computer.%n%n
|
||||||
|
Service: %1%n
|
||||||
|
Domain and account: %2%n%n
|
||||||
|
This service account does not have the necessary user right "Log on as a service."%n%n
|
||||||
|
User Action%n%n
|
||||||
|
Assign "Log on as a service" to the service account on this computer. You can
|
||||||
|
use Local Security Settings (Secpol.msc) to do this. If this computer is a
|
||||||
|
node in a cluster, check that this user right is assigned to the Cluster
|
||||||
|
service account on all nodes in the cluster.%n%n
|
||||||
|
If you have already assigned this user right to the service account, and the
|
||||||
|
user right appears to be removed, a Group Policy object associated with this
|
||||||
|
node might be removing the right. Check with your domain administrator to find
|
||||||
|
out if this is happening.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 n'a pas réussi à s'identifier en tant que %2 avec le mot de passe
|
Le service %1 n'a pas réussi à s'identifier en tant que %2 avec le mot de passe
|
||||||
actuellement configuré en raison de l'erreur suivante : %n
|
actuellement configuré en raison de l'erreur suivante : %n
|
||||||
|
@ -777,6 +916,11 @@ The %1 service was successfully sent a %2 control.%n%n
|
||||||
The reason specified was: %3 [%4]%n%n
|
The reason specified was: %3 [%4]%n%n
|
||||||
Comment: %5
|
Comment: %5
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service was successfully sent a %2 control.%n%n
|
||||||
|
The reason specified was: %3 [%4]%n%n
|
||||||
|
Comment: %5
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le contrôle %2 a été envoyé avec succès au service %1.%n%n
|
Le contrôle %2 a été envoyé avec succès au service %1.%n%n
|
||||||
La raison spécifiée était : %3 [%4]%n%n
|
La raison spécifiée était : %3 [%4]%n%n
|
||||||
|
@ -790,6 +934,9 @@ SymbolicName=EVENT_SERVICE_SHUTDOWN_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
The %1 service did not shut down properly after receiving a preshutdown control.
|
The %1 service did not shut down properly after receiving a preshutdown control.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The %1 service did not shut down properly after receiving a preshutdown control.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
Le service %1 ne s'est pas arrêté proprement après avoir reçu un contrôle de pré-arrêt.
|
Le service %1 ne s'est pas arrêté proprement après avoir reçu un contrôle de pré-arrêt.
|
||||||
.
|
.
|
||||||
|
@ -806,6 +953,9 @@ SymbolicName=EVENT_TRANSPORT_REGISTER_FAILED
|
||||||
Language=English
|
Language=English
|
||||||
%2 failed to register itself with the NDIS wrapper.
|
%2 failed to register itself with the NDIS wrapper.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
%2 failed to register itself with the NDIS wrapper.
|
||||||
|
.
|
||||||
Language=French
|
Language=French
|
||||||
%2 n'a pas réussi à s'enregistrer avec le wrapper NDIS.
|
%2 n'a pas réussi à s'enregistrer avec le wrapper NDIS.
|
||||||
.
|
.
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
;
|
;
|
||||||
; netmsg_msg.mc MESSAGE resources for netmsg.dll
|
; netmsg_msg.mc MESSAGE resources for netmsg.dll
|
||||||
;
|
;
|
||||||
|
;
|
||||||
|
; IMPORTANT: When a new language is added, all messages in this file need to be
|
||||||
|
; either translated or at least duplicated for the new language.
|
||||||
|
; This is a new requirement by MS mc.exe
|
||||||
|
; To do this, start with a regex replace:
|
||||||
|
; - In VS IDE: "Language=English\r\n(?<String>(?:[^\.].*\r\n)*\.\r\n)" -> "Language=English\r\n${String}Language=MyLanguage\r\n${String}"
|
||||||
|
;
|
||||||
|
|
||||||
MessageIdTypedef=DWORD
|
MessageIdTypedef=DWORD
|
||||||
|
|
||||||
|
@ -13,7 +20,8 @@ SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
|
||||||
FacilityNames=(System=0x0:FACILITY_SYSTEM
|
FacilityNames=(System=0x0:FACILITY_SYSTEM
|
||||||
)
|
)
|
||||||
|
|
||||||
LanguageNames=(English=0x409:MSG00409)
|
LanguageNames=(English=0x409:MSG00409
|
||||||
|
Russian=0x419:MSG00419)
|
||||||
|
|
||||||
|
|
||||||
;
|
;
|
||||||
|
@ -27,6 +35,9 @@ SymbolicName=NERR_NetNotStarted
|
||||||
Language=English
|
Language=English
|
||||||
The workstation driver is not installed.
|
The workstation driver is not installed.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The workstation driver is not installed.
|
||||||
|
.
|
||||||
|
|
||||||
MessageId=2103
|
MessageId=2103
|
||||||
Severity=Success
|
Severity=Success
|
||||||
|
@ -35,6 +46,9 @@ SymbolicName=NERR_UnknownServer
|
||||||
Language=English
|
Language=English
|
||||||
The server could not be located.
|
The server could not be located.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The server could not be located.
|
||||||
|
.
|
||||||
|
|
||||||
MessageId=2104
|
MessageId=2104
|
||||||
Severity=Success
|
Severity=Success
|
||||||
|
@ -43,6 +57,9 @@ SymbolicName=NERR_ShareMem
|
||||||
Language=English
|
Language=English
|
||||||
An internal error occurred. The network cannot access a shared memory segment.
|
An internal error occurred. The network cannot access a shared memory segment.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
An internal error occurred. The network cannot access a shared memory segment.
|
||||||
|
.
|
||||||
|
|
||||||
MessageId=2105
|
MessageId=2105
|
||||||
Severity=Success
|
Severity=Success
|
||||||
|
@ -51,6 +68,9 @@ SymbolicName=NERR_NoNetworkResource
|
||||||
Language=English
|
Language=English
|
||||||
A network resource shortage occurred.
|
A network resource shortage occurred.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
A network resource shortage occurred.
|
||||||
|
.
|
||||||
|
|
||||||
MessageId=2106
|
MessageId=2106
|
||||||
Severity=Success
|
Severity=Success
|
||||||
|
@ -59,6 +79,9 @@ SymbolicName=NERR_RemoteOnly
|
||||||
Language=English
|
Language=English
|
||||||
This operation is not supported on workstations.
|
This operation is not supported on workstations.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
This operation is not supported on workstations.
|
||||||
|
.
|
||||||
|
|
||||||
MessageId=2107
|
MessageId=2107
|
||||||
Severity=Success
|
Severity=Success
|
||||||
|
@ -67,6 +90,9 @@ SymbolicName=NERR_DevNotRedirected
|
||||||
Language=English
|
Language=English
|
||||||
The device is not connected.
|
The device is not connected.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The device is not connected.
|
||||||
|
.
|
||||||
|
|
||||||
|
|
||||||
;
|
;
|
||||||
|
@ -80,6 +106,9 @@ SymbolicName=OTHER_3000
|
||||||
Language=English
|
Language=English
|
||||||
The command completed successfully.
|
The command completed successfully.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The command completed successfully.
|
||||||
|
.
|
||||||
|
|
||||||
MessageId=3515
|
MessageId=3515
|
||||||
Severity=Success
|
Severity=Success
|
||||||
|
@ -88,3 +117,6 @@ SymbolicName=OTHER_3515
|
||||||
Language=English
|
Language=English
|
||||||
The command can be used only on a Domain Controller.
|
The command can be used only on a Domain Controller.
|
||||||
.
|
.
|
||||||
|
Language=Russian
|
||||||
|
The command can be used only on a Domain Controller.
|
||||||
|
.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue