-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.ts
7775 lines (7399 loc) · 474 KB
/
default.ts
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
/*
* SonarQube
* Copyright (C) 2009-2025 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
export const defaultMessages = {
//------------------------------------------------------------------------------
//
// GENERIC WORDS, sorted alphabetically
//
//------------------------------------------------------------------------------
about: 'About',
about_x: 'About {x}',
action: 'Action',
actions: 'Actions',
active: 'Active',
activate: 'Activate',
add_verb: 'Add',
admin: 'Admin',
after: 'After',
ai_code: 'AI Code',
ai_code_assurance: 'AI CODE ASSURANCE',
apply: 'Apply',
all: 'All',
and: 'And',
anonymous: 'Anonymous',
any: 'Any',
ascending: 'Ascending',
assignee: 'Assignee',
author: 'Author',
billion: 'Billion',
bitbucket: 'Bitbucket',
back: 'Back',
backup: 'Backup',
backup_verb: 'Back up',
best: 'Best',
beta: 'BETA',
blocker: 'Blocker',
bold: 'Bold',
branch: 'Branch',
'branch.small': 'branch',
breadcrumbs: 'Breadcrumbs',
expand_breadcrumbs: 'Expand breadcrumbs',
by_: 'by',
calendar: 'Calendar',
cancel: 'Cancel',
category: 'Category',
attribute: 'Attribute',
see_changelog: 'See Changelog',
changelog: 'Changelog',
change_verb: 'Change',
check_all: 'Check all',
choose_file: 'Choose file',
class: 'Class',
classes: 'Classes',
clean_as_you_code: 'Clean as You Code',
clear_file: 'Clear file',
close: 'Close',
closed: 'Closed',
code: 'Code',
color: 'Color',
collapse_all: 'Collapse all',
compare: 'Compare',
complete: 'Complete',
component: 'Component',
contains_ai_code: 'CONTAINS AI CODE',
configure: 'Configure',
confirm: 'Confirm',
continue: 'Continue',
copy: 'Copy',
create: 'Create',
create_new_element: 'Create new element',
created: 'Created',
created_on: 'Created on',
critical: 'Critical',
current: 'current',
current_noun: 'Current',
customize: 'Customize',
date: 'Date',
days: 'Days',
default: 'Default',
delete: 'Delete',
delete_x: 'Delete {0}',
deprecated: 'Deprecated',
descending: 'Descending',
description: 'Description',
directories: 'Directories',
directory: 'Directory',
disabled_: 'disabled',
dismiss: 'Dismiss',
dismiss_permanently: 'Dismiss permanently',
display: 'Display',
documentation: 'documentation',
done: 'Done',
download_verb: 'Download',
duplications: 'Duplications',
end_date: 'End Date',
edit: 'Edit',
error: 'Error',
events: 'Events',
example: 'Example',
expand_all: 'Expand all',
explore: 'Explore',
extend: 'Extend',
false: 'False',
favorite: 'Favorite',
field_required: 'This field is required',
fields_marked_with_x_required: 'All fields marked with {star} are required',
file: 'File',
files: 'Files',
filters: 'Filters',
follow: 'Follow',
format: 'Format',
from: 'From',
global: 'Global',
github: 'GitHub',
go_back: 'Go back',
got_it: 'Got it',
help: 'Help',
here: 'here',
hide: 'Hide',
ide: 'IDE',
inactive: 'Inactive',
info: 'Info',
issue: 'Issue',
issues: 'Issues',
inheritance: 'Inheritance',
internal: 'internal',
key: 'Key',
later: 'Later',
language: 'Language',
last_analysis: 'Last Analysis',
learn_more: 'Learn More',
learn_more_x: 'Learn More: {link}',
'learn_more.clean_code': 'Learn more: Clean as You Code',
lets_go: "Let's go",
library: 'Library',
line_number: 'Line Number',
links: 'Links',
list_of_issues: 'List of issues',
list_of_projects: 'List of projects',
list_of_rules: 'List of rules',
load_more: 'Load more',
load_verb: 'Load',
loading: 'Loading',
login: 'Login',
major: 'Major',
manual: 'Manual',
max: 'Max',
max_results_reached: 'Only the first {0} results are displayed',
me: 'Me',
members: 'Members',
menu: 'Menu',
min: 'Min',
minor: 'Minor',
more: 'More',
more_x: '{0} more',
more_actions: 'More Actions',
my_issues: 'My Issues',
my_favorite: 'My Favorite',
my_favorites: 'My Favorites',
my_projects: 'My Projects',
name: 'Name',
navigation: 'Navigation',
never: 'Never',
new: 'New',
next: 'Next',
next_month_x: 'next month {month}',
new_name: 'New name',
next_: 'next',
none: 'None',
no_file_selected: 'No file selected',
no_tags: 'No tags',
not_now: 'Not now',
not_impacted: 'Not impacted',
off: 'off',
on: 'on',
or: 'Or',
open: 'Open',
open_in_ide: 'Open in IDE',
open_issues: 'Open issues',
optional: 'Optional',
order: 'Order',
owner: 'Owner',
parameters: 'Parameters',
password: 'Password',
confirm_password: 'Confirm Password',
path: 'Path',
permalink: 'Permanent Link',
plugin: 'Plugin',
preview: 'Preview',
previous: 'Previous',
previous_: 'previous',
previous_month_x: 'previous month {month}',
prioritized: 'Prioritized',
profile_name: 'Profile name',
project: 'Project',
project_x: 'Project: {0}',
projects: 'Projects',
projects_: 'project(s)',
x_projects_: '{0} project(s)',
project_plural: 'projects',
projects_management: 'Projects Management',
'pull_request.small': 'pull request',
quality_profile: 'Quality Profile',
raw: 'Raw',
recent_history: 'Recent History',
recently_browsed: 'Recently Browsed',
recommended: 'Recommended',
refresh: 'Refresh',
reload: 'Reload',
remove: 'Remove',
remove_x: 'Remove {0}',
rename: 'Rename',
replaces: 'Replaces',
required: 'Required',
reset_verb: 'Reset',
reset_to_default: 'Reset To Default',
reset_date: 'Reset dates',
resolution: 'Resolution',
resolve: 'Resolve',
restart: 'Restart',
restore: 'Restore',
result: 'Result',
results: 'Results',
x_results: '{0} results',
review: 'Review',
rule: 'Rule',
rules: 'Rules',
save: 'Save',
search_results: 'Search results',
search_verb: 'Search',
secondary: 'Secondary',
see_all: 'See all',
see_x: 'See {0}',
select_verb: 'Select',
selected: 'Selected',
select_tags: 'Add or remove tags',
set: 'Set',
set_up: 'Set Up',
setup: 'Setup',
settings: 'Settings',
severity: 'Severity',
severity_deprecated: 'Severity (deprecated)',
shared: 'Shared',
start_date: 'Start Date',
x_show: '{0} shown',
x_selected: '{0} selected',
x_of_y_shown: '{0} of {1} shown',
size: 'Size',
skip: 'Skip',
skip_to_content: 'Skip to main content',
status: 'Status',
support: 'Support',
success: 'Success',
table: 'Table',
tags: 'Tags',
tags_list_x: 'Tags list: {0}',
technical_debt: 'Technical Debt',
template: 'Template',
title: 'Title',
to: 'To',
to_: 'to',
total: 'Total',
tours: 'Tours',
treemap: 'Treemap',
true: 'True',
type: 'Type',
unassigned: 'Not assigned',
uncheck_all: 'Uncheck all',
unit_test: 'Unit test',
unit_tests: 'Unit tests',
unknown: 'Unknown',
unresolved: 'Unresolved',
updated: 'Updated',
updated_on: 'Updated on',
updates: 'Updates',
update_verb: 'Update',
updating: 'Updating',
unselected: 'Unselected',
user: 'User',
value: 'Value',
variation: 'Variation',
version: 'Version',
version_x: 'Version {0}',
view: 'View',
views: 'Views',
violations: 'Violations',
visibility: 'Visibility',
warnings: 'Warnings',
with: 'With',
worst: 'Worst',
yes: 'Yes',
no: 'No',
valid_input: 'Valid input',
//------------------------------------------------------------------------------
//
// GENERIC EXPRESSIONS, sorted alphabetically
//
//------------------------------------------------------------------------------
'404_not_found': '404 Not found',
address_mistyped_or_page_moved: 'You may have mistyped the address or the page may have moved.',
and_worse: 'and worse',
are_you_sure: 'Are you sure?',
as_explained_here: 'as explained here',
assigned_to: 'Assigned to',
bulk_change: 'Bulk Change',
bulleted_point: 'Bulleted point',
clear: 'Clear',
clear_x_filter: 'Clear {0} Filters',
clear_all_filters: 'Clear All Filters',
coding_rules: 'Rules',
copy_to_clipboard: 'Click to copy to clipboard',
copied_action: 'Copied to clipboard',
created_by: 'Created by',
default_error_message: 'The request cannot be processed. Try again later.',
default_component_error_message: 'The component cannot be loaded. Try again later.',
default_save_field_error_message: 'This field cannot be saved. Try again later.',
default_severity: 'Default severity',
edit_permissions: 'Edit Permissions',
show_permissions: 'Show Permissions',
facet_might_have_more_results:
'There might be more results, try another set of filters to see them.',
false_positive: 'False positive',
go_back_to_homepage: 'Go back to the homepage',
last_analysis_before: 'Last analysis before',
less_than_1_hour_ago: '< 1 hour ago',
local: 'Local',
logging_out: "You're logging out, please wait...",
manage: 'Manage',
managed: 'From {0}',
'managed.github': 'GitHub',
'managed.gitlab': 'GitLab',
'managed.SCIM': 'IdP',
management: 'Management',
more_information: 'More information',
new_violations: 'New violations',
new_window: 'New window',
no_data: 'No data',
no_measure_value_x: 'No measure value for {0}',
results_shown_x: '{count} results shown',
no_results: 'No results',
no_results_for_x: 'No results for "{0}"',
no_results_search: "We couldn't find any results matching selected criteria.",
'no_results_search.favorites':
"We couldn't find any results matching selected criteria in your favorites.",
'no_results_search.2': 'Try to change filters to get some results.',
'no_results_search.favorites.2': 'Would you like to search among {url} projects?',
opens_in_new_window: 'Opens in a new window',
page_extension_failed: 'Page extension failed.',
page_not_found: 'The page you were looking for does not exist.',
please_contact_administrator: 'Please contact the instance administrator.',
set_as_default: 'Set as Default',
'short_number_suffix.g': 'G',
'short_number_suffix.k': 'k',
'short_number_suffix.m': 'M',
show_less: 'Show Less',
show_less_filter_x: 'Show less results for "{0}" filter',
show_more: 'Show More',
show_more_filter_x: 'Show more results for "{0}" filter',
show_all: 'Show All',
show_them: 'Show Them',
should_be_unique: 'Should be unique',
since_x: 'since {0}',
since_version: 'since version {0}',
'since_version.short': '{0}',
since_version_detailed: 'since version {0} ({1})',
'since_version_detailed.short': '{0} ({1})',
since_previous_version: 'since previous version',
'since_previous_version.short': '\u0394 version',
since_previous_version_detailed: 'since previous version ({0} - {1})',
since_previous_version_with_only_date: 'since previous version ({0})',
'since_previous_version_detailed.short': '\u0394 version ({0})',
this_name_is_already_taken: 'This name is already taken.',
tooltip_is_interactive:
'This is a tooltip with interactive elements. Use the TAB key to cycle through the interactive elements.',
update_details: 'Update details',
update_scm: 'Update SCM details',
'work_duration.x_days': '{0}d',
'work_duration.x_hours': '{0}h',
'work_duration.x_minutes': '{0}min',
'work_duration.about': '~ {0}',
//------------------------------------------------------------------------------
//
// Open Fix in ide
//
//------------------------------------------------------------------------------
view_fix_in_ide: 'View fix in IDE',
'fix_in_ide.report_success': 'Success. Switch to your IDE to see the fix.',
'fix_in_ide.report_error': 'Unable to open the fix in the IDE.',
'unable_to_find_ide_with_fix.error':
'Unable to find IDE with capabilities to show fix suggestions',
//------------------------------------------------------------------------------
//
// DAY PICKER
//
//------------------------------------------------------------------------------
January: 'January',
February: 'February',
March: 'March',
April: 'April',
May: 'May',
June: 'June',
July: 'July',
August: 'August',
September: 'September',
October: 'October',
November: 'November',
December: 'December',
Jan: 'Jan',
Feb: 'Feb',
Mar: 'Mar',
Apr: 'Apr',
Jun: 'Jun',
Jul: 'Jul',
Aug: 'Aug',
Sep: 'Sep',
Oct: 'Oct',
Nov: 'Nov',
Dec: 'Dec',
Sunday: 'Sunday',
Monday: 'Monday',
Tuesday: 'Tuesday',
Wednesday: 'Wednesday',
Thursday: 'Thursday',
Friday: 'Friday',
Saturday: 'Saturday',
Sun: 'Sun',
Mon: 'Mon',
Tue: 'Tue',
Wed: 'Wed',
Thu: 'Thu',
Fri: 'Fri',
Sat: 'Sat',
Su: 'Su',
Mo: 'Mo',
Tu: 'Tu',
We: 'We',
Th: 'Th',
Fr: 'Fr',
Sa: 'Sa',
'clear.start': 'Clear start date',
'clear.end': 'Clear end date',
//------------------------------------------------------------------------------
//
// ALM
//
//------------------------------------------------------------------------------
'alm.azure': 'Azure DevOps',
'alm.azure.short': 'Azure DevOps',
'alm.bitbucket': 'Bitbucket',
'alm.bitbucket.short': 'Bitbucket',
'alm.bitbucket.long': 'Bitbucket Server',
'alm.bitbucketcloud': 'Bitbucket',
'alm.bitbucketcloud.short': 'Bitbucket',
'alm.bitbucketcloud.long': 'Bitbucket Cloud',
'alm.github': 'GitHub',
'alm.github.short': 'GitHub',
'alm.github.organization': 'organization',
'alm.gitlab': 'GitLab',
'alm.gitlab.short': 'GitLab',
'alm.configuration.selector.label': '{0} configuration',
'alm.configuration.selector.placeholder': 'Select a configuration',
//------------------------------------------------------------------------------
//
// RESOURCE QUALIFIERS
//
//------------------------------------------------------------------------------
'qualifier.TRK': 'Project',
'qualifier.DIR': 'Directory',
'qualifier.PAC': 'Package',
'qualifier.VW': 'Portfolio',
'qualifier.SVW': 'Portfolio',
'qualifier.APP': 'Application',
'qualifier.FIL': 'File',
'qualifier.CLA': 'File',
'qualifier.UTS': 'Test File',
'qualifier.configuration.TRK': 'Project Configuration',
'qualifier.configuration.VW': 'Portfolio Configuration',
'qualifier.configuration.SVW': 'Portfolio Configuration',
'qualifier.configuration.APP': 'Application Configuration',
'qualifiers.TRK': 'Projects',
'qualifiers.DIR': 'Directories',
'qualifiers.PAC': 'Packages',
'qualifiers.VW': 'Portfolios',
'qualifiers.SVW': 'Portfolios',
'qualifiers.APP': 'Applications',
'qualifiers.FIL': 'Files',
'qualifiers.CLA': 'Files',
'qualifiers.UTS': 'Test Files',
'qualifiers.all.TRK': 'All Projects',
'qualifiers.all.VW': 'All Portfolios',
'qualifiers.all.APP': 'All Applications',
'qualifiers.new.TRK': 'New Project',
'qualifiers.new.VW': 'New Portfolio',
'qualifiers.new.APP': 'New Application',
'qualifier.delete.TRK': 'Delete Project',
'qualifier.delete.VW': 'Delete Portfolio',
'qualifier.delete.APP': 'Delete Application',
'qualifiers.delete.TRK': 'Delete Projects',
'qualifiers.delete.VW': 'Delete Portfolios',
'qualifiers.delete.APP': 'Delete Applications',
'qualifier.delete_confirm.TRK': 'Do you want to delete this project?',
'qualifier.delete_confirm.VW': 'Do you want to delete this portfolio?',
'qualifier.delete_confirm.APP': 'Do you want to delete this application?',
'qualifiers.delete_confirm.TRK': 'Do you want to delete these projects?',
'qualifiers.delete_confirm.VW': 'Do you want to delete these portfolios?',
'qualifiers.delete_confirm.APP': 'Do you want to delete these applications?',
'qualifiers.create.TRK': 'Create Project',
'qualifiers.create.VW': 'Create Portfolio',
'qualifiers.create.APP': 'Create Application',
'qualifiers.update.VW': 'Update Portfolio',
'qualifiers.update.APP': 'Update Application',
'qualifier.description.VW': 'Potentially multi-level, management-oriented overview aggregation.',
'qualifier.description.SVW': 'Potentially multi-level, management-oriented overview aggregation.',
'qualifier.description.APP':
'Single-level aggregation with a technical focus and a project-like homepage.',
//------------------------------------------------------------------------------
//
// Admin notification
//
//------------------------------------------------------------------------------
'admin_notification.update.new_patch':
'There’s an update available for your {productName} instance. Please update to make sure you benefit from the latest security and bug fixes.',
'admin_notification.update.new_version':
'There’s a new version of {productName} available. Upgrade to the latest version to access new updates and features.',
'admin_notification.update.current_version_inactive':
'You’re running a version of {productName} that is no longer active. Please upgrade to an active version as soon as possible.',
'admin_notification.update.new_sqcb_version':
'Keep your instance current and get the {link}, available now.',
'admin_notification.update.latest': 'latest {productName}',
'admin_notification.update.new_sqs_version_when_running_sqcb.banner':
'There’s a new version of SonarQube Server available.',
'admin_notification.update.new_sqs_version_when_running_sqcb.modal':
'New SonarQube Server version available',
'admin_notification.update.new_sqs_version_when_running_sqcb.upgrade':
'Upgrade to SonarQube Server and get access to enterprise features',
//------------------------------------------------------------------------------
//
// PROJECT LINKS
//
//------------------------------------------------------------------------------
'project_links.homepage': "Project's Website",
'project_links.ci': 'Continuous integration',
'project_links.issue': 'Bug Tracker',
'project_links.scm': 'Sources',
'project_links.scm_ro': 'Read-only connection',
'project_links.scm_dev': 'Developer connection',
'project_links.create_new_project_link': 'Create New Project Link',
'project_links.delete_project_link': 'Delete Project Link',
'project_links.are_you_sure_to_delete_x_link': 'Are you sure you want to delete the "{0}" link?',
'project_links.delete_x_link': 'Delete "{0}" link',
'project_links.name': 'Name',
'project_links.url': 'URL',
'project_links.no_results': 'No links yet. Click "Create" to add one.',
//------------------------------------------------------------------------------
//
// EVENT CATEGORIES
//
//------------------------------------------------------------------------------
'event.category.All': 'All',
'event.category.VERSION': 'Version',
'event.category.QUALITY_GATE': 'Quality Gate',
'event.category.QUALITY_PROFILE': 'Quality Profile',
'event.category.SQ_UPGRADE': '{productName} upgrade',
'event.category.DEFINITION_CHANGE': 'Definition Change',
'event.category.ISSUE_DETECTION': 'Issue Detection',
'event.category.OTHER': 'Other',
'event.quality_gate.still_x': 'Still {status}',
'event.quality_gate.ERROR': 'Failed',
'event.quality_gate.OK': 'Passed',
'event.definition_change.added': '{project} added',
'event.definition_change.removed': '{project} removed',
'event.definition_change.branch_added': '{project} {branch} added',
'event.definition_change.branch_removed': '{project} {branch} removed',
'event.definition_change.branch_replaced': '{project} {oldBranch} replaced with {newBranch}',
'event.failed_conditions': 'Failed Conditions:',
'event.sqUpgrade': 'First analysis since upgrading to {productName} {sqVersion}',
//------------------------------------------------------------------------------
//
// GLOBAL NAVIGATION
//
//------------------------------------------------------------------------------
'global_nav.account.tooltip': 'Account',
//------------------------------------------------------------------------------
//
// LAYOUT
//
//------------------------------------------------------------------------------
'layout.home': 'Home',
'layout.login': 'Log in',
'layout.logout': 'Log out',
'layout.measures': 'Measures',
'layout.settings': 'Administration',
'layout.security_hotspots': 'Security Hotspots',
'layout.dependencies': 'Dependencies',
'layout.settings.TRK': 'Project Settings',
'layout.settings.APP': 'Application Settings',
'layout.settings.VW': 'Portfolio Settings',
'layout.settings.SVW': 'Portfolio Settings',
'layout.security_reports': 'Security Reports',
'layout.nav.home_logo_alt': 'Logo, link to homepage',
'layout.nav.home_sonarqube_logo_alt': '{productName} logo, link to homepage',
'layout.must_be_configured':
'This will be available once your project is configured and analyzed.',
'layout.all_project_must_be_accessible':
'You need access to all projects within this {0} to access it.',
'sidebar.projects': 'Projects',
'sidebar.project_settings': 'Configuration',
'sidebar.security': 'Security',
'sidebar.system': 'System',
'sidebar.tools': 'Tools',
//------------------------------------------------------------------------------
//
// VISIBILITY
//
//------------------------------------------------------------------------------
'visibility.both': 'Public, Private',
'visibility.public': 'Public',
'visibility.public.description.TRK':
'This project is public. Anyone can browse and see the source code.',
'visibility.public.description.VW': 'This portfolio is public. Anyone can browse it.',
'visibility.public.description.APP': 'This application is public. Anyone can browse it.',
'visibility.public.description.short': 'Anyone can browse and see the source code.',
'visibility.public.description.long':
'Anyone will be able to browse your source code and see the result of your analysis.',
'visibility.private': 'Private',
'visibility.private.description.TRK':
'This project is private. Only authorized users can browse and see the source code.',
'visibility.private.description.VW':
'This portfolio is private. Only authorized users can browse it.',
'visibility.private.description.APP':
'This application is private. Only authorized users can browse it.',
'visibility.private.description.short':
'Only authorized users can browse and see the source code.',
'visibility.private.description.long':
'Only members of the organization will be able to browse your source code and see the result of your analysis.',
//------------------------------------------------------------------------------
//
// ADMIN PAGE TITLES and descriptions
//
//------------------------------------------------------------------------------
'coding_rules.page': 'Rules',
'coding_rule.page': '{0} rule: {1}',
'global_permissions.page': 'Global Permissions',
'global_permissions.page.description':
'Grant and revoke permissions to make changes at the global level. These permissions include editing Quality Profiles, executing analysis, and performing global system administration.',
'roles.page': 'Project Permissions',
'roles.page.description2':
'Grant and revoke project-level permissions. Permissions can be granted to groups or individual users.',
'roles.page.description_portfolio':
'Grant and revoke portfolio-level permissions. Permissions can be granted to groups or individual users.',
'roles.page.description_application':
'Grant and revoke application-level permissions. Permissions can be granted to groups or individual users.',
'roles.page.description.github':
'Project permissions are read-only for users provisioned from GitHub. For non-GitHub users, permissions can only be removed.',
'roles.page.description.gitlab':
'Project permissions are read-only for users provisioned from GitLab. For non-GitLab users, permissions can only be removed.',
'roles.page.change_visibility': 'Change project visibility',
'project_permission.managed': 'Provisioned from {0}',
'project_permission.local_project_with_github_provisioning':
'Please note that this project is not linked to GitHub. Bind it to GitHub to benefit from permission provisioning.',
'project_permission.local_project_with_gitlab_provisioning':
'Please note that this project is not linked to GitLab. Bind it to GitLab to benefit from permission provisioning.',
'project_permission.remove_only_confirmation':
'Are you sure you want to remove the permission {permission} from {holder}? The permission can not be added back.',
'project_permission.remove_only_confirmation_title': 'Remove permission',
'project_settings.page': 'General Settings',
'project_settings.page.description': 'Edit project settings.',
'project_links.page': 'Links',
'project_links.page.description': 'Edit some links associated with this project.',
'projects_management.page.description':
'Use this page to delete multiple projects at once, or to provision projects if you would like to configure them before the first analysis. Note that once a project is provisioned, you have access to perform all project configurations on it.',
'settings.page': 'General Settings',
'settings.page.description': 'Edit global settings for this {instance} instance.',
'system_info.page': 'System Info',
'project_quality_profiles.page': 'Quality Profiles',
'project_quality_profiles.page.description':
'Choose which profile is associated with this project on a language-by-language basis.',
'project_quality_gate.page': 'Quality Gate',
'project_quality_gate.page.description':
'Choose which quality gate is associated with this project.',
'update_key.page': 'Update Key',
'update_key.page.description':
'Edit the key of a project. Key changes must be made here BEFORE analyzing the project with the new keys, otherwise the analysis will simply create another project with the new key, rather than updating the existing project.',
'deletion.page': 'Deletion',
'project_deletion.page.description': 'Delete this project. The operation cannot be undone.',
'portfolio_deletion.page.description':
'This portfolio and its sub-portfolios will be deleted. If this portfolio is referenced by other entities, it will be removed from them. Independent entities referenced by this portfolio, such as projects and other top-level portfolios will not be deleted. This operation cannot be undone.',
'application_deletion.page.description':
'Delete this application. Application projects will not be deleted. Projects referenced by this application will not be deleted. This operation cannot be undone.',
'application.branches.help':
'Easily create Application branches composed of the branches of projects in your application.',
'application.branches.link': 'Create Branch',
'project_branch_pull_request.page': 'Branches & Pull Requests',
'project_branch_pull_request.lifetime_information':
'Branches and Pull Requests are permanently deleted after {days} days without analysis.',
'project_branch_pull_request.lifetime_information.admin':
'You can adjust this value globally in {settings}.',
'project_branch_pull_request.branch.rename': 'Rename branch',
'project_branch_pull_request.branch.set_main': 'Set as main branch',
'project_branch_pull_request.branch.set_x_as_main': 'Set "{branch}" as the main branch',
'project_branch_pull_request.branch.delete': 'Delete branch',
'project_branch_pull_request.branch.actions_label': 'Update {0}',
'project_branch_pull_request.branch.delete.are_you_sure':
'Are you sure you want to delete branch "{name}"?',
'project_branch_pull_request.branch.main_branch.are_you_sure':
'Are you sure you want to set branch "{branch}" as the main branch of this project?',
'project_branch_pull_request.branch.main_branch.requires_reindex':
'Changing the main branch of your project will trigger a project re-indexing and may impact the level of information that is available until re-indexing is complete.',
'project_branch_pull_request.branch.main_branch.learn_more':
'Please refer to the {documentation} to understand the impacts of changing the main branch.',
'project_branch_pull_request.branch.auto_deletion.keep_when_inactive': 'Keep when inactive',
'project_branch_pull_request.branch.auto_deletion.keep_when_inactive.tooltip':
'When turned on, the branch will not be automatically deleted when inactive.',
'project_branch_pull_request.branch.auto_deletion.main_branch_tooltip':
'The main branch is always excluded from automatic deletion.',
'project_branch_pull_request.pull_request.delete': 'Delete Pull Request',
'project_branch_pull_request.pull_request.delete.are_you_sure':
'Are you sure you want to delete Pull Request "{name}"?',
'project_branch_pull_request.tabs.branches': 'Branches',
'project_branch_pull_request.tabs.pull_requests': 'Pull Requests',
'project_branch_pull_request.table.branch': 'Branch',
'project_branch_pull_request.table.pull_request': 'Pull Request',
'project_branch_pull_request.last_analysis_date': 'Last Analysis Date',
'project_baseline.page': 'New Code',
'project_baseline.page.description':
'The new code definition sets which part of your code will be considered new code.',
'project_baseline.page.description2': 'You can adjust this setting globally in {link}.',
'project_baseline.page.description2.link': 'General Settings',
'project_baseline.page.question': 'Choose the baseline for new code for this project',
'project_baseline.global_setting': 'Use the global setting',
'project_baseline.specific_setting': 'Define a specific setting for this project',
'project_baseline.configure_branches': 'Set a specific setting for a branch',
'project_baseline.compliance.warning.title.project':
'Your project new code definition is not compliant with the Clean as You Code methodology',
'baseline.specific_analysis': 'Specific analysis',
'baseline.specific_analysis.description': 'Choose an analysis as the baseline for the new code.',
'baseline.specific_analysis.compliance_warning.title':
'Choosing the "Specific analysis" option from the {productName} UI is not compliant with the Clean as You Code methodology',
'baseline.specific_analysis.compliance_warning.explanation':
'It has been deprecated. The option remains available through the Web API.',
'baseline.specific_analysis.compliance_warning.link': 'Defining New Code',
'baseline.reference_branch': 'Reference branch',
'baseline.reference_branch.description': 'Choose a branch as the baseline for the new code.',
'baseline.reference_branch.usecase': 'Recommended for projects using feature branches.',
'baseline.reference_branch.description2':
'The branch you select as the reference branch will need its own new code definition to prevent it from using itself as a reference.',
'baseline.last_analysis_before': 'Last analysis before',
'baseline.next_analysis_notice': 'Changes will take effect after the next analysis',
'baseline.reference_branch.choose': 'Choose a branch',
'baseline.reference_branch.does_not_exist':
'Branch {branch} could not be found in {productName}.',
'baseline.reference_branch.cannot_be_itself':
'A branch cannot be used as its own reference branch',
'baseline.reference_branch.invalid_branch_setting':
'Branch {0} cannot use itself as a reference. Define a specific setting instead of using the project-level setting.',
'baseline.edit_branch_setting': "Edit the branch's setting",
'branch_list.branch': 'Branch',
'branch_list.current_setting': 'Setting',
'branch_list.current_baseline': 'Current Baseline',
'branch_list.actions': 'Actions',
'branch_list.show_actions_for_x': 'Show actions for branch {0}',
'branch_list.edit_for_x': 'Edit {0}',
'branch_list.default_setting': 'Project setting',
'baseline.new_code_period_for_branch_x': 'New Code for {0}',
'baseline.new_code_period_for_branch_x.question':
'Choose the baseline for new code for this branch',
'regulatory_report.page': 'Regulatory Report',
'regulatory_report.description1':
'The regulatory report is a zip file containing a snapshot of the selected branch. It contains:',
'regulatory_report.bullet_point1': 'An overview of the selected branch of the project.',
'regulatory_report.bullet_point2':
"The configuration items relevant to the project's quality (quality profile, quality gate, and analysis exclusions).",
'regulatory_report.bullet_point3':
'Lists of findings for both new and overall code on the selected branch.',
'regulatory_report.description2':
'The generation and download of the report may take a few minutes.',
'regulatory_page.download_start.sentence':
'Your download should start shortly. This may take some time.',
'regulatory_page.select_branch': 'Select Branch',
'regulatory_page.no_available_branch':
'No branch has been analyzed yet, no report can be generated.',
'regulatory_page.available_branches_info.only_keep_when_inactive':
'Only branches marked as "Keep when inactive" are available.',
'regulatory_page.available_branches_info.more_info':
'For further details, please check the {doc_link}.',
'regulatory_page.available_branches_info.more_info.doc_link': 'related documentation',
//------------------------------------------------------------------------------
//
// OTHER PAGE TITLES
//
//------------------------------------------------------------------------------
'page_title.template.default': '%s - {productName}',
'page_title.template.with_category': '%s - {page} - {productName}',
'page_title.template.with_instance': '{project} - %s - {productName}',
'overview.page': 'Overview',
'code.page': 'Code',
'permissions.page': 'Permissions',
'quality_profiles.page': 'Quality Profiles',
'quality_gates.page': 'Quality Gates',
'issues.page': 'Issues',
'issues.skip_to_filters': 'Skip to issue filters',
'issues.skip_to_list': 'Skip to issues list',
'dependencies.page': 'Dependencies',
'view_projects.page': 'Projects',
'portfolios.page': 'Portfolios',
'portfolio_breakdown.page': 'Portfolio Breakdown',
'project_activity.page': 'Activity',
//------------------------------------------------------------------------------
//
// ASYNC PROCESS
//
//------------------------------------------------------------------------------
'process.still_working': 'Still Working...',
'process.fail': 'Failed',
//------------------------------------------------------------------------------
//
// SESSION
//
//------------------------------------------------------------------------------
'sessions.log_in': 'Log in',
//------------------------------------------------------------------------------
//
// Audit Logs
//
//------------------------------------------------------------------------------
'audit_logs.page': 'Audit Logs',
'audit_logs.page.description.1':
'Audit Logs help Administrators keep control and traceability of security related changes performed on the platform.',
'audit_logs.page.description.2':
'Your instance is set to keep audit logs for {housekeeping}. You can change the number of days by updating your {link}.',
'audit_logs.page.description.link': 'housekeeping policy',
'audit_logs.housekeeping_policy.Weekly': '7 days',
'audit_logs.housekeeping_policy.Monthly': '30 days',
'audit_logs.housekeeping_policy.Trimestrial': '90 days',
'audit_logs.housekeeping_policy.Yearly': 'one year',
'audit_logs.download': 'Download Audit Logs',
'audit_logs.download_start.try_again': 'Try Again',
'audit_logs.download_start.sentence.1':
'Your download should start shortly. For longer periods this might take some time.',
'audit_logs.download_start.sentence.2':
'If the download doesn’t start after a few seconds, try to reduce the period for which you are fetching audit logs.',
'audit_logs.download_start.sentence.3':
'Change your selection above to download additional audit logs.',
'audit_logs.range_option.today': 'Today',
'audit_logs.range_option.7days': '7 days',
'audit_logs.range_option.30days': '30 days',
'audit_logs.range_option.90days': '90 days',
'audit_logs.range_option.custom': 'Custom',
//------------------------------------------------------------------------------
//
// HOTSPOTS
//
//------------------------------------------------------------------------------
'risk_exposure.HIGH': 'High',
'risk_exposure.MEDIUM': 'Medium',
'risk_exposure.LOW': 'Low',
'hotspots.page': 'Security Hotspots',
'hotspots.no_hotspots.title': 'There are no Security Hotspots to review.',
'hotspots.no_hotspots.description':
'Next time you analyze a piece of code that contains a potential security risk, it will show up here.',
'hotspots.no_hotspots_for_file.title': 'The selected file contains no hotspots.',
'hotspots.no_hotspots_for_file.description':
'Go back and select another file, or click "Show all hotspots".',
'hotspots.no_hotspots_for_filters.title':
"We couldn't find any results matching the selected criteria.",
'hotspots.no_hotspots_for_filters.description': 'Try changing the filters to get some results.',
'hotspots.no_hotspots_for_keys.title': 'The requested hotspots no longer exist.',
'hotspots.no_hotspots_for_keys.description':
'They have been closed because the code involved has been changed or removed.',
'hotspots.learn_more': 'Learn more about Security Hotspots',
'hotspots.list': 'List of Security Hotspots',
'hotspots.list_title': '{0} Security Hotspots',
'hotspots.list_title.TO_REVIEW': '{0} Security Hotspots to review',
'hotspots.list_title.ACKNOWLEDGED': '{0} Security Hotspots reviewed as acknowledged',
'hotspots.list_title.FIXED': '{0} Security Hotspots reviewed as fixed',
'hotspots.list_title.SAFE': '{0} Security Hotspots reviewed as safe',
'hotspots.risk_exposure': 'Review priority',
'hotspots.tabs.code': 'Where is the risk?',
'hotspots.tabs.risk_description': "What's the risk?",
'hotspots.tabs.vulnerability_description': 'Assess the risk',
'hotspots.tabs.fix_recommendations': 'How can I fix it?',
'hotspots.tabs.activity': 'Activity',
'hotspots.tabs.code.short': 'Where',
'hotspots.tabs.risk_description.short': 'What',
'hotspots.tabs.vulnerability_description.short': 'Assess',
'hotspots.tabs.fix_recommendations.short': 'How',
'hotspots.tabs.activity.short': 'Activity',
'hotspots.review_history.created': 'created Security Hotspot',
'hotspots.review_history.comment_added': 'added a comment',
'hotspots.comment.field': 'Comment:',
'hotspots.comment.open': 'Comment',
'hotspots.comment.submit': 'Comment',
'hotspots.open_in_ide.success': 'Success. Switch to your IDE to see the security hotspot.',
'hotspots.open_in_ide.failure':
"Unable to connect to your IDE to open the Security Hotspot. Please make sure you're running the latest version of SonarQube for IDE.",
'hotspots.assignee.select_user': 'Select a user...',
'hotspots.assignee.change_user': 'Click to change assignee',
'hotspots.status.cannot_change_status': "Changing a hotspot's status requires permission.",
'hotspots.status.review': 'Review',
'hotspots.status.review_title': 'Review Security Hotspot',
'hotspots.status.select': 'Select a status',
'hotspots.status.add_comment': 'Add a comment',
'hotspots.status.add_comment_optional': 'Add a comment (Optional)',
'hotspots.status.change_status': 'Change status',
'hotspots.status_option.TO_REVIEW': 'To review',
'hotspots.status_option.TO_REVIEW.description':
'This security hotspot needs to be reviewed to assess whether the code poses a risk.',
'hotspots.status_option.ACKNOWLEDGED': 'Acknowledged',
'hotspots.status_option.ACKNOWLEDGED.description':
'The code has been reviewed and does pose a risk. A fix is required.',
'hotspots.status_option.FIXED': 'Fixed',
'hotspots.status_option.FIXED.description':
'The code has been reviewed and modified to follow the recommended secure coding practices.',
'hotspots.status_option.SAFE': 'Safe',
'hotspots.status_option.SAFE.description':
'The code has been reviewed and does not pose a risk. It does not need to be modified.',
'hotspots.get_permalink': 'Get Permalink',
'hotspots.no_associated_lines':
'This Security Hotspot is not associated with any specific lines of code.',
'hotspots.congratulations': 'Congratulations!',
'hotspots.find_in_status_filter_x':