forked from poweradmin/poweradmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathi18n-template-php.pot
1089 lines (831 loc) · 26.4 KB
/
i18n-template-php.pot
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
# Poweradmin translation.
# Copyright (C) 2011 Poweradmin Development Team
# This file is distributed under the same license as the Poweradmin package.
# Rejo Zenger <[email protected]>, 2008.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Poweradmin 2.1.6\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: 2011-07-08 23:45+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"Language: en_EN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: edit_record.php:58
msgid "Edit record in zone"
msgstr ""
#: edit_record.php:67 list_perm_templ.php:36 edit_zone_templ.php:96
#: edit_zone_templ.php:173 search.php:65 search.php:119 add_perm_templ.php:44
#: add_perm_templ.php:55 add_record.php:120 delete_domains.php:56
#: add_zone_templ_record.php:99 edit_zone_templ_record.php:61 edit.php:143
#: edit.php:240 list_zones.php:67 add_zone_templ.php:45 list_zone_templ.php:37
#: edit_perm_templ.php:53 edit_perm_templ.php:65
msgid "Name"
msgstr ""
#: edit_record.php:69 edit_zone_templ.php:97 search.php:66 search.php:120
#: add_record.php:122 add_zone_master.php:121 delete_domains.php:58
#: add_zone_templ_record.php:101 edit_zone_templ_record.php:63 edit.php:144
#: edit.php:242 edit.php:349 list_zones.php:68 delete_domain.php:63
msgid "Type"
msgstr ""
#: edit_record.php:70 edit_zone_templ.php:99 search.php:121 add_record.php:124
#: add_zone_templ_record.php:103 edit_zone_templ_record.php:64 edit.php:146
#: edit.php:244
msgid "Priority"
msgstr ""
#: edit_record.php:71 edit_zone_templ.php:98 search.php:122 add_record.php:123
#: add_zone_templ_record.php:102 edit_zone_templ_record.php:65 edit.php:145
#: edit.php:243
msgid "Content"
msgstr ""
#: edit_record.php:72 edit_zone_templ.php:100 search.php:123
#: add_record.php:125 add_zone_templ_record.php:104
#: edit_zone_templ_record.php:66 edit.php:147 edit.php:245
msgid "TTL"
msgstr ""
#: edit_record.php:109 users.php:121 edit_comment.php:87 edit_user.php:141
#: edit_zone_templ.php:163 edit_zone_templ.php:181 add_perm_templ.php:72
#: edit_zone_templ_record.php:91 edit.php:227 delete_user.php:111
#: edit_perm_templ.php:86 add_user.php:76
msgid "Commit changes"
msgstr ""
#: edit_record.php:110 users.php:122 edit_comment.php:88 edit_user.php:142
#: edit_zone_templ.php:164 edit_zone_templ_record.php:92 edit.php:228
msgid "Reset changes"
msgstr ""
#: users.php:47 index.php:60 inc/header.inc.php:82
msgid "User administration"
msgstr ""
#: users.php:52 edit_user.php:103 inc/auth.inc.php:133 install/index.php:93
#: install/index.php:172 add_user.php:39
msgid "Username"
msgstr ""
#: users.php:53 edit_user.php:107 add_user.php:43
msgid "Fullname"
msgstr ""
#: users.php:54 list_perm_templ.php:37 edit_user.php:132
#: edit_zone_templ.php:177 add_perm_templ.php:48 add_perm_templ.php:56
#: add_zone_templ.php:49 list_zone_templ.php:38 edit_perm_templ.php:57
#: edit_perm_templ.php:66 add_user.php:67
msgid "Description"
msgstr ""
#: users.php:55 edit_user.php:115 add_user.php:51
msgid "Email address"
msgstr ""
#: users.php:56 add_zone_master.php:132 edit.php:381
msgid "Template"
msgstr ""
#: users.php:57 edit_user.php:136 add_user.php:71
msgid "Enabled"
msgstr ""
#: users.php:71 edit_user.php:98
msgid "Edit user"
msgstr ""
#: users.php:75 delete_user.php:60
msgid "Delete user"
msgstr ""
#: users.php:131 edit_perm_templ.php:47
msgid "Edit permission template"
msgstr ""
#: users.php:135 add_user.php:35
msgid "Add user"
msgstr ""
#: list_perm_templ.php:32
msgid "Permission templates"
msgstr ""
#: list_perm_templ.php:48 list_zone_templ.php:46
msgid "Edit template"
msgstr ""
#: list_perm_templ.php:49 list_zone_templ.php:47
msgid "Delete template"
msgstr ""
#: list_perm_templ.php:61 add_perm_templ.php:40
msgid "Add permission template"
msgstr ""
#: edit_comment.php:53
msgid "Edit comment in zone"
msgstr ""
#: edit_user.php:111 inc/auth.inc.php:137 install/index.php:98
#: install/index.php:177 add_user.php:47
msgid "Password"
msgstr ""
#: edit_user.php:120 add_user.php:56
msgid "Permission template"
msgstr ""
#: edit_user.php:147
#, php-format
msgid "This user has been assigned the permission template \"%s\"."
msgstr ""
#: edit_user.php:149
msgid "The description for this template is"
msgstr ""
#: edit_user.php:151
msgid "Based on this template, this user has the following permissions"
msgstr ""
#: edit_zone_templ.php:82
msgid "Edit zone template"
msgstr ""
#: edit_zone_templ.php:90
msgid "This template zone does not have any records yet."
msgstr ""
#: edit_zone_templ.php:107 search.php:131 edit.php:161
msgid "Edit record"
msgstr ""
#: edit_zone_templ.php:109 delete_zone_templ_record.php:53 search.php:136
#: delete_record.php:66 edit.php:163
msgid "Delete record"
msgstr ""
#: edit_zone_templ.php:145 add_zone_templ_record.php:139
msgid "The following placeholders can be used in template records"
msgstr ""
#: edit_zone_templ.php:148 add_zone_templ_record.php:142
msgid "substituted with current zone name"
msgstr ""
#: edit_zone_templ.php:149 add_zone_templ_record.php:143
msgid "substituted with current date and 2 numbers"
msgstr ""
#: edit_zone_templ.php:155 edit.php:219
msgid "Template Name"
msgstr ""
#: edit_zone_templ.php:159 edit.php:223
msgid "Template Description"
msgstr ""
#: edit_zone_templ.php:165 edit.php:229
msgid "Save as template"
msgstr ""
#: edit_zone_templ.php:166
msgid "Update zones"
msgstr ""
#: edit_zone_templ.php:183 add_record.php:158 add_zone_templ_record.php:147
#: edit.php:287
msgid "Add record"
msgstr ""
#: edit_zone_templ.php:184 delete_zone_templ.php:44
msgid "Delete zone template"
msgstr ""
#: add_zone_slave.php:67 index.php:54 inc/header.inc.php:76
msgid "Add slave zone"
msgstr ""
#: add_zone_slave.php:73 add_zone_master.php:91
msgid "Zone name"
msgstr ""
#: add_zone_slave.php:79 edit.php:413
msgid "IP address of master NS"
msgstr ""
#: add_zone_slave.php:85 search.php:70 add_zone_master.php:102
#: delete_domains.php:57 list_zones.php:70 delete_domain.php:62
msgid "Owner"
msgstr ""
#: add_zone_slave.php:106 add_zone_master.php:146
msgid "Add zone"
msgstr ""
#: delete_zone_templ.php:50 delete_zone_templ_record.php:74
#: delete_domains.php:72 delete_record.php:94 delete_perm_templ.php:49
#: delete_domain.php:72 delete_supermaster.php:61
msgid "Are you sure?"
msgstr ""
#: delete_zone_templ.php:51 delete_zone_templ_record.php:75
#: delete_domains.php:73 delete_record.php:95 delete_perm_templ.php:50
#: delete_domain.php:73 delete_supermaster.php:62
msgid "Yes"
msgstr ""
#: delete_zone_templ.php:52 delete_zone_templ_record.php:76
#: delete_domains.php:74 delete_record.php:96 delete_perm_templ.php:51
#: delete_domain.php:74 delete_supermaster.php:63
msgid "No"
msgstr ""
#: index.php:26
msgid "Welcome"
msgstr ""
#: index.php:37 inc/header.inc.php:59
msgid "Index"
msgstr ""
#: index.php:39 search.php:32 inc/header.inc.php:61
msgid "Search zones and records"
msgstr ""
#: index.php:42 inc/header.inc.php:64 list_zones.php:39
msgid "List zones"
msgstr ""
#: index.php:45 inc/header.inc.php:67
msgid "List zone templates"
msgstr ""
#: index.php:48 inc/header.inc.php:70 list_supermasters.php:32
msgid "List supermasters"
msgstr ""
#: index.php:51 inc/header.inc.php:73 add_zone_master.php:82
msgid "Add master zone"
msgstr ""
#: index.php:57 inc/header.inc.php:79 add_supermaster.php:54
#: add_supermaster.php:106
msgid "Add supermaster"
msgstr ""
#: index.php:59 inc/header.inc.php:81 change_password.php:31
#: change_password.php:49
msgid "Change password"
msgstr ""
#: index.php:61 inc/header.inc.php:83
msgid "Logout"
msgstr ""
#: search.php:61
msgid "Zones found"
msgstr ""
#: search.php:67
msgid "Master"
msgstr ""
#: search.php:79 edit.php:129
msgid "Edit zone"
msgstr ""
#: search.php:84 list_zones.php:99 delete_domain.php:54
msgid "Delete zone"
msgstr ""
#: search.php:115
msgid "Records found"
msgstr ""
#: search.php:155
msgid "Query"
msgstr ""
#: search.php:161
msgid "Search"
msgstr ""
#: search.php:166
msgid "Enter a hostname or IP address. SQL LIKE syntax supported: an underscore (_) in pattern matches any single character, a percent sign (%) matches any string of zero or more characters."
msgstr ""
#: inc/users.inc.php:382
msgid "Password has been changed, please login."
msgstr ""
#: inc/record.inc.php:387
msgid "You are trying to delete the SOA record. If are not allowed to remove it, unless you remove the entire zone."
msgstr ""
#: inc/record.inc.php:751
msgid "Function returned an error (multiple zones matching this zone ID)."
msgstr ""
#: inc/toolkit.inc.php:33 reset_password.php:27
msgid "You have to create a config.inc.php!"
msgstr ""
#: inc/toolkit.inc.php:154
msgid "Show page"
msgstr ""
#: inc/toolkit.inc.php:173
msgid "Show zones beginning with"
msgstr ""
#: inc/toolkit.inc.php:238 install/index.php:26
msgid "An unknown error has occurred."
msgstr ""
#: inc/toolkit.inc.php:246
msgid "Something has been successfully performed. What exactly, however, will remain a mystery."
msgstr ""
#: inc/toolkit.inc.php:258
msgid "Success!"
msgstr ""
#: inc/toolkit.inc.php:269
msgid "Successful!"
msgstr ""
#: inc/toolkit.inc.php:275
msgid "back"
msgstr ""
#: inc/toolkit.inc.php:314
msgid "Inactive"
msgstr ""
#: inc/toolkit.inc.php:318
msgid "Active"
msgstr ""
#: inc/auth.inc.php:31
msgid "You have logged out."
msgstr ""
#: inc/auth.inc.php:45
msgid "Session expired, please login again."
msgstr ""
#: inc/auth.inc.php:93
msgid "Authentication failed!"
msgstr ""
#: inc/auth.inc.php:106
msgid "Authentication failed! - <a href=\"reset_password.php\">(forgot password)</a>"
msgstr ""
#: inc/auth.inc.php:127
msgid "Log in"
msgstr ""
#: inc/auth.inc.php:143
msgid "Go"
msgstr ""
#: inc/error.inc.php:24
msgid "You do not have the permission to perform searches."
msgstr ""
#: inc/error.inc.php:25
msgid "You do not have the permission to add a record to this zone."
msgstr ""
#: inc/error.inc.php:26
msgid "You do not have the permission to edit this record."
msgstr ""
#: inc/error.inc.php:27
msgid "You do not have the permission to view this record."
msgstr ""
#: inc/error.inc.php:28
msgid "You do not have the permission to delete this record."
msgstr ""
#: inc/error.inc.php:29
msgid "You do not have the permission to add a master zone."
msgstr ""
#: inc/error.inc.php:30
msgid "You do not have the permission to add a slave zone."
msgstr ""
#: inc/error.inc.php:31
msgid "You do not have the permission to delete a zone."
msgstr ""
#: inc/error.inc.php:32
msgid "You do not have the permission to view this comment."
msgstr ""
#: inc/error.inc.php:33
msgid "You do not have the permission to edit this comment."
msgstr ""
#: inc/error.inc.php:34
msgid "You do not have the permission to delete a supermaster."
msgstr ""
#: inc/error.inc.php:35
msgid "You do not have the permission to view this zone."
msgstr ""
#: inc/error.inc.php:36
msgid "You do not have the permission to edit this user."
msgstr ""
#: inc/error.inc.php:37
msgid "You do not have the permission to edit permission templates."
msgstr ""
#: inc/error.inc.php:38
msgid "You do not have the permission to delete permission templates."
msgstr ""
#: inc/error.inc.php:39
msgid "You do not have the permission to add a new user."
msgstr ""
#: inc/error.inc.php:40
msgid "You do not have the permission to delete this user."
msgstr ""
#: inc/error.inc.php:41
msgid "You do not have the permission to edit zone templates."
msgstr ""
#: inc/error.inc.php:42
msgid "You do not have the permission to delete zone templates."
msgstr ""
#: inc/error.inc.php:43
msgid "You do not have the permission to add a zone template."
msgstr ""
#: inc/error.inc.php:46
msgid "This is an invalid zone name."
msgstr ""
#: inc/error.inc.php:47
msgid "There is already a supermaster with this IP address."
msgstr ""
#: inc/error.inc.php:48
msgid "There is already a zone with this name."
msgstr ""
#: inc/error.inc.php:51
msgid "Username exist already, please choose another one."
msgstr ""
#: inc/error.inc.php:52
msgid "User does not exist."
msgstr ""
#: inc/error.inc.php:53
msgid "You did not enter the correct current password."
msgstr ""
#: inc/error.inc.php:54
msgid "The two new password fields do not match."
msgstr ""
#: inc/error.inc.php:55
msgid "This template is assigned to at least one user."
msgstr ""
#: inc/error.inc.php:58
msgid "Invalid or unexpected input given."
msgstr ""
#: inc/error.inc.php:59
#, php-format
msgid "Invalid argument(s) given to function %s"
msgstr ""
#: inc/error.inc.php:60
#, php-format
msgid "Invalid argument(s) given to function %s %s"
msgstr ""
#: inc/error.inc.php:61
msgid "Unknown error."
msgstr ""
#: inc/error.inc.php:62
msgid "Enter a valid email address."
msgstr ""
#: inc/error.inc.php:63
msgid "There is no zone with this ID."
msgstr ""
#: inc/error.inc.php:64
msgid "There is no zone template with this ID."
msgstr ""
#: inc/error.inc.php:65
msgid "The <a href=\"install/\">install/</a> directory exists, you must remove it first before proceeding."
msgstr ""
#: inc/error.inc.php:66
msgid "Zone template with this name already exists, please choose another one."
msgstr ""
#: inc/error.inc.php:67
msgid "Template name can't be an empty string."
msgstr ""
#: inc/error.inc.php:70
msgid "No database name has been set in config.inc.php."
msgstr ""
#: inc/error.inc.php:71
msgid "No database host has been set in config.inc.php."
msgstr ""
#: inc/error.inc.php:72
msgid "No database username has been set in config.inc.php."
msgstr ""
#: inc/error.inc.php:73
msgid "No database password has been set in config.inc.php."
msgstr ""
#: inc/error.inc.php:74
msgid "No or unknown database type has been set in config.inc.php."
msgstr ""
#: inc/error.inc.php:75
msgid "No database file has been set in config.inc.php."
msgstr ""
#: inc/error.inc.php:76
msgid "It seems that you forgot to update the database after Poweradmin upgrade to new version."
msgstr ""
#: inc/error.inc.php:79
msgid "Your content field doesnt have a legit value."
msgstr ""
#: inc/error.inc.php:80
msgid "Invalid hostname."
msgstr ""
#: inc/error.inc.php:81
msgid "You have invalid characters in your hostname."
msgstr ""
#: inc/error.inc.php:82
msgid "A hostname can not start or end with a dash."
msgstr ""
#: inc/error.inc.php:83
msgid "Given hostname or one of the labels is too short or too long."
msgstr ""
#: inc/error.inc.php:84
msgid "Given hostname has too many slashes."
msgstr ""
#: inc/error.inc.php:85
msgid "Unknown record type."
msgstr ""
#: inc/error.inc.php:86
msgid "This is not a valid IPv4 or IPv6 address."
msgstr ""
#: inc/error.inc.php:87
msgid "This is not a valid IPv6 address."
msgstr ""
#: inc/error.inc.php:88
msgid "This is not a valid IPv4 address."
msgstr ""
#: inc/error.inc.php:89
msgid "This is not a valid CNAME. Did you assign an MX or NS record to the record?"
msgstr ""
#: inc/error.inc.php:90
msgid "This is not a valid record. There is already exists a CNAME with this name."
msgstr ""
#: inc/error.inc.php:91
msgid "This is not a valid CNAME. There is already exists an A, AAAA or CNAME with this name."
msgstr ""
#: inc/error.inc.php:92
msgid "You can not point a NS or MX record to a CNAME record. Remove or rame the CNAME record first, or take another name."
msgstr ""
#: inc/error.inc.php:93
msgid "NS records must be a hostnames."
msgstr ""
#: inc/error.inc.php:94
msgid "A prio field should be numeric."
msgstr ""
#: inc/error.inc.php:95
msgid "Invalid value for name field of SOA record. It should be the name of the zone."
msgstr ""
#: inc/error.inc.php:96
msgid "You have an error in the MNAME field of the SOA record."
msgstr ""
#: inc/error.inc.php:97
msgid "Invalid value for content field of HINFO record."
msgstr ""
#: inc/error.inc.php:98
msgid "The hostname is too long."
msgstr ""
#: inc/error.inc.php:99
msgid "You are using an invalid top level domain."
msgstr ""
#: inc/error.inc.php:100
msgid "Invalid value for TTL field. It should be numeric."
msgstr ""
#: inc/error.inc.php:101
msgid "Invalid value for prio field. It should be numeric."
msgstr ""
#: inc/error.inc.php:102
msgid "Invalid value for name field of SRV record."
msgstr ""
#: inc/error.inc.php:103
msgid "Invalid value for the priority field of the SRV record."
msgstr ""
#: inc/error.inc.php:104
msgid "Invalid value for the weight field of the SRV record."
msgstr ""
#: inc/error.inc.php:105
msgid "Invalid SRV target."
msgstr ""
#: inc/error.inc.php:106
msgid "Invalid characters have been used in this record."
msgstr ""
#: inc/error.inc.php:109
msgid "Zone has been added successfully."
msgstr ""
#: inc/error.inc.php:110
msgid "Zone has been deleted successfully."
msgstr ""
#: inc/error.inc.php:111
msgid "Zones have been updated successfully."
msgstr ""
#: inc/error.inc.php:112
msgid "The user has been updated successfully."
msgstr ""
#: inc/error.inc.php:113
msgid "The user has been created successfully."
msgstr ""
#: inc/error.inc.php:114
msgid "The user has been deleted successfully."
msgstr ""
#: inc/error.inc.php:115
msgid "The record has been updated successfully."
msgstr ""
#: inc/error.inc.php:116
msgid "The record has been deleted successfully."
msgstr ""
#: inc/error.inc.php:117
msgid "The comment has been updated successfully."
msgstr ""
#: inc/error.inc.php:118
msgid "The supermaster has been deleted successfully."
msgstr ""
#: inc/error.inc.php:119
msgid "The supermaster has been added successfully."
msgstr ""
#: inc/error.inc.php:120
msgid "The permission template has been updated successfully."
msgstr ""
#: inc/error.inc.php:121
msgid "The permission template has been deleted successfully."
msgstr ""
#: inc/error.inc.php:122
msgid "Zone template has been added successfully."
msgstr ""
#: inc/error.inc.php:123
msgid "Zone template has been updated successfully."
msgstr ""
#: inc/error.inc.php:124
msgid "Zone template has been deleted successfully."
msgstr ""
#: change_password.php:35
msgid "Current password"
msgstr ""
#: change_password.php:39 change_password.php:43
msgid "New password"
msgstr ""
#: add_record.php:102 add_zone_templ_record.php:81
msgid "The record was successfully added."
msgstr ""
#: add_record.php:111
msgid "Add record to zone"
msgstr ""
#: delete_domains.php:41
msgid "Delete zones"
msgstr ""
#: delete_domains.php:63 delete_domain.php:68
#, php-format
msgid "You are about to delete a slave zone of which the master nameserver, %s, is a supermaster. Deleting the zone now, will result in temporary removal only. Whenever the supermaster sends a notification for this zone, it will be added again!"
msgstr ""
#: add_supermaster.php:57
msgid "You do not have the permission to add a new supermaster."
msgstr ""
#: add_supermaster.php:62 list_supermasters.php:36
msgid "IP address of supermaster"
msgstr ""
#: add_supermaster.php:72 list_supermasters.php:37 delete_supermaster.php:58
msgid "Hostname in NS record"
msgstr ""
#: add_supermaster.php:82 list_supermasters.php:38 delete_supermaster.php:59
msgid "Account"
msgstr ""
#: add_zone_templ_record.php:90
msgid "Add record to zone template"
msgstr ""
#: edit_zone_templ_record.php:52
msgid "Edit record in zone template"
msgstr ""
#: delete_record.php:92
msgid "You are trying to delete a record that is needed for this zone to work."
msgstr ""
#: delete_perm_templ.php:43
msgid "Delete permission template"
msgstr ""
#: edit.php:137
msgid "This zone does not have any records. Weird."
msgstr ""
#: edit.php:210
msgid "Edit comment"
msgstr ""
#: edit.php:295
msgid "Owner of zone"
msgstr ""
#: edit.php:301
msgid "No owner set for this zone."
msgstr ""
#: edit.php:310 delete_user.php:77
msgid "Delete"
msgstr ""
#: edit.php:343
msgid "Add"
msgstr ""
#: edit.php:372 edit.php:401 edit.php:424
msgid "Change"
msgstr ""
#: list_zones.php:42
msgid "You do not have the permission to see any zones."
msgstr ""
#: list_zones.php:49 list_supermasters.php:44
msgid "There are no zones to show in this listing."
msgstr ""
#: list_zones.php:69
msgid "Records"
msgstr ""
#: list_zones.php:71
msgid "Serial"
msgstr ""
#: list_zones.php:97
msgid "View zone"
msgstr ""
#: list_zones.php:116
msgid "Delete zone(s)"
msgstr ""
#: install/index.php:47
msgid "Installation step"
msgstr ""
#: install/index.php:62 install/index.php:80 install/index.php:135
#: install/index.php:207 install/index.php:275 install/index.php:312
msgid "Go to step"
msgstr ""
#: install/index.php:69
msgid "This installer expects you to have a PowerDNS database accessable from this server. This installer also expects you to have never ran Poweradmin before, or that you want to overwrite the Poweradmin part of the database. If you have had Poweradmin running before, any data in the following tables will be destroyed: perm_items, perm_templ, perm_templ_items, users and zones. This installer will, of course, not touch the data in the PowerDNS tables of the database. However, it is recommended that you create a backup of your database before proceeding."
msgstr ""
#: install/index.php:71
msgid "The alternative for this installer is a manual installation. Refer to the poweradmin.org website if you want to go down that road."
msgstr ""
#: install/index.php:73
msgid "Finally, if you see any errors during the installation process, a problem report would be appreciated. You can report problems (and ask for help) on the poweradmin-users mailinglist."
msgstr ""
#: install/index.php:75
msgid "Do you want to proceed now?"
msgstr ""
#: install/index.php:86
msgid "To prepare the database for using Poweradmin, the installer needs to modify the PowerDNS database. It will add a number of tables and it will fill these tables with some data. If the tables are already present, the installer will drop them first."
msgstr ""
#: install/index.php:88
msgid "To do all of this, the installer needs to access the database with an account which has sufficient rights. If you trust the installer, you may give it the username and password of the database user root. Otherwise, make sure the user has enough rights, before actually proceeding."
msgstr ""
#: install/index.php:95
msgid "The username to use to connect to the database, make sure the username has sufficient rights to perform administrative task to the PowerDNS database (the installer wants to drop, create and fill tables to the database)."
msgstr ""
#: install/index.php:100 install/index.php:179
msgid "The password for this username."
msgstr ""
#: install/index.php:103
msgid "Hostname"
msgstr ""
#: install/index.php:105
msgid "The hostname on which the PowerDNS database resides. Frequently, this will be \"localhost\"."
msgstr ""
#: install/index.php:108
msgid "DB Port"
msgstr ""
#: install/index.php:110
msgid "The port the database server is listening on."
msgstr ""
#: install/index.php:113
msgid "Database"
msgstr ""
#: install/index.php:115
msgid "The name of the PowerDNS database."
msgstr ""
#: install/index.php:118
msgid "Database type"
msgstr ""
#: install/index.php:124
msgid "The type of the PowerDNS database."
msgstr ""
#: install/index.php:127
msgid "Poweradmin administrator password"
msgstr ""
#: install/index.php:129
msgid "The password of the Poweradmin administrator. This administrator has full rights to Poweradmin using the web interface."
msgstr ""
#: install/index.php:141
msgid "Updating database..."
msgstr ""
#: install/index.php:166
msgid "done!"
msgstr ""
#: install/index.php:168
msgid "Now we will gather all details for the configuration itself."
msgstr ""
#: install/index.php:174
msgid "The username for Poweradmin. This new user will have limited rights only."
msgstr ""
#: install/index.php:182
msgid "Hostmaster"
msgstr ""
#: install/index.php:184
msgid "When creating SOA records and no hostmaster is provided, this value here will be used. Should be in the form \"hostmaster.example.net\"."
msgstr ""
#: install/index.php:187
msgid "Primary nameserver"
msgstr ""
#: install/index.php:189
msgid "When creating new zones using the template, this value will be used as primary nameserver. Should be like \"ns1.example.net\"."
msgstr ""
#: install/index.php:192
msgid "Secondary nameserver"
msgstr ""
#: install/index.php:194
msgid "When creating new zones using the template, this value will be used as secondary nameserver. Should be like \"ns2.example.net\"."
msgstr ""
#: install/index.php:230
msgid "You now want to give limited rights to Poweradmin so it can update the data in the tables. To do this, you should create a new user and give it rights to select, delete, insert and update records in the PowerDNS database."
msgstr ""
#: install/index.php:241
msgid "In MySQL you should now perform the following command:"
msgstr ""
#: install/index.php:244
msgid "On PgSQL you would use:"