File: localizedStrings.js

package info (click to toggle)
qtwebkit-opensource-src 5.212.0~alpha4-30
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 126,360 kB
  • sloc: cpp: 1,399,204; javascript: 111,961; ansic: 29,742; perl: 19,510; python: 13,364; ruby: 10,299; xml: 9,342; asm: 5,078; yacc: 2,166; lex: 906; sh: 417; makefile: 34
file content (727 lines) | stat: -rw-r--r-- 86,604 bytes parent folder | download | duplicates (3)
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
var localizedStrings = new Object;

localizedStrings[" (Prototype)"] = " (Prototype)";
localizedStrings[" (line %s)"] = " (line %s)";
localizedStrings["%.0f B"] = "%.0f B";
localizedStrings["%.0fms"] = "%.0fms";
localizedStrings["%.1f KB"] = "%.1f KB";
localizedStrings["%.1f MB"] = "%.1f MB";
localizedStrings["%.1f days"] = "%.1f days";
localizedStrings["%.1fhrs"] = "%.1fhrs";
localizedStrings["%.1fmin"] = "%.1fmin";
localizedStrings["%.1fms"] = "%.1fms";
localizedStrings["%.2f KB"] = "%.2f KB";
localizedStrings["%.2f MB"] = "%.2f MB";
localizedStrings["%.2f\u00d7"] = "%.2f\u00d7";
localizedStrings["%.2fms"] = "%.2fms";
localizedStrings["%.2fs"] = "%.2fs";
localizedStrings["%.3fms"] = "%.3fms";
localizedStrings["%d Errors"] = "%d Errors";
localizedStrings["%d Errors, %d Warnings"] = "%d Errors, %d Warnings";
localizedStrings["%d More\u2026"] = "%d More\u2026";
localizedStrings["%d Warnings"] = "%d Warnings";
localizedStrings["%d \u2A09 %d"] = "%d \u2A09 %d";
localizedStrings["%d \xd7 %d pixels"] = "%d \xd7 %d pixels";
localizedStrings["%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)"] = "%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)";
localizedStrings["%d matches"] = "%d matches";
localizedStrings["%fpx"] = "%fpx";
localizedStrings["%fpx"] = "%fpx";
localizedStrings["%s (computed)"] = "%s (computed)";
localizedStrings["%s (default)"] = "%s (default)";
localizedStrings["%s (hidden)"] = "%s (hidden)";
localizedStrings["%s Event Dispatched"] = "%s Event Dispatched";
localizedStrings["%s Prototype"] = "%s Prototype";
localizedStrings["%s \u2014 %s"] = "%s \u2014 %s";
localizedStrings["%s delay"] = "%s delay";
localizedStrings["%s interval"] = "%s interval";
localizedStrings["(Index)"] = "(Index)";
localizedStrings["(anonymous function)"] = "(anonymous function)";
localizedStrings["(many)"] = "(many)";
localizedStrings["(modify the boxes below to add a value)"] = "(modify the boxes below to add a value)";
localizedStrings["(multiple)"] = "(multiple)";
localizedStrings["(program)"] = "(program)";
localizedStrings["(uninitialized)"] = "(uninitialized)";
localizedStrings[", "] = ", ";
localizedStrings["1 match"] = "1 match";
localizedStrings["999+"] = "999+";
localizedStrings["Accessibility"] = "Accessibility";
localizedStrings["Action"] = "Action";
localizedStrings["Activity Viewer"] = "Activity Viewer";
localizedStrings["Add %s Rule"] = "Add %s Rule";
localizedStrings["Add Action"] = "Add Action";
localizedStrings["Add Attribute"] = "Add Attribute";
localizedStrings["Add Breakpoint"] = "Add Breakpoint";
localizedStrings["Add New"] = "Add New";
localizedStrings["Add New Probe Expression"] = "Add New Probe Expression";
localizedStrings["Add New Watch Expression"] = "Add New Watch Expression";
localizedStrings["Add a Class"] = "Add a Class";
localizedStrings["Add new breakpoint action after this action"] = "Add new breakpoint action after this action";
localizedStrings["Add probe expression"] = "Add probe expression";
localizedStrings["Add watch expression"] = "Add watch expression";
localizedStrings["Additions"] = "Additions";
localizedStrings["Align"] = "Align";
localizedStrings["Alignment"] = "Alignment";
localizedStrings["All"] = "All";
localizedStrings["All Changes"] = "All Changes";
localizedStrings["All Exceptions"] = "All Exceptions";
localizedStrings["All Resources"] = "All Resources";
localizedStrings["All Storage"] = "All Storage";
localizedStrings["All Uncaught Exceptions"] = "All Uncaught Exceptions";
localizedStrings["Alternates"] = "Alternates";
localizedStrings["An error occurred trying to load the resource."] = "An error occurred trying to load the resource.";
localizedStrings["An error occurred trying to read the  %s  table."] = "An error occurred trying to read the  %s  table.";
localizedStrings["An unexpected error %s occurred."] = "An unexpected error %s occurred.";
localizedStrings["An unexpected error occurred."] = "An unexpected error occurred.";
localizedStrings["Angle"] = "Angle";
localizedStrings["Animation"] = "Animation";
localizedStrings["Animation Frame %s Canceled"] = "Animation Frame %s Canceled";
localizedStrings["Animation Frame %s Fired"] = "Animation Frame %s Fired";
localizedStrings["Animation Frame %s Requested"] = "Animation Frame %s Requested";
localizedStrings["Animation Frame Canceled"] = "Animation Frame Canceled";
localizedStrings["Animation Frame Fired"] = "Animation Frame Fired";
localizedStrings["Animation Frame Requested"] = "Animation Frame Requested";
localizedStrings["Anonymous Script %d"] = "Anonymous Script %d";
localizedStrings["Anonymous Scripts"] = "Anonymous Scripts";
localizedStrings["Anonymous StyleSheet %d"] = "Anonymous StyleSheet %d";
localizedStrings["Application Cache"] = "Application Cache";
localizedStrings["Assertion"] = "Assertion";
localizedStrings["Assertion Failed"] = "Assertion Failed";
localizedStrings["Assertion Failed: %s"] = "Assertion Failed: %s";
localizedStrings["Assertion with message: %s"] = "Assertion with message: %s";
localizedStrings["Assertive"] = "Assertive";
localizedStrings["Attach"] = "Attach";
localizedStrings["Attribute"] = "Attribute";
localizedStrings["Attributes"] = "Attributes";
localizedStrings["Author Stylesheet"] = "Author Stylesheet";
localizedStrings["Automatically continue after evaluating"] = "Automatically continue after evaluating";
localizedStrings["Average Time"] = "Average Time";
localizedStrings["Back (%s)"] = "Back (%s)";
localizedStrings["Background"] = "Background";
localizedStrings["Basis"] = "Basis";
localizedStrings["Begin Capturing"] = "Begin Capturing";
localizedStrings["Blend"] = "Blend";
localizedStrings["Block Variables"] = "Block Variables";
localizedStrings["Blur"] = "Blur";
localizedStrings["Border"] = "Border";
localizedStrings["Bottom"] = "Bottom";
localizedStrings["Boundary"] = "Boundary";
localizedStrings["Box Model"] = "Box Model";
localizedStrings["Box Shadow"] = "Box Shadow";
localizedStrings["Breakdown"] = "Breakdown";
localizedStrings["Breakdown of each memory category at the end of the selected time range"] = "Breakdown of each memory category at the end of the selected time range";
localizedStrings["Bubbling"] = "Bubbling";
localizedStrings["Busy"] = "Busy";
localizedStrings["Cached"] = "Cached";
localizedStrings["Call Stack"] = "Call Stack";
localizedStrings["Calls"] = "Calls";
localizedStrings["Cancel Automatic Continue"] = "Cancel Automatic Continue";
localizedStrings["Caps"] = "Caps";
localizedStrings["Capturing"] = "Capturing";
localizedStrings["Catch Variables"] = "Catch Variables";
localizedStrings["Categories"] = "Categories";
localizedStrings["Character Data"] = "Character Data";
localizedStrings["Checked"] = "Checked";
localizedStrings["Child Layers"] = "Child Layers";
localizedStrings["Children"] = "Children";
localizedStrings["Classes"] = "Classes";
localizedStrings["Clear"] = "Clear";
localizedStrings["Clear Log"] = "Clear Log";
localizedStrings["Clear Log on Navigation"] = "Clear Log on Navigation";
localizedStrings["Clear Network Items"] = "Clear Network Items";
localizedStrings["Clear Timeline"] = "Clear Timeline";
localizedStrings["Clear log (%s or %s)"] = "Clear log (%s or %s)";
localizedStrings["Clear samples"] = "Clear samples";
localizedStrings["Clear watch expressions"] = "Clear watch expressions";
localizedStrings["Click Listener"] = "Click Listener";
localizedStrings["Click to add a new rule."] = "Click to add a new rule.";
localizedStrings["Click to clear modified properties"] = "Click to clear modified properties";
localizedStrings["Click to close this tab"] = "Click to close this tab";
localizedStrings["Click to disable the selected rule"] = "Click to disable the selected rule";
localizedStrings["Click to enable the selected rule"] = "Click to enable the selected rule";
localizedStrings["Click to link property values"] = "Click to link property values";
localizedStrings["Click to open a cubic-bezier editor."] = "Click to open a cubic-bezier editor.";
localizedStrings["Click to remove link"] = "Click to remove link";
localizedStrings["Click to remove the selected item."] = "Click to remove the selected item.";
localizedStrings["Click to restart the animation"] = "Click to restart the animation";
localizedStrings["Click to select a color. Shift-click to switch color formats."] = "Click to select a color. Shift-click to switch color formats.";
localizedStrings["Click to select a gradient."] = "Click to select a gradient.";
localizedStrings["Clickable"] = "Clickable";
localizedStrings["Clip"] = "Clip";
localizedStrings["Close"] = "Close";
localizedStrings["Close %s timeline view"] = "Close %s timeline view";
localizedStrings["Close Other Tabs"] = "Close Other Tabs";
localizedStrings["Close Tab"] = "Close Tab";
localizedStrings["Close resource view"] = "Close resource view";
localizedStrings["Closure Variables"] = "Closure Variables";
localizedStrings["Closure Variables (%s)"] = "Closure Variables (%s)";
localizedStrings["Code"] = "Code";
localizedStrings["Collapse columns"] = "Collapse columns";
localizedStrings["Color"] = "Color";
localizedStrings["Comment"] = "Comment";
localizedStrings["Comment All Properties"] = "Comment All Properties";
localizedStrings["Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording"] = "Comparison of total memory size at the end of the selected time range to the maximum memory size in this recording";
localizedStrings["Composite"] = "Composite";
localizedStrings["Compressed"] = "Compressed";
localizedStrings["Compression"] = "Compression";
localizedStrings["Condition"] = "Condition";
localizedStrings["Conditional expression"] = "Conditional expression";
localizedStrings["Console"] = "Console";
localizedStrings["Console Profile Recorded"] = "Console Profile Recorded";
localizedStrings["Console errors, click to show the Console tab"] = "Console errors, click to show the Console tab";
localizedStrings["Console logs, click to show the Console tab"] = "Console logs, click to show the Console tab";
localizedStrings["Console warnings, click to show the Console tab"] = "Console warnings, click to show the Console tab";
localizedStrings["Container Regions"] = "Container Regions";
localizedStrings["Content"] = "Content";
localizedStrings["Content Flow"] = "Content Flow";
localizedStrings["Content Security Policy violation of directive: %s"] = "Content Security Policy violation of directive: %s";
localizedStrings["Continue script execution (%s or %s)"] = "Continue script execution (%s or %s)";
localizedStrings["Continue to Here"] = "Continue to Here";
localizedStrings["Controls"] = "Controls";
localizedStrings["Cookies"] = "Cookies";
localizedStrings["Copy Path to Property"] = "Copy Path to Property";
localizedStrings["Copy Row"] = "Copy Row";
localizedStrings["Copy Rule"] = "Copy Rule";
localizedStrings["Copy Table"] = "Copy Table";
localizedStrings["Copy as HTML"] = "Copy as HTML";
localizedStrings["Could not fetch properties. Object may no longer exist."] = "Could not fetch properties. Object may no longer exist.";
localizedStrings["Create %s Rule"] = "Create %s Rule";
localizedStrings["Create a new tab"] = "Create a new tab";
localizedStrings["Current"] = "Current";
localizedStrings["Cursor"] = "Cursor";
localizedStrings["Custom"] = "Custom";
localizedStrings["DOM Content Loaded \u2014 %s"] = "DOM Content Loaded \u2014 %s";
localizedStrings["Data"] = "Data";
localizedStrings["Data returned from the database is too large."] = "Data returned from the database is too large.";
localizedStrings["Database no longer has expected version."] = "Database no longer has expected version.";
localizedStrings["Databases"] = "Databases";
localizedStrings["Date"] = "Date";
localizedStrings["Debug: "] = "Debug: ";
localizedStrings["Debugger"] = "Debugger";
localizedStrings["Debugger Paused"] = "Debugger Paused";
localizedStrings["Debugger Statement"] = "Debugger Statement";
localizedStrings["Decoded"] = "Decoded";
localizedStrings["Decoration"] = "Decoration";
localizedStrings["Default"] = "Default";
localizedStrings["Delay"] = "Delay";
localizedStrings["Delete"] = "Delete";
localizedStrings["Delete Breakpoint"] = "Delete Breakpoint";
localizedStrings["Delete Breakpoints"] = "Delete Breakpoints";
localizedStrings["Delete Node"] = "Delete Node";
localizedStrings["Detach into separate window"] = "Detach into separate window";
localizedStrings["Details"] = "Details";
localizedStrings["Did you mean  %s ?\nClick to replace."] = "Did you mean  %s ?\nClick to replace.";
localizedStrings["Dimensions"] = "Dimensions";
localizedStrings["Direction"] = "Direction";
localizedStrings["Disable Breakpoint"] = "Disable Breakpoint";
localizedStrings["Disable Breakpoints"] = "Disable Breakpoints";
localizedStrings["Disable all breakpoints (%s)"] = "Disable all breakpoints (%s)";
localizedStrings["Disable paint flashing"] = "Disable paint flashing";
localizedStrings["Disable point to inspect mode (%s)"] = "Disable point to inspect mode (%s)";
localizedStrings["Disabled"] = "Disabled";
localizedStrings["Display"] = "Display";
localizedStrings["Dock to bottom of window"] = "Dock to bottom of window";
localizedStrings["Dock to right of window"] = "Dock to right of window";
localizedStrings["Document"] = "Document";
localizedStrings["Document Fragment"] = "Document Fragment";
localizedStrings["Document Type"] = "Document Type";
localizedStrings["Documents"] = "Documents";
localizedStrings["Domain"] = "Domain";
localizedStrings["Done"] = "Done";
localizedStrings["Download Web Archive"] = "Download Web Archive";
localizedStrings["Duplicate Selector"] = "Duplicate Selector";
localizedStrings["Duplicate property  %s .\nClick to delete this property."] = "Duplicate property  %s .\nClick to delete this property.";
localizedStrings["Duration"] = "Duration";
localizedStrings["Dynamically calculated for the parent element"] = "Dynamically calculated for the parent element";
localizedStrings["Dynamically calculated for the selected element"] = "Dynamically calculated for the selected element";
localizedStrings["Dynamically calculated for the selected element and did not match"] = "Dynamically calculated for the selected element and did not match";
localizedStrings["Edit Attribute"] = "Edit Attribute";
localizedStrings["Edit Breakpoint &"] = "Edit Breakpoint &";
localizedStrings["Edit Text"] = "Edit Text";
localizedStrings["Edit as HTML"] = "Edit as HTML";
localizedStrings["Edit  %s "] = "Edit  %s ";
localizedStrings["Effects"] = "Effects";
localizedStrings["Element"] = "Element";
localizedStrings["Element clips compositing descendants"] = "Element clips compositing descendants";
localizedStrings["Element establishes a stacking context"] = "Element establishes a stacking context";
localizedStrings["Element has CSS blending applied and composited descendants"] = "Element has CSS blending applied and composited descendants";
localizedStrings["Element has CSS filters applied"] = "Element has CSS filters applied";
localizedStrings["Element has CSS filters applied and composited descendants"] = "Element has CSS filters applied and composited descendants";
localizedStrings["Element has a 2D transform and composited descendants"] = "Element has a 2D transform and composited descendants";
localizedStrings["Element has a 3D transform"] = "Element has a 3D transform";
localizedStrings["Element has a reflection and composited descendants"] = "Element has a reflection and composited descendants";
localizedStrings["Element has children with a negative z-index"] = "Element has children with a negative z-index";
localizedStrings["Element has opacity applied and composited descendants"] = "Element has opacity applied and composited descendants";
localizedStrings["Element has perspective applied"] = "Element has perspective applied";
localizedStrings["Element has  -webkit-overflow-scrolling: touch  style"] = "Element has  -webkit-overflow-scrolling: touch  style";
localizedStrings["Element has  backface-visibility: hidden  style"] = "Element has  backface-visibility: hidden  style";
localizedStrings["Element has  blend-mode  style"] = "Element has  blend-mode  style";
localizedStrings["Element has  position: fixed  style"] = "Element has  position: fixed  style";
localizedStrings["Element has  position: sticky  style"] = "Element has  position: sticky  style";
localizedStrings["Element has  transform-style: preserve-3d  style"] = "Element has  transform-style: preserve-3d  style";
localizedStrings["Element has  will-change  style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter"] = "Element has  will-change  style with includes opacity, transform, transform-style, perspective, filter or backdrop-filter";
localizedStrings["Element is <canvas>"] = "Element is <canvas>";
localizedStrings["Element is <iframe>"] = "Element is <iframe>";
localizedStrings["Element is <video>"] = "Element is <video>";
localizedStrings["Element is a plug-in"] = "Element is a plug-in";
localizedStrings["Element is a stacking context and has composited descendants with CSS blending applied"] = "Element is a stacking context and has composited descendants with CSS blending applied";
localizedStrings["Element is animated"] = "Element is animated";
localizedStrings["Element is masked and composited descendants"] = "Element is masked and composited descendants";
localizedStrings["Element is the root element"] = "Element is the root element";
localizedStrings["Element overlaps other compositing element"] = "Element overlaps other compositing element";
localizedStrings["Elements"] = "Elements";
localizedStrings["Enable Breakpoint"] = "Enable Breakpoint";
localizedStrings["Enable Breakpoints"] = "Enable Breakpoints";
localizedStrings["Enable all breakpoints (%s)"] = "Enable all breakpoints (%s)";
localizedStrings["Enable paint flashing"] = "Enable paint flashing";
localizedStrings["Enable point to inspect mode (%s)"] = "Enable point to inspect mode (%s)";
localizedStrings["Encoded"] = "Encoded";
localizedStrings["Encoding"] = "Encoding";
localizedStrings["End Capturing"] = "End Capturing";
localizedStrings["Enter Class Name"] = "Enter Class Name";
localizedStrings["Enter Tag"] = "Enter Tag";
localizedStrings["Enter Value"] = "Enter Value";
localizedStrings["Enter a Gradient"] = "Enter a Gradient";
localizedStrings["Enter a URL"] = "Enter a URL";
localizedStrings["Enter a name."] = "Enter a name.";
localizedStrings["Enter a value"] = "Enter a value";
localizedStrings["Enter the name of a Keyframe"] = "Enter the name of a Keyframe";
localizedStrings["Error: "] = "Error: ";
localizedStrings["Errors"] = "Errors";
localizedStrings["Eval Code"] = "Eval Code";
localizedStrings["Evaluate JavaScript"] = "Evaluate JavaScript";
localizedStrings["Event Dispatched"] = "Event Dispatched";
localizedStrings["Event Listeners"] = "Event Listeners";
localizedStrings["Exception with thrown value: %s"] = "Exception with thrown value: %s";
localizedStrings["Expand columns"] = "Expand columns";
localizedStrings["Expanded"] = "Expanded";
localizedStrings["Expires"] = "Expires";
localizedStrings["Expression"] = "Expression";
localizedStrings["Extension Scripts"] = "Extension Scripts";
localizedStrings["Extra Scripts"] = "Extra Scripts";
localizedStrings["Family"] = "Family";
localizedStrings["Features"] = "Features";
localizedStrings["Filename"] = "Filename";
localizedStrings["Fill"] = "Fill";
localizedStrings["Fill Mode"] = "Fill Mode";
localizedStrings["Filter %s"] = "Filter %s";
localizedStrings["Filter Breakpoint List"] = "Filter Breakpoint List";
localizedStrings["Filter Console Log"] = "Filter Console Log";
localizedStrings["Filter Resource List"] = "Filter Resource List";
localizedStrings["Filter Search Results"] = "Filter Search Results";
localizedStrings["Filter Storage List"] = "Filter Storage List";
localizedStrings["Filter Styles"] = "Filter Styles";
localizedStrings["Flexbox"] = "Flexbox";
localizedStrings["Float"] = "Float";
localizedStrings["Float and Clear"] = "Float and Clear";
localizedStrings["Flows"] = "Flows";
localizedStrings["Focus %s Rule"] = "Focus %s Rule";
localizedStrings["Focused"] = "Focused";
localizedStrings["Font"] = "Font";
localizedStrings["Fonts"] = "Fonts";
localizedStrings["Forced Layout"] = "Forced Layout";
localizedStrings["Forced Pseudo-Classes"] = "Forced Pseudo-Classes";
localizedStrings["Format: HSL"] = "Format: HSL";
localizedStrings["Format: HSLA"] = "Format: HSLA";
localizedStrings["Format: Hex"] = "Format: Hex";
localizedStrings["Format: Hex with Alpha"] = "Format: Hex with Alpha";
localizedStrings["Format: Keyword"] = "Format: Keyword";
localizedStrings["Format: RGB"] = "Format: RGB";
localizedStrings["Format: RGBA"] = "Format: RGBA";
localizedStrings["Format: Short Hex"] = "Format: Short Hex";
localizedStrings["Format: Short Hex with Alpha"] = "Format: Short Hex with Alpha";
localizedStrings["Forward (%s)"] = "Forward (%s)";
localizedStrings["Fragment"] = "Fragment";
localizedStrings["Frame %d"] = "Frame %d";
localizedStrings["Frame URL"] = "Frame URL";
localizedStrings["Frame: %d (%s \u2013 %s)"] = "Frame: %d (%s \u2013 %s)";
localizedStrings["Frames"] = "Frames";
localizedStrings["Frames: %d \u2013 %d (%s \u2013 %s)"] = "Frames: %d \u2013 %d (%s \u2013 %s)";
localizedStrings["Frames: None Selected"] = "Frames: None Selected";
localizedStrings["Full Garbage Collection"] = "Full Garbage Collection";
localizedStrings["Full URL"] = "Full URL";
localizedStrings["Function"] = "Function";
localizedStrings["Function Name Variable"] = "Function Name Variable";
localizedStrings["Garbage Collection"] = "Garbage Collection";
localizedStrings["Getter"] = "Getter";
localizedStrings["Global Breakpoints"] = "Global Breakpoints";
localizedStrings["Global Code"] = "Global Code";
localizedStrings["Global Lexical Environment"] = "Global Lexical Environment";
localizedStrings["Global Variables"] = "Global Variables";
localizedStrings["Grammar"] = "Grammar";
localizedStrings["Group"] = "Group";
localizedStrings["Grow"] = "Grow";
localizedStrings["HTML Attributes"] = "HTML Attributes";
localizedStrings["HTTP"] = "HTTP";
localizedStrings["Height"] = "Height";
localizedStrings["Hide Replay Controls"] = "Hide Replay Controls";
localizedStrings["Hide compositing borders"] = "Hide compositing borders";
localizedStrings["Hide shadow DOM nodes"] = "Hide shadow DOM nodes";
localizedStrings["Hide the details sidebar (%s)"] = "Hide the details sidebar (%s)";
localizedStrings["Hide the navigation sidebar (%s)"] = "Hide the navigation sidebar (%s)";
localizedStrings["Hide type information"] = "Hide type information";
localizedStrings["Highest: %s"] = "Highest: %s";
localizedStrings["Horizontal"] = "Horizontal";
localizedStrings["Host"] = "Host";
localizedStrings["Icon Only"] = "Icon Only";
localizedStrings["Icon and Text (Horizontal)"] = "Icon and Text (Horizontal)";
localizedStrings["Icon and Text (Vertical)"] = "Icon and Text (Vertical)";
localizedStrings["Identity"] = "Identity";
localizedStrings["Ignore"] = "Ignore";
localizedStrings["Ignored"] = "Ignored";
localizedStrings["Image"] = "Image";
localizedStrings["Image Size"] = "Image Size";
localizedStrings["Images"] = "Images";
localizedStrings["Immediate Pause Requested"] = "Immediate Pause Requested";
localizedStrings["Indent"] = "Indent";
localizedStrings["Index"] = "Index";
localizedStrings["Index Key \u2014 %s"] = "Index Key \u2014 %s";
localizedStrings["Indexed Databases"] = "Indexed Databases";
localizedStrings["Info: "] = "Info: ";
localizedStrings["Inherited From: "] = "Inherited From: ";
localizedStrings["Inherited from %s"] = "Inherited from %s";
localizedStrings["Initiated"] = "Initiated";
localizedStrings["Initiator"] = "Initiator";
localizedStrings["Input: "] = "Input: ";
localizedStrings["Inset"] = "Inset";
localizedStrings["Invalid"] = "Invalid";
localizedStrings["Invoke getter"] = "Invoke getter";
localizedStrings["Iterations"] = "Iterations";
localizedStrings["JavaScript"] = "JavaScript";
localizedStrings["JavaScript & Events"] = "JavaScript & Events";
localizedStrings["Jump to Definition"] = "Jump to Definition";
localizedStrings["Keep Log on Navigation"] = "Keep Log on Navigation";
localizedStrings["Key"] = "Key";
localizedStrings["Label"] = "Label";
localizedStrings["Latency"] = "Latency";
localizedStrings["Layer"] = "Layer";
localizedStrings["Layer Count: %d"] = "Layer Count: %d";
localizedStrings["Layer Info"] = "Layer Info";
localizedStrings["Layers"] = "Layers";
localizedStrings["Layout"] = "Layout";
localizedStrings["Layout & Rendering"] = "Layout & Rendering";
localizedStrings["Layout Invalidated"] = "Layout Invalidated";
localizedStrings["Left"] = "Left";
localizedStrings["Letter"] = "Letter";
localizedStrings["Ligatures"] = "Ligatures";
localizedStrings["Line %d"] = "Line %d";
localizedStrings["Line %d:%d"] = "Line %d:%d";
localizedStrings["Line Number"] = "Line Number";
localizedStrings["Linear Gradient"] = "Linear Gradient";
localizedStrings["List Styles"] = "List Styles";
localizedStrings["Live"] = "Live";
localizedStrings["Load \u2014 %s"] = "Load \u2014 %s";
localizedStrings["Local File"] = "Local File";
localizedStrings["Local Storage"] = "Local Storage";
localizedStrings["Local Variables"] = "Local Variables";
localizedStrings["Located at %s"] = "Located at %s";
localizedStrings["Location"] = "Location";
localizedStrings["Log Element"] = "Log Element";
localizedStrings["Log Message"] = "Log Message";
localizedStrings["Log Symbol"] = "Log Symbol";
localizedStrings["Log Value"] = "Log Value";
localizedStrings["Log: "] = "Log: ";
localizedStrings["Logs"] = "Logs";
localizedStrings["Lowest: %s"] = "Lowest: %s";
localizedStrings["MIME Type"] = "MIME Type";
localizedStrings["Main Frame"] = "Main Frame";
localizedStrings["Manifest URL"] = "Manifest URL";
localizedStrings["Margin"] = "Margin";
localizedStrings["Max"] = "Max";
localizedStrings["Max Comparison"] = "Max Comparison";
localizedStrings["Maximum"] = "Maximum";
localizedStrings["Maximum Size: %s"] = "Maximum Size: %s";
localizedStrings["Maximum maximum memory size in this recording"] = "Maximum maximum memory size in this recording";
localizedStrings["Media: "] = "Media: ";
localizedStrings["Memory"] = "Memory";
localizedStrings["Memory: %s"] = "Memory: %s";
localizedStrings["Message"] = "Message";
localizedStrings["Method"] = "Method";
localizedStrings["Microtask Dispatched"] = "Microtask Dispatched";
localizedStrings["Min"] = "Min";
localizedStrings["Missing Dependencies:%s"] = "Missing Dependencies:%s";
localizedStrings["Mixed"] = "Mixed";
localizedStrings["Module Code"] = "Module Code";
localizedStrings["Name"] = "Name";
localizedStrings["Network"] = "Network";
localizedStrings["Network Issue"] = "Network Issue";
localizedStrings["Network Requests"] = "Network Requests";
localizedStrings["New Rule"] = "New Rule";
localizedStrings["New Tab"] = "New Tab";
localizedStrings["No"] = "No";
localizedStrings["No Accessibility Information"] = "No Accessibility Information";
localizedStrings["No Application Cache information available"] = "No Application Cache information available";
localizedStrings["No Attributes"] = "No Attributes";
localizedStrings["No Box Model Information"] = "No Box Model Information";
localizedStrings["No Call Frames"] = "No Call Frames";
localizedStrings["No Chart Available"] = "No Chart Available";
localizedStrings["No Child Layers"] = "No Child Layers";
localizedStrings["No Entries."] = "No Entries.";
localizedStrings["No Event Listeners"] = "No Event Listeners";
localizedStrings["No Filter Results"] = "No Filter Results";
localizedStrings["No Layer Available"] = "No Layer Available";
localizedStrings["No Parameters"] = "No Parameters";
localizedStrings["No Properties"] = "No Properties";
localizedStrings["No Properties \u2014 Click to Edit"] = "No Properties \u2014 Click to Edit";
localizedStrings["No Properties."] = "No Properties.";
localizedStrings["No Query Parameters"] = "No Query Parameters";
localizedStrings["No Request Headers"] = "No Request Headers";
localizedStrings["No Response Headers"] = "No Response Headers";
localizedStrings["No Results Found"] = "No Results Found";
localizedStrings["No Search Results"] = "No Search Results";
localizedStrings["No Watch Expressions"] = "No Watch Expressions";
localizedStrings["No exact ARIA role match."] = "No exact ARIA role match.";
localizedStrings["No message"] = "No message";
localizedStrings["No properties."] = "No properties.";
localizedStrings["Node"] = "Node";
localizedStrings["Not found"] = "Not found";
localizedStrings["Number"] = "Number";
localizedStrings["Numeric"] = "Numeric";
localizedStrings["Offset"] = "Offset";
localizedStrings["Online"] = "Online";
localizedStrings["Opacity"] = "Opacity";
localizedStrings["Option-click to show all units"] = "Option-click to show all units";
localizedStrings["Option-click to show all values"] = "Option-click to show all values";
localizedStrings["Option-click to show source"] = "Option-click to show source";
localizedStrings["Options"] = "Options";
localizedStrings["Order"] = "Order";
localizedStrings["Origin"] = "Origin";
localizedStrings["Original"] = "Original";
localizedStrings["Original formatting"] = "Original formatting";
localizedStrings["Originally %s"] = "Originally %s";
localizedStrings["Other"] = "Other";
localizedStrings["Other Issue"] = "Other Issue";
localizedStrings["Outline"] = "Outline";
localizedStrings["Output: "] = "Output: ";
localizedStrings["Outset"] = "Outset";
localizedStrings["Over 1 ms"] = "Over 1 ms";
localizedStrings["Over 15 ms"] = "Over 15 ms";
localizedStrings["Overflow"] = "Overflow";
localizedStrings["Owns"] = "Owns";
localizedStrings["Padding"] = "Padding";
localizedStrings["Page"] = "Page";
localizedStrings["Page Issue"] = "Page Issue";
localizedStrings["Paint"] = "Paint";
localizedStrings["Paints"] = "Paints";
localizedStrings["Parent"] = "Parent";
localizedStrings["Partial Garbage Collection"] = "Partial Garbage Collection";
localizedStrings["Path"] = "Path";
localizedStrings["Pause Playback"] = "Pause Playback";
localizedStrings["Pause Reason"] = "Pause Reason";
localizedStrings["Pause script execution (%s or %s)"] = "Pause script execution (%s or %s)";
localizedStrings["Play Sound"] = "Play Sound";
localizedStrings["Polite"] = "Polite";
localizedStrings["Port"] = "Port";
localizedStrings["Position"] = "Position";
localizedStrings["Position X"] = "Position X";
localizedStrings["Position Y"] = "Position Y";
localizedStrings["Pressed"] = "Pressed";
localizedStrings["Pretty print"] = "Pretty print";
localizedStrings["Primary Key"] = "Primary Key";
localizedStrings["Primary Key \u2014 %s"] = "Primary Key \u2014 %s";
localizedStrings["Probe Expression"] = "Probe Expression";
localizedStrings["Probe Sample Recorded"] = "Probe Sample Recorded";
localizedStrings["Probes"] = "Probes";
localizedStrings["Processing Instruction"] = "Processing Instruction";
localizedStrings["Properties"] = "Properties";
localizedStrings["Property"] = "Property";
localizedStrings["Query Parameters"] = "Query Parameters";
localizedStrings["Query String"] = "Query String";
localizedStrings["Query returned no results."] = "Query returned no results.";
localizedStrings["Radial Gradient"] = "Radial Gradient";
localizedStrings["Radius"] = "Radius";
localizedStrings["Range Issue"] = "Range Issue";
localizedStrings["Readonly"] = "Readonly";
localizedStrings["Reasons for compositing:"] = "Reasons for compositing:";
localizedStrings["Recording"] = "Recording";
localizedStrings["Records"] = "Records";
localizedStrings["Reference Issue"] = "Reference Issue";
localizedStrings["Reflection"] = "Reflection";
localizedStrings["Refresh"] = "Refresh";
localizedStrings["Refresh watch expressions"] = "Refresh watch expressions";
localizedStrings["Region Flow"] = "Region Flow";
localizedStrings["Region announced in its entirety."] = "Region announced in its entirety.";
localizedStrings["Reload page (%s)\nReload ignoring cache (%s)"] = "Reload page (%s)\nReload ignoring cache (%s)";
localizedStrings["Removals"] = "Removals";
localizedStrings["Remove Watch Expression"] = "Remove Watch Expression";
localizedStrings["Remove probe"] = "Remove probe";
localizedStrings["Remove this breakpoint action"] = "Remove this breakpoint action";
localizedStrings["Rendering Frames"] = "Rendering Frames";
localizedStrings["Repeat"] = "Repeat";
localizedStrings["Repeating Linear Gradient"] = "Repeating Linear Gradient";
localizedStrings["Repeating Radial Gradient"] = "Repeating Radial Gradient";
localizedStrings["Request"] = "Request";
localizedStrings["Request & Response"] = "Request & Response";
localizedStrings["Request Data"] = "Request Data";
localizedStrings["Request Headers"] = "Request Headers";
localizedStrings["Required"] = "Required";
localizedStrings["Reset"] = "Reset";
localizedStrings["Resource"] = "Resource";
localizedStrings["Resource Type"] = "Resource Type";
localizedStrings["Resources"] = "Resources";
localizedStrings["Response"] = "Response";
localizedStrings["Response Headers"] = "Response Headers";
localizedStrings["Restart (%s)"] = "Restart (%s)";
localizedStrings["Return type for anonymous function"] = "Return type for anonymous function";
localizedStrings["Return type for function: %s"] = "Return type for function: %s";
localizedStrings["Reveal in DOM Tree"] = "Reveal in DOM Tree";
localizedStrings["Reveal in Debugger Tab"] = "Reveal in Debugger Tab";
localizedStrings["Reveal in Original Resource"] = "Reveal in Original Resource";
localizedStrings["Right"] = "Right";
localizedStrings["Role"] = "Role";
localizedStrings["Samples"] = "Samples";
localizedStrings["Scheme"] = "Scheme";
localizedStrings["Scope Chain"] = "Scope Chain";
localizedStrings["Script"] = "Script";
localizedStrings["Script Evaluated"] = "Script Evaluated";
localizedStrings["Scripts"] = "Scripts";
localizedStrings["Scroll Into View"] = "Scroll Into View";
localizedStrings["Search"] = "Search";
localizedStrings["Search Resource Content"] = "Search Resource Content";
localizedStrings["Secure"] = "Secure";
localizedStrings["Security Issue"] = "Security Issue";
localizedStrings["Select %s Rule"] = "Select %s Rule";
localizedStrings["Selected"] = "Selected";
localizedStrings["Selected Element"] = "Selected Element";
localizedStrings["Selected Frames"] = "Selected Frames";
localizedStrings["Selected Item"] = "Selected Item";
localizedStrings["Selected Items"] = "Selected Items";
localizedStrings["Selected Symbol"] = "Selected Symbol";
localizedStrings["Selected Value"] = "Selected Value";
localizedStrings["Self"] = "Self";
localizedStrings["Self Time"] = "Self Time";
localizedStrings["Semantic Issue"] = "Semantic Issue";
localizedStrings["Session"] = "Session";
localizedStrings["Session Storage"] = "Session Storage";
localizedStrings["Set to Automatically Continue"] = "Set to Automatically Continue";
localizedStrings["Setter"] = "Setter";
localizedStrings["Settings"] = "Settings";
localizedStrings["Shadow"] = "Shadow";
localizedStrings["Shadow Content"] = "Shadow Content";
localizedStrings["Shared Focus"] = "Shared Focus";
localizedStrings["Show All"] = "Show All";
localizedStrings["Show All Nodes (%d More)"] = "Show All Nodes (%d More)";
localizedStrings["Show Replay Controls"] = "Show Replay Controls";
localizedStrings["Show Source"] = "Show Source";
localizedStrings["Show compositing borders"] = "Show compositing borders";
localizedStrings["Show console tab"] = "Show console tab";
localizedStrings["Show only resources with issues."] = "Show only resources with issues.";
localizedStrings["Show resources with and without issues."] = "Show resources with and without issues.";
localizedStrings["Show shadow DOM nodes"] = "Show shadow DOM nodes";
localizedStrings["Show the details sidebar (%s)"] = "Show the details sidebar (%s)";
localizedStrings["Show the navigation sidebar (%s)"] = "Show the navigation sidebar (%s)";
localizedStrings["Show type information"] = "Show type information";
localizedStrings["Shrink"] = "Shrink";
localizedStrings["Size"] = "Size";
localizedStrings["Sizing"] = "Sizing";
localizedStrings["Slice"] = "Slice";
localizedStrings["Small Icons"] = "Small Icons";
localizedStrings["Socket"] = "Socket";
localizedStrings["Sockets"] = "Sockets";
localizedStrings["Sort Ascending"] = "Sort Ascending";
localizedStrings["Sort Descending"] = "Sort Descending";
localizedStrings["Spacing"] = "Spacing";
localizedStrings["Specificity: (%d, %d, %d)"] = "Specificity: (%d, %d, %d)";
localizedStrings["Specificity: No value for selected element"] = "Specificity: No value for selected element";
localizedStrings["Spelling"] = "Spelling";
localizedStrings["Spread"] = "Spread";
localizedStrings["Start Playback"] = "Start Playback";
localizedStrings["Start Recording"] = "Start Recording";
localizedStrings["Start Time"] = "Start Time";
localizedStrings["Start recording (%s)\nCreate new recording (%s)"] = "Start recording (%s)\nCreate new recording (%s)";
localizedStrings["State"] = "State";
localizedStrings["Status"] = "Status";
localizedStrings["Step"] = "Step";
localizedStrings["Step into (%s or %s)"] = "Step into (%s or %s)";
localizedStrings["Step out (%s or %s)"] = "Step out (%s or %s)";
localizedStrings["Step over (%s or %s)"] = "Step over (%s or %s)";
localizedStrings["Stop Recording"] = "Stop Recording";
localizedStrings["Stop recording (%s)"] = "Stop recording (%s)";
localizedStrings["Storage"] = "Storage";
localizedStrings["Style"] = "Style";
localizedStrings["Style Attribute"] = "Style Attribute";
localizedStrings["Style Rules"] = "Style Rules";
localizedStrings["Styles"] = "Styles";
localizedStrings["Styles Invalidated"] = "Styles Invalidated";
localizedStrings["Styles Recalculated"] = "Styles Recalculated";
localizedStrings["Styles \u2014 Computed"] = "Styles \u2014 Computed";
localizedStrings["Styles \u2014 Rules"] = "Styles \u2014 Rules";
localizedStrings["Styles \u2014 Visual"] = "Styles \u2014 Visual";
localizedStrings["Stylesheet"] = "Stylesheet";
localizedStrings["Stylesheets"] = "Stylesheets";
localizedStrings["Text"] = "Text";
localizedStrings["Text Node"] = "Text Node";
localizedStrings["Text Only"] = "Text Only";
localizedStrings["The property  %s  is not supported."] = "The property  %s  is not supported.";
localizedStrings["The selector  %s  is invalid.\nClick to revert to the previous selector."] = "The selector  %s  is invalid.\nClick to revert to the previous selector.";
localizedStrings["The value  %s  is not supported for this property."] = "The value  %s  is not supported for this property.";
localizedStrings["The value  %s  is not supported for this property.\nClick to delete and open autocomplete."] = "The value  %s  is not supported for this property.\nClick to delete and open autocomplete.";
localizedStrings["The value  %s  needs units.\nClick to add  px  to the value."] = "The value  %s  needs units.\nClick to add  px  to the value.";
localizedStrings["The  %s \ntable is empty."] = "The  %s \ntable is empty.";
localizedStrings["The  webkit  prefix is needed for this property.\nClick to insert a duplicate with the prefix."] = "The  webkit  prefix is needed for this property.\nClick to insert a duplicate with the prefix.";
localizedStrings["The  webkit  prefix is not necessary.\nClick to insert a duplicate without the prefix."] = "The  webkit  prefix is not necessary.\nClick to insert a duplicate without the prefix.";
localizedStrings["This Element"] = "This Element";
localizedStrings["This property needs a value.\nClick to open autocomplete."] = "This property needs a value.\nClick to open autocomplete.";
localizedStrings["Time"] = "Time";
localizedStrings["Time until the load event fired, click to show the Network Requests timeline"] = "Time until the load event fired, click to show the Network Requests timeline";
localizedStrings["Timeline Events"] = "Timeline Events";
localizedStrings["Timeline Recording %d"] = "Timeline Recording %d";
localizedStrings["Timelines"] = "Timelines";
localizedStrings["Timer %s Fired"] = "Timer %s Fired";
localizedStrings["Timer %s Installed"] = "Timer %s Installed";
localizedStrings["Timer %s Removed"] = "Timer %s Removed";
localizedStrings["Timer Fired"] = "Timer Fired";
localizedStrings["Timer Installed"] = "Timer Installed";
localizedStrings["Timer Removed"] = "Timer Removed";
localizedStrings["Timestamp \u2014 %s"] = "Timestamp \u2014 %s";
localizedStrings["Timing"] = "Timing";
localizedStrings["Toggle Classes"] = "Toggle Classes";
localizedStrings["Top"] = "Top";
localizedStrings["Total Time"] = "Total Time";
localizedStrings["Total memory size at the end of the selected time range"] = "Total memory size at the end of the selected time range";
localizedStrings["Total number of resources, click to show the Resources tab"] = "Total number of resources, click to show the Resources tab";
localizedStrings["Total size of all resources, click to show the Network Requests timeline"] = "Total size of all resources, click to show the Network Requests timeline";
localizedStrings["Trace"] = "Trace";
localizedStrings["Trace: %s"] = "Trace: %s";
localizedStrings["Transferred"] = "Transferred";
localizedStrings["Transform"] = "Transform";
localizedStrings["Transition"] = "Transition";
localizedStrings["Triggered Breakpoint"] = "Triggered Breakpoint";
localizedStrings["True"] = "True";
localizedStrings["Type"] = "Type";
localizedStrings["Type Issue"] = "Type Issue";
localizedStrings["Type information for variable: %s"] = "Type information for variable: %s";
localizedStrings["Unable to determine path to property from root"] = "Unable to determine path to property from root";
localizedStrings["Unchanged"] = "Unchanged";
localizedStrings["Uncomment All Properties"] = "Uncomment All Properties";
localizedStrings["Unknown node"] = "Unknown node";
localizedStrings["Untitled"] = "Untitled";
localizedStrings["User Agent Stylesheet"] = "User Agent Stylesheet";
localizedStrings["User Stylesheet"] = "User Stylesheet";
localizedStrings["Using Keyword Value"] = "Using Keyword Value";
localizedStrings["Using the previous selector  %s ."] = "Using the previous selector  %s .";
localizedStrings["Value"] = "Value";
localizedStrings["Variants"] = "Variants";
localizedStrings["Vertical"] = "Vertical";
localizedStrings["Visibility"] = "Visibility";
localizedStrings["Warning: "] = "Warning: ";
localizedStrings["Warnings"] = "Warnings";
localizedStrings["Watch Expressions"] = "Watch Expressions";
localizedStrings["Web Inspector"] = "Web Inspector";
localizedStrings["Weight"] = "Weight";
localizedStrings["Whitespace"] = "Whitespace";
localizedStrings["Width"] = "Width";
localizedStrings["With Object Properties"] = "With Object Properties";
localizedStrings["Word"] = "Word";
localizedStrings["Working Copy"] = "Working Copy";
localizedStrings["Wrap"] = "Wrap";
localizedStrings["XHR"] = "XHR";
localizedStrings["XHRs"] = "XHRs";
localizedStrings["Yes"] = "Yes";
localizedStrings["Z-Index"] = "Z-Index";
localizedStrings["key"] = "key";
localizedStrings["line "] = "line ";
localizedStrings["originally %s"] = "originally %s";
localizedStrings["time before stopping"] = "time before stopping";
localizedStrings["times before stopping"] = "times before stopping";
localizedStrings["value"] = "value";
localizedStrings[" %s  Profile Recorded"] = " %s  Profile Recorded";