forked from kirillkovalenko/nssm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages.mc
3174 lines (2900 loc) · 164 KB
/
messages.mc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LanguageNames =
(
English=0x0409:MSG00409
French=0x40C:MSG0040C
Italian=0x410:MSG00410
)
MessageId = 501
SymbolicName = NSSM_MESSAGE_USAGE
Severity = Informational
Language = English
NSSM: The non-sucking service manager
Version %s %s, %s
Usage: nssm <option> [<args> ...]
To show service installation GUI:
nssm install [<servicename>]
To install a service without confirmation:
nssm install <servicename> <app> [<args> ...]
To show service editing GUI:
nssm edit <servicename>
To retrieve or edit service parameters directly:
nssm dump <servicename>
nssm get <servicename> <parameter> [<subparameter>]
nssm set <servicename> <parameter> [<subparameter>] <value>
nssm reset <servicename> <parameter> [<subparameter>]
To show service removal GUI:
nssm remove [<servicename>]
To remove a service without confirmation:
nssm remove <servicename> confirm
To manage a service:
nssm start <servicename>
nssm stop <servicename>
nssm restart <servicename>
nssm status <servicename>
nssm statuscode <servicename>
nssm rotate <servicename>
nssm processes <servicename>
.
Language = French
NSSM: Le gestionnaire de services Windows pour les professionnels!
Version %s %s, %s
Syntaxe: nssm <option> [<arguments> ...]
Pour afficher l'écran d'installation du service:
nssm install [<nom_du_service>]
Pour installer un service sans confirmation:
nssm install <nom_du_service> <application> [<arguments> ...]
Pour afficher l'écran d'édition du service:
nssm edit <nom_du_service>
Pour éditer un service:
nssm dump <nom_du_service>
nssm get <nom_du_service> <paramètre> [<sous-paramètre>]
nssm set <nom_du_service> <paramètre> [<sous-paramètre>] <valeur>
nssm reset <nom_du_service> <paramètre> [<sous-paramètre>]
Pour afficher l'écran de désinstallation du service:
nssm remove [<nom_du_service>]
Pour désinstaller un service sans confirmation:
nssm remove <nom_du_service> confirm
Pour gérer un service:
nssm start <nom_du_service>
nssm stop <nom_du_service>
nssm restart <nom_du_service>
nssm status <nom_du_service>
nssm statuscode <nom_du_service>
nssm rotate <nom_du_service>
nssm processes <nom_du_service>
.
Language = Italian
NSSM: il Service Manager professionale.
Versione %s %s, %s
Uso: nssm <comando> [<argomenti> ...]
Per aprire l'interfaccia di INSTALLAZIONE Servizio:
nssm install [<nomeservizio>]
Per INSTALLARE un servizio da riga di comando:
nssm install <nomeservizio> <applicazione> [<argomenti> ...]
Per aprire l'interfaccia di MODIFICA servizio:
nssm edit <nomeservizio>
Per GESTIRE un parametro di un servizio da riga di comando:
nssm dump <nomeservizio>
nssm get <nomeservizio> <parametro> [<sottoparametro>]
nssm set <nomeservizio> <parametro> [<sottoparametro>] <valore>
nssm reset <nomeservizio> <parametro> [<sottoparametro>]
Per aprire l'interfaccia di RIMOZIONE Servizio:
nssm remove [<nomeservizio>]
Per RIMUOVERE un servizio da riga di comando:
nssm remove <nomeservizio> confirm
Per GESTIRE un servizio da riga di comando:
nssm start <nomeservizio>
nssm stop <nomeservizio>
nssm restart <nomeservizio>
nssm status <nomeservizio>
nssm statuscode <nomeservizio>
nssm rotate <nomeservizio>
nssm processes <nomeservizio>
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_INSTALL
Severity = Informational
Language = English
Administrator access is needed to install a service.
.
Language = French
Les droits d'administrateur sont requis pour installer un service.
.
Language = Italian
L'installazione di un servizio richiede privilegi di amministratore.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_EDIT
Severity = Informational
Language = English
Administrator access is needed to edit a service.
.
Language = French
Les droits d'administrateur sont requis pour éditer un service.
.
Language = Italian
La modifica di un servizio richiede privilegi di amministratore.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NOT_ADMINISTRATOR_CANNOT_REMOVE
Severity = Informational
Language = English
Administrator access is needed to remove a service.
.
Language = French
Les droits d'administrateur sont requis pour désinstaller un service.
.
Language = Italian
La rimozione di un servizio richiede privilegi di amministratore.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_PRE_REMOVE_SERVICE
Severity = Informational
Language = English
To remove a service without confirmation: nssm remove <servicename> confirm
.
Language = French
Pour désinstaller un service sans confirmation: nssm remove <nom_du_service> confirm
.
Language = Italian
Per rimuovere un servizio da riga di comando: nssm remove <servicename> confirm
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_OUT_OF_MEMORY
Severity = Error
Language = English
Out of memory for %s in %s!
.
Language = French
Mémoire insuffisante pour %s dans %s!
.
Language = Italian
Memoria insufficiente per %s in %s!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_OPEN_SERVICE_MANAGER_FAILED
Severity = Informational
Language = English
Error opening service manager!
.
Language = French
Erreur à l'ouverture du gestionnaire de services!
.
Language = Italian
Errore apertura del Service Manager!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_QUERYSERVICECONFIG_FAILED
Severity = Informational
Language = English
Error querying service "%s"!
QueryServiceConfig(): %s
.
Language = French
Erreur lors de l'accès à la configuration du service "%s"!
QueryServiceConfig(): %s
.
Language = Italian
Errore accesso alla configurazione del servizio "%s"!
QueryServiceConfig(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_QUERYSERVICECONFIG2_FAILED
Severity = Informational
Language = English
Error querying service "%s"!
QueryServiceConfig2(%s): %s
.
Language = French
Erreur lors de l'accès à la configuration du service "%s"!
QueryServiceConfig2(%s): %s
.
Language = Italian
Errore accesso alla configurazione del servizio "%s"!
QueryServiceConfig2(%s): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_SERVICE
Severity = Informational
Language = English
Service "%s" is not a valid %s service!
Executable is %s
.
Language = French
Le service "%s" n'est pas un service %s valide!
Executable is %s
.
Language = Italian
Servizio "%s" non è un valido servizio %s!
Executable is %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CANNOT_EDIT
Severity = Informational
Language = English
Service "%s" is not a %s service!
.
Language = French
Le service "%s" n'est pas un service %s!
.
Language = Italian
Servizio "%s" non è un servizio %s!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_PATH_TOO_LONG
Severity = Informational
Language = English
The full path to %s is too long!
.
Language = French
Le chemin complet vers %s est trop long!
.
Language = Italian
Il path completo verso %s è troppo lungo!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_FLAGS_TOO_LONG
Severity = Informational
Language = English
The program flags are too long!
.
Language = French
Chaine d'arguments trop longue!
.
Language = Italian
Gli argomenti applicazione sono troppo lunghi!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_OUT_OF_MEMORY_FOR_IMAGEPATH
Severity = Informational
Language = English
Out of memory for ImagePath!
.
Language = French
Mémoire insuffisante pour spécifier le chemin de l'image (ImagePath)!
.
Language = Italian
Memoria insufficiente per ImagePath!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CREATESERVICE_FAILED
Severity = Informational
Language = English
Error creating service!
CreateService(): %s
.
Language = French
Erreur à la création du service!
CreateService(): %s
.
Language = Italian
Errore creazione servizio!
CreateService(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_GRANTED_LOGON_AS_SERVICE
Severity = Informational
Language = English
The "Log on as a service" right was granted to account %s.
.
Language = French
Le droit "Log on as a service" a été accordé au compte %s.
.
Language = Italian
Il permesso di "Log on as a service" è stato accordato all'utente %s.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_GRANT_LOGON_AS_SERVICE_FAILED
Severity = Informational
Language = English
Failed to grant the "Log on as a service" right to account %s!
.
Language = French
Erreur à l'attribution du droit "Log on as a service" au compte %s!
.
Language = Italian
Il permesso di "Log on as a service" è stato negato all'utente %s!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_LSAOPENPOLICY_FAILED
Severity = Informational
Language = English
LsaOpenPolicy(): %s
.
Language = French
LsaOpenPolicy(): %s
.
Language = Italian
LsaOpenPolicy(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_LSALOOKUPNAMES_FAILED
Severity = Informational
Language = English
Failed to look up the SID for username %s!
LsaLookupNames(): %s
.
Language = French
Impossible d'obtenir le SID de l'utilisateur %s!
LsaLookupNames(): %s
.
Language = Italian
Impossibile trovare il SID per l'utente %s!
LsaLookupNames(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INITIALIZESID_FAILED
Severity = Informational
Language = English
Failed to initialise the SID for username %s!
InitializeSid(): %s
.
Language = French
Impossible d'initialiser le SID pour l'utilisateur %s!
InitializeSid(): %s
.
Language = Italian
Impossibile inizializzare il SID per l'utente %s!
InitializeSid(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_LSAENUMERATEACCOUNTRIGHTS_FAILED
Severity = Informational
Language = English
Failed to check if %s has the "Log on as a service" right!
LsaEnumerateAccountRights(): %s
.
Language = French
Impossible de vérifier si %s dispose du droit "Log on as a service"!
LsaEnumerateAccountRights(): %s
.
Language = Italian
Impossibile verificare se %s ha il permesso di "Log on as a service"!
LsaEnumerateAccountRights(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_LSAADDACCOUNTRIGHTS_FAILED
Severity = Informational
Language = English
LsaAddAccountRights(): %s
.
Language = French
LsaAddAccountRights(): %s
.
Language = Italian
LsaAddAccountRights(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CHANGESERVICECONFIG_FAILED
Severity = Informational
Language = English
Error editing service!
ChangeServiceConfig(): %s
.
Language = French
Erreur à l'édition du service!
ChangeServiceConfig(): %s
.
Language = Italian
Errore durante la modifica del servizio!
ChangeServiceConfig(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SETVALUE_FAILED
Severity = Error
Language = English
Failed to write registry value %s:
RegSetValueEx(): %s
.
Language = French
Échec de l'écriture de la valeur de registre %s:
RegSetValueEx(): %s
.
Language = Italian
Impossibile memorizzare la chiave di registro %s:
RegSetValueEx(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_REGDELETEVALUE_FAILED
Severity = Informational
Language = English
Error deleting registry value %s for service "%s"!
RegDeleteValue(): %s
.
Language = French
Erreur lors de la suppression de la valeur de registre %s pour le service "%s"!
RegDeleteValue(): %s
.
Language = Italian
Errore durante l'eliminazione della chiave di registro %s del servizio "%s"!
RegDeleteValue(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_PARAMETER
Severity = Informational
Language = English
Invalid parameter "%s". Valid parameters are:
.
Language = French
Le paramètre "%s" n'est pas correct. Les valeurs de paramètres correctes sont:
.
Language = Italian
Parametro "%s" non valido. Parametri validi:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_MISSING_SUBPARAMETER
Severity = Informational
Language = English
Parameter "%s" requires a subparameter!
.
Language = French
Le paramètre "%s" requiert un sous-paramètre!
.
Language = Italian
Parametro "%s" necessita di un subparametro!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NATIVE_PARAMETER
Severity = Informational
Language = English
Parameter "%s" is only valid for services managed by %s!
.
Language = French
Le paramètre "%s" est uniquement valide pour des services gérés par %s!
.
Language = Italian
Parametro "%s" è valido solo per servizi gestiti da %s!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NO_DEFAULT_VALUE
Severity = Informational
Language = English
Parameter "%s" has no meaningful default value!
.
Language = French
Le paramètre "%s" n'a pas de valeur par défaut!
.
Language = Italian
Parametro "%s" non ha un valore di default significativo!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_GET_SETTING_FAILED
Severity = Informational
Language = English
Error getting parameter "%s" for service "%s"!
.
Language = French
Erreur à la lecture du paramètre "%s" pour le service "%s"!
.
Language = Italian
Errore di lettura parametro "%s" del servizio "%s"!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SET_SETTING_FAILED
Severity = Informational
Language = English
Error setting parameter "%s" for service "%s"!
.
Language = French
Erreur à l'écriture du paramètre "%s" du service "%s"!
.
Language = Italian
Errore di scrittura parametro "%s" del servizio "%s"!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SET_SETTING
Severity = Informational
Language = English
Set parameter "%s" for service "%s".
.
Language = French
Configuration de la valeur du paramètre "%s" du service "%s".
.
Language = Italian
Configurazione del parametro "%s" del servizio "%s".
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_RESET_SETTING
Severity = Informational
Language = English
Reset parameter "%s" for service "%s" to its default.
.
Language = French
Le paramètre "%s" du service "%s" a été repositionné à sa valeur par défaut.
.
Language = Italian
Reset del parametro "%s" del servizio "%s" al suo default.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_EXIT_ACTION
Severity = Informational
Language = English
Invalid exit action "%s". Valid exit actions are:
.
Language = French
Action d'arrêt "%s" incorrecte. Les actions possibles sont:
.
Language = Italian
Azione all'uscita "%s" non valida. Azioni valide:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_SERVICE_TYPE
Severity = Informational
Language = English
Invalid service type "%s". Valid types are:
.
Language = French
le type de service "%s" est incorrect. Les valeurs possibles sont:
.
Language = Italian
Tipo di servizio "%s" non valido. Tipi validi:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SERVICE_CONFIG_DELAYED_AUTO_START_INFO_FAILED
Severity = Informational
Language = English
Error configuring delayed startup for service "%s". The service will start automatically.
ChangeServiceConfig2(): %s
.
Language = French
Erreur à la configuration du délai de démarrage pour le service "%s". Le service va démarrer automatiquement.
ChangeServiceConfig2(): %s
.
Language = Italian
Errore di configurazione avvio ritardato del servizio "%s". Il servizio partirà automaticamente.
ChangeServiceConfig2(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_SERVICE_STARTUP
Severity = Informational
Language = English
Invalid startup type "%s". Valid types are:
.
Language = French
Le type de démarrage "%s" est incorrect. Les types de démarrage possibles sont:
.
Language = Italian
Tipo di avvio "%s" non valido. Tipi validi:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_PRIORITY
Severity = Informational
Language = English
Invalid process priority "%s". Valid priorities are:
.
Language = French
Valeur de priorité de Processus "%s" incorrecte. Les valeurs de priorité possibles sont:
.
Language = Italian
Priorità processo "%s" non valida. Priorità valide:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_MISSING_PASSWORD
Severity = Informational
Language = English
Setting "%s" requires both a username and password!
.
Language = French
"%s" requiert à la fois un nom d'utilisateur et un mot de passe!
.
Language = Italian
Configurazione "%s" richiede un nome utente e una password!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INTERACTIVE_NOT_LOCALSYSTEM
Severity = Informational
Language = English
Service type "%s" is invalid for service "%s".
Only services running under the %s account may be interactive.
.
Language = French
Le type de service "%s" n'est pas supporté pour le service "%s".
Seuls les services tournant sous le compte %s peuvent être interactifs.
.
Language = Italian
Tipo servizio "%s" non valido per il servizio "%s".
Solo servizi con utente %s possono essere interattivi.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CREATE_PARAMETERS_FAILED
Severity = Informational
Language = English
Error setting startup parameters for the service!
.
Language = French
Erreur en essayant d'enregistrer les paramètres de démarrage du service!
.
Language = Italian
Errore durante l'impostazione dei parametri per il servizio!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SERVICE_INSTALLED
Severity = Informational
Language = English
Service "%s" installed successfully!
.
Language = French
Le service "%s" a été installé avec succès!
.
Language = Italian
Servizio "%s" installato correttamente!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_OPENSERVICE_FAILED
Severity = Informational
Language = English
Can't open service!
OpenService(): %s
.
Language = French
Impossible d'ouvrir le service!
OpenService(): %s
.
Language = Italian
Impossibile aprire il servizio!
OpenService(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_ENUMSERVICESSTATUS_FAILED
Severity = Informational
Language = English
Can't open service!
EnumServicesStatus(): %s
.
Language = French
Impossible d'ouvrir le service!
EnumServicesStatus(): %s
.
Language = Italian
Impossibile aprire il servizio!
EnumServicesStatus(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_DELETESERVICE_FAILED
Severity = Informational
Language = English
Error deleting service!
.
Language = French
Erreur à la suppression du service!
.
Language = Italian
Errore durante la rimozione del servizio!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SERVICE_REMOVED
Severity = Informational
Language = English
Service "%s" removed successfully!
.
Language = French
Le service "%s" a été désinstallé avec succès!
.
Language = Italian
Servizio "%s" rimosso correttamente!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SERVICE_EDITED
Severity = Informational
Language = English
Service "%s" edited successfully!
.
Language = French
Le service "%s" a été édité avec succès!
.
Language = Italian
Servizio "%s" modificato correttamente!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CANNOT_RENAME_SERVICE
Severity = Informational
Language = English
Services cannot be renamed!
.
Language = French
Les services ne peuvent pas être renommés!
.
Language = Italian
Il servizio non può essere rinominato!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_EFFECTIVE_AFFINITY_MASK
Severity = Informational
Language = English
Requested processor affinity range %s is not appropriate.
The maximal affinity range is %s on this system.
The requested affinity will be written to the registry as-is.
Note, however, that the effective affinity will be %s.
.
Language = French
La plage d'affinité processeur selectionée %s est incorrecte.
La valeur maximale pour l'affinité possible sur ce système est %s.
La requête d'affinité requise sera inscrite telle quelle au registre.
Veuillez noter cependant que la valeur effective pour l'affinité sera %s.
.
Language = Italian
L'affinità processori richiesta "%s" non è appropriata.
La massima affinità su questo sistema è %s.
L'affinità sarà memorizzata nel registro come richiesta.
Si noti, comunque, che l'effettiva affinità sarà %s.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_BOGUS_AFFINITY_MASK
Severity = Informational
Language = English
Affinity specification "%s" is invalid.
Valid specifications are of the form "0-2,4-6,10,15"
Identifiers must be in the range 0-%d on this system.
.
Language = French
La valeur d'affinité spécifiée "%s" est incorrecte.
Les valeurs correctes sont de la forme "0-2,4-6,10,15"
Sur ce système les identifiants doivent être dans la plage 0-%d.
.
Language = Italian
L'affinità specificata "%s" non è valida.
Specifiche valide sono nella forma "0-2,4-6,10,15"
Identificatori devono essere nel range 0-%d su questo sistema.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_BAD_CONTROL_RESPONSE
Severity = Informational
Language = English
%s: Unexpected status %s in response to %s control.
.
Language = French
%s: Valeur de statut %s inattendue en réponse au contrôle %s.
.
Language = Italian
%s: stato inatteso %s in risposta al comando %s.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_LSALOOKUPSIDS_FAILED
Severity = Informational
Language = English
Failed to look up the username for SID.
LsaLookupSids(): %s
.
Language = French
Impossible de récupérer le nom d'utilisateur pour un SID.
LsaLookupSids(): %s
.
Language = Italian
Impossibile cercare il SID per l'utente.
LsaLookupSids(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CREATEWELLKNOWNSID_FAILED
Severity = Informational
Language = English
Failed to create %s SID!
.
Language = French
Impossible de créér le SID %s!
.
Language = Italian
Impossibile creare SID per %s!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_HOOK_EVENT
Severity = Informational
Language = English
Invalid hook event. Valid hook events are:
.
Language = French
Invalid hook event. Valid hook events are:
.
Language = Italian
Invalid hook event. Valid hook events are:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_HOOK_ACTION
Severity = Informational
Language = English
Invalid hook action for event %s. Valid hook actions are:
.
Language = French
Invalid hook action for event %s. Valid hook actions are:
.
Language = Italian
Invalid hook action for event %s. Valid hook actions are:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_HOOK_NAME
Severity = Informational
Language = English
Invalid hook name. Names should be specified in the form <event>/<action>.
.
Language = French
Invalid hook name. Names should be specified in the form <event>/<action>.
.
Language = Italian
Invalid hook name. Names should be specified in the form <event>/<action>.
.
MessageId = +1
SymbolicName = NSSM_GUI_CREATEDIALOG_FAILED
Severity = Informational
Language = English
CreateDialog() failed:
%s
.
Language = French
CreateDialog() a échoué:
%s
.
Language = Italian
Chiamata a CreateDialog() fallita:
%s
.
MessageId = +1
SymbolicName = NSSM_GUI_MISSING_SERVICE_NAME
Severity = Informational
Language = English
No valid service name was specified!
.
Language = French
Aucun nom de service valide n'a été spécifié!
.
Language = Italian
Nessun nome di servizio valido specificato!
.
MessageId = +1
SymbolicName = NSSM_GUI_MISSING_PATH
Severity = Informational
Language = English
No valid executable path was specified!
.
Language = French
Aucun chemin valide de fichier exécutable n'a été spécifié!
.
Language = Italian
Path verso l'eseguibile non specificato!
.
MessageId = +1
SymbolicName = NSSM_GUI_INVALID_OPTIONS
Severity = Informational
Language = English
No valid arguments were specified!
.
Language = French
Aucun paramètre valide n'a été spécifié!
.
Language = Italian
Nessuna argomenti valida specificata!
.
MessageId = +1
SymbolicName = NSSM_GUI_MISSING_USERNAME
Severity = Informational
Language = English
Missing account name!
.