-
Notifications
You must be signed in to change notification settings - Fork 623
Expand file tree
/
Copy pathstrings.txt
More file actions
3777 lines (2974 loc) · 167 KB
/
strings.txt
File metadata and controls
3777 lines (2974 loc) · 167 KB
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
<?php
/**
* ♔ TestLink Open Source Project - http://testlink.sourceforge.net/
* This script is distributed under the GNU General Public License 2 or later.
*
* English (en_US) strings (en_GB is default development language)
*
* This list of labels is defined as GLOBAL string variables. The first sections are general
* for strings used over all GUI. These definition should not be redefined. Next sections are
* related to particular pages. Comment with page filename indicate a begin of section. There
* must be defined all other strings.
* Do not use html elements in this file.
*
* To avoid override of other globals we are using $TLS_ (Test Link String) prefix.
* This must be a reserved prefix. The second part of variable name (after
* prefix) should indicate usage (warning, title), the third one indicate the page relation
* and text at the end.
*
* ********************************************************************************************
* Warning - Warning - Warning - Warning - Warning - Warning - Warning - Warning - Warning
* ********************************************************************************************
*
* 1. Be careful about format - the file is parsed by script comment only with "//" except header
* 2. for JS string you must use \\n to get \n for end of line
*
* Note: API interface is not localized (except error messages)
*
* ********************************************************************************************
*
* Revisions:
* 20110327 - BUGID 4349 - Julian - Update with en_GB files
* 20171224 - Helio Guilherme - Update with en_GB files
*
* Scripted update according en_GB string file (version: )
*
**/
// Define character set of this file (UTF-8 is common value)
$TLS_STRINGFILE_CHARSET = "UTF-8";
// Last Update of this file
$TLS_last_update = "Last localization update: 12/24/2017";
// ----- General terms (used wide) ----------------------------
$TLS_active_click_to_change = 'Active (click to set inactive)';
$TLS_api_key = 'API Key';
$TLS_builds = 'Builds';
$TLS_active_builds = 'Active Builds';
$TLS_all_active_builds = '[All Active Builds]';
$TLS_bad_line_skipped = 'Line has been skipped (unable to import it)';
$TLS_create_issue = 'Create issue';
$TLS_create_issue_feedback = 'Create issue feedback';
$TLS_add_issue_note = 'Add issue note';
$TLS_bug_add_note = 'Add issue note';
$TLS_block_ltcv_hasbeenexecuted = "Not updated - Reason: Latest Test Case version has been executed.";
$TLS_exec_result = 'Result';
$TLS_exec_attachments = 'Execution Attachments';
$TLS_inactive_click_to_change = 'Inactive (click to set active)';
$TLS_default_auth_method = "Default";
$TLS_direct_link = 'Direct Link';
$TLS_authentication_method = 'Authentication method';
$TLS_type_not_configured = "system message: type not configured";
$TLS_undefined = "undefined";
$TLS_active = "Active";
$TLS_active_integration = "Integration Enabled";
$TLS_inactive_integration = "Integration Disabled";
$TLS_actions = "Actions";
$TLS_asc = "Ascending";
$TLS_any = "Any";
$TLS_all = "All";
$TLS_alt_delete = "delete";
$TLS_assigned_by = "Assigned by";
$TLS_attribute = "Attribute";
$TLS_attributes = "Attributes";
$TLS_custom_fields = "Custom Fields";
$TLS_author = "Author";
$TLS_automated = "Automated";
$TLS_automatic = "Automatic";
$TLS_availability = "Availability";
$TLS_build = "Build";
$TLS_check_uncheck_all = "Toggle all";
$TLS_check_uncheck_all_for_remove = "check/uncheck all for remove";
$TLS_click_to_set_open = "Closed (click to open)";
$TLS_click_to_set_closed = "Open (click to close)";
$TLS_click_to_disable = "Enabled (click to disable)";
$TLS_click_to_enable = "Disabled (click to enable)";
$TLS_current_testcase = "This test case";
$TLS_confirm = "Confirm";
$TLS_config = "Configuration";
$TLS_created_by = "Created by";
$TLS_edited_by = "Edited by";
$TLS_days = "days";
$TLS_desc = "Descending";
$TLS_description = "Description";
$TLS_doc_id = "Document ID";
$TLS_doc_id_short = "Doc ID";
$TLS_destination_top = "Destination position top";
$TLS_destination_bottom = "Destination position bottom";
$TLS_display_author_updater = "Display Author/Updater";
$TLS_error = "Error";
$TLS_estimated_execution_duration = "Estimated exec. duration (min)";
$TLS_estimated_execution_duration_short = "Estimated exec. (min)";
$TLS_execution_duration = "Execution duration (min)";
$TLS_execution_duration_short = "Exec (min)";
$TLS_export = "Export";
$TLS_export_as_spreadsheet = "Export Data as spreadsheet";
$TLS_file_type = 'File type';
$TLS_filter_mode_and = 'Attention: Filter fields works in AND mode';
$TLS_goto_execute = 'Goto execute test cases';
$TLS_ghost = 'ghost';
$TLS_show_ghost_string = 'Show ghost string';
$TLS_goto_testspec = 'Open test case specification';
$TLS_help = "Help";
$TLS_hint_list_of_bugs = 'BUGX,BUGY,BUGZ';
$TLS_hour = "Hour";
$TLS_import = "Import";
$TLS_importViaAPI = "Import via API (%s)";
$TLS_importance = "Importance";
$TLS_imported = "Imported";
$TLS_important_notice = "Important Notice";
$TLS_its_duedate_with_separator = "Due date: ";
$TLS_hint_like_search_on_name = 'Search wil be done on NAME in LIKE %value%';
$TLS_keyword = "Keyword";
$TLS_login = "Login";
$TLS_log_message = "Log message";
$TLS_mandatory = "Mandatory fields";
$TLS_manual = "Manual";
$TLS_Milestone = "Milestone";
$TLS_months = "months";
$TLS_monitor = "Monitor";
$TLS_monitor_set = "Monitors";
$TLS_name = "Name";
$TLS_navigator_add_remove_tcase_to_tplan = "Add/Remove Test Cases";
$TLS_navigator_tc_exec_assignment = "Assign Test Case Execution";
$TLS_navigator_test_urgency = "Set Urgent Tests";
$TLS_navigator_update_linked_tcversions = "Update Linked Test Case Versions";
$TLS_needed = "Needed";
$TLS_not_aplicable = "N/A";
$TLS_not_in_testplan = "Not in test plan";
$TLS_notes = "Notes";
$TLS_latest_exec_notes = "Notes (latest exec)";
$TLS_step_exec_notes = "Execution notes";
$TLS_step_exec_status = "Execution Status";
$TLS_step = "Step";
$TLS_nobody = "Nobody";
$TLS_not_imported = "Not imported";
$TLS_none = "None";
$TLS_ok = "OK";
$TLS_open_on_new_window = "open on new window";
$TLS_priority = "Priority";
$TLS_project = "Project";
$TLS_public = "Public";
$TLS_private = "Private";
$TLS_access_public = "Public";
$TLS_access_private = "Private - User need specific role assignment";
$TLS_release_date_start = 'Release Date Start';
$TLS_release_date_end = 'Release Date End';
$TLS_required = "Required";
$TLS_requirement = "Requirement";
$TLS_req_short = "Req.";
$TLS_reqs = "Requirements";
$TLS_req_spec = "Requirements Specification Document";
$TLS_req_spec_short = "Req. Spec.";
$TLS_requirements_spec = "Requirements Spec.";
$TLS_req_specification = "Req. Specification";
$TLS_revision = "revision";
$TLS_revision_short = "rev";
$TLS_revision_tag = "[r%s]";
$TLS_version_revision_tag = "[v%sr%s]";
$TLS_srs = "SRS";
$TLS_Role = "Role";
$TLS_assign_roles = "Assign roles";
$TLS_sort_table_by_column = "Click to change sort order";
$TLS_scope = "Scope";
$TLS_status = "Status";
$TLS_test_case = "Test Case";
$TLS_testcase = $TLS_test_case; // obsolete
$TLS_testcaseversion = 'Test Case Version';
$TLS_tester = "Tester";
$TLS_test_plan = "Test Plan";
$TLS_testplan = $TLS_test_plan; // obsolete
$TLS_testproject = "Test Project";
$TLS_test_report = "Test Report";
$TLS_test_suite = "Test Suite";
$TLS_testsuite_created = "Test Suite created";
$TLS_type = "Type";
$TLS_timestamp = "Timestamp";
$TLS_timestamp_lastchange = "Last Change";
$TLS_title = "Title";
$TLS_too_much_data = "Amount of potential data to be generated is too high - please refine your request";
$TLS_too_much_builds = "You have %s Active Builds, please choose no more than %s";
$TLS_testcase_doesnot_exists = "Test Case with external ID: %s - does not exist";
$TLS_without_keywords = "without keywords";
$TLS_warning = "Warning";
$TLS_warning_delete = "You are going to delete: %s <br /><br /> Are you sure?";
$TLS_max_size_file_msg = "Max. allowed file size: %s KB";
$TLS_due_since = "Assigned Since (days)";
$TLS_parent_child='is Parent or is Child';
$TLS_blocks_depends = 'Blocks or Depends';
$TLS_unknown_code='unknown code: %s';
$TLS_in_percent = "[%]";
$TLS_user_has_no_right_for_action = 'User has not needed right to do requested action';
$TLS_from = "from";
$TLS_until = "until";
$TLS_file_size_exceeded = 'File size (%s) > allowed size (%s)';
$TLS_total = "Total";
$TLS_Unknown = "Unknown";
$TLS_urgency = "Urgency";
$TLS_weeks = "weeks";
$TLS_container = "container";
$TLS_platform = "Platform";
$TLS_show_calender = "Show Calender";
$TLS_clear_date = "Clear Date";
$TLS_clear_all_notes = "Clear all notes";
$TLS_clear_all_status = "Clear all status";
$TLS_unfreeze = "Unfreeze";
$TLS_unable_to_render_ghost = '*** UNABLE TO RENDER *** ';
$TLS_issue_additional_information = 'Additional information';
$TLS_issue_description = 'Description';
$TLS_issue_issue = 'Issue/Task';
$TLS_issue_steps_to_reproduce = 'Steps to reproduce';
$TLS_issue_summary = 'Summary';
$TLS_issue_target_version = 'Target version';
$TLS_low = "Low";
$TLS_high = "High";
$TLS_medium = "Medium";
// Actions (used wide)
$TLS_add = "add";
$TLS_assigned = "assigned";
$TLS_create = "create";
$TLS_copy = "copy";
$TLS_delete = "delete";
$TLS_disable = "disable";
$TLS_export_import = "Export/Import";
$TLS_executed = "executed";
$TLS_move = "Move";
$TLS_remove = "remove";
$TLS_update = "update";
$TLS_update_hint = "check to update value when saving";
// Buttons (used wide)
$TLS_btn_apply = "Apply";
$TLS_btn_add = "Add";
$TLS_btn_add_to_testplans = "Add to Test Plans";
$TLS_btn_assign = "Assign";
$TLS_btn_cancel = "Cancel";
$TLS_btn_check = "Check";
$TLS_btn_check_connection = "Check connection";
$TLS_btn_close = "Close";
$TLS_btn_cp = "Copy";
$TLS_btn_copy_ghost_zone = "Copy (ghost steps)";
$TLS_btn_copy_step = "Copy step";
$TLS_btn_create = "Create";
$TLS_btn_create_step = "Create step";
$TLS_btn_delete = "Delete";
$TLS_btn_edit = "Edit";
$TLS_btn_export = "Export";
$TLS_btn_export_import = "Export/Import";
$TLS_btn_find = "Find";
$TLS_btn_goback = "Go back";
$TLS_btn_import = "Import";
$TLS_btn_monitor_start = "Start";
$TLS_btn_monitor_end = "End";
$TLS_btn_move = "Move";
$TLS_btn_next_tcase = "Move to Next Test Case";
$TLS_btn_no = "No";
$TLS_btn_new_revision = "Create a new revision";
$TLS_btn_next = "Next";
$TLS_btn_ok = "Ok";
$TLS_btn_print = "Print";
$TLS_btn_print_view = "Print view";
$TLS_btn_reset_filter = "Reset Filter";
$TLS_btn_save = "Save";
$TLS_btn_save_and_exit = "Save & exit";
$TLS_btn_save_and_insert = "Save & insert";
$TLS_btn_search_filter = "Search/Filter";
$TLS_btn_unassign = "Unassign";
$TLS_btn_update = "Update";
$TLS_btn_upd = $TLS_btn_update; //obsolete
$TLS_btn_advanced_filters = "Advanced Filters";
$TLS_btn_simple_filters = "Simple Filters";
$TLS_btn_reorder_steps = "Reorder Steps";
$TLS_btn_resequence_steps = "Resequence Steps";
$TLS_btn_view_history = "View history";
$TLS_btn_testcases_table_view = 'Test Cases table view';
// Status (used wide)
$TLS_test_status_all = "All";
$TLS_test_status_not_run = "Not Run";
$TLS_test_status_blocked = "Blocked";
$TLS_test_status_failed = "Failed";
$TLS_test_status_passed = "Passed";
$TLS_test_status_not_available = "Not Available";
$TLS_test_status_unknown = "Unknown";
$TLS_review_status_valid = "Valid";
$TLS_review_status_draft = 'Draft';
$TLS_review_status_future = 'Future';
$TLS_review_status_obsolete = 'Obsolete';
$TLS_req_type_info = "Informational";
$TLS_req_type_feature = 'Feature';
$TLS_req_type_use_case = 'Use Case';
$TLS_req_type_interface = 'User Interface';
$TLS_req_type_non_functional = 'Non functional';
$TLS_req_type_constrain = 'Constraint';
$TLS_req_type_system_function = 'System Function';
$TLS_req_spec_type_section = "Section";
$TLS_req_spec_type_user_req_spec = "User Requirement Specification";
$TLS_req_spec_type_system_req_spec = "System Requirement Specification";
$TLS_exec_not_run_result_note = "Important Notice: Once a Result is updated from 'Not Run' to another value, " .
"you cannot set it back to 'Not Run'. <br />You can still set the Result to any other value.";
$TLS_req_status_not_testable = "Not testable"; // defined for historical reason (should be replaced by $TLS_req_type_info)
$TLS_req_status_draft = "Draft";
$TLS_req_status_review = "Review";
$TLS_req_status_rework = "Rework";
$TLS_req_status_finish = "Finish";
$TLS_req_status_implemented = "Implemented";
$TLS_req_status_obsolete = "Obsolete";
$TLS_current_direct_link = "Direct link to the current document.";
$TLS_specific_direct_link = "Direct link to this specific version of the current document.";
$TLS_reserved_system_role_1 = 'reserved system role 1';
$TLS_reserved_system_role_2 = 'reserved system role 2';
$TLS_req_created_automatic_log = "Requirement Created";
$TLS_reqspec_created_automatic_log = "Requirement Specification Created";
$TLS_elapsed_seconds = 'Processing time (seconds)';
$TLS_addLinkToTestCase = 'Add link to test case';
$TLS_removeLinkToTestCase = 'Remove test case link';
$TLS_parent_of = "parent of";
$TLS_child_of = "child of";
$TLS_blocks = "blocks";
$TLS_depends = "depends on";
$TLS_related_to = 'is related to';
$TLS_tcase_relation_hint = "PREFIX-ID";
$TLS_tcase_relation_help = "(if you are linking to a test on same test project, you can write ONLY the ID)";
$TLS_quick_passed = "Click to set to passed";
$TLS_quick_failed = "Click to set to failed";
$TLS_quick_blocked = "Click to set to blocked";
$TLS_onchange_save = "Value will be automatically saved when changed";
$TLS_CSRF_attack = "Cross-Site Request Forgery attack!";
$TLS_already_exists_not_updated = "Already exists => not updated";
$TLS_assign_exec_task_to_me = "Assign task to me";
$TLS_chosen_blank_option = " ";
$TLS_monitorable = 'Monitorable';
// ----- unsorted (TODO move) -------------------------------------
$TLS_problems_loading_xml_content = "Unable to load XML data, Check your file.";
$TLS_search_type_like = "Search on this value will be done on LIKE mode";
$TLS_exec_assign_no_testcase = "Please select at least one Test Case.";
$TLS_select_at_least_one_testcase = "Please select at least one Test Case and a target!";
$TLS_zero_testcase_selected = "You need to select at least one Test Case";
$TLS_no_testcases_available = "No Test Cases available!";
$TLS_no_testcases_available_or_tsuite = "No Test Cases or no destination Test Suites available!";
$TLS_warning_must_be_number = "Value must be a number";
$TLS_select_at_least_one_req = "Please select at least one Requirement";
$TLS_estimated_time_hours = "Estimated time for executing %s test cases (hours):";
$TLS_estimated_time_min = "Estimated time for executing %s test cases (min):";
$TLS_real_time_hours = "Time used for executing %s test cases (hours):";
$TLS_real_time_min = "Time used for executing %s test cases (min):";
$TLS_th_active = $TLS_active; //obsolete
$TLS_th_name = $TLS_name; //obsolete
$TLS_th_notes = $TLS_description; //obsolete
$TLS_th_testcase = $TLS_test_case; // obsolete
$TLS_th_delete = $TLS_delete; // obsolete
$TLS_th_requirement_feature = "Requirement Feature";
$TLS_import_file_type = "Import file type";
$TLS_max_file_size_is = "Max. file size %s";
$TLS_no_permissions_for_action = "You do not have permissions to perform this action!" .
" Please contact your administrator.";
$TLS_name_already_exists = "Name:%s already exists";
$TLS_created_with_new_name = "Create with name:%s, because name:%s already exists";
$TLS_click_to_open='Click to open';
$TLS_testplan_usage="Test Plan usage";
$TLS_add_tcversion_to_plans = "Add Test Case Version to Test Plans";
$TLS_please_select_one_testplan = "Please select at least one Test Plan.";
$TLS_deleted_user = "[deleted user - id=%s]";
$TLS_tag_for_inactive_users = "*";
$TLS_design = "Test Spec Design";
$TLS_execution = "Test Execution";
$TLS_testplan_design = "Test Plan Design";
$TLS_enable_on = "Enable on";
$TLS_closed_on_date="Closed on ";
$TLS_prefix_does_not_exists="Test project prefix does not exist";
$TLS_testcase_does_not_exists="Test Case does not exist";
$TLS_testcase_name_length_exceeded = 'Original length (%s) > allowed length (%s)';
$TLS_demo_update_user_disabled = 'Demo mode enabled => Update User DISABLED';
$TLS_demo_update_role_disabled = 'Demo mode enabled => Update Role DISABLED';
$TLS_demo_reset_password_disabled = 'Demo mode enabled => Password Reset DISABLED';
$TLS_demo_special_user = "Demo mode enabled - user has been configured as special (see config.inc.php demoSpecialUsers)";
$TLS_demo_mode_suggested_user = 'Login as admin';
$TLS_demo_mode_suggested_password = 'Use admin as password';
$TLS_on_top = "Destination position top";
// ----- JAVASCRIPT -----
// Used on javascript logic to validate Custom Field values
$TLS_warning_numeric_cf = "Custom Field %s accepts only numeric values";
$TLS_warning_float_cf = "Custom Field %s accepts only numeric or float values";
$TLS_warning_email_cf = "Custom Field %s accepts only email addresses";
$TLS_warning_text_area_cf = "Custom Field %s accepts only 255 characters";
$TLS_warning_countreq_numeric = "The count of REQs must be numeric!";
$TLS_warn_demo = "We are sorry. This feature is disabled for Demo.";
// Installation/Migration (TODO remove - migration is English only)
$TLS_start_warning = '---- Warning ----';
$TLS_testlink_warning = 'TestLink Warning';
$TLS_testcase_name_too_long = 'test case name is too long (%s chars) > %s => has been truncated';
$TLS_original_name = 'Original name';
$TLS_end_warning = '---- *** ----';
// --------------------------------------------------------------------------------------
// ----- firstLogin.php -----
$TLS_empty_email_address = " You can't use an empty Email address!";
$TLS_empty_first_name = " You can't use an empty First Name!";
$TLS_empty_last_name = " You can't use an empty Last Name!";
$TLS_fatal_page_title = "TestLink ::: Fatal Error";
$TLS_no_good_email_address = "Email address format seems no good. Check domain(string after @). At least one dot (.) " .
"has to be present. Top Level Domain longer than 4 are not allowed.";
$TLS_passwd_dont_match = "The two passwords entered did not match. Note that passwords are case sensitive. " .
"Please try again.";
$TLS_user_name_exists = "Login/User name is already in use, please select another one.";
$TLS_your_info_please = "Enter Your User Information";
$TLS_new_account = "TestLink - New Account Created";
$TLS_bad_password_minlen = 'Password requirement - min len %s - actual length %s';
$TLS_bad_password_maxlen = 'Password requirement - MAX len %s - actual length %s';
$TLS_bad_password_number = 'Password requirement - must contains at least one number';
$TLS_bad_password_letter = 'Password requirement - must contains at least one letter';
$TLS_bad_password_capital = 'Password requirement - must contains at least one CAPITAL LETTER';
$TLS_bad_password_symbol = 'Password requirement - must contains at least one symbol';
// ----- archiveData.php -----
$TLS_container_title_testcase = $TLS_test_case;
$TLS_high_priority = "High";
$TLS_medium_priority = "Medium";
$TLS_low_priority = "Low";
$TLS_high_importance = "High";
$TLS_medium_importance = "Medium";
$TLS_low_importance = "Low";
$TLS_urgency_high = "High";
$TLS_urgency_medium = "Medium";
$TLS_urgency_low = "Low";
$TLS_test_importance = "Test importance";
$TLS_testcases_assigned_to_user = 'Test Project: %s - Test Cases Assigned to User: %s';
$TLS_assigned_on = 'Assignment date';
// ----- index.php -----
$TLS_main_page_title = "TestLink ::: Main Page";
$TLS_config_check_warnings = "There are security warnings for your consideration. " .
"See details on file: %s. " .
"To disable any reference to these checkings, set \$tlCfg->config_check_warning_mode = 'SILENT';";
// ----- lib/inventory/inventoryView.php & tpl -----
$TLS_inventory_title = 'Inventory';
$TLS_inventory_create_title = 'Define a device data';
$TLS_inventory_empty = 'No device defined.';
$TLS_inventory_name = 'Host name';
$TLS_inventory_ipaddress = 'IP Address';
$TLS_inventory_notes = 'Notes';
$TLS_inventory_purpose = 'Purpose';
$TLS_inventory_hw = 'Hardware';
$TLS_inventory_delete = 'Delete';
$TLS_inventory_owner = 'Owner';
$TLS_inventory_alt_delete = 'Delete the selected the device data';
$TLS_inventory_alt_edit = 'Edit the selected the device data';
$TLS_inventory_dlg_delete_txt = 'Are you sure to delete the device?';
$TLS_inventory_dlg_select_txt = 'Select a row at first.';
$TLS_inventory_msg_no_rights = 'You have not appropriate rights to modify inventory.';
$TLS_inventory_msg_no_action = 'Invalid input data - no action was requested.';
// ----- lib/functions/inventory.class.php -----
$TLS_audit_inventory_created = 'A new device {%1} was created - Test Project {%2}.';
$TLS_audit_inventory_deleted = 'The device {%1} was deleted - Test Project {%2}.';
$TLS_inventory_create_success = 'A new device %s was created successfully.';
$TLS_inventory_create_fails = 'Failed: A new device %s was not created.';
$TLS_inventory_update_success = 'The device %s was updated successfully.';
$TLS_inventory_update_fails = 'Failed: The device %s was not updated.';
$TLS_inventory_delete_success = 'The device %s was deleted successfully.';
$TLS_inventory_delete_fails = 'Failed: The device %s was not deleted.';
$TLS_inventory_name_exists = 'The device %s already exists in the project.';
$TLS_inventory_name_empty = 'The device cannot have empty name.';
$TLS_inventory_ip_exists = 'The device IP address %s already exists in the project.';
$TLS_inventory_no_device = 'Failed: No device found for this data:';
// ----- keywordsimport.php -----
$TLS_please_choose_keywords_file = "Please choose the file to upload";
$TLS_keywords_file = "Keywords file";
$TLS_wrong_keywords_file = "Wrong Keyword file (wrong format)";
// ----- lostPassword.php -----
$TLS_bad_user = "User not found, please try again";
$TLS_contact_admin = "If you have any further problems please contact your administrator.";
$TLS_mail_empty_address = "You don't have specified an email address in your user profile! " .
" Please contact your TestLink administrator about resetting your password!";
$TLS_mail_passwd_subject = "Your new TestLink password.";
$TLS_page_title_lost_passwd = "TestLink - Lost password";
$TLS_your_info_for_passwd = "Enter Your User Information so that your new password can be mailed to you.";
$TLS_your_password_is = "Your new TestLink password is:";
$TLS_password_set = "Password has been set to: ";
$TLS_password_mgmt_feedback = 'Password management for user %s, does not allow password reset';
$TLS_your_apikey_is = "Your new TestLink API key is:";
$TLS_mail_apikey_subject = "Your new TestLink API key.";
$TLS_apikey_by_mail = "New API key has been sent via mail";
// ----- login.php -----
$TLS_bad_user_passwd = "Try again! Wrong login name or password!";
$TLS_login_msg_session_exists1 = "There is still a valid login for your browser. <br /> Please use this link >>> ";
$TLS_login_msg_session_exists2 = " <<< at first if you would like to renew your session.";
$TLS_logout_link = "Logout";
$TLS_passwd_lost = "Your password has been sent to the email account you specified during " .
"your user creation. Please check your mailbox. " .
"If you have other problems please contact your TestLink administrator.";
$TLS_password_reseted = "New password has been sent via mail";
$TLS_session_expired = "Your session has expired! Please login again.";
$TLS_your_first_login = "Welcome to TestLink! You have guest access now. Please login ...";
$TLS_oauth_login = "Sign in with ";
// ----- newest_tcversions.php -----
$TLS_no_linked_tcversions = "no linked Test Case versions";
$TLS_testplan_seems_empty = "Test plan seems to be empty - Nothing to do";
// resultsGeneral.php
$TLS_report_tspec_has_no_tsuites = "There are no Test Suites defined for Test Project, <br />".
"then no execution data can exist => no report can be created";
$TLS_report_tcase_platorm_relationship = "Platforms has been defined for this test plan.<br />" .
"Use of platforms has impact on metrics, because <br />" .
"a test case that must be executed in N platforms " .
"is considered as N test cases on metrics.<br />" .
"Example: if user U1 has been assigned execution of Test Case TC1 <br />" .
"on platform X and Y, then user U1 has TWO test cases to execute NOT ONE ";
// ----- resultsNavigator.php -----
$TLS_title_nav_results = "Reports and Metrics";
$TLS_report_tplan_has_no_build = "Test Plan has no build defined, <br />".
"then no execution data can exist => no report can be created";
$TLS_report_tplan_has_no_tcases = "Test Plan has no Test Cases linked, <br />".
"then no execution data can exist => no report can be created";
// ----- tcEdit.php -----
$TLS_copy_keyword_assignments = "Copy Keyword Assignments";
$TLS_copy_requirement_assignments = "Copy Requirement Assignments";
$TLS_tc_copied = "Test Case %s was successfully copied to Test Suite %s";
$TLS_tc_created = "Test Case %s was successfully created";
$TLS_tc_deleted = "Test Case %s was successfully deleted";
$TLS_tc_new_version = "Test Case Version %d was successfully created";
$TLS_tc_version_deleted = "Test Case %s version %d was successfully deleted";
$TLS_assign_requirements = "Assign Requirements";
$TLS_link_unlink_requirements = "Link/Unlink Requirements";
// ----- tcexecute.php -----
$TLS_check_test_automation_server = "Please Check Server Settings";
$TLS_result_after_exec = "Results after execution: ";
$TLS_service_not_supported = "This service is not supported";
$TLS_tcexec_notes = "Testing details";
$TLS_tcexec_result = "Result";
$TLS_tcexec_results_for = "Result for ";
$TLS_tcexec_latest_exec_result = "Latest Exec Result";
// ----- gui/templates/attachment404.tpl -----
$TLS_error_attachment_not_found = "Error: Attachment not found!";
$TLS_title_downloading_attachment = "Downloading attachment";
// ----- gui/templates/attachmentdelete.tpl -----
$TLS_deleting_was_ok = "Attachment was deleted!";
$TLS_error_attachment_delete = "Error while deleting attachment!";
$TLS_title_delete_attachment = "Delete attachment";
// ----- gui/templates/containerDelete.tpl -----
$TLS_btn_yes_del_comp = "Yes, delete Test Suite";
$TLS_container_title_testsuite = $TLS_test_suite;
$TLS_linked_but_not_executed = "Linked to one or more Test Plan, but not executed";
$TLS_question_del_testsuite = "Really delete the Test Suite?";
$TLS_th_link_exec_status = "Link and execution status";
$TLS_testsuite_successfully_deleted = "The Test Suite was successfully deleted";
$TLS_no_links = "No dependent data.";
$TLS_linked_and_executed = "Test case was added into a Test Plan and has results.";
// $TLS_system_blocks_tsuite_delete_due_to_exec_tc =
// "Test suite can not be deleted, because system configuration blocks delete of executed test cases";
$TLS_system_blocks_tsuite_delete_due_to_exec_tc =
"Test suite can not be deleted, because it contains one or more executed test cases " .
"and your role has no right to delete executed test cases";
// ----- gui/templates/containerNew.tpl -----
$TLS_btn_create_testsuite = "Create Test Suite";
$TLS_tc_keywords = "Keywords";
$TLS_title_create = "Create";
$TLS_warning_empty_testsuite_name = "Please give a name to Test Suite";
// ----- gui/templates/bug_add.tpl -----
$TLS_btn_add_bug = "Add bug";
$TLS_bug_id = "Bug id";
$TLS_bug_description = "Bug Description";
$TLS_bug_summary = "Bug Summary";
$TLS_link_bts_create_bug = "Access to Bug Tracking System ";
$TLS_title_bug_add = "Add link to bug report";
$TLS_hint_bug_notes = "Notes are initialized with execution notes. " .
"If you leave it empty no note will added to bug on Bug Tracker System";
$TLS_issueType = 'Issue Type';
$TLS_issuePriority = 'Issue Priority';
$TLS_artifactVersion = 'Version';
$TLS_artifactComponent = 'Component';
// ----- gui/templates/bug_delete.tpl -----
$TLS_title_delete_bug = "Delete bug report";
// ----- gui/templates/containerMove.tpl -----
$TLS_as_first_testsuite = "Destination position top";
$TLS_as_last_testsuite = "Destination position bottom";
$TLS_choose_target = "Choose a target";
$TLS_cont_copy_first = $TLS_copy;
$TLS_cont_copy_second = "to Any";
$TLS_cont_move_first = $TLS_move;
$TLS_cont_move_second = "to a different";
$TLS_copy_keywords = "Copy keywords";
$TLS_copy_copy_keywords = "While Copying, Copy keywords";
$TLS_copy_copy_requirement_assignments = "While Copying, Copy Requirement Assignments";
$TLS_defined_exclam = "defined !";
$TLS_sorry_further = "I'm sorry there are no further ";
$TLS_title_move_cp = "Move/Copy";
$TLS_title_move_cp_testcases = "Move/Copy Test Cases";
$TLS_title_delete_testcases = "Delete Test Cases";
// ----- gui/templates/reqCreate.tpl -----
$TLS_req_create = "Create a requirement";
$TLS_req_doc_id = "Document ID";
$TLS_warning_empty_req_title = "Requirement title cannot be empty!";
$TLS_warning_empty_reqdoc_id = "Requirement document id cannot be empty!";
$TLS_create_testcase_from_req = "Create Test Cases from Requirements";
$TLS_insert_last_req_doc_id = "Insert Document ID of last created Requirement";
// ----- gui/templates/reqCopy.tpl -----
$TLS_copy_one_req = "Copy requirement";
$TLS_copy_several_reqs = "Copy requirements";
$TLS_copy_testcase_assignments = "Copy Test Case Assignments";
// ----- gui/templates/requirements/reqCreateTestCases.tpl -----
$TLS_toggle_create_testcase_amount = "Toggle between single test case creation and " .
"the creation of the required amount of test " .
"cases to fully cover the requirement(s)";
// gui/templates/containerOrder.tpl
$TLS_no_nodes_to_reorder = "I'm sorry there is nothing to reorder!";
$TLS_node = $TLS_name;
$TLS_th_id = "ID";
$TLS_th_node_type = "Test Case / Test Suite";
$TLS_th_order = "Order";
$TLS_title_change_node_order = "Change children order";
// ----- gui/templates/containerView.tpl -----
$TLS_testsuite_operations = "Test Suite Operations";
$TLS_testcase_operations = "Test Case Operations";
$TLS_alt_del_testsuite = "Delete this Test Suite with all children (Test Suites and Test Cases)";
$TLS_alt_edit_testsuite = "Modify this Test Suite data and title";
$TLS_alt_move_cp_testsuite = "Move or copy this Test Suite to another Test Project";
$TLS_alt_move_cp_testcases = "Move/Copy Test Cases";
$TLS_btn_create_from_issue_xml = "Create From Issues (XML)";
$TLS_btn_del_testsuite = "Delete";
$TLS_btn_del_testsuites_bulk = "Delete Test Suites Bulk";
$TLS_btn_edit_testsuite = $TLS_btn_edit;
$TLS_btn_execute_automatic_testcases = "Execute All Automatic Test Cases";
$TLS_btn_export_all_testsuites = "Export All Test Suites";
$TLS_btn_export_tc = "Export";
$TLS_btn_export_testsuite = "Export";
$TLS_btn_gen_test_spec = 'Test Spec Document (HTML)';
$TLS_btn_gen_test_spec_new_window = 'Test Spec Document (HTML) on new window';
$TLS_btn_gen_test_suite_spec = 'Test Suite Document (HTML)';
$TLS_btn_gen_test_suite_spec_new_window = 'Test Suite Document (HTML) on new window';
$TLS_btn_gen_test_spec_word = 'Download Test Spec Document (Pseudo Word)';
$TLS_btn_gen_test_suite_spec_word = 'Download Test Suite Document (Pseudo Word)';
$TLS_btn_import_tc = "Import";
$TLS_btn_import_testsuite = "Import";
$TLS_btn_move_cp_testsuite = "Move/Copy";
$TLS_btn_move_cp_testcases = "Move/Copy";
$TLS_btn_new_testsuite = "Create";
$TLS_btn_new_tc = "Create";
$TLS_btn_reorder = "Reorder children";
$TLS_btn_delete_testcases = "Delete";
$TLS_btn_reorder_testcases_alpha = "Reorder Test Cases (Dictionary)";
$TLS_btn_reorder_testcases_externalid = "Sort by external ID";
$TLS_btn_reorder_testsuites_alpha = "Sort alphabetically";
$TLS_container_title_testproject = $TLS_testproject;
$TLS_edit_testproject_basic_data = "Edit Test Project basic data";
$TLS_th_product_name = "Test Project Name";
$TLS_th_testplan_name = "Test Plan Name";
// ----- gui/templates/cfields/cfieldsEdit.tpl -----
$TLS_assigned_to_testprojects = "Assigned to Test Projects";
$TLS_available_on = "Available for";
$TLS_btn_add_and_assign_to_current = 'Add and assign (to current test project)';
$TLS_custom_field = "Custom field";
$TLS_context_design = "test specification";
$TLS_context_exec = "test execution";
$TLS_context_testplan_design = "test plan design";
$TLS_enable_on_design = "Enable on <br />test specification";
$TLS_enable_on_exec = "Enable on <br />test execution";
$TLS_enable_on_testplan_design = "Enable on <br />test plan design";
$TLS_enabled_on_context = "Enabled on Context";
$TLS_label = "Label";
$TLS_possible_values = "Possible values";
$TLS_show_on_design = "Display on <br />test specification";
$TLS_show_on_exec = "Display on <br />test execution";
$TLS_display_on_exec = "Display on execution";
$TLS_show_on_testplan_design = "Display on <br />test plan design";
$TLS_testcase = $TLS_test_case;
$TLS_title_cfields_mgmt = "Custom fields";
$TLS_title_cfield_edit = "Edit ";
$TLS_type = "Type";
$TLS_warning_empty_cfield_label = "Please enter the label of this custom field.";
$TLS_warning_empty_cfield_name = "Please enter the name of this custom field.";
$TLS_warning_is_in_use = "You can neither delete, either change type <br /> " .
"because a value has been assigned to this custom field <br />" .
"by user on an test specification or execution ";
$TLS_warning_no_type_change = "You can NOT change custom field type <br /> " .
"because a value has been assigned to this custom field <br />" .
"by user on an test specification or execution ";
// ----- gui/templates/inc_update.tpl -----
$TLS_info_failed_db_upd = "Failed to update database!";
$TLS_info_failed_db_upd_details = "Failed to update database! - details:";
$TLS_invalid_query = "Error";
$TLS_warning = "Warning";
$TLS_was_success = " was successfully ";
// ----- gui/templates/inc_filter_panel.tpl -----
$TLS_logical_and = "And";
$TLS_logical_or = "Or";
$TLS_not_linked = "Not linked";
$TLS_btn_apply_filter = $TLS_btn_apply;
$TLS_btn_reset_filters = "Reset Filters";
$TLS_caption_nav_filters = "Filters";
$TLS_caption_nav_settings = "Settings";
$TLS_current_build = "Current build";
$TLS_filter_owner = "Assigned to";
$TLS_filter_result = "Result";
$TLS_filter_on = "on";
$TLS_filter_tcID = "Test Case ID";
$TLS_include_unassigned_testcases = "include unassigned Test Cases";
$TLS_filter_result_all_builds = "ALL Builds";
$TLS_filter_result_any_build = "ANY Build";
$TLS_filter_result_specific_build = "specific Build";
$TLS_filter_result_latest_execution = "latest execution";
$TLS_filter_result_current_build = "Build chosen for execution";
$TLS_filter_somebody = "Somebody";
$TLS_exec_build = "Build to execute";
$TLS_assign_build = "Build to assign";
$TLS_document_id = "Document ID";
$TLS_req_type = "Requirement Type";
$TLS_req_spec_type = "Req. Spec. Type";
$TLS_btn_hide_cf = "Hide Custom Fields";
$TLS_btn_show_cf = "Show Custom Fields";
$TLS_btn_export_testplan_tree = 'Export Test Plan';
$TLS_btn_export_testplan_tree_for_results = 'Export for results import';
$TLS_expand_tree = "Expand tree";
$TLS_collapse_tree = "Collapse tree";
$TLS_filter_active_inactive = "Active/Inactive";
$TLS_show_only_active_testcases = "At least ONE version is ACTIVE";
$TLS_show_only_inactive_testcases = "ALL versions are INACTIVE";
$TLS_show_whole_spec_on_right_panel = 'Show Full (on right pane)';
$TLS_test_grouped_by = "Tests Grouped By";
$TLS_mode_test_suite = "Test Suite";
$TLS_mode_req_coverage = "Requirement";
$TLS_parent_child_relation = "Exploit Child / parent relationship";
// ----- gui/templates/execNavigator.tpl -----
$TLS_TestPlan = $TLS_testplan;
$TLS_btn_update_menu = "Update menu";
$TLS_caption_nav_filter_settings = "Filters & Settings";
$TLS_test_status_all_status = $TLS_test_status_all;
$TLS_block_filter_not_run_latest_exec = 'Result: not run, can not be used in combination with on:latest execution';
$TLS_bugs_on_context = 'Bugs on Exec. Context';
$TLS_execution_context = 'Exec. Context';
// ----- gui/templates/mainPage.tpl -----
$TLS_th_perc_completed = "Completed [%]";
$TLS_error_no_testprojects_present = "There are currently no testproject defined!";
// ----- gui/templates/metrics_dashbord.tpl -----
$TLS_th_active_tc = "Active Test Cases";
$TLS_show_only_active = "Show metrics only for active test plans";
// ----- gui/templates/newest_tcversions.tpl -----
$TLS_linked_version = "Linked version";
$TLS_newest_version = "Newest available active version";
$TLS_title_newest_tcversions = "Newest versions of linked Test Cases";
$TLS_no_newest_version_of_linked_tcversions = "All linked Test Case Versions are current";
// ----- gui/templates/emailSent.tpl -----
$TLS_send_test_report = "- Send Test Report";
// ----- gui/templates/reqImport.tpl -----
$TLS_Result = "Result";
$TLS_btn_upload_file = "Upload file";
$TLS_check_req_file_structure = "Please check the file format, seems is not possible get any requirement";
$TLS_local_file = "File";
$TLS_max_size_cvs_file1 = "Max. size of the file is";
$TLS_max_size_cvs_file2 = "kB";
$TLS_req_import_check_note = "Please verify possible conflicts, set an appropriate solution and then start import process.";
$TLS_req_import_dont_empty = "Do not import items with empty Scope";
$TLS_req_import_option_header = "Set conflict solution";
$TLS_req_import_option_overwrite = "Update an existing one";
$TLS_req_import_option_skip = "Skip import of doubled requirements";
$TLS_req_msg_norequirement = "No requirement";
$TLS_title_choose_local_file = "Choose a Local File to Upload";
$TLS_title_req_import = "Import requirements";
$TLS_title_req_import_check_input = "Check import data";
$TLS_check_status = "Check Status";
$TLS_skip_frozen_req = "Skip frozen requirements";
// gui/templates/inc_attachments.tpl
$TLS_alt_delete_build = "Click here to delete this build";
$TLS_alt_delete_attachment = "Click here to delete this attachment";
$TLS_attached_files = "Attached files";
$TLS_attachment_feature_disabled = "attachment disabled";
$TLS_click_to_get_attachment = 'Click to get attachment';
$TLS_upload_file_new_file = "Upload new file";
$TLS_warning_delete_attachment = "Really delete the attachment '%s' ?";
// gui/templates/resultsNavigator.tpl
$TLS_show_inactive_tplans = "Show inactive test plans";
$TLS_send_to = "To:";
$TLS_subject = "Subject:";
$TLS_title_report_type = "Report Format";
// gui/templates/inc_attachments_upload.tpl
// gui/templates/cfields/cfieldsView.tpl
$TLS_btn_cfields_create = $TLS_btn_create;
$TLS_manage_cfield = "Manage custom field";
// cfieldsExport.php
$TLS_export_cfields = "Export Custom fields";
// cfieldsImport.php
$TLS_import_cfields = "Import Custom fields";
$TLS_custom_field_already_exists="Custom field %s already exists.";
$TLS_custom_field_imported="Custom field %s imported.";
// gui/templates/inc_cat_viewer_ro_m0.tpl
$TLS_category = "Test Suite"; // obsolete
$TLS_configuration = "Configuration";
$TLS_data = "Data";
$TLS_tools = "Tools";
// gui/templates/inc_cat_viewer_rw.tpl
$TLS_cat_data = "Data";
$TLS_cat_name = "Test Suite Name";
// gui/templates/reqEdit.tpl
$TLS_by = "by";
$TLS_coverage = "Coverage";
$TLS_req_edit = "Edit Requirement";
$TLS_req_msg_notestcase = "No connected Test Case";
$TLS_requirement_spec = "Requirement Specification Document";
$TLS_title_created = "Created on";
$TLS_title_last_mod = "Last modified on ";
$TLS_expected_coverage = "Number of test cases needed";
$TLS_warning_expected_coverage = $TLS_expected_coverage . " must be a number ";
$TLS_warning_expected_coverage_range = $TLS_expected_coverage . " must be > 0 ";
$TLS_stay_here_req = 'check to create another requirement after saving';
$TLS_current_coverage = "Connected";
$TLS_coverage_number = "Create";
$TLS_testsuite_title_addition = "automatically generated from req. spec.";
$TLS_suggest_create_revision = "Do you want to create a new revision?\\n" .
"You changed ONLY the scope\\n" .
"It is recommended to create a new revision only \\n" .
"if you made major changes.\\n" .
"Click on Cancel if you want update but without\\n" .
"creating a new revision";
$TLS_suggest_create_revision_html = "You changed ONLY the scope. " .
"It is recommended to create a new revision only <br>" .
"if you made major changes. In this situation please add a log message<br>" .
"<br>Click on Cancel if you want update but without " .
"creating a new revision<p><b>Log message</b>";
$TLS_warning_suggest_create_revision = "Attention!! - Do you want to create a new revision?";
$TLS_revision_log_title = "Revision Log";
$TLS_please_add_revision_log = "Please add a log message";
$TLS_commit_title = "Log message";
// gui/templates/buildEdit.tpl
$TLS_enter_build = "Title";
$TLS_enter_build_notes = "Description";
//$TLS_msg_build = "Notes: Each build is related to the active Test Plan. " .