-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathlanguages.ini
More file actions
6935 lines (6494 loc) · 377 KB
/
Copy pathlanguages.ini
File metadata and controls
6935 lines (6494 loc) · 377 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
[english]
; Panel labels (visible text on the control elements)
panel_find_what="Find what:"
panel_replace_with="Replace with:"
panel_match_whole_word_only="Match whole word only"
panel_match_case="Match case"
panel_formula_support="Formula Support"
tooltip_engine_selector="Active engine: $REPLACE_STRING. Click to change."
panel_replace_at_matches="Replace matches:"
panel_wrap_around="Wrap around"
panel_search_mode="Search Mode"
panel_normal="Normal"
panel_extended="Extended (\\n, \\r, \\t, \\0, \\x...)"
panel_regular_expression="Regular expression"
panel_scope="Scope"
panel_all_text="All Text"
panel_selection="Selection"
panel_csv="CSV"
panel_cols="Cols:"
panel_delim="Delim:"
panel_quote="Quote:"
panel_add_into_list="Add into List"
panel_replace_all="Replace All"
panel_replace="Replace"
panel_find_all="Find All"
panel_find_next="Find Next"
panel_mark_matches="Mark Matches"
panel_mark_matches_small="Mark Matches"
panel_clear_all_marks="Clear all marks"
panel_load_list="Load List"
panel_save_list="Save List"
panel_save_as="Save As..."
panel_save_a_copy="Save a Copy..."
panel_save_all="Save All"
panel_help="?"
panel_replace_in_files="Replace in Files"
panel_find_in_files="Find in Files"
panel_find_replace_in_files="Find/Replace in Files"
panel_replace_in_docs="Replace in Open Documents"
panel_find_in_docs="Find in Open Documents"
panel_find_replace_in_docs="Find/Replace in Open Documents"
panel_all_documents="All documents"
panel_directory="Directory:"
panel_filter="Filter:"
panel_in_subfolders="In all sub-folders"
panel_in_hidden_folders="In hidden folders"
panel_cancel_replace="Cancel"
; File Dialog
filetype_all_files="All Files (*.*)"
filetype_mrl="MultiReplace Lists (*.mrl)"
filetype_csv_excel="CSV (Excel) (*.csv)"
legacy_csv_title="MultiReplace - List Format Changed"
legacy_csv_instruction="Rename this file from .csv to .mrl, then load it again"
legacy_csv_message="This .csv file is an older MultiReplace list, not an Excel CSV file. MultiReplace lists now use the .mrl extension."
; Tooltips
tooltip_replace_all="Replace All"
tooltip_2_buttons_mode="2 buttons mode"
tooltip_columns="Columns: '1,3,5-12'"
tooltip_delimiter="Delimiter: Single/combined chars, \t for Tab"
tooltip_quote="Quote: ' or "" or none"
tooltip_replace_at_matches="Replace at matches (Replace All only): '1,3,5-12'"
tooltip_sort_descending="Sort Descending"
tooltip_sort_ascending="Sort Ascending"
tooltip_drop_columns="Drop Columns"
tooltip_copy_columns="Copy Columns to Clipboard"
tooltip_column_highlight="Column highlight: On/Off"
tooltip_column_tabs="Column Alignment: On/Off"
tooltip_find_duplicates="Find Duplicates"
tooltip_copy_marked_text="Copy Marked Text"
tooltip_save="Save List"
tooltip_enable_list="Enable list (Ctrl+L)"
tooltip_disable_list="Disable list (Ctrl+L)"
tooltip_filter_help="Separate patterns with semicolons (;)\n\nFind in specific file types:\n*.cpp; *.h; *.txt\n\nExclude file patterns:\n*.*; !*.exe; !*.obj; !*.log\n\nMatch a specific filename:\nmy report.txt\n\nExclude folders (in Files mode):\n*.*; !\\tests\\; !\\bin*\n\nExclude folders recursively:\n*.*; !+\\log*"
tooltip_report_template_help="Available placeholders:\n\nData fields:\n %FIND% - Find what\n %REPLACE% - Replace with\n %COMMENT% - Comments\n %FCOUNT% - Matches\n %RCOUNT% - Replaced\n %MODIFIED% - Modified\n\nRow info:\n %ROW% - Line\n %SEL% - Enabled (1/0)\n\nOptions:\n %REGEX% - Regular expression (1/0)\n %CASE% - Match case (1/0)\n %WORD% - Match whole word only (1/0)\n %EXT% - Extended (1/0)\n %VAR% - Formula Support (1/0)\n\nUse \t for tab delimiter"
tooltip_move_up="Move selected lines up (Ctrl+Up)"
tooltip_move_down="Move selected lines down (Ctrl+Down)"
tooltip_bookmark_matches="Bookmark matched lines"
; List headers
header_find_count="Matches"
header_replace_count="Replaced"
header_find="Find"
header_replace="Replace"
header_comments="Comments"
header_timestamp="Modified"
ctxmenu_reset_column_order="Reset Column Order"
ctxmenu_lock_column_width="Lock '$REPLACE_STRING' column width"
header_delete_button="Delete Button"
header_whole_word="W"
header_match_case="C"
header_formula_support="F"
header_extended="E"
header_regex="R"
; Tooltips for headers
tooltip_header_whole_word="Whole Word"
tooltip_header_match_case="Match Case"
tooltip_header_formula_support="Formula Support"
tooltip_header_extended="Extended"
tooltip_header_regex="Regex"
; Entries for SplitButton
split_menu_replace_all="Replace All"
split_menu_replace_in_docs="Replace All in Open Documents"
split_menu_replace_all_in_files="Replace All in Files"
split_menu_debug_mode="Debug Mode"
split_button_replace_all="Replace All"
split_button_replace_in_docs="Replace in Docs"
split_button_replace_all_in_files="Replace in Files"
split_menu_find_all="Find All"
split_menu_find_in_docs="Find All in Open Documents"
split_menu_find_all_in_files="Find All in Files"
split_button_find_all="Find All"
split_button_find_in_docs="Find in Docs"
split_button_find_all_in_files="Find in Files"
; Static Status Messages
status_duplicate_entry="Duplicate entry: "
status_value_added="Value added to the list."
status_one_line_deleted="1 line deleted."
status_column_marks_cleared="Column marks cleared."
status_all_marks_cleared="All marks cleared."
status_cannot_replace_read_only="Cannot replace. Document is read-only."
status_no_find_string="No 'Find String' entered. Please provide a value to add to the list."
status_no_rows_selected_to_shift="No rows selected to shift."
status_add_values_or_uncheck="Add values into the list or disable the list."
status_no_occurrence_found="No occurrence found."
status_found_text_not_replaced="Found text was not replaced."
status_replace_one_next_found="Replace: 1 occurrence replaced. Next found."
status_replace_one_none_left="Replace: 1 occurrence replaced. None left."
status_replace_one="Replace: 1 occurrence replaced."
status_no_entries_selected="Select entries in the list or disable the list."
status_no_matches_found="No matches found."
status_no_text_to_copy="No text to copy."
status_failed_to_copy="Failed to copy to Clipboard."
status_failed_allocate_memory="Failed to allocate memory for Clipboard."
status_invalid_column_or_delimiter="Invalid column or delimiter data."
status_missing_column_or_delimiter_data="Column data or delimiter data is missing"
status_invalid_range_in_column_data="Invalid range in column data"
status_missing_match_selection="Match selection data is missing"
status_invalid_range_in_match_data="Invalid range in match selection"
status_extended_delimiter_empty="Extended delimiter is empty"
status_invalid_quote_character="Invalid quote character. Use " or ' or leave it empty."
status_unable_to_save_file="Error: Unable to open or write to file."
status_saved_items_to_csv="$REPLACE_STRING items saved to CSV."
status_saved_items_to_mrl="$REPLACE_STRING items saved to MRL."
status_save_all_done="$REPLACE_STRING list(s) saved."
status_save_all_errors="$REPLACE_STRING list(s) saved, $REPLACE_STRING failed."
status_save_all_nothing="No unsaved changes."
status_no_valid_items_in_csv="No valid items found in the CSV file."
status_invalid_column_count="File not loaded! Invalid number of columns in CSV file."
status_invalid_data_in_columns="File not loaded! Invalid data found in CSV columns."
status_found_in_list="Entry found in the list."
status_not_found_in_list="No entry found in the list based on input fields."
status_enable_list="List mode enabled. Actions will use list entries."
status_enable_list_count="List mode: $REPLACE_STRING1 of $REPLACE_STRING2 entries enabled."
status_enable_list_empty="List mode: list is empty."
status_disable_list="List mode disabled. Actions will use 'Find what' and 'Replace with' fields."
status_no_rows_selected_to_delete="No rows selected to delete."
status_invalid_indices="Invalid row indices."
status_error_hidden_buffer="Error creating hidden buffer for processing."
status_error_invalid_directory="The specified directory is invalid or does not exist."
status_error_scanning_directory="Error scanning directory: $REPLACE_STRING"
status_replace_summary="Replace in files: $REPLACE_STRING1 of $REPLACE_STRING2 file(s) modified."
status_replace_in_docs_summary="Replace in documents: $REPLACE_STRING occurrences replaced."
status_rows_sorted="Rows sorted."
status_sort_restored="Original order restored."
status_occurrences_found="$REPLACE_STRING occurrences found."
status_scope_in_selection=" (in Selection)"
status_canceled="Canceled"
status_no_delimiters="No delimiters found."
status_model_build_failed="Flow Tabs: model build failed."
status_padding_insert_failed="Flow Tabs: insert failed."
status_visual_fail="Flow Tabs: visual tabstops failed."
status_tabs_inserted="Flow Tabs: INSERTED."
status_tabs_removed="Flow Tabs: REMOVED."
status_tabs_aligned="Flow Tabs: ALIGNED."
status_nothing_to_align="Flow Tabs: nothing to align."
status_no_selection="No text selected."
status_select_area_first="Please select an area first."
status_report_failed="Export to clipboard failed."
status_no_results_linked="No results linked to this entry – run Find All."
status_wrapped_to_first="Wrapped to first match"
status_wrapped_to_last="Wrapped to last match"
status_wrapped_to_first_of="Wrapped to match $REPLACE_STRING1/$REPLACE_STRING2"
; Dynamic Status Messages
status_match_position="Match $REPLACE_STRING1/$REPLACE_STRING2"
status_rows_shifted="$REPLACE_STRING rows successfully shifted."
status_lines_deleted="$REPLACE_STRING lines deleted."
status_layout_applied_to_tabs="Column layout applied to $REPLACE_STRING other tab(s)."
status_occurrences_replaced="$REPLACE_STRING occurrences were replaced."
status_no_matches_found_for="No matches found for '$REPLACE_STRING'."
status_actual_position="Actual Position $REPLACE_STRING"
status_items_loaded_from_csv="$REPLACE_STRING items loaded from CSV."
status_items_loaded_from_mrl="$REPLACE_STRING items loaded from MRL."
status_occurrences_marked="$REPLACE_STRING occurrences were marked."
status_items_copied_to_clipboard="$REPLACE_STRING items copied to Clipboard."
status_deleted_fields_count="Deleted $REPLACE_STRING fields."
status_line_and_column_position=" (Line: $REPLACE_STRING1, Column: $REPLACE_STRING2)"
status_unable_to_open_file="Failed to open the file: $REPLACE_STRING"
status_tab_not_found="Tab not found: $REPLACE_STRING"
status_no_data_for_duplicates="No data rows to check for duplicates."
status_no_duplicates_found="No duplicates found."
status_duplicates_deleted="Deleted $REPLACE_STRING duplicate rows."
status_document_modified_delete_cancelled="Document was modified. Deletion cancelled."
; MessageBox Titles
msgbox_title_error="Error"
msgbox_title_confirm="Confirm"
msgbox_title_formula_support_syntax_error="Formula Support: Syntax Error"
msgbox_title_formula_support_execution_error="Formula Support: Execution Error"
msgbox_title_save_list="Save list"
msgbox_title_reload="Reload"
msgbox_title_warning="Warning"
msgbox_title_info="Info"
msgbox_title_delete_duplicates="Delete Duplicates"
msgbox_title_create_file="Create file"
msgbox_prompt_create_file="$REPLACE_STRING doesn't exist. Create it?"
msgbox_error_create_file="Cannot create the file $REPLACE_STRING"
; MessageBox Messages
msgbox_confirm_replace_all="Are you sure you want to replace all occurrences in all open documents?"
msgbox_confirm_delete_columns="Are you sure you want to delete $REPLACE_STRING column(s)?"
msgbox_error_saving_settings="An error occurred while saving the settings:<br/>$REPLACE_STRING"
msgbox_confirm_delete_single="Are you sure you want to delete this line?"
msgbox_confirm_delete_multiple="Are you sure you want to delete $REPLACE_STRING lines?"
msgbox_confirm_overwrite_file="The file $REPLACE_STRING already exists. Overwrite it?"
msgbox_title_clear_list="Clear List"
msgbox_confirm_clear_list="Remove all $REPLACE_STRING entries from the list?<br/><br/>This can be undone with Ctrl+Z."
msgbox_unsaved_changes_file="You have unsaved changes in the list: '$REPLACE_STRING'.<br/>Save the changes?"
msgbox_unsaved_changes_tab="You have unsaved changes in tab '$REPLACE_STRING'.<br/>Would you like to save them?"
msgbox_unsaved_changes="You have unsaved changes.<br/>Save the changes?"
msgbox_file_modified_prompt="'$REPLACE_STRING'<br/><br/>The file has been modified by another program.<br/>Do you want to load the changes and lose unsaved modifications?"
msgbox_reload_discard_prompt="'$REPLACE_STRING'<br/><br/>This list has unsaved changes.<br/>Reload from disk and lose them?"
msgbox_no_files="No files matched the specified filter."
msgbox_confirm_replace_in_files="Do you want to perform replacements in $REPLACE_STRING1 files?<br/><br/>In the directory:<br/> $REPLACE_STRING2<br/><br/>For file type:<br/> $REPLACE_STRING3"
msgbox_flowtabs_intro_body="Activating Flow-Tabs (Column Alignment)\n\nPlease note the following before proceeding:\n\n• Tab-delimited files: Existing tabs are reused for alignment.\n• Non-tab delimited files: Real Tabs (\t) are inserted. Note these may affect Find/Replace.\n• Before saving: Click the Flow-Tabs button again to remove inserted tabs."
msgbox_flowtabs_intro_checkbox="Do not show this message again"
msgbox_button_ok="OK"
msgbox_button_cancel="Cancel"
msgbox_duplicates_question="Delete duplicate rows?"
msgbox_duplicates_stats="$REPLACE_STRING1 duplicates in $REPLACE_STRING2 groups"
msgbox_duplicates_mode="Mode: $REPLACE_STRING"
msgbox_duplicates_exact="Exact Match"
msgbox_duplicates_ignoring="Ignoring Case"
msgbox_duplicates_undo="Undo is possible via Ctrl+Z"
msgbox_btn_delete_duplicates="Delete Duplicates"
msgbox_btn_keep_marked="Keep Marked"
msgbox_recoverable_error_body_taskdialog="List entry #$REPLACE_STRING1 ($REPLACE_STRING2) - Runtime Warning at position $REPLACE_STRING3.\n\n$REPLACE_STRING4"
msgbox_btn_skip_this_match="Skip this match"
msgbox_btn_skip_all_errors="Skip all errors"
msgbox_btn_stop="Stop"
status_recoverable_errors_skipped_summary="$REPLACE_STRING match(es) skipped."
msgbox_title_recoverable_errors_skipped_notice="Matches Skipped"
msgbox_recoverable_errors_skipped_notice="$REPLACE_STRING match(es) were skipped because their replacement could not be evaluated.\n\nThe original text was left unchanged for those matches."
; Context Menu
ctxmenu_transfer_to_input_fields="&Transfer to Input Fields Alt+Up"
ctxmenu_update_from_input_fields="&Update from Input Fields Alt+Down"
ctxmenu_search_in_list="&Search in List Ctrl+F"
ctxmenu_clear_list="&Clear List"
ctxmenu_cut="Cu&t Ctrl+X"
ctxmenu_copy="&Copy Ctrl+C"
ctxmenu_paste="&Paste Ctrl+V"
ctxmenu_edit="&Edit Field"
ctxmenu_delete="&Delete Del"
ctxmenu_select_all="Select &All Ctrl+A"
ctxmenu_enable="E&nable Alt+E"
ctxmenu_disable="D&isable Alt+D"
ctxmenu_undo="&Undo Ctrl+Z"
ctxmenu_redo="&Redo Ctrl+Y"
ctxmenu_add_new_line="&Add New Line Ctrl+I"
ctxmenu_set_options="Set Options"
ctxmenu_clear_options="Clear Options"
ctxmenu_opt_wholeword="Whole Word"
ctxmenu_opt_matchcase="Match Case"
ctxmenu_opt_formula_support="Formula Support"
ctxmenu_opt_regex="Regex"
ctxmenu_opt_extended="Extended"
; Result Docking Menu
rdmenu_fold_all="Fold all"
rdmenu_unfold_all="Unfold all"
rdmenu_copy_std="&Copy Ctrl+C"
rdmenu_copy_lines="Copy Selected Line(s)"
rdmenu_copy_paths="Copy Selected Pathname(s)"
rdmenu_select_all="Select All Ctrl+A"
rdmenu_clear_all="Clear all"
rdmenu_open_paths="Open Selected Pathname(s)"
rdmenu_wrap="Word wrap long lines"
rdmenu_purge="Purge for every search"
; Search Results
dock_list_header="Search in List ($REPLACE_STRING1 hits in $REPLACE_STRING2 file(s))"
dock_single_header="Search "$REPLACE_STRING1" ($REPLACE_STRING2 hits in $REPLACE_STRING3 file(s))"
dock_crit_header="Search "$REPLACE_STRING1" ($REPLACE_STRING2 hits)"
dock_hits_suffix="($REPLACE_STRING hits)"
dock_line="Line"
; Configuration Dialog
config_btn_close="Close"
config_btn_reset="Reset All Settings"
; Config Categories
config_cat_search_replace="Search and Replace"
config_cat_list_view="List View and Layout"
config_cat_csv="CSV Options"
config_cat_report="Report"
config_cat_appearance="Appearance"
; Search & Replace Settings
config_grp_search_behaviour="Search behaviour"
config_chk_stay_after_replace="Replace: Don't move to the following occurrence"
config_chk_all_from_cursor="Find: Search from cursor position"
config_chk_mute_sounds="Mute all sounds"
config_chk_show_formula_errors="Show formula error dialogs"
; List View Settings
config_grp_list_behavior="List Behavior"
config_grp_result_dock="Result Dock"
config_chk_group_results="Find All: Group hits by list entry"
config_chk_highlight_match="Select list entry on Find Next/Prev"
config_chk_doubleclick="Edit in-place on double-click"
config_chk_hover_text="Show full text on hover"
config_chk_keep_list_visible="Keep list always visible"
config_lbl_edit_height="Expanded edit height (lines):"
config_chk_limit_filesize="File Search: Skip files larger than"
; Find input from selection
config_grp_find_input="Find input from selection"
config_chk_pickup_selection="Fill Find field with selected text on activation"
config_chk_auto_escape_find="Auto-escape special characters for active search mode"
; CSV Settings
config_grp_csv_settings="CSV Settings"
config_chk_numeric_align="Flow Tabs: Right-align numeric columns"
config_chk_flowtabs_intro_dontshow="Flow Tabs: Don't show intro message"
config_chk_duplicate_bookmarks="Mark duplicate rows with bookmarks"
config_lbl_csv_sort="CSV Sort: Header lines to exclude:"
; Export
config_grp_report="Copy Report"
config_lbl_report_template="Template:"
config_chk_report_header="Add header row"
ctxmenu_copy_report="Copy Report"
status_report_copied="Exported $REPLACE_STRING entries to clipboard"
status_no_items_to_report="No items to export"
status_list_already_open="List already open: switched to existing tab."
; Appearance Settings
config_grp_interface="Interface"
config_lbl_foreground="Foreground transparency"
config_lbl_background="Background transparency"
config_lbl_scale_factor="Scale factor"
config_chk_enable_tooltips="Enable tooltips"
config_chk_result_dock_entry_colors="Use list colors in search results"
config_grp_editor_marking="Editor Marking"
config_chk_use_list_colors_marking="Use list colors for text marking"
; Plugin Menu
menu_settings="&Settings..."
menu_documentation="&Documentation"
menu_tandem_mode="&Tandem Mode"
menu_reopen_on_startup="&Reopen on Startup"
menu_about="&About"
; Plugin Commands (assignable via Settings > Shortcut Mapper > Plugin Commands)
cmd_focus_results="Focus Search Results"
cmd_next_result="Next Search Result"
cmd_prev_result="Previous Search Result"
; About Dialog
about_version="Version:"
about_author="Author:"
about_license="License:"
about_help_support="Help and Support"
about_ok="OK"
; Debug Window
debug_title="Debug Information"
debug_title_complete="Debug Information (Complete)"
debug_btn_next="Next"
debug_btn_stop="Stop"
debug_btn_close="Close"
debug_btn_copy="Copy"
debug_btn_run_to_end="Run to End"
debug_col_variable="Variable"
debug_col_type="Type"
debug_col_value="Value"
; Tab bar (multi-tab lists)
tab_menu_rename="Rename"
tab_menu_duplicate="Duplicate"
tab_menu_save="Save"
tab_menu_save_as="Save As..."
tab_menu_save_a_copy="Save a Copy..."
tab_menu_reload="Reload"
tab_menu_open_file_location="Open File Location"
tab_menu_close="Close"
tab_menu_close_multiple="Close Multiple Tabs"
tab_menu_close_others="Close All BUT This"
tab_menu_close_all="Close All"
tab_menu_apply_layout_to_all="Apply Column Layout to All Tabs"
tab_duplicate_suffix="(copy)"
[german]
; Panel labels (visible text on the control elements)
panel_find_what="Suchen nach: "
panel_replace_with="Ersetzen durch: "
panel_match_whole_word_only="Nur ganzes Wort suchen"
panel_match_case="Groß-/Kleinschreibung"
panel_formula_support="Formel-Modus"
tooltip_engine_selector="Aktive Engine: $REPLACE_STRING. Zum Ändern klicken."
panel_replace_at_matches="Treffer ersetzen:"
panel_wrap_around="Am Ende von vorne beginnen"
panel_search_mode="Suchmodus"
panel_normal="Normal"
panel_extended="Erweitert (\\n, \\r, \\t, \\0, \\x...)"
panel_regular_expression="Reguläre Ausdrücke"
panel_scope="Bereich"
panel_all_text="Ganzer Text"
panel_selection="Auswahl"
panel_csv="CSV"
panel_cols="Sp.:"
panel_delim="Tr.:"
panel_quote="Anf.:"
panel_add_into_list="Zur Liste hinzufügen"
panel_replace_all="Alle ersetzen"
panel_replace="Ersetzen"
panel_find_all="Alle suchen"
panel_find_next="Nächstes finden"
panel_mark_matches="Alle markieren"
panel_mark_matches_small="Alle markieren"
panel_clear_all_marks="Markierung aufheben"
panel_load_list="Lade Liste"
panel_save_list="Speichere Liste"
panel_save_as="Speichern unter..."
panel_save_a_copy="Kopie speichern..."
panel_save_all="Alle speichern"
panel_help="?"
panel_replace_in_files="Ersetzen in Dateien"
panel_find_in_files="In Dateien suchen"
panel_find_replace_in_files="Suchen/Ersetzen in Dateien"
panel_replace_in_docs="Ersetzen in offenen Dokumenten"
panel_find_in_docs="Suchen in offenen Dokumenten"
panel_find_replace_in_docs="Suchen/Ersetzen in offenen Dokumenten"
panel_all_documents="Alle Dokumente"
panel_directory="Verzeichnis:"
panel_filter="Filter:"
panel_in_subfolders="In allen Unterordnern"
panel_in_hidden_folders="In versteckten Ordnern"
panel_cancel_replace="Abbrechen"
; File Dialog
filetype_all_files="Alle Dateien (*.*)"
filetype_mrl="MultiReplace-Listen (*.mrl)"
filetype_csv_excel="CSV (Excel) (*.csv)"
legacy_csv_title="MultiReplace - Listenformat geändert"
legacy_csv_instruction="Diese Datei von .csv in .mrl umbenennen und erneut laden"
legacy_csv_message="Diese .csv-Datei ist eine ältere MultiReplace-Liste, keine Excel-CSV-Datei. MultiReplace-Listen verwenden jetzt die Endung .mrl."
; Tooltips
tooltip_replace_all="Alles Ersetzen"
tooltip_2_buttons_mode="weitere Buttons aktivieren"
tooltip_columns="Spalten: '1,3,5-12'"
tooltip_delimiter="Trennzeichen: Einzelne/kombinierte Zeichen, \t für Tabulator"
tooltip_quote="Anführungszeichen: ' oder "" oder keine"
tooltip_replace_at_matches="Treffer ersetzen (nur Alles Ersetzen): '1,3,5-12'"
tooltip_sort_descending="Absteigend sortieren"
tooltip_sort_ascending="Aufsteigend sortieren"
tooltip_drop_columns="Spalten löschen"
tooltip_copy_columns="Spalten in Zwischenablage kopieren"
tooltip_column_highlight="Spalte hervorheben: ein/aus"
tooltip_column_tabs="Spaltenausrichtung: ein/aus"
tooltip_find_duplicates="Duplikate finden"
tooltip_copy_marked_text="Markierten Text kopieren"
tooltip_save="Liste speichern"
tooltip_enable_list="Aktiviere Liste (Ctrl+L)"
tooltip_disable_list="Deaktiviere Liste (Ctrl+L)"
tooltip_filter_help="Muster durch Semikolons (;) trennen\n\nIn bestimmten Dateitypen suchen:\n*.cpp; *.h; *.txt\n\nDateimuster ausschließen:\n*.*; !*.exe; !*.obj; !*.log\n\nEinen bestimmten Dateinamen suchen:\nmein bericht.txt\n\nVerzeichnisse ausschließen (in Dateien-Modus):\n*.*; !\\tests\\; !\\bin*\n\nVerzeichnisse rekursiv ausschließen:\n*.*; !+\\log*"
tooltip_report_template_help="Verfügbare Platzhalter:\n\nDatenfelder:\n %FIND% - Suchen nach\n %REPLACE% - Ersetzen durch\n %COMMENT% - Kommentare\n %FCOUNT% - Treffer\n %RCOUNT% - Ersetzt\n %MODIFIED% - Geändert\n\nZeileninfo:\n %ROW% - Zeile\n %SEL% - Aktiviert (1/0)\n\nOptionen:\n %REGEX% - Reguläre Ausdrücke (1/0)\n %CASE% - Groß-/Kleinschreibung (1/0)\n %WORD% - Nur ganzes Wort suchen (1/0)\n %EXT% - Erweitert (1/0)\n %VAR% - Formel-Unterstützung (1/0)\n\n\t für Tabulator verwenden"
tooltip_move_up="Ausgewählte Zeilen nach oben verschieben (Strg+Auf)"
tooltip_move_down="Ausgewählte Zeilen nach unten verschieben (Strg+Ab)"
tooltip_bookmark_matches="Übereinstimmende Zeilen mit Lesezeichen markieren"
; List headers
header_find_count="Treffer"
header_replace_count="Ersetzt"
header_find="Suchen"
header_replace="Ersetzen"
header_comments="Kommentare"
header_timestamp="Geändert"
ctxmenu_reset_column_order="Spaltenreihenfolge zurücksetzen"
ctxmenu_lock_column_width="Breite der Spalte '$REPLACE_STRING' sperren"
header_delete_button="Löschen-Button"
header_whole_word="W"
header_match_case="G"
header_formula_support="F"
header_extended="E"
header_regex="R"
; Tooltips for headers
tooltip_header_whole_word="Nur ganze Wörter suchen"
tooltip_header_match_case="Groß-/Kleinschreibung beachten"
tooltip_header_formula_support="Formel-Unterstützung"
tooltip_header_extended="Erweitert"
tooltip_header_regex="Regex"
; Entries for SplitButton
split_menu_replace_all="Alles ersetzen"
split_menu_replace_in_docs="In geöffneten Dokumenten ersetzen"
split_menu_replace_all_in_files="Alles in Dateien ersetzen"
split_menu_debug_mode="Debug-Modus"
split_button_replace_all="Alles ersetzen"
split_button_replace_in_docs="In Dokum. ersetzen"
split_button_replace_all_in_files="Ersetzen in Dateien"
split_menu_find_all="Alle suchen"
split_menu_find_in_docs="In geöffneten Dokumenten suchen"
split_menu_find_all_in_files="In Dateien suchen"
split_button_find_all="Alle suchen"
split_button_find_in_docs="In Dokum. suchen"
split_button_find_all_in_files="In Dateien suchen"
; Static Status Messages
status_duplicate_entry="Doppelter Eintrag: "
status_value_added="Text zur Liste hinzugefügt."
status_one_line_deleted="1 Zeile gelöscht."
status_column_marks_cleared="Spaltenmarkierungen gelöscht."
status_all_marks_cleared="Alle Markierungen gelöscht."
status_cannot_replace_read_only="Ersetzen nicht möglich. Dokument ist schreibgeschützt."
status_no_find_string="Keinen Suchtext eingegeben. Bitte eine Zeichenfolge zum Hinzufügen in die Liste eingeben."
status_no_rows_selected_to_shift="Keine Zeilen zum Verschieben ausgewählt."
status_add_values_or_uncheck="Werte zur Liste hinzufügen oder die Liste deaktivieren."
status_no_occurrence_found="Kein Vorkommen gefunden."
status_found_text_not_replaced="Gefundener Text wurde nicht ersetzt."
status_replace_one_next_found="Ersetzen: 1 Vorkommen ersetzt. Nächstes gefunden."
status_replace_one_none_left="Ersetzen: 1 Vorkommen ersetzt. Keine weiteren übrig."
status_replace_one="Ersetzen: 1 Vorkommen ersetzt."
status_no_entries_selected="Wähle Einträge in der Liste aus oder deaktiviere die Liste."
status_no_matches_found="Keine Übereinstimmungen gefunden."
status_no_text_to_copy="Kein Text zum Kopieren."
status_failed_to_copy="Kopieren in die Zwischenablage fehlgeschlagen."
status_failed_allocate_memory="Speicherzuweisung für Zwischenablage fehlgeschlagen."
status_invalid_column_or_delimiter="Ungültige Spalte oder Trennzeichen."
status_missing_column_or_delimiter_data="Spalten- oder Trennzeichen-Daten fehlen."
status_invalid_range_in_column_data="Ungültiger Bereich in Spaltendaten."
status_missing_match_selection="Trefferauswahl fehlt"
status_invalid_range_in_match_data="Ungültiger Bereich in der Trefferauswahl"
status_extended_delimiter_empty="Erweitertes Trennzeichen ist leer."
status_invalid_quote_character="Ungültiges Anführungszeichen. " oder ' verwenden oder leer lassen."
status_unable_to_save_file="Fehler: Datei kann nicht geöffnet oder beschrieben werden."
status_saved_items_to_csv="$REPLACE_STRING Einträge in die CSV-Datei gespeichert."
status_saved_items_to_mrl="$REPLACE_STRING Einträge in die MRL-Datei gespeichert."
status_save_all_done="$REPLACE_STRING Liste(n) gespeichert."
status_save_all_errors="$REPLACE_STRING Liste(n) gespeichert, $REPLACE_STRING fehlgeschlagen."
status_save_all_nothing="Keine ungesicherten Änderungen."
status_no_valid_items_in_csv="Keine gültigen Einträge in der CSV-Datei gefunden."
status_invalid_column_count="Datei nicht geladen! Ungültige Anzahl von Spalten in der CSV-Datei."
status_invalid_data_in_columns="Datei nicht geladen! Ungültige Daten in CSV-Spalten gefunden."
status_found_in_list="Eintrag in der Liste gefunden."
status_not_found_in_list="Kein Eintrag in der Liste auf Basis der Eingabefelder gefunden."
status_enable_list="Listenmodus aktiviert. Aktionen verwenden Listeneinträge."
status_enable_list_count="Listenmodus: $REPLACE_STRING1 von $REPLACE_STRING2 Einträgen aktiviert."
status_enable_list_empty="Listenmodus: Liste ist leer."
status_disable_list="Listenmodus deaktiviert. Aktionen verwenden 'Suchen nach' und 'Ersetzen durch' Felder."
status_no_rows_selected_to_delete="Keine Zeilen zum Löschen ausgewählt."
status_invalid_indices="Ungültige Zeilenindizes."
status_error_hidden_buffer="Fehler beim Erstellen des versteckten Buffers zur Verarbeitung."
status_error_invalid_directory="Das angegebene Verzeichnis ist ungültig oder existiert nicht."
status_error_scanning_directory="Fehler beim Durchsuchen des Verzeichnisses: $REPLACE_STRING"
status_replace_summary="Ersetzen in Dateien: $REPLACE_STRING1 von $REPLACE_STRING2 Datei(en) geändert."
status_replace_in_docs_summary="Ersetzen in Dokumenten: $REPLACE_STRING Vorkommnisse ersetzt."
status_rows_sorted="Zeilen sortiert."
status_sort_restored="Ursprüngliche Reihenfolge wiederhergestellt."
status_occurrences_found="$REPLACE_STRING Treffer gefunden."
status_scope_in_selection=" (in Auswahl)"
status_canceled="Abgebrochen."
status_no_delimiters="Keine Trennzeichen gefunden."
status_model_build_failed="Flow-Tabs: Modellaufbau fehlgeschlagen."
status_padding_insert_failed="Flow-Tabs: Einfügen fehlgeschlagen."
status_visual_fail="Flow-Tabs: Visuelle Tabstops fehlgeschlagen."
status_tabs_inserted="Flow-Tabs: EINGEFÜGT."
status_tabs_removed="Flow-Tabs: ENTFERNT."
status_tabs_aligned="Flow-Tabs: AUSGERICHTET."
status_nothing_to_align="Flow-Tabs: Nichts zum Ausrichten."
status_no_selection="Kein Text ausgewählt."
status_select_area_first="Bitte zuerst einen Bereich auswählen."
status_report_failed="Export in die Zwischenablage fehlgeschlagen."
status_no_results_linked="Keine Ergebnisse mit diesem Eintrag verknüpft – Alle suchen ausführen."
status_wrapped_to_first="Umbruch zum ersten Treffer"
status_wrapped_to_last="Umbruch zum letzten Treffer"
status_wrapped_to_first_of="Umbruch zu Treffer $REPLACE_STRING1/$REPLACE_STRING2"
; Dynamic Status Messages
status_match_position="Treffer $REPLACE_STRING1/$REPLACE_STRING2"
status_rows_shifted="$REPLACE_STRING Zeilen erfolgreich verschoben."
status_lines_deleted="$REPLACE_STRING Zeilen gelöscht."
status_layout_applied_to_tabs="Spaltenlayout auf $REPLACE_STRING weitere Tab(s) angewendet."
status_occurrences_replaced="$REPLACE_STRING Vorkommnisse ersetzt."
status_no_matches_found_for="Keine Übereinstimmungen gefunden für '$REPLACE_STRING'."
status_actual_position="Aktuelle Position $REPLACE_STRING"
status_items_loaded_from_csv="$REPLACE_STRING Elemente aus CSV geladen."
status_items_loaded_from_mrl="$REPLACE_STRING Elemente aus MRL geladen."
status_occurrences_marked="$REPLACE_STRING Vorkommnisse markiert."
status_items_copied_to_clipboard="$REPLACE_STRING Elemente in Zwischenablage kopiert."
status_deleted_fields_count="$REPLACE_STRING Felder gelöscht."
status_line_and_column_position=" (Zeile: $REPLACE_STRING1, Spalte: $REPLACE_STRING2)"
status_unable_to_open_file="Fehler beim Öffnen der Datei: $REPLACE_STRING"
status_tab_not_found="Tab nicht gefunden: $REPLACE_STRING"
status_no_data_for_duplicates="Keine Datenzeilen für Duplikatprüfung vorhanden."
status_no_duplicates_found="Keine Duplikate gefunden."
status_duplicates_deleted="$REPLACE_STRING doppelte Zeilen gelöscht."
status_document_modified_delete_cancelled="Dokument wurde geändert. Löschung abgebrochen."
; MessageBox Titles
msgbox_title_error="Fehler"
msgbox_title_confirm="Bestätigen"
msgbox_title_formula_support_syntax_error="Formel-Unterstützung: Syntaxfehler"
msgbox_title_formula_support_execution_error="Formel-Unterstützung: Ausführungsfehler"
msgbox_title_save_list="Liste speichern"
msgbox_title_reload="Erneut laden"
msgbox_title_warning="Warnung"
msgbox_title_info="Info"
msgbox_title_delete_duplicates="Duplikate löschen"
msgbox_title_create_file="Datei erstellen"
msgbox_prompt_create_file="$REPLACE_STRING existiert nicht. Erstellen?"
msgbox_error_create_file="Die Datei $REPLACE_STRING kann nicht erstellt werden."
; MessageBox Messages
msgbox_confirm_replace_all="Alle Vorkommen in allen Dokumenten ersetzen?"
msgbox_confirm_delete_columns="Sollen $REPLACE_STRING Spalte(n) wirklich gelöscht werden?"
msgbox_error_saving_settings="Fehler beim Speichern der Einstellungen:<br/>$REPLACE_STRING"
msgbox_confirm_delete_single="Soll diese Zeile wirklich gelöscht werden?"
msgbox_confirm_delete_multiple="Sollen $REPLACE_STRING Zeilen wirklich gelöscht werden?"
msgbox_confirm_overwrite_file="Die Datei $REPLACE_STRING existiert bereits. Überschreiben?"
msgbox_title_clear_list="Liste leeren"
msgbox_confirm_clear_list="Sollen wirklich alle $REPLACE_STRING Einträge aus der Liste entfernt werden?<br/><br/>Mit Strg+Z kann die Aktion rückgängig gemacht werden."
msgbox_unsaved_changes_file="Ungespeicherte Änderungen in der Liste: '$REPLACE_STRING'.<br/>Änderungen speichern?"
msgbox_unsaved_changes_tab="Es gibt ungespeicherte Änderungen im Tab '$REPLACE_STRING'.<br/>Möchten Sie diese speichern?"
msgbox_unsaved_changes="Ungespeicherte Änderungen vorhanden.<br/>Änderungen speichern?"
msgbox_file_modified_prompt="'$REPLACE_STRING'<br/><br/>Die Datei wurde von einem anderen Programm geändert.<br/>Sollen die Änderungen geladen und ungespeicherte Änderungen verworfen werden?"
msgbox_reload_discard_prompt="'$REPLACE_STRING'<br/><br/>Diese Liste hat ungespeicherte Änderungen.<br/>Von der Festplatte neu laden und verwerfen?"
msgbox_no_files="Keine Dateien entsprachen dem angegebenen Filter."
msgbox_confirm_replace_in_files="Sollen Ersetzungen in $REPLACE_STRING1 Dateien durchgeführt werden?<br/><br/>In folgendem Verzeichnis:<br/> $REPLACE_STRING2<br/><br/>Für Dateien vom Typ:<br/> $REPLACE_STRING3"
msgbox_flowtabs_intro_body="Aktiviere Flow-Tabs (Spaltenausrichtung)\n\nFolgendes ist zu beachten:\n\n• Tabulator-getrennte Dateien: Vorhandene Tabs werden zur Ausrichtung wiederverwendet.\n• Nicht-Tab-getrennte Dateien: Echte Tabs (\t) werden eingefügt. Dies kann das Suchen/Ersetzen beeinflussen.\n• Vor dem Speichern: Flow-Tabs-Button erneut klicken, um die eingefügten Tabs zu entfernen."
msgbox_flowtabs_intro_checkbox="Diesen Hinweis nicht mehr anzeigen"
msgbox_button_ok="OK"
msgbox_button_cancel="Abbrechen"
msgbox_duplicates_question="Doppelte Zeilen löschen?"
msgbox_duplicates_stats="$REPLACE_STRING1 Duplikate in $REPLACE_STRING2 Gruppen"
msgbox_duplicates_mode="Modus: $REPLACE_STRING"
msgbox_duplicates_exact="Exakte Übereinstimmung"
msgbox_duplicates_ignoring="Groß-/Kleinschreibung ignorieren"
msgbox_duplicates_undo="Rückgängig möglich via Strg+Z"
msgbox_btn_delete_duplicates="Duplikate löschen"
msgbox_btn_keep_marked="Markiert lassen"
msgbox_recoverable_error_body_taskdialog="Listeneintrag #$REPLACE_STRING1 ($REPLACE_STRING2) - Laufzeitwarnung an Position $REPLACE_STRING3.\n\n$REPLACE_STRING4"
msgbox_btn_skip_this_match="Diesen Treffer überspringen"
msgbox_btn_skip_all_errors="Alle Fehler überspringen"
msgbox_btn_stop="Stopp"
status_recoverable_errors_skipped_summary="$REPLACE_STRING Treffer übersprungen."
msgbox_title_recoverable_errors_skipped_notice="Treffer übersprungen"
msgbox_recoverable_errors_skipped_notice="$REPLACE_STRING Treffer wurden übersprungen, weil deren Ersetzung nicht ausgewertet werden konnte.\n\nDer Originaltext blieb für diese Treffer unverändert."
; Context Menu
ctxmenu_transfer_to_input_fields="&In Eingabefelder übertragen Alt+Hoch"
ctxmenu_update_from_input_fields="&Aus Eingabefeldern aktualisieren Alt+Runter"
ctxmenu_search_in_list="&In Liste suchen Ctrl+F"
ctxmenu_clear_list="Liste &leeren"
ctxmenu_cut="Au&sschneiden Ctrl+X"
ctxmenu_copy="&Kopieren Ctrl+C"
ctxmenu_paste="&Einfügen Ctrl+V"
ctxmenu_edit="Feld &bearbeiten"
ctxmenu_delete="&Löschen Entf"
ctxmenu_select_all="Alle&s auswählen Ctrl+A"
ctxmenu_enable="&Aktivieren Alt+E"
ctxmenu_disable="&Deaktivieren Alt+D"
ctxmenu_undo="&Rückgängig Ctrl+Z"
ctxmenu_redo="&Wiederholen Ctrl+Y"
ctxmenu_add_new_line="Neue &Zeile einfügen Ctrl+I"
ctxmenu_set_options="Optionen setzen"
ctxmenu_clear_options="Optionen entfernen"
ctxmenu_opt_wholeword="Ganzes Wort"
ctxmenu_opt_matchcase="Groß-/Kleinschreibung"
ctxmenu_opt_formula_support="Formel-Modus"
ctxmenu_opt_regex="Regulärer Ausdruck"
ctxmenu_opt_extended="Erweitert"
; Result Docking Menu
rdmenu_fold_all="Alles einklappen"
rdmenu_unfold_all="Alles aufklappen"
rdmenu_copy_std="&Kopieren Ctrl+C"
rdmenu_copy_lines="Kopiere ausgewählte Zeile(n)"
rdmenu_copy_paths="Gewählte(n) Pfadnamen kopieren"
rdmenu_select_all="Alles auswählen Ctrl+A"
rdmenu_clear_all="Alles löschen"
rdmenu_open_paths="Gewählte(n) Pfadnamen öffnen"
rdmenu_wrap="Zeilenumbruch bei langen Zeilen"
rdmenu_purge="Vor jeder Suche leeren"
; Search Results
dock_list_header="Suche in Liste ($REPLACE_STRING1 Treffer in $REPLACE_STRING2 Datei(en))"
dock_single_header="Suche "$REPLACE_STRING1" ($REPLACE_STRING2 Treffer in $REPLACE_STRING3 Datei(en))"
dock_crit_header="Suche "$REPLACE_STRING1" ($REPLACE_STRING2 Treffer)"
dock_hits_suffix="($REPLACE_STRING Treffer)"
dock_line="Zeile"
; Configuration Dialog
config_btn_close="Schließen"
config_btn_reset="Zurücksetzen"
; Config Categories
config_cat_search_replace="Suchen und Ersetzen"
config_cat_list_view="Listenansicht und Layout"
config_cat_csv="CSV-Optionen"
config_cat_report="Bericht"
config_cat_appearance="Erscheinungsbild"
; Search & Replace Settings
config_grp_search_behaviour="Suchverhalten"
config_chk_stay_after_replace="Ersetzen: Nicht zum nächsten Treffer springen"
config_chk_all_from_cursor="Finden: Ab Cursorposition suchen"
config_chk_mute_sounds="Alle Töne stummschalten"
config_chk_show_formula_errors="Formel-Fehlerdialoge anzeigen"
; List View Settings
config_grp_list_behavior="Listenverhalten"
config_grp_result_dock="Ergebnis-Bereich"
config_chk_group_results="Alle suchen: Treffer nach Listeneintrag gruppieren"
config_chk_highlight_match="Listeneintrag bei Treffer selektieren"
config_chk_doubleclick="Direktes Bearbeiten per Doppelklick"
config_chk_hover_text="Vollen Text bei Mouseover anzeigen"
config_chk_keep_list_visible="Liste immer sichtbar halten"
config_lbl_edit_height="Höhe Bearbeitungsfeld (Zeilen):"
config_chk_limit_filesize="Dateisuche: Ignoriere Dateien größer als"
; Find input from selection
config_grp_find_input="Suchfeld aus Auswahl"
config_chk_pickup_selection="Suchfeld bei Aktivierung mit markiertem Text füllen"
config_chk_auto_escape_find="Sonderzeichen automatisch für aktiven Suchmodus maskieren"
; CSV Settings
config_grp_csv_settings="CSV-Einstellungen"
config_chk_numeric_align="Flow Tabs: Zahlen rechtsbündig ausrichten"
config_chk_flowtabs_intro_dontshow="Flow-Tabs: Hinweis nicht mehr anzeigen"
config_chk_duplicate_bookmarks="Duplikatzeilen mit Lesezeichen markieren"
config_lbl_csv_sort="CSV-Sortierung: Kopfzeilen ausschließen:"
; Export
config_grp_report="Bericht kopieren"
config_lbl_report_template="Vorlage:"
config_chk_report_header="Kopfzeile hinzufügen"
ctxmenu_copy_report="Bericht kopieren"
status_report_copied="$REPLACE_STRING Einträge in die Zwischenablage kopiert"
status_no_items_to_report="Keine Einträge zum Kopieren"
status_list_already_open="Liste bereits geöffnet: zu vorhandenem Tab gewechselt."
; Appearance Settings
config_grp_interface="Benutzeroberfläche"
config_lbl_foreground="Vordergrund-Transparenz"
config_lbl_background="Hintergrund-Transparenz"
config_lbl_scale_factor="Skalierungsfaktor"
config_chk_enable_tooltips="Tooltips aktivieren"
config_chk_result_dock_entry_colors="Listenfarben in Suchergebnissen nutzen"
config_grp_editor_marking="Editor-Markierungen"
config_chk_use_list_colors_marking="Listenfarben für Textmarkierung nutzen"
; Plugin Menu
menu_settings="&Einstellungen..."
menu_documentation="&Dokumentation"
menu_tandem_mode="&Tandem-Modus"
menu_reopen_on_startup="Beim &Start wiederherstellen"
menu_about="&Info"
; Plugin Commands (assignable via Settings > Shortcut Mapper > Plugin Commands)
cmd_focus_results="Suchergebnisse fokussieren"
cmd_next_result="Nächstes Suchergebnis"
cmd_prev_result="Vorheriges Suchergebnis"
; About Dialog
about_version="Version:"
about_author="Autor:"
about_license="Lizenz:"
about_help_support="Hilfe und Unterstützung"
about_ok="OK"
; Debug Window
debug_title="Debug-Informationen"
debug_title_complete="Debug-Informationen (Abgeschlossen)"
debug_btn_next="Weiter"
debug_btn_stop="Stopp"
debug_btn_close="Schließen"
debug_btn_copy="Kopieren"
debug_btn_run_to_end="Bis zum Ende"
debug_col_variable="Variable"
debug_col_type="Typ"
debug_col_value="Wert"
; Tab bar (multi-tab lists)
tab_menu_rename="Umbenennen"
tab_menu_duplicate="Duplizieren"
tab_menu_save="Speichern"
tab_menu_save_as="Speichern unter …"
tab_menu_save_a_copy="Kopie speichern..."
tab_menu_reload="Erneut laden"
tab_menu_open_file_location="Dateipfad öffnen"
tab_menu_close="Schließen"
tab_menu_close_multiple="Mehrere Tabs schließen"
tab_menu_close_others="Alle Dateien bis auf die aktuelle schließen"
tab_menu_close_all="Alle schließen"
tab_menu_apply_layout_to_all="Spaltenlayout auf alle Tabs anwenden"
tab_duplicate_suffix="(Kopie)"
[italian]
; Panel labels (visible text on the control elements)
panel_find_what="Trova:"
panel_replace_with="Sostituisci con:"
panel_match_whole_word_only="Solo parole intere"
panel_match_case="Maiuscole/minuscole"
panel_formula_support="Formule"
tooltip_engine_selector="Motore attivo: $REPLACE_STRING. Clicca per cambiare."
panel_replace_at_matches="Sostituisci corrisp.:"
panel_wrap_around="Ricerca ciclica"
panel_search_mode="Tipo di ricerca"
panel_normal="Normale"
panel_extended="Estesa (\\n, \\r, \\t, \\0, \\x...)"
panel_regular_expression="Espressione regolare"
panel_scope="Ambito"
panel_all_text="Tutto il testo"
panel_selection="Selezione"
panel_csv="CSV"
panel_cols="Col.:"
panel_delim="Del.:"
panel_quote="Virg.:"
panel_add_into_list="Aggiungi all'elenco"
panel_replace_all="Sostituisci tutto"
panel_replace="Sostituisci"
panel_find_all="Trova tutti"
panel_find_next="Trova succ."
panel_mark_matches="Evidenzia corrispondenze"
panel_mark_matches_small="Evidenzia Corrisp."
panel_clear_all_marks="Pulisci tutte le evidenz."
panel_load_list="Carica elenco"
panel_save_list="Salva elenco"
panel_save_as="Salva come..."
panel_save_a_copy="Salva una copia..."
panel_save_all="Salva tutto"
panel_help="?"
panel_replace_in_files="Sost. nei file"
panel_find_in_files="Cerca nei file"
panel_find_replace_in_files="Cerca/Sostituisci nei file"
panel_replace_in_docs="Sostituisci in documenti aperti"
panel_find_in_docs="Cerca in documenti aperti"
panel_find_replace_in_docs="Cerca/Sostituisci in documenti aperti"
panel_all_documents="Tutti i documenti"
panel_directory="Cartella:"
panel_filter="Filtro:"
panel_in_subfolders="In sottocartelle"
panel_in_hidden_folders="Nelle cartelle nascoste"
panel_cancel_replace="Annulla"
; File Dialog
filetype_all_files="Tutti i file (*.*)"
filetype_mrl="Elenchi MultiReplace (*.mrl)"
filetype_csv_excel="CSV (Excel) (*.csv)"
legacy_csv_title="MultiReplace - Formato elenco modificato"
legacy_csv_instruction="Rinomina questo file da .csv a .mrl, poi caricalo di nuovo"
legacy_csv_message="Questo file .csv è un vecchio elenco MultiReplace, non un file CSV di Excel. Gli elenchi MultiReplace ora usano l'estensione .mrl."
; Tooltips
tooltip_replace_all="Sostituisci tutto"
tooltip_2_buttons_mode="Modalità ricerca a 2 pulsanti"
tooltip_columns="Colonne: '1,3,5-12'"
tooltip_delimiter="Delimitatore: Singolo/seq. caratteri, \t for Tab"
tooltip_quote="Virgolette: ' o "" o nessuna"
tooltip_replace_at_matches="Sostituisci corrispondenze (solo Sostituisci tutto): '1,3,5-12'"
tooltip_sort_descending="Ordinamento decrescente"
tooltip_sort_ascending="Ordinamento Crescente"
tooltip_drop_columns="Elimina colonne"
tooltip_copy_columns="Copia Colonne negli Appunti"
tooltip_column_highlight="Evidenzia Colonne: On/Off"
tooltip_column_tabs="Allineamento colonne: On/Off"
tooltip_find_duplicates="Trova duplicati"
tooltip_copy_marked_text="Copia Testo Evidenziato"
tooltip_save="Salva elenco"
tooltip_enable_list="Attiva elenco (Ctrl+L)"
tooltip_disable_list="Disattiva elenco (Ctrl+L)"
tooltip_filter_help="Separare i pattern con punto e virgola (;)\n\nCercare in tipi specifici:\n*.cpp; *.h; *.txt\n\nEscludere pattern di file:\n*.*; !*.exe; !*.obj; !*.log\n\nCorrispondenza per nome esatto:\nmio report.txt\n\nEscludi cartelle (in modalità File):\n*.*; !\\tests\\; !\\bin*\n\nEscludi cartelle ricorsivamente:\n*.*; !+\\log*"
tooltip_report_template_help="Segnaposti disponibili:\n\nCampi dati:\n %FIND% - Trova\n %REPLACE% - Sostituisci con\n %COMMENT% - Commenti\n %FCOUNT% - Trovati\n %RCOUNT% - Sostituiti\n %MODIFIED% - Modificato\n\nInfo riga:\n %ROW% - Riga\n %SEL% - Attivo (1/0)\n\nOpzioni:\n %REGEX% - Espressione regolare (1/0)\n %CASE% - Maiuscole/minuscole (1/0)\n %WORD% - Solo parole intere (1/0)\n %EXT% - Estesa (1/0)\n %VAR% - Supporto Formule (1/0)\n\nUsa \t per tabulazione"
tooltip_move_up="Sposta le righe selezionate in alto (Ctrl+Su)"
tooltip_move_down="Sposta le righe selezionate in basso (Ctrl+Giù)"
tooltip_bookmark_matches="Aggiungi segnalibro alle righe corrispondenti"
; List headers
header_find_count="Trovati"
header_replace_count="Sostituiti"
header_find="Trova"
header_replace="Sostituisci"
header_comments="Commenti"
header_timestamp="Modificato"
ctxmenu_reset_column_order="Ripristina ordine colonne"
ctxmenu_lock_column_width="Blocca larghezza colonna '$REPLACE_STRING'"
header_delete_button="Pulsante Elimina"
header_whole_word="I"
header_match_case="M"
header_formula_support="F"
header_extended="E"
header_regex="R"
; Tooltips for headers
tooltip_header_whole_word="Parola intera"
tooltip_header_match_case="Maiuscole/minuscole"
tooltip_header_formula_support="Supporto Formule"
tooltip_header_extended="Estesa"
tooltip_header_regex="Espressione regolare"
; Entries for SplitButton
split_menu_replace_all="Sostituisci tutto"
split_menu_replace_in_docs="Sostituisci in documenti aperti"
split_menu_replace_all_in_files="Sostituisci tutto nei file"
split_menu_debug_mode="Modalità di debug"
split_button_replace_all="Sostituisci tutto"
split_button_replace_in_docs="Sostituisci in Docs"
split_button_replace_all_in_files="Sostituisci nei file"
split_menu_find_all="Trova tutti"
split_menu_find_in_docs="Trova in documenti aperti"
split_menu_find_all_in_files="Trova nei file"
split_button_find_all="Trova tutti"
split_button_find_in_docs="Trova in Docs"
split_button_find_all_in_files="Trova nei file"
; Static Status Messages
status_duplicate_entry="Voci duplicate: "
status_value_added="Valore aggiunto all'elenco."
status_one_line_deleted="1 riga eliminata."
status_column_marks_cleared="Evidenziazioni colonne pulite."
status_all_marks_cleared="Pulite tutte le evidenziazioni."
status_cannot_replace_read_only="Sostituzione impossibile. Documento in sola lettura."
status_no_find_string="Nessuna 'Stringa di ricerca' inserita. Inserire un valore per aggiungere alla lista."
status_no_rows_selected_to_shift="Nessuna riga selezionata da spostare."
status_add_values_or_uncheck="Aggiungi valori all'elenco o disabilita l'elenco."
status_no_occurrence_found="Nessuna corrispondenza trovata."
status_found_text_not_replaced="Testo trovato non sostituito."
status_replace_one_next_found="Sostituisci: 1 corrispondenza sostituita. Successiva trovata."
status_replace_one_none_left="Sostituisci: 1 corrispondenza sostituita. Nessuna successiva."
status_replace_one="Sostituisci: 1 corrispondenza sostituita."
status_no_entries_selected="Seleziona voci nell'elenco o disabilita l'elenco."
status_no_matches_found="Nessuna corrispondenza trovata."
status_no_text_to_copy="Nessun testo da copiare."
status_failed_to_copy="Copia negli appunti non andata a buon fine."
status_failed_allocate_memory="Allocazione della memoria per gli Appunti non andata a buon fine."
status_invalid_column_or_delimiter="Colonna non valida o delimitare i dati."
status_missing_column_or_delimiter_data="Dati di colonna o delimitatori mancanti"
status_invalid_range_in_column_data="Intervallo non valido nei dati di colonna"
status_missing_match_selection="Dati di selezione della corrispondenza mancanti"
status_invalid_range_in_match_data="Intervallo non valido nella selezione della corrispondenza"
status_extended_delimiter_empty="Il delimitatore esteso è vuoto"
status_invalid_quote_character="Delimitatore di stringa non valido. Usa " o ' oppure lascialo vuoto."
status_unable_to_save_file="Errore: Impossibile aprire o scrivere il file."
status_saved_items_to_csv="$REPLACE_STRING voci salvate nel CSV."
status_saved_items_to_mrl="$REPLACE_STRING voci salvate nel MRL."
status_save_all_done="$REPLACE_STRING elenco(hi) salvato(i)."
status_save_all_errors="$REPLACE_STRING elenco(hi) salvato(i), $REPLACE_STRING non riuscito(i)."
status_save_all_nothing="Nessuna modifica non salvata."
status_no_valid_items_in_csv="Nessuna voce valida trovata nel file CSV."
status_invalid_column_count="File non caricato! Numero di colonne non valido nel file CSV."
status_invalid_data_in_columns="File non caricato! Dati non validi nelle colonne CSV."
status_found_in_list="Voce trovata nell'elenco."
status_not_found_in_list="Nessuna voce trovata nell'elenco in base ai campi di input."
status_enable_list="Modalità elenco attivata. Le azioni utilizzeranno le voci della lista."
status_enable_list_count="Modalità elenco: $REPLACE_STRING1 di $REPLACE_STRING2 voci attivate."
status_enable_list_empty="Modalità elenco: l'elenco è vuoto."
status_disable_list="Modalità elenco disattivata. Le azioni utilizzeranno i campi 'Trova' e 'Sostituisci con'."
status_no_rows_selected_to_delete="Nessuna riga selezionata da eliminare."
status_invalid_indices="Indici di riga non validi."
status_error_hidden_buffer="Errore durante la creazione del buffer nascosto per l'elaborazione."
status_error_invalid_directory="La directory specificata non è valida o non esiste."
status_error_scanning_directory="Errore durante la scansione della directory: $REPLACE_STRING"
status_replace_summary="Sostituisci nei file: $REPLACE_STRING1 di $REPLACE_STRING2 file modificato/i."
status_replace_in_docs_summary="Sostituisci nei documenti: $REPLACE_STRING occorrenze sostituite."
status_rows_sorted="Righe ordinate."
status_sort_restored="Ordine originale ripristinato."
status_occurrences_found="$REPLACE_STRING occorrenze trovate."
status_scope_in_selection=" (nella selezione)"
status_canceled="Annullato"
status_no_delimiters="Nessun delimitatore trovato."
status_model_build_failed="Flow Tabs: creazione modello fallita."
status_padding_insert_failed="Flow Tabs: inserimento fallito."
status_visual_fail="Flow Tabs: tabstop visivi falliti."
status_tabs_inserted="Flow Tabs: INSERITI."
status_tabs_removed="Flow Tabs: RIMOSSI."
status_tabs_aligned="Flow Tabs: ALLINEATI."
status_nothing_to_align="Flow Tabs: nulla da allineare."
status_no_selection="Nessun testo selezionato."
status_select_area_first="Selezionare prima un'area."
status_report_failed="Esportazione negli appunti non riuscita."
status_no_results_linked="Nessun risultato collegato a questa voce – esegui Trova tutto."