-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.mc
2816 lines (2576 loc) · 141 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 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 rotate <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 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 <servicename>
nssm stop <servicename>
nssm restart <servicename>
nssm status <servicename>
nssm rotate <servicename>
.
Language = Italian
NSSM: il Service Manager professionale.
Versione %s %s, %s
Uso: nssm <opzioni> [argomenti]
Per aprire l'interfaccia di INSTALLAZIONE Servizio:
nssm install [<nomeservizio>]
Per INSTALLARE il servizio da riga di comando:
nssm install <nomeservizio> <applicazione> [<argomenti>]
Per aprire l'interfaccia di RIMOZIONE Servizio:
nssm remove [<nomeservizio>]
Per aprire l'interfaccia di EDIZIONE Servizio:
nssm edit <nomeservizio>
Pour editare un servizio:
nssm get <nomeservizio> <parametro> [<sottoparametro>]
nssm set <nomeservizio> <parametro> [<sottoparametro>] <valore>
nssm reset <nomeservizio> <parametro> [<sottoparametro>]
Per RIMUOVERE il servizio da riga di comando:
nssm remove <nomeservizio> confirm
Per gestire un servizio:
nssm start <servicename>
nssm stop <servicename>
nssm restart <servicename>
nssm status <servicename>
nssm rotate <servicename>
.
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
L'edizione 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 Service Manager!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_QUERYSERVICECONFIG_FAILED
Severity = Informational
Language = English
Error querying service "%s"!
QueryServiceConfig(): %s
.
Language = French
Error querying service "%s"!
QueryServiceConfig(): %s
.
Language = Italian
Error querying service "%s"!
QueryServiceConfig(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_QUERYSERVICECONFIG2_FAILED
Severity = Informational
Language = English
Error querying service "%s"!
QueryServiceConfig2(%s): %s
.
Language = French
Error querying service "%s"!
QueryServiceConfig2(%s): %s
.
Language = Italian
Error querying service "%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
Service "%s" is not a valid %s service!
Executable is %s
.
Language = Italian
Service "%s" is not a valid %s service!
Executable is %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CANNOT_EDIT
Severity = Informational
Language = English
Service "%s" is not a %s service!
.
Language = French
Service "%s" is not a %s service!
.
Language = Italian
Service "%s" is not a %s service!
.
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
The program flags are too long!
.
Language = Italian
The program flags are too long!
.
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
The "Log on as a service" right was granted to account %s!
.
Language = Italian
The "Log on as a service" right was granted to account %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
Failed to grant the "Log on as a service" right to account %s!
.
Language = Italian
Failed to grant the "Log on as a service" right to account %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
Failed to look up the SID for username %s!
LsaLookupNames(): %s
.
Language = Italian
Failed to look up the SID for username %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
Failed to initialise the SID for username %s!
InitializeSid(): %s
.
Language = Italian
Failed to initialise the SID for username %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
Failed to check if %s has the "Log on as a service" right!
LsaEnumerateAccountRights(): %s
.
Language = Italian
Failed to check if %s has the "Log on as a service" right!
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 edizione 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 scrivere 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
Error deleting registry value %s for service "%s"!
RegDeleteValue(): %s
.
Language = Italian
Error deleting registry value %s for service "%s"!
RegDeleteValue(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_PARAMETER
Severity = Informational
Language = English
Invalid parameter "%s". Valid parameters are:
.
Language = French
Invalid parameter "%s". Valid parameters are:
.
Language = Italian
Invalid parameter "%s". Valid parameters are:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_MISSING_SUBPARAMETER
Severity = Informational
Language = English
Parameter "%s" requires a subparameter!
.
Language = French
Parameter "%s" requires a subparameter!
.
Language = Italian
Parameter "%s" requires a subparameter!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NATIVE_PARAMETER
Severity = Informational
Language = English
Parameter "%s" is only valid for services managed by %s!
.
Language = French
Parameter "%s" is only valid for services managed by %s!
.
Language = Italian
Parameter "%s" is only valid for services managed by %s!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_NO_DEFAULT_VALUE
Severity = Informational
Language = English
Parameter "%s" has no meaningful default value!
.
Language = French
Parameter "%s" has no meaningful default value!
.
Language = Italian
Parameter "%s" has no meaningful default value!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_GET_SETTING_FAILED
Severity = Informational
Language = English
Error getting parameter "%s" for service "%s"!
.
Language = French
Error getting parameter "%s" for service "%s"!
.
Language = Italian
Error getting parameter "%s" for service "%s"!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SET_SETTING_FAILED
Severity = Informational
Language = English
Error setting parameter "%s" for service "%s"!
.
Language = French
Error setting parameter "%s" for service "%s"!
.
Language = Italian
Error setting parameter "%s" for service "%s"!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_SET_SETTING
Severity = Informational
Language = English
Set parameter "%s" for service "%s".
.
Language = French
Set parameter "%s" for service "%s".
.
Language = Italian
Set parameter "%s" for service "%s".
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_RESET_SETTING
Severity = Informational
Language = English
Reset parameter "%s" for service "%s" to its default.
.
Language = French
Reset parameter "%s" for service "%s" to its default.
.
Language = Italian
Reset parameter "%s" for service "%s" to its default.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_EXIT_ACTION
Severity = Informational
Language = English
Invalid exit action "%s". Valid exit actions are:
.
Language = French
Invalid exit action "%s". Valid exit actions are:
.
Language = Italian
Invalid exit action "%s". Valid exit actions are:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_SERVICE_TYPE
Severity = Informational
Language = English
Invalid service type "%s". Valid types are:
.
Language = French
Invalid service type "%s". Valid types are:
.
Language = Italian
Invalid service type "%s". Valid types are:
.
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
Error configuring delayed startup for service "%s". The service will start automatically.
ChangeServiceConfig2(): %s
.
Language = Italian
Error configuring delayed startup for service "%s". The service will start automatically.
ChangeServiceConfig2(): %s
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_SERVICE_STARTUP
Severity = Informational
Language = English
Invalid startup type "%s". Valid types are:
.
Language = French
Invalid startup type "%s". Valid types are:
.
Language = Italian
Invalid startup type "%s". Valid types are:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_INVALID_PRIORITY
Severity = Informational
Language = English
Invalid process priority "%s". Valid priorities are:
.
Language = French
Invalid process priority "%s". Valid priorities are:
.
Language = Italian
Invalid process priority "%s". Valid priorities are:
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_MISSING_PASSWORD
Severity = Informational
Language = English
Setting "%s" requires both a username and password!
.
Language = French
Setting "%s" requires both a username and password!
.
Language = Italian
Setting "%s" requires both a username and 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
Service type "%s" is invalid for service "%s".
Only services running under the %s account may be interactive.
.
Language = Italian
Service type "%s" is invalid for service "%s".
Only services running under the %s account may be interactive.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CREATE_PARAMETERS_FAILED
Severity = Informational
Language = English
Error setting startup parameters for the service!
.
Language = French
Erreur en essayant de régler 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" edizione correttamente!
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_CANNOT_RENAME_SERVICE
Severity = Informational
Language = English
Services cannot be renamed!
.
Language = French
Services cannot be renamed!
.
Language = Italian
Services cannot be renamed!
.
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
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 = Italian
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.
.
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
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 = Italian
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.
.
MessageId = +1
SymbolicName = NSSM_MESSAGE_BAD_CONTROL_RESPONSE
Severity = Informational
Language = English
%s: Unexpected status %s in response to %s control.
.
Language = French
%s: Unexpected status %s in response to %s control.
.
Language = Italian
%s: Unexpected status %s in response to %s control.
.
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 options were specified!
.
Language = French
Aucun option valide n'a été spécifiée!
.
Language = Italian
Nessuna opzione valida specificata!
.
MessageId = +1
SymbolicName = NSSM_GUI_MISSING_USERNAME
Severity = Informational
Language = English
Missing account name!
.
Language = French
Missing account name!
.
Language = Italian
Missing account name!
.
MessageId = +1
SymbolicName = NSSM_GUI_INVALID_USERNAME
Severity = Informational
Language = English
Invalid account name!
.
Language = French
Invalid account name!
.
Language = Italian
Invalid account name!
.
MessageId = +1
SymbolicName = NSSM_GUI_MISSING_PASSWORD
Severity = Informational
Language = English
Missing or mismatched password(s)!
.
Language = French
Missing or mismatched password(s)!
.
Language = Italian
Missing or mismatched password(s)!
.
MessageId = +1
SymbolicName = NSSM_GUI_INVALID_PASSWORD
Severity = Informational
Language = English
Invalid password!
.
Language = French
Invalid password!
.
Language = Italian
Invalid password!
.
MessageId = +1
SymbolicName = NSSM_GUI_INVALID_DISPLAYNAME
Severity = Informational
Language = English
Invalid displayname!
.
Language = French
Invalid displayname!
.
Language = Italian
Invalid displayname!
.
MessageId = +1
SymbolicName = NSSM_GUI_INVALID_DESCRIPTION
Severity = Informational
Language = English
Invalid description!
.
Language = French
Invalid description!
.
Language = Italian
Invalid description!
.
MessageId = +1
SymbolicName = NSSM_GUI_OUT_OF_MEMORY_FOR_IMAGEPATH
Severity = Informational
Language = English
Error constructing ImagePath!\nThis really shouldn't happen. You could be out of memory
or the world may be about to end or something equally bad.
.
Language = French
Mémoire insuffisante pour spécifier le chemin de l'image (ImagePath)!
Cette situation ne devrait jamais se produire. Vous êtes peut-être à court de mémoire RAM,
ou la fin du monde est proche, ou un autre désastre du même type.
.
Language = Italian
Errore durante la costruzione di ImagePath!\nQesto errore è inatteso. La memoria è insuffieiente