##// END OF EJS Templates
release: merge back stable branch into default
marcink -
r3843:957c2342 merge default
parent child Browse files
Show More
@@ -0,0 +1,41 b''
1 |RCE| 4.17.1 |RNS|
2 ------------------
3
4 Release Date
5 ^^^^^^^^^^^^
6
7 - 2019-07-04
8
9
10 New Features
11 ^^^^^^^^^^^^
12
13
14
15 General
16 ^^^^^^^
17
18
19
20 Security
21 ^^^^^^^^
22
23
24
25 Performance
26 ^^^^^^^^^^^
27
28
29
30 Fixes
31 ^^^^^
32
33 - Database: fixed mysql migration issues.
34 - Artifacts: fixed problem with non-ascii file uploads.
35 - Artifacts: increase timeout, and allow setting custom time via ?timeout=N GET flag
36
37
38 Upgrade notes
39 ^^^^^^^^^^^^^
40
41 - Un-scheduled release addressing problems in 4.17.X releases.
@@ -0,0 +1,40 b''
1 |RCE| 4.17.2 |RNS|
2 ------------------
3
4 Release Date
5 ^^^^^^^^^^^^
6
7 - 2019-07-05
8
9
10 New Features
11 ^^^^^^^^^^^^
12
13
14
15 General
16 ^^^^^^^
17
18
19
20 Security
21 ^^^^^^^^
22
23
24
25 Performance
26 ^^^^^^^^^^^
27
28
29
30 Fixes
31 ^^^^^
32
33 - UI: fixed missing icons on some cases.
34 - Commits: hide links icon of message that don't expand.
35
36
37 Upgrade notes
38 ^^^^^^^^^^^^^
39
40 - Un-scheduled release addressing problems in 4.17.X releases.
@@ -0,0 +1,2 b''
1 big/CPython
2 big/CPython/commits
@@ -41,6 +41,7 b' syntax: regexp'
41 41 ^result$
42 42 ^rhodecode/public/css/style.css$
43 43 ^rhodecode/public/css/style-polymer.css$
44 ^rhodecode/public/css/style-ipython.css$
44 45 ^rhodecode/public/js/rhodecode-components.html$
45 46 ^rhodecode/public/js/rhodecode-components.js$
46 47 ^rhodecode/public/js/scripts.js$
@@ -52,3 +52,6 b' 4aaa40b605b01af78a9f6882eca561c54b525ef0'
52 52 797744642eca86640ed20bef2cd77445780abaec v4.16.0
53 53 6c3452c7c25ed35ff269690929e11960ed6ad7d3 v4.16.1
54 54 5d8057df561c4b6b81b6401aed7d2f911e6e77f7 v4.16.2
55 13acfc008896ef4c62546bab5074e8f6f89b4fa7 v4.17.0
56 45b9b610976f483877142fe75321808ce9ebac59 v4.17.1
57 ad5bd0c4bd322fdbd04bb825a3d027e08f7a3901 v4.17.2
@@ -9,6 +9,8 b' Release Notes'
9 9 .. toctree::
10 10 :maxdepth: 1
11 11
12 release-notes-4.17.2.rst
13 release-notes-4.17.1.rst
12 14 release-notes-4.17.0.rst
13 15 release-notes-4.16.2.rst
14 16 release-notes-4.16.1.rst
@@ -1718,7 +1718,7 b' self: super: {'
1718 1718 };
1719 1719 };
1720 1720 "rhodecode-enterprise-ce" = super.buildPythonPackage {
1721 name = "rhodecode-enterprise-ce-4.17.0";
1721 name = "rhodecode-enterprise-ce-4.17.2";
1722 1722 buildInputs = [
1723 1723 self."pytest"
1724 1724 self."py"
@@ -369,6 +369,10 b' def includeme(config):'
369 369 name='edit_repo_perms',
370 370 pattern='/{repo_name:.*?[^/]}/settings/permissions', repo_route=True)
371 371
372 config.add_route(
373 name='edit_repo_perms_set_private',
374 pattern='/{repo_name:.*?[^/]}/settings/permissions/set_private', repo_route=True)
375
372 376 # Permissions Branch (EE feature)
373 377 config.add_route(
374 378 name='edit_repo_perms_branch',
@@ -481,13 +485,21 b' def includeme(config):'
481 485 name='edit_repo_audit_logs',
482 486 pattern='/{repo_name:.*?[^/]}/settings/audit_logs', repo_route=True)
483 487
484 # ATOM/RSS Feed
488 # ATOM/RSS Feed, shouldn't contain slashes for outlook compatibility
485 489 config.add_route(
486 490 name='rss_feed_home',
491 pattern='/{repo_name:.*?[^/]}/feed-rss', repo_route=True)
492
493 config.add_route(
494 name='atom_feed_home',
495 pattern='/{repo_name:.*?[^/]}/feed-atom', repo_route=True)
496
497 config.add_route(
498 name='rss_feed_home_old',
487 499 pattern='/{repo_name:.*?[^/]}/feed/rss', repo_route=True)
488 500
489 501 config.add_route(
490 name='atom_feed_home',
502 name='atom_feed_home_old',
491 503 pattern='/{repo_name:.*?[^/]}/feed/atom', repo_route=True)
492 504
493 505 # NOTE(marcink): needs to be at the end for catch-all
@@ -27,8 +27,10 b' def route_path(name, params=None, **kwar'
27 27 import urllib
28 28
29 29 base_url = {
30 'rss_feed_home': '/{repo_name}/feed/rss',
31 'atom_feed_home': '/{repo_name}/feed/atom',
30 'rss_feed_home': '/{repo_name}/feed-rss',
31 'atom_feed_home': '/{repo_name}/feed-atom',
32 'rss_feed_home_old': '/{repo_name}/feed/rss',
33 'atom_feed_home_old': '/{repo_name}/feed/atom',
32 34 }[name].format(**kwargs)
33 35
34 36 if params:
@@ -73,6 +75,42 b' class TestFeedView(TestController):'
73 75
74 76 assert response.content_type == content_type
75 77
78 @pytest.mark.parametrize("feed_type, content_type", [
79 ('rss', "application/rss+xml"),
80 ('atom', "application/atom+xml")
81 ])
82 def test_feed_with_auth_token_by_uid(
83 self, backend, user_admin, feed_type, content_type):
84 auth_token = user_admin.feed_token
85 assert auth_token != ''
86
87 response = self.app.get(
88 route_path(
89 '{}_feed_home'.format(feed_type),
90 repo_name='_{}'.format(backend.repo.repo_id),
91 params=dict(auth_token=auth_token)),
92 status=200)
93
94 assert response.content_type == content_type
95
96 @pytest.mark.parametrize("feed_type, content_type", [
97 ('rss', "application/rss+xml"),
98 ('atom', "application/atom+xml")
99 ])
100 def test_feed_old_urls_with_auth_token(
101 self, backend, user_admin, feed_type, content_type):
102 auth_token = user_admin.feed_token
103 assert auth_token != ''
104
105 response = self.app.get(
106 route_path(
107 '{}_feed_home_old'.format(feed_type),
108 repo_name=backend.repo_name,
109 params=dict(auth_token=auth_token)),
110 status=200)
111
112 assert response.content_type == content_type
113
76 114 @pytest.mark.parametrize("feed_type", ['rss', 'atom'])
77 115 def test_feed_with_auth_token_of_wrong_type(
78 116 self, backend, user_util, feed_type):
@@ -40,8 +40,6 b' log = logging.getLogger(__name__)'
40 40 class RepoFeedView(RepoAppView):
41 41 def load_default_context(self):
42 42 c = self._get_local_tmpl_context()
43
44
45 43 self._load_defaults()
46 44 return c
47 45
@@ -117,6 +115,9 b' class RepoFeedView(RepoAppView):'
117 115 @view_config(
118 116 route_name='atom_feed_home', request_method='GET',
119 117 renderer=None)
118 @view_config(
119 route_name='atom_feed_home_old', request_method='GET',
120 renderer=None)
120 121 def atom(self):
121 122 """
122 123 Produce an atom-1.0 feed via feedgenerator module
@@ -181,6 +182,9 b' class RepoFeedView(RepoAppView):'
181 182 @view_config(
182 183 route_name='rss_feed_home', request_method='GET',
183 184 renderer=None)
185 @view_config(
186 route_name='rss_feed_home_old', request_method='GET',
187 renderer=None)
184 188 def rss(self):
185 189 """
186 190 Produce an rss2 feed via feedgenerator module
@@ -105,3 +105,30 b' class RepoSettingsPermissionsView(RepoAp'
105 105
106 106 raise HTTPFound(
107 107 h.route_path('edit_repo_perms', repo_name=self.db_repo_name))
108
109 @LoginRequired()
110 @HasRepoPermissionAnyDecorator('repository.admin')
111 @CSRFRequired()
112 @view_config(
113 route_name='edit_repo_perms_set_private', request_method='POST',
114 renderer='json_ext')
115 def edit_permissions_set_private_repo(self):
116 _ = self.request.translate
117 self.load_default_context()
118
119 try:
120 RepoModel().update(
121 self.db_repo, **{'repo_private': True, 'repo_name': self.db_repo_name})
122 Session().commit()
123
124 h.flash(_('Repository `{}` private mode set successfully').format(self.db_repo_name),
125 category='success')
126 except Exception:
127 log.exception("Exception during update of repository")
128 h.flash(_('Error occurred during update of repository {}').format(
129 self.db_repo_name), category='error')
130
131 return {
132 'redirect_url': h.route_path('edit_repo_perms', repo_name=self.db_repo_name),
133 'private': True
134 }
This diff has been collapsed as it changes many lines, (3163 lines changed) Show them Hide them
@@ -6,9 +6,9 b''
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9 "Project-Id-Version: rhodecode-enterprise-ce 4.16.0\n"
9 "Project-Id-Version: rhodecode-enterprise-ce 4.17.0\n"
10 10 "Report-Msgid-Bugs-To: marcin@rhodecode.com\n"
11 "POT-Creation-Date: 2019-02-23 21:51+0000\n"
11 "POT-Creation-Date: 2019-07-03 14:48+0000\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,11 +25,11 b' msgstr ""'
25 25 msgid "Error occurred during update of default values"
26 26 msgstr ""
27 27
28 #: rhodecode/apps/admin/views/exception_tracker.py:142
28 #: rhodecode/apps/admin/views/exception_tracker.py:156
29 29 msgid "Removed {} Exceptions"
30 30 msgstr ""
31 31
32 #: rhodecode/apps/admin/views/exception_tracker.py:159
32 #: rhodecode/apps/admin/views/exception_tracker.py:173
33 33 msgid "Removed Exception {}"
34 34 msgstr ""
35 35
@@ -53,7 +53,7 b' msgstr ""'
53 53
54 54 #: rhodecode/apps/admin/views/permissions.py:484
55 55 #: rhodecode/templates/admin/gists/show.mako:63
56 #: rhodecode/templates/admin/integrations/list.mako:174
56 #: rhodecode/templates/admin/integrations/list.mako:172
57 57 #: rhodecode/templates/admin/my_account/my_account_profile.mako:5
58 58 #: rhodecode/templates/base/issue_tracker_settings.mako:60
59 59 #: rhodecode/templates/data_table/_dt_elements.mako:167
@@ -62,12 +62,12 b' msgstr ""'
62 62 #: rhodecode/templates/data_table/_dt_elements.mako:255
63 63 #: rhodecode/templates/data_table/_dt_elements.mako:267
64 64 #: rhodecode/templates/debug_style/buttons.html:128
65 #: rhodecode/templates/files/files_add.mako:208
66 #: rhodecode/templates/files/files_edit.mako:168
67 #: rhodecode/templates/files/files_source.mako:58
68 #: rhodecode/templates/files/files_source.mako:61
69 #: rhodecode/templates/pullrequests/pullrequest_show.mako:64
70 #: rhodecode/templates/pullrequests/pullrequest_show.mako:347
65 #: rhodecode/templates/files/files_add.mako:57
66 #: rhodecode/templates/files/files_edit.mako:58
67 #: rhodecode/templates/files/files_source.mako:29
68 #: rhodecode/templates/files/files_source.mako:42
69 #: rhodecode/templates/pullrequests/pullrequest_show.mako:60
70 #: rhodecode/templates/pullrequests/pullrequest_show.mako:343
71 71 #: rhodecode/templates/user_group/profile.mako:7
72 72 #: rhodecode/templates/users/user_profile.mako:7
73 73 msgid "Edit"
@@ -81,12 +81,12 b' msgstr ""'
81 81 msgid "SSH key support is disabled in .ini file"
82 82 msgstr ""
83 83
84 #: rhodecode/apps/admin/views/repo_groups.py:183
84 #: rhodecode/apps/admin/views/repo_groups.py:329
85 85 #, python-format
86 86 msgid "Created repository group %s"
87 87 msgstr ""
88 88
89 #: rhodecode/apps/admin/views/repo_groups.py:201
89 #: rhodecode/apps/admin/views/repo_groups.py:347
90 90 #, python-format
91 91 msgid "Error occurred during creation of repository group %s"
92 92 msgstr ""
@@ -345,12 +345,12 b' msgstr ""'
345 345 msgid "SVN"
346 346 msgstr ""
347 347
348 #: rhodecode/apps/admin/views/user_groups.py:231
348 #: rhodecode/apps/admin/views/user_groups.py:243
349 349 #, python-format
350 350 msgid "Created user group %(user_group_link)s"
351 351 msgstr ""
352 352
353 #: rhodecode/apps/admin/views/user_groups.py:253
353 #: rhodecode/apps/admin/views/user_groups.py:265
354 354 #, python-format
355 355 msgid "Error occurred during creation of user group %s"
356 356 msgstr ""
@@ -446,99 +446,99 b' msgstr ""'
446 446 msgid "Force password change disabled for user"
447 447 msgstr ""
448 448
449 #: rhodecode/apps/admin/views/users.py:696
449 #: rhodecode/apps/admin/views/users.py:695
450 450 #, python-format
451 451 msgid "Linked repository group `%s` as personal"
452 452 msgstr ""
453 453
454 #: rhodecode/apps/admin/views/users.py:702
454 #: rhodecode/apps/admin/views/users.py:701
455 455 #, python-format
456 456 msgid "Created repository group `%s`"
457 457 msgstr ""
458 458
459 #: rhodecode/apps/admin/views/users.py:706
459 #: rhodecode/apps/admin/views/users.py:705
460 460 #, python-format
461 461 msgid "Repository group `%s` is already taken"
462 462 msgstr ""
463 463
464 #: rhodecode/apps/admin/views/users.py:711
464 #: rhodecode/apps/admin/views/users.py:710
465 465 msgid "An error occurred during repository group creation for user"
466 466 msgstr ""
467 467
468 #: rhodecode/apps/admin/views/users.py:734
468 #: rhodecode/apps/admin/views/users.py:733
469 469 #: rhodecode/apps/my_account/views/my_account.py:161
470 470 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:16
471 471 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:16
472 472 msgid "Role"
473 473 msgstr ""
474 474
475 #: rhodecode/apps/admin/views/users.py:773
475 #: rhodecode/apps/admin/views/users.py:772
476 476 #: rhodecode/apps/my_account/views/my_account.py:196
477 477 msgid "Auth token successfully created"
478 478 msgstr ""
479 479
480 #: rhodecode/apps/admin/views/users.py:802
480 #: rhodecode/apps/admin/views/users.py:801
481 481 #: rhodecode/apps/my_account/views/my_account.py:220
482 482 msgid "Auth token successfully deleted"
483 483 msgstr ""
484 484
485 #: rhodecode/apps/admin/views/users.py:875
485 #: rhodecode/apps/admin/views/users.py:874
486 486 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:114
487 487 msgid "Ssh Key successfully created"
488 488 msgstr ""
489 489
490 #: rhodecode/apps/admin/views/users.py:881
491 #: rhodecode/apps/admin/views/users.py:885
490 #: rhodecode/apps/admin/views/users.py:880
491 #: rhodecode/apps/admin/views/users.py:884
492 492 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:120
493 493 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:124
494 494 msgid "An error occurred during ssh key saving: {}"
495 495 msgstr ""
496 496
497 #: rhodecode/apps/admin/views/users.py:919
497 #: rhodecode/apps/admin/views/users.py:918
498 498 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:154
499 499 msgid "Ssh key successfully deleted"
500 500 msgstr ""
501 501
502 #: rhodecode/apps/admin/views/users.py:965
502 #: rhodecode/apps/admin/views/users.py:964
503 503 #, python-format
504 504 msgid "Added new email address `%s` for user account"
505 505 msgstr ""
506 506
507 #: rhodecode/apps/admin/views/users.py:971
507 #: rhodecode/apps/admin/views/users.py:970
508 508 msgid "Email `{}` is already registered for another user."
509 509 msgstr ""
510 510
511 #: rhodecode/apps/admin/views/users.py:975
511 #: rhodecode/apps/admin/views/users.py:974
512 512 msgid "An error occurred during email saving"
513 513 msgstr ""
514 514
515 #: rhodecode/apps/admin/views/users.py:1002
515 #: rhodecode/apps/admin/views/users.py:1001
516 516 msgid "Removed email address from user account"
517 517 msgstr ""
518 518
519 #: rhodecode/apps/admin/views/users.py:1048
519 #: rhodecode/apps/admin/views/users.py:1047
520 520 #, python-format
521 521 msgid "An error occurred during ip saving:%s"
522 522 msgstr ""
523 523
524 #: rhodecode/apps/admin/views/users.py:1070
524 #: rhodecode/apps/admin/views/users.py:1069
525 525 msgid "An error occurred during ip saving"
526 526 msgstr ""
527 527
528 #: rhodecode/apps/admin/views/users.py:1074
528 #: rhodecode/apps/admin/views/users.py:1073
529 529 #, python-format
530 530 msgid "Added ips %s to user whitelist"
531 531 msgstr ""
532 532
533 #: rhodecode/apps/admin/views/users.py:1104
533 #: rhodecode/apps/admin/views/users.py:1103
534 534 msgid "Removed ip address from user whitelist"
535 535 msgstr ""
536 536
537 #: rhodecode/apps/admin/views/users.py:1169
537 #: rhodecode/apps/admin/views/users.py:1168
538 538 msgid "Groups successfully changed"
539 539 msgstr ""
540 540
541 #: rhodecode/apps/admin/views/users.py:1263
541 #: rhodecode/apps/admin/views/users.py:1262
542 542 msgid "Deleted {} cache keys"
543 543 msgstr ""
544 544
@@ -562,9 +562,9 b' msgstr ""'
562 562 msgid "1 month"
563 563 msgstr ""
564 564
565 #: rhodecode/apps/gist/views.py:64 rhodecode/public/js/scripts.js:40932
565 #: rhodecode/apps/gist/views.py:64 rhodecode/public/js/scripts.js:44668
566 566 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:25
567 #: rhodecode/public/js/src/rhodecode.js:509
567 #: rhodecode/public/js/src/rhodecode.js:502
568 568 msgid "Lifetime"
569 569 msgstr ""
570 570
@@ -576,16 +576,16 b' msgstr ""'
576 576 msgid "Can be accessed by anonymous users"
577 577 msgstr ""
578 578
579 #: rhodecode/apps/gist/views.py:214
579 #: rhodecode/apps/gist/views.py:213
580 580 msgid "Error occurred during gist creation"
581 581 msgstr ""
582 582
583 #: rhodecode/apps/gist/views.py:238
583 #: rhodecode/apps/gist/views.py:237
584 584 #, python-format
585 585 msgid "Deleted gist %s"
586 586 msgstr ""
587 587
588 #: rhodecode/apps/gist/views.py:324
588 #: rhodecode/apps/gist/views.py:325
589 589 #: rhodecode/templates/admin/gists/show.mako:74
590 590 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:36
591 591 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:36
@@ -593,41 +593,42 b' msgstr ""'
593 593 msgid "never"
594 594 msgstr ""
595 595
596 #: rhodecode/apps/gist/views.py:330
596 #: rhodecode/apps/gist/views.py:331
597 597 #, python-format
598 598 msgid "%(expiry)s - current value"
599 599 msgstr ""
600 600
601 #: rhodecode/apps/gist/views.py:375
601 #: rhodecode/apps/gist/views.py:376
602 602 msgid "Successfully updated gist content"
603 603 msgstr ""
604 604
605 #: rhodecode/apps/gist/views.py:380
605 #: rhodecode/apps/gist/views.py:381
606 606 msgid "Successfully updated gist data"
607 607 msgstr ""
608 608
609 #: rhodecode/apps/gist/views.py:383
609 #: rhodecode/apps/gist/views.py:384
610 610 msgid "Error occurred during update of gist {}: {}"
611 611 msgstr ""
612 612
613 #: rhodecode/apps/gist/views.py:387
613 #: rhodecode/apps/gist/views.py:388
614 614 #, python-format
615 615 msgid "Error occurred during update of gist %s"
616 616 msgstr ""
617 617
618 #: rhodecode/apps/home/views.py:308
618 #: rhodecode/apps/home/views.py:388
619 619 #: rhodecode/apps/repository/views/repo_pull_requests.py:878
620 620 #: rhodecode/templates/admin/my_account/my_account.mako:42
621 621 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:198
622 622 #: rhodecode/templates/admin/repos/repo_add.mako:15
623 623 #: rhodecode/templates/admin/repos/repo_add.mako:19
624 624 #: rhodecode/templates/admin/users/user_edit_advanced.mako:12
625 #: rhodecode/templates/base/base.mako:78 rhodecode/templates/base/base.mako:150
626 #: rhodecode/templates/base/base.mako:785
625 #: rhodecode/templates/base/base.mako:103
626 #: rhodecode/templates/base/base.mako:122
627 #: rhodecode/templates/base/base.mako:944
627 628 msgid "Repositories"
628 629 msgstr ""
629 630
630 #: rhodecode/apps/home/views.py:335
631 #: rhodecode/apps/home/views.py:415
631 632 #: rhodecode/templates/admin/integrations/form.mako:17
632 633 #: rhodecode/templates/admin/integrations/list.mako:10
633 634 #: rhodecode/templates/admin/permissions/permissions_objects.mako:31
@@ -695,11 +696,11 b' msgstr ""'
695 696 msgid "Failed to update bookmarks. Make sure an unique position is used"
696 697 msgstr ""
697 698
698 #: rhodecode/apps/my_account/views/my_account.py:626
699 #: rhodecode/apps/my_account/views/my_account.py:629
699 700 msgid "Your account was updated successfully"
700 701 msgstr ""
701 702
702 #: rhodecode/apps/my_account/views/my_account.py:633
703 #: rhodecode/apps/my_account/views/my_account.py:636
703 704 msgid "Error occurred during update of user"
704 705 msgstr ""
705 706
@@ -746,9 +747,8 b' msgid "There are no commits yet"'
746 747 msgstr ""
747 748
748 749 #: rhodecode/apps/repository/views/repo_changelog.py:71
749 #: rhodecode/apps/repository/views/repo_commits.py:111
750 #: rhodecode/apps/repository/views/repo_files.py:165
751 750 #: rhodecode/apps/repository/views/repo_files.py:185
751 #: rhodecode/apps/repository/views/repo_files.py:205
752 752 msgid "No such commit exists for this repository"
753 753 msgstr ""
754 754
@@ -767,13 +767,17 b' msgstr ""'
767 767 msgid "Created repository %s"
768 768 msgstr ""
769 769
770 #: rhodecode/apps/repository/views/repo_commits.py:327
770 #: rhodecode/apps/repository/views/repo_commits.py:110
771 msgid "No such commit exists. Org exception: `{}`"
772 msgstr ""
773
774 #: rhodecode/apps/repository/views/repo_commits.py:326
771 775 #: rhodecode/apps/repository/views/repo_pull_requests.py:1347
772 776 #, python-format
773 777 msgid "Status change %(transition_icon)s %(status)s"
774 778 msgstr ""
775 779
776 #: rhodecode/apps/repository/views/repo_commits.py:372
780 #: rhodecode/apps/repository/views/repo_commits.py:371
777 781 msgid "Changing the status of a commit associated with a closed pull request is not allowed"
778 782 msgstr ""
779 783
@@ -793,11 +797,11 b' msgstr ""'
793 797 msgid "The comparison of two different kinds of remote repos is not available"
794 798 msgstr ""
795 799
796 #: rhodecode/apps/repository/views/repo_compare.py:231
800 #: rhodecode/apps/repository/views/repo_compare.py:225
797 801 msgid "Could not compare repos with different large file settings"
798 802 msgstr ""
799 803
800 #: rhodecode/apps/repository/views/repo_compare.py:277
804 #: rhodecode/apps/repository/views/repo_compare.py:271
801 805 #, python-format
802 806 msgid "Repositories unrelated. Cannot compare commit %(commit1)s from repository %(repo1)s with commit %(commit2)s from repository %(repo2)s."
803 807 msgstr ""
@@ -812,122 +816,130 b' msgstr ""'
812 816 msgid "%s %s feed"
813 817 msgstr ""
814 818
815 #: rhodecode/apps/repository/views/repo_files.py:95
819 #: rhodecode/apps/repository/views/repo_files.py:96
816 820 #, python-format
817 821 msgid "This repository has been locked by %s on %s"
818 822 msgstr ""
819 823
820 #: rhodecode/apps/repository/views/repo_files.py:111
824 #: rhodecode/apps/repository/views/repo_files.py:109
825 msgid "Cannot modify file. Given commit `{}` is not head of a branch."
826 msgstr ""
827
828 #: rhodecode/apps/repository/views/repo_files.py:127
821 829 msgid "Branch `{}` changes forbidden by rule {}."
822 830 msgstr ""
823 831
824 #: rhodecode/apps/repository/views/repo_files.py:155
832 #: rhodecode/apps/repository/views/repo_files.py:175
825 833 msgid "Click here to add a new file."
826 834 msgstr ""
827 835
828 #: rhodecode/apps/repository/views/repo_files.py:160
836 #: rhodecode/apps/repository/views/repo_files.py:180
829 837 #, python-format
830 838 msgid "There are no files yet. %s"
831 839 msgstr ""
832 840
833 #: rhodecode/apps/repository/views/repo_files.py:297
841 #: rhodecode/apps/repository/views/repo_files.py:325
834 842 msgid "Downloads disabled"
835 843 msgstr ""
836 844
837 #: rhodecode/apps/repository/views/repo_files.py:303
845 #: rhodecode/apps/repository/views/repo_files.py:331
838 846 msgid "Unknown archive type for: `{}`"
839 847 msgstr ""
840 848
841 #: rhodecode/apps/repository/views/repo_files.py:309
849 #: rhodecode/apps/repository/views/repo_files.py:337
842 850 msgid "Unknown commit_id {}"
843 851 msgstr ""
844 852
845 #: rhodecode/apps/repository/views/repo_files.py:312
853 #: rhodecode/apps/repository/views/repo_files.py:340
846 854 msgid "Empty repository"
847 855 msgstr ""
848 856
849 #: rhodecode/apps/repository/views/repo_files.py:344
857 #: rhodecode/apps/repository/views/repo_files.py:345
858 msgid "No node at path {} for this repository"
859 msgstr ""
860
861 #: rhodecode/apps/repository/views/repo_files.py:394
850 862 msgid "Unknown archive type"
851 863 msgstr ""
852 864
853 #: rhodecode/apps/repository/views/repo_files.py:915
865 #: rhodecode/apps/repository/views/repo_files.py:963
854 866 msgid "Changesets"
855 867 msgstr ""
856 868
857 #: rhodecode/apps/repository/views/repo_files.py:936
858 #: rhodecode/apps/repository/views/repo_summary.py:341
859 #: rhodecode/model/pull_request.py:1431 rhodecode/model/scm.py:916
869 #: rhodecode/apps/repository/views/repo_files.py:984
870 #: rhodecode/apps/repository/views/repo_summary.py:346
871 #: rhodecode/model/pull_request.py:1456 rhodecode/model/scm.py:918
860 872 #: rhodecode/templates/base/vcs_settings.mako:235
873 #: rhodecode/templates/summary/components.mako:10
861 874 msgid "Branches"
862 875 msgstr ""
863 876
864 #: rhodecode/apps/repository/views/repo_files.py:940 rhodecode/model/scm.py:931
877 #: rhodecode/apps/repository/views/repo_files.py:988 rhodecode/model/scm.py:933
865 878 #: rhodecode/templates/base/vcs_settings.mako:260
879 #: rhodecode/templates/summary/components.mako:34
866 880 msgid "Tags"
867 881 msgstr ""
868 882
869 #: rhodecode/apps/repository/views/repo_files.py:1039
870 #: rhodecode/apps/repository/views/repo_files.py:1073
871 msgid "You can only delete files with commit being a valid branch head."
872 msgstr ""
873
874 #: rhodecode/apps/repository/views/repo_files.py:1050
875 #: rhodecode/apps/repository/views/repo_files.py:1084
883 #: rhodecode/apps/repository/views/repo_files.py:1092
884 #: rhodecode/apps/repository/views/repo_files.py:1120
876 885 msgid "Deleted file {} via RhodeCode Enterprise"
877 886 msgstr ""
878 887
879 #: rhodecode/apps/repository/views/repo_files.py:1105
888 #: rhodecode/apps/repository/views/repo_files.py:1141
880 889 msgid "Successfully deleted file `{}`"
881 890 msgstr ""
882 891
883 #: rhodecode/apps/repository/views/repo_files.py:1109
884 #: rhodecode/apps/repository/views/repo_files.py:1235
892 #: rhodecode/apps/repository/views/repo_files.py:1145
893 #: rhodecode/apps/repository/views/repo_files.py:1262
885 894 #: rhodecode/apps/repository/views/repo_files.py:1393
895 #: rhodecode/apps/repository/views/repo_files.py:1516
886 896 msgid "Error occurred during commit"
887 897 msgstr ""
888 898
889 #: rhodecode/apps/repository/views/repo_files.py:1129
890 #: rhodecode/apps/repository/views/repo_files.py:1169
891 msgid "You can only edit files with commit being a valid branch head."
892 msgstr ""
893
894 #: rhodecode/apps/repository/views/repo_files.py:1147
895 #: rhodecode/apps/repository/views/repo_files.py:1188
899 #: rhodecode/apps/repository/views/repo_files.py:1177
900 #: rhodecode/apps/repository/views/repo_files.py:1208
896 901 msgid "Edited file {} via RhodeCode Enterprise"
897 902 msgstr ""
898 903
899 #: rhodecode/apps/repository/views/repo_files.py:1206
900 msgid "No changes"
901 msgstr ""
902
903 904 #: rhodecode/apps/repository/views/repo_files.py:1231
904 msgid "Successfully committed changes to file `{}`"
905 msgid "No changes detected on {}"
905 906 msgstr ""
906 907
907 908 #: rhodecode/apps/repository/views/repo_files.py:1255
908 #: rhodecode/apps/repository/views/repo_files.py:1318
909 msgid "Successfully committed changes to file `{}`"
910 msgstr ""
911
912 #: rhodecode/apps/repository/views/repo_files.py:1296
913 #: rhodecode/apps/repository/views/repo_files.py:1337
909 914 msgid "Added file via RhodeCode Enterprise"
910 915 msgstr ""
911 916
912 #: rhodecode/apps/repository/views/repo_files.py:1268
913 #: rhodecode/apps/repository/views/repo_files.py:1309
914 msgid "You can only add files with commit being a valid branch head."
915 msgstr ""
916
917 #: rhodecode/apps/repository/views/repo_files.py:1351
918 msgid "No filename"
919 msgstr ""
920
921 #: rhodecode/apps/repository/views/repo_files.py:1381
917 #: rhodecode/apps/repository/views/repo_files.py:1353
918 msgid "No filename specified"
919 msgstr ""
920
921 #: rhodecode/apps/repository/views/repo_files.py:1378
922 922 msgid "Successfully committed new file `{}`"
923 923 msgstr ""
924 924
925 #: rhodecode/apps/repository/views/repo_files.py:1385
925 #: rhodecode/apps/repository/views/repo_files.py:1386
926 #: rhodecode/apps/repository/views/repo_files.py:1498
926 927 msgid "The location specified must be a relative path and must not contain .. in the path"
927 928 msgstr ""
928 929
930 #: rhodecode/apps/repository/views/repo_files.py:1443
931 msgid "Uploaded file via RhodeCode Enterprise"
932 msgstr ""
933
934 #: rhodecode/apps/repository/views/repo_files.py:1487
935 msgid "Successfully committed {} new files"
936 msgstr ""
937
938 #: rhodecode/apps/repository/views/repo_files.py:1489
939 msgid "Successfully committed 1 new file"
940 msgstr ""
941
929 942 #: rhodecode/apps/repository/views/repo_forks.py:147
930 #: rhodecode/templates/base/base.mako:267
931 943 msgid "Compare fork"
932 944 msgstr ""
933 945
@@ -1035,7 +1047,7 b' msgid "Repository has been %s"'
1035 1047 msgstr ""
1036 1048
1037 1049 #: rhodecode/apps/repository/views/repo_settings.py:219
1038 #: rhodecode/apps/repository/views/repo_settings_advanced.py:296
1050 #: rhodecode/apps/repository/views/repo_settings_advanced.py:290
1039 1051 msgid "An error occurred during unlocking"
1040 1052 msgstr ""
1041 1053
@@ -1043,78 +1055,78 b' msgstr ""'
1043 1055 msgid "An error occurred during deletion of repository stats"
1044 1056 msgstr ""
1045 1057
1046 #: rhodecode/apps/repository/views/repo_settings_advanced.py:105
1058 #: rhodecode/apps/repository/views/repo_settings_advanced.py:99
1047 1059 #, python-format
1048 1060 msgid "Archived repository `%s`"
1049 1061 msgstr ""
1050 1062
1051 #: rhodecode/apps/repository/views/repo_settings_advanced.py:110
1063 #: rhodecode/apps/repository/views/repo_settings_advanced.py:104
1052 1064 #, python-format
1053 1065 msgid "An error occurred during archiving of `%s`"
1054 1066 msgstr ""
1055 1067
1056 #: rhodecode/apps/repository/views/repo_settings_advanced.py:148
1068 #: rhodecode/apps/repository/views/repo_settings_advanced.py:142
1057 1069 #, python-format
1058 1070 msgid "Detached %s forks"
1059 1071 msgstr ""
1060 1072
1061 #: rhodecode/apps/repository/views/repo_settings_advanced.py:150
1073 #: rhodecode/apps/repository/views/repo_settings_advanced.py:144
1062 1074 #, python-format
1063 1075 msgid "Deleted %s forks"
1064 1076 msgstr ""
1065 1077
1066 #: rhodecode/apps/repository/views/repo_settings_advanced.py:159
1078 #: rhodecode/apps/repository/views/repo_settings_advanced.py:153
1067 1079 #, python-format
1068 1080 msgid "Deleted repository `%s`"
1069 1081 msgstr ""
1070 1082
1071 #: rhodecode/apps/repository/views/repo_settings_advanced.py:166
1083 #: rhodecode/apps/repository/views/repo_settings_advanced.py:160
1072 1084 msgid "detach or delete"
1073 1085 msgstr ""
1074 1086
1075 #: rhodecode/apps/repository/views/repo_settings_advanced.py:167
1087 #: rhodecode/apps/repository/views/repo_settings_advanced.py:161
1076 1088 msgid "Cannot delete `{repo}` it still contains attached forks. Try using {delete_or_detach} option."
1077 1089 msgstr ""
1078 1090
1079 #: rhodecode/apps/repository/views/repo_settings_advanced.py:182
1091 #: rhodecode/apps/repository/views/repo_settings_advanced.py:176
1080 1092 msgid "Cannot delete `{repo}` it still contains {num} attached pull requests. Consider archiving the repository instead."
1081 1093 msgstr ""
1082 1094
1083 #: rhodecode/apps/repository/views/repo_settings_advanced.py:191
1095 #: rhodecode/apps/repository/views/repo_settings_advanced.py:185
1084 1096 #, python-format
1085 1097 msgid "An error occurred during deletion of `%s`"
1086 1098 msgstr ""
1087 1099
1088 #: rhodecode/apps/repository/views/repo_settings_advanced.py:216
1100 #: rhodecode/apps/repository/views/repo_settings_advanced.py:210
1089 1101 msgid "Updated repository visibility in public journal"
1090 1102 msgstr ""
1091 1103
1092 #: rhodecode/apps/repository/views/repo_settings_advanced.py:220
1104 #: rhodecode/apps/repository/views/repo_settings_advanced.py:214
1093 1105 msgid "An error occurred during setting this repository in public journal"
1094 1106 msgstr ""
1095 1107
1096 #: rhodecode/apps/repository/views/repo_settings_advanced.py:256
1108 #: rhodecode/apps/repository/views/repo_settings_advanced.py:250
1097 1109 msgid "Nothing"
1098 1110 msgstr ""
1099 1111
1100 #: rhodecode/apps/repository/views/repo_settings_advanced.py:259
1112 #: rhodecode/apps/repository/views/repo_settings_advanced.py:253
1101 1113 #, python-format
1102 1114 msgid "Marked repo %s as fork of %s"
1103 1115 msgstr ""
1104 1116
1105 #: rhodecode/apps/repository/views/repo_settings_advanced.py:266
1117 #: rhodecode/apps/repository/views/repo_settings_advanced.py:260
1106 1118 msgid "An error occurred during this operation"
1107 1119 msgstr ""
1108 1120
1109 #: rhodecode/apps/repository/views/repo_settings_advanced.py:290
1121 #: rhodecode/apps/repository/views/repo_settings_advanced.py:284
1110 1122 msgid "Locked repository"
1111 1123 msgstr ""
1112 1124
1113 #: rhodecode/apps/repository/views/repo_settings_advanced.py:293
1125 #: rhodecode/apps/repository/views/repo_settings_advanced.py:287
1114 1126 msgid "Unlocked repository"
1115 1127 msgstr ""
1116 1128
1117 #: rhodecode/apps/repository/views/repo_settings_advanced.py:313
1129 #: rhodecode/apps/repository/views/repo_settings_advanced.py:307
1118 1130 msgid "installed updated hooks into this repository"
1119 1131 msgstr ""
1120 1132
@@ -1142,21 +1154,23 b' msgstr ""'
1142 1154 msgid "Error occurred during updating repository VCS settings"
1143 1155 msgstr ""
1144 1156
1145 #: rhodecode/apps/repository/views/repo_summary.py:316
1157 #: rhodecode/apps/repository/views/repo_summary.py:322
1146 1158 #: rhodecode/templates/admin/permissions/permissions.mako:42
1147 #: rhodecode/templates/files/files_add.mako:15
1159 #: rhodecode/templates/summary/components.mako:8
1148 1160 msgid "Branch"
1149 1161 msgstr ""
1150 1162
1151 #: rhodecode/apps/repository/views/repo_summary.py:317
1163 #: rhodecode/apps/repository/views/repo_summary.py:323
1164 #: rhodecode/templates/summary/components.mako:32
1152 1165 msgid "Tag"
1153 1166 msgstr ""
1154 1167
1155 #: rhodecode/apps/repository/views/repo_summary.py:318
1168 #: rhodecode/apps/repository/views/repo_summary.py:324
1169 #: rhodecode/templates/summary/components.mako:44
1156 1170 msgid "Bookmark"
1157 1171 msgstr ""
1158 1172
1159 #: rhodecode/apps/repository/views/repo_summary.py:342
1173 #: rhodecode/apps/repository/views/repo_summary.py:347
1160 1174 msgid "Closed branches"
1161 1175 msgstr ""
1162 1176
@@ -1207,7 +1221,6 b' msgid "An error occurred during synchron'
1207 1221 msgstr ""
1208 1222
1209 1223 #: rhodecode/authentication/routes.py:61
1210 #: rhodecode/templates/admin/auth/auth_settings.mako:14
1211 1224 #: rhodecode/templates/admin/auth/plugin_settings.mako:14
1212 1225 msgid "Authentication Plugins"
1213 1226 msgstr ""
@@ -1221,7 +1234,7 b' msgstr ""'
1221 1234 #: rhodecode/model/permission.py:118 rhodecode/model/permission.py:122
1222 1235 #: rhodecode/model/permission.py:126 rhodecode/model/permission.py:130
1223 1236 #: rhodecode/model/validation_schema/schemas/integration_schema.py:195
1224 #: rhodecode/templates/admin/auth/auth_settings.mako:67
1237 #: rhodecode/templates/admin/auth/auth_settings.mako:64
1225 1238 #: rhodecode/templates/admin/integrations/list.mako:71
1226 1239 msgid "Enabled"
1227 1240 msgstr ""
@@ -1375,8 +1388,8 b' msgid "Password to authenticate for give'
1375 1388 msgstr ""
1376 1389
1377 1390 #: rhodecode/authentication/plugins/auth_ldap.py:283
1378 #: rhodecode/integrations/types/webhook.py:89 rhodecode/templates/login.mako:49
1379 #: rhodecode/templates/register.mako:60
1391 #: rhodecode/integrations/types/webhook.py:89 rhodecode/templates/login.mako:51
1392 #: rhodecode/templates/register.mako:62
1380 1393 #: rhodecode/templates/admin/my_account/my_account.mako:30
1381 1394 #: rhodecode/templates/admin/users/user_add.mako:44
1382 1395 #: rhodecode/templates/debug_style/login.html:45
@@ -1650,14 +1663,14 b' msgstr ""'
1650 1663 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:88
1651 1664 #: rhodecode/templates/admin/users/user_edit_emails.mako:63
1652 1665 #: rhodecode/templates/admin/users/user_edit_ips.mako:71
1653 #: rhodecode/templates/admin/users/user_edit_profile.mako:136
1666 #: rhodecode/templates/admin/users/user_edit_profile.mako:135
1654 1667 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:67
1655 1668 #: rhodecode/templates/base/default_perms_box.mako:89
1656 1669 msgid "Reset"
1657 1670 msgstr ""
1658 1671
1659 1672 #: rhodecode/forms/__init__.py:36 rhodecode/templates/admin/gists/show.mako:54
1660 #: rhodecode/templates/admin/integrations/list.mako:181
1673 #: rhodecode/templates/admin/integrations/list.mako:179
1661 1674 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:50
1662 1675 #: rhodecode/templates/admin/my_account/my_account_emails.mako:32
1663 1676 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:33
@@ -1680,12 +1693,13 b' msgstr ""'
1680 1693 #: rhodecode/templates/data_table/_dt_elements.mako:245
1681 1694 #: rhodecode/templates/data_table/_dt_elements.mako:259
1682 1695 #: rhodecode/templates/data_table/_dt_elements.mako:271
1696 #: rhodecode/templates/data_table/_dt_elements.mako:397
1683 1697 #: rhodecode/templates/debug_style/buttons.html:132
1684 #: rhodecode/templates/files/files_source.mako:55
1685 #: rhodecode/templates/files/files_source.mako:59
1686 #: rhodecode/templates/files/files_source.mako:62
1698 #: rhodecode/templates/files/files_source.mako:30
1699 #: rhodecode/templates/files/files_source.mako:37
1700 #: rhodecode/templates/files/files_source.mako:43
1701 #: rhodecode/templates/pullrequests/pullrequest_show.mako:53
1687 1702 #: rhodecode/templates/pullrequests/pullrequest_show.mako:57
1688 #: rhodecode/templates/pullrequests/pullrequest_show.mako:61
1689 1703 msgid "Delete"
1690 1704 msgstr ""
1691 1705
@@ -1720,32 +1734,32 b' msgstr ""'
1720 1734 msgid "Root repositories only"
1721 1735 msgstr ""
1722 1736
1723 #: rhodecode/integrations/views.py:148
1737 #: rhodecode/integrations/views.py:147
1724 1738 msgid "{repo_name} repository"
1725 1739 msgstr ""
1726 1740
1727 #: rhodecode/integrations/views.py:151
1741 #: rhodecode/integrations/views.py:150
1728 1742 msgid "{repo_group_name} repo group"
1729 1743 msgstr ""
1730 1744
1731 #: rhodecode/integrations/views.py:154
1745 #: rhodecode/integrations/views.py:153
1732 1746 #: rhodecode/templates/admin/permissions/permissions.mako:36
1733 1747 msgid "Global"
1734 1748 msgstr ""
1735 1749
1736 #: rhodecode/integrations/views.py:158
1750 #: rhodecode/integrations/views.py:157
1737 1751 msgid "{name} integration"
1738 1752 msgstr ""
1739 1753
1740 #: rhodecode/integrations/views.py:173
1754 #: rhodecode/integrations/views.py:172
1741 1755 msgid "Integration {integration_name} deleted successfully."
1742 1756 msgstr ""
1743 1757
1744 #: rhodecode/integrations/views.py:302
1758 #: rhodecode/integrations/views.py:301
1745 1759 msgid "Errors exist when saving integration settings. Please check the form inputs."
1746 1760 msgstr ""
1747 1761
1748 #: rhodecode/integrations/views.py:327
1762 #: rhodecode/integrations/views.py:326
1749 1763 msgid "Integration {integration_name} updated successfully."
1750 1764 msgstr ""
1751 1765
@@ -1763,13 +1777,13 b' msgid "Email address"'
1763 1777 msgstr ""
1764 1778
1765 1779 #: rhodecode/integrations/types/email.py:174
1766 #: rhodecode/templates/register.mako:93
1767 #: rhodecode/templates/admin/my_account/my_account_profile.mako:48
1780 #: rhodecode/templates/register.mako:95
1781 #: rhodecode/templates/admin/my_account/my_account_profile.mako:55
1768 1782 #: rhodecode/templates/admin/users/user_add.mako:86
1769 #: rhodecode/templates/admin/users/user_edit_profile.mako:65
1770 #: rhodecode/templates/admin/users/users.mako:73
1783 #: rhodecode/templates/admin/users/user_edit_profile.mako:64
1784 #: rhodecode/templates/admin/users/users.mako:76
1771 1785 #: rhodecode/templates/email_templates/user_registration.mako:25
1772 #: rhodecode/templates/users/user_profile.mako:51
1786 #: rhodecode/templates/users/user_profile.mako:58
1773 1787 msgid "Email"
1774 1788 msgstr ""
1775 1789
@@ -1838,20 +1852,20 b' msgid "This can be setup at the <a href='
1838 1852 msgstr ""
1839 1853
1840 1854 #: rhodecode/integrations/types/slack.py:85
1841 #: rhodecode/integrations/types/webhook.py:79 rhodecode/templates/login.mako:42
1842 #: rhodecode/templates/register.mako:46
1855 #: rhodecode/integrations/types/webhook.py:79 rhodecode/templates/login.mako:44
1856 #: rhodecode/templates/register.mako:48
1843 1857 #: rhodecode/templates/admin/admin_log_base.mako:7
1844 #: rhodecode/templates/admin/my_account/my_account_profile.mako:24
1858 #: rhodecode/templates/admin/my_account/my_account_profile.mako:25
1845 1859 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:23
1846 1860 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:45
1847 1861 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:70
1848 1862 #: rhodecode/templates/admin/users/user_add.mako:35
1849 #: rhodecode/templates/admin/users/user_edit_profile.mako:39
1850 #: rhodecode/templates/admin/users/users.mako:71
1863 #: rhodecode/templates/admin/users/user_edit_profile.mako:38
1864 #: rhodecode/templates/admin/users/users.mako:74
1851 1865 #: rhodecode/templates/debug_style/login.html:36
1852 1866 #: rhodecode/templates/email_templates/user_registration.mako:23
1853 #: rhodecode/templates/user_group/profile.mako:46
1854 #: rhodecode/templates/users/user_profile.mako:27
1867 #: rhodecode/templates/user_group/profile.mako:51
1868 #: rhodecode/templates/users/user_profile.mako:28
1855 1869 msgid "Username"
1856 1870 msgstr ""
1857 1871
@@ -2029,7 +2043,7 b' msgid "fork name %s"'
2029 2043 msgstr ""
2030 2044
2031 2045 #: rhodecode/lib/action_parser.py:191
2032 #: rhodecode/templates/pullrequests/pullrequest_show.mako:52
2046 #: rhodecode/templates/pullrequests/pullrequest_show.mako:48
2033 2047 #, python-format
2034 2048 msgid "Pull request #%s"
2035 2049 msgstr ""
@@ -2079,7 +2093,7 b' msgstr ""'
2079 2093 msgid "Click to select line"
2080 2094 msgstr ""
2081 2095
2082 #: rhodecode/lib/helpers.py:1825
2096 #: rhodecode/lib/helpers.py:1857
2083 2097 msgid ""
2084 2098 "Example filter terms:\n"
2085 2099 " repository:vcs\n"
@@ -2101,7 +2115,7 b' msgid ""'
2101 2115 " \"username:test AND repository:test*\"\n"
2102 2116 msgstr ""
2103 2117
2104 #: rhodecode/lib/helpers.py:1849
2118 #: rhodecode/lib/helpers.py:1881
2105 2119 #, python-format
2106 2120 msgid "%s repository is not mapped to db perhaps it was created or renamed from the filesystem please run the application again in order to rescan repositories"
2107 2121 msgstr ""
@@ -2138,7 +2152,7 b' msgstr ""'
2138 2152 msgid "in ${val} and ${detail}"
2139 2153 msgstr ""
2140 2154
2141 #: rhodecode/lib/utils2.py:565 rhodecode/public/js/scripts.js:22091
2155 #: rhodecode/lib/utils2.py:565 rhodecode/public/js/scripts.js:25634
2142 2156 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:92
2143 2157 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:174
2144 2158 msgid "just now"
@@ -2160,7 +2174,7 b' msgstr ""'
2160 2174 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:737
2161 2175 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:764
2162 2176 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:774
2163 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:817
2177 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:815
2164 2178 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:815
2165 2179 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:816
2166 2180 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:816
@@ -2179,7 +2193,7 b' msgstr ""'
2179 2193 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2270
2180 2194 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2321
2181 2195 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2322
2182 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2522 rhodecode/model/db.py:2782
2196 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2522 rhodecode/model/db.py:2959
2183 2197 msgid "Repository no access"
2184 2198 msgstr ""
2185 2199
@@ -2199,7 +2213,7 b' msgstr ""'
2199 2213 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:738
2200 2214 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:765
2201 2215 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:775
2202 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:818
2216 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:816
2203 2217 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:816
2204 2218 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:817
2205 2219 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:817
@@ -2218,7 +2232,7 b' msgstr ""'
2218 2232 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2271
2219 2233 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2322
2220 2234 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2323
2221 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2523 rhodecode/model/db.py:2783
2235 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2523 rhodecode/model/db.py:2960
2222 2236 msgid "Repository read access"
2223 2237 msgstr ""
2224 2238
@@ -2238,7 +2252,7 b' msgstr ""'
2238 2252 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:739
2239 2253 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:766
2240 2254 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:776
2241 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:819
2255 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:817
2242 2256 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:817
2243 2257 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:818
2244 2258 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:818
@@ -2257,7 +2271,7 b' msgstr ""'
2257 2271 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2272
2258 2272 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2323
2259 2273 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2324
2260 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2524 rhodecode/model/db.py:2784
2274 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2524 rhodecode/model/db.py:2961
2261 2275 msgid "Repository write access"
2262 2276 msgstr ""
2263 2277
@@ -2277,7 +2291,7 b' msgstr ""'
2277 2291 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:740
2278 2292 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:767
2279 2293 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:777
2280 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:820
2294 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:818
2281 2295 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:818
2282 2296 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:819
2283 2297 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:819
@@ -2296,7 +2310,7 b' msgstr ""'
2296 2310 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2273
2297 2311 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2324
2298 2312 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2325
2299 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2525 rhodecode/model/db.py:2785
2313 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2525 rhodecode/model/db.py:2962
2300 2314 msgid "Repository admin access"
2301 2315 msgstr ""
2302 2316
@@ -2356,7 +2370,7 b' msgstr ""'
2356 2370 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:758
2357 2371 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:785
2358 2372 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:795
2359 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:838
2373 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:836
2360 2374 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:836
2361 2375 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:837
2362 2376 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:837
@@ -2375,7 +2389,7 b' msgstr ""'
2375 2389 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2291
2376 2390 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2342
2377 2391 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2343
2378 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2543 rhodecode/model/db.py:2808
2392 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2543 rhodecode/model/db.py:2985
2379 2393 msgid "Repository creation disabled"
2380 2394 msgstr ""
2381 2395
@@ -2395,7 +2409,7 b' msgstr ""'
2395 2409 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:759
2396 2410 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:786
2397 2411 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:796
2398 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:839
2412 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:837
2399 2413 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:837
2400 2414 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:838
2401 2415 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:838
@@ -2414,7 +2428,7 b' msgstr ""'
2414 2428 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2292
2415 2429 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2343
2416 2430 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2344
2417 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2544 rhodecode/model/db.py:2809
2431 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2544 rhodecode/model/db.py:2986
2418 2432 msgid "Repository creation enabled"
2419 2433 msgstr ""
2420 2434
@@ -2434,7 +2448,7 b' msgstr ""'
2434 2448 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:763
2435 2449 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:790
2436 2450 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:800
2437 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:843
2451 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:841
2438 2452 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:841
2439 2453 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:842
2440 2454 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:842
@@ -2453,7 +2467,7 b' msgstr ""'
2453 2467 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2296
2454 2468 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2347
2455 2469 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2348
2456 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2548 rhodecode/model/db.py:2813
2470 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2548 rhodecode/model/db.py:2990
2457 2471 msgid "Repository forking disabled"
2458 2472 msgstr ""
2459 2473
@@ -2473,7 +2487,7 b' msgstr ""'
2473 2487 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:764
2474 2488 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:791
2475 2489 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:801
2476 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:844
2490 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:842
2477 2491 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:842
2478 2492 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:843
2479 2493 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:843
@@ -2492,7 +2506,7 b' msgstr ""'
2492 2506 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2297
2493 2507 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2348
2494 2508 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2349
2495 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2549 rhodecode/model/db.py:2814
2509 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2549 rhodecode/model/db.py:2991
2496 2510 msgid "Repository forking enabled"
2497 2511 msgstr ""
2498 2512
@@ -2533,7 +2547,7 b' msgstr ""'
2533 2547 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1090
2534 2548 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1120
2535 2549 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1134
2536 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1177
2550 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1175
2537 2551 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1175
2538 2552 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1184
2539 2553 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1184
@@ -2552,8 +2566,8 b' msgstr ""'
2552 2566 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2910
2553 2567 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3011
2554 2568 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3012
2555 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3230 rhodecode/model/db.py:3535
2556 #: rhodecode/public/js/scripts.js:39894
2569 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3230 rhodecode/model/db.py:3712
2570 #: rhodecode/public/js/scripts.js:43644
2557 2571 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:43
2558 2572 #: rhodecode/public/js/src/rhodecode/pullrequests.js:319
2559 2573 msgid "Not Reviewed"
@@ -2575,7 +2589,7 b' msgstr ""'
2575 2589 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1091
2576 2590 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1121
2577 2591 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1135
2578 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1178
2592 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1176
2579 2593 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1176
2580 2594 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1185
2581 2595 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1185
@@ -2594,7 +2608,7 b' msgstr ""'
2594 2608 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2911
2595 2609 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3012
2596 2610 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3013
2597 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3231 rhodecode/model/db.py:3536
2611 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3231 rhodecode/model/db.py:3713
2598 2612 msgid "Approved"
2599 2613 msgstr ""
2600 2614
@@ -2614,7 +2628,7 b' msgstr ""'
2614 2628 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1092
2615 2629 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1122
2616 2630 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1136
2617 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1179
2631 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1177
2618 2632 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1177
2619 2633 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1186
2620 2634 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1186
@@ -2633,7 +2647,7 b' msgstr ""'
2633 2647 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2912
2634 2648 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3013
2635 2649 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3014
2636 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3232 rhodecode/model/db.py:3537
2650 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3232 rhodecode/model/db.py:3714
2637 2651 msgid "Rejected"
2638 2652 msgstr ""
2639 2653
@@ -2653,7 +2667,7 b' msgstr ""'
2653 2667 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1093
2654 2668 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1123
2655 2669 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1137
2656 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1180
2670 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:1178
2657 2671 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1178
2658 2672 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1187
2659 2673 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1187
@@ -2672,7 +2686,7 b' msgstr ""'
2672 2686 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2913
2673 2687 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3014
2674 2688 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3015
2675 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3233 rhodecode/model/db.py:3538
2689 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3233 rhodecode/model/db.py:3715
2676 2690 msgid "Under Review"
2677 2691 msgstr ""
2678 2692
@@ -2689,7 +2703,7 b' msgstr ""'
2689 2703 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:742
2690 2704 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:769
2691 2705 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:779
2692 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:822
2706 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:820
2693 2707 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:820
2694 2708 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:821
2695 2709 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:821
@@ -2708,7 +2722,7 b' msgstr ""'
2708 2722 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2275
2709 2723 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2326
2710 2724 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2327
2711 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2527 rhodecode/model/db.py:2787
2725 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2527 rhodecode/model/db.py:2964
2712 2726 msgid "Repository group no access"
2713 2727 msgstr ""
2714 2728
@@ -2725,7 +2739,7 b' msgstr ""'
2725 2739 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:743
2726 2740 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:770
2727 2741 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:780
2728 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:823
2742 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:821
2729 2743 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:821
2730 2744 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:822
2731 2745 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:822
@@ -2744,7 +2758,7 b' msgstr ""'
2744 2758 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2276
2745 2759 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2327
2746 2760 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2328
2747 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2528 rhodecode/model/db.py:2788
2761 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2528 rhodecode/model/db.py:2965
2748 2762 msgid "Repository group read access"
2749 2763 msgstr ""
2750 2764
@@ -2761,7 +2775,7 b' msgstr ""'
2761 2775 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:744
2762 2776 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:771
2763 2777 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:781
2764 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:824
2778 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:822
2765 2779 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:822
2766 2780 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:823
2767 2781 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:823
@@ -2780,7 +2794,7 b' msgstr ""'
2780 2794 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2277
2781 2795 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2328
2782 2796 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2329
2783 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2529 rhodecode/model/db.py:2789
2797 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2529 rhodecode/model/db.py:2966
2784 2798 msgid "Repository group write access"
2785 2799 msgstr ""
2786 2800
@@ -2797,7 +2811,7 b' msgstr ""'
2797 2811 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:745
2798 2812 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:772
2799 2813 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:782
2800 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:825
2814 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:823
2801 2815 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:823
2802 2816 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:824
2803 2817 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:824
@@ -2816,7 +2830,7 b' msgstr ""'
2816 2830 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2278
2817 2831 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2329
2818 2832 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2330
2819 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2530 rhodecode/model/db.py:2790
2833 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2530 rhodecode/model/db.py:2967
2820 2834 msgid "Repository group admin access"
2821 2835 msgstr ""
2822 2836
@@ -2832,7 +2846,7 b' msgstr ""'
2832 2846 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:747
2833 2847 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:774
2834 2848 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:784
2835 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:827
2849 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:825
2836 2850 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:825
2837 2851 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:826
2838 2852 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:826
@@ -2851,7 +2865,7 b' msgstr ""'
2851 2865 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2280
2852 2866 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2331
2853 2867 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2332
2854 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2532 rhodecode/model/db.py:2792
2868 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2532 rhodecode/model/db.py:2969
2855 2869 msgid "User group no access"
2856 2870 msgstr ""
2857 2871
@@ -2867,7 +2881,7 b' msgstr ""'
2867 2881 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:748
2868 2882 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:775
2869 2883 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:785
2870 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:828
2884 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:826
2871 2885 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:826
2872 2886 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:827
2873 2887 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:827
@@ -2886,7 +2900,7 b' msgstr ""'
2886 2900 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2281
2887 2901 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2332
2888 2902 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2333
2889 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2533 rhodecode/model/db.py:2793
2903 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2533 rhodecode/model/db.py:2970
2890 2904 msgid "User group read access"
2891 2905 msgstr ""
2892 2906
@@ -2902,7 +2916,7 b' msgstr ""'
2902 2916 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:749
2903 2917 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:776
2904 2918 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:786
2905 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:829
2919 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:827
2906 2920 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:827
2907 2921 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:828
2908 2922 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:828
@@ -2921,7 +2935,7 b' msgstr ""'
2921 2935 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2282
2922 2936 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2333
2923 2937 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2334
2924 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2534 rhodecode/model/db.py:2794
2938 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2534 rhodecode/model/db.py:2971
2925 2939 msgid "User group write access"
2926 2940 msgstr ""
2927 2941
@@ -2937,7 +2951,7 b' msgstr ""'
2937 2951 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:750
2938 2952 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:777
2939 2953 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:787
2940 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:830
2954 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:828
2941 2955 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:828
2942 2956 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:829
2943 2957 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:829
@@ -2956,7 +2970,7 b' msgstr ""'
2956 2970 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2283
2957 2971 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2334
2958 2972 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2335
2959 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2535 rhodecode/model/db.py:2795
2973 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2535 rhodecode/model/db.py:2972
2960 2974 msgid "User group admin access"
2961 2975 msgstr ""
2962 2976
@@ -2972,7 +2986,7 b' msgstr ""'
2972 2986 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:752
2973 2987 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:779
2974 2988 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:789
2975 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:832
2989 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:830
2976 2990 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:830
2977 2991 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:831
2978 2992 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:831
@@ -2991,7 +3005,7 b' msgstr ""'
2991 3005 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2285
2992 3006 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2336
2993 3007 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2337
2994 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2537 rhodecode/model/db.py:2802
3008 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2537 rhodecode/model/db.py:2979
2995 3009 msgid "Repository Group creation disabled"
2996 3010 msgstr ""
2997 3011
@@ -3007,7 +3021,7 b' msgstr ""'
3007 3021 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:753
3008 3022 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:780
3009 3023 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:790
3010 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:833
3024 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:831
3011 3025 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:831
3012 3026 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:832
3013 3027 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:832
@@ -3026,7 +3040,7 b' msgstr ""'
3026 3040 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2286
3027 3041 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2337
3028 3042 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2338
3029 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2538 rhodecode/model/db.py:2803
3043 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2538 rhodecode/model/db.py:2980
3030 3044 msgid "Repository Group creation enabled"
3031 3045 msgstr ""
3032 3046
@@ -3042,7 +3056,7 b' msgstr ""'
3042 3056 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:755
3043 3057 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:782
3044 3058 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:792
3045 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:835
3059 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:833
3046 3060 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:833
3047 3061 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:834
3048 3062 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:834
@@ -3061,7 +3075,7 b' msgstr ""'
3061 3075 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2288
3062 3076 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2339
3063 3077 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2340
3064 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2540 rhodecode/model/db.py:2805
3078 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2540 rhodecode/model/db.py:2982
3065 3079 msgid "User Group creation disabled"
3066 3080 msgstr ""
3067 3081
@@ -3077,7 +3091,7 b' msgstr ""'
3077 3091 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:756
3078 3092 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:783
3079 3093 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:793
3080 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:836
3094 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:834
3081 3095 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:834
3082 3096 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:835
3083 3097 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:835
@@ -3096,7 +3110,7 b' msgstr ""'
3096 3110 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2289
3097 3111 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2340
3098 3112 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2341
3099 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2541 rhodecode/model/db.py:2806
3113 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2541 rhodecode/model/db.py:2983
3100 3114 msgid "User Group creation enabled"
3101 3115 msgstr ""
3102 3116
@@ -3112,7 +3126,7 b' msgstr ""'
3112 3126 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:766
3113 3127 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:793
3114 3128 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:803
3115 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:846
3129 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:844
3116 3130 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:844
3117 3131 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:845
3118 3132 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:845
@@ -3131,7 +3145,7 b' msgstr ""'
3131 3145 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2299
3132 3146 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2350
3133 3147 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2351
3134 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2551 rhodecode/model/db.py:2816
3148 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2551 rhodecode/model/db.py:2993
3135 3149 msgid "Registration disabled"
3136 3150 msgstr ""
3137 3151
@@ -3147,7 +3161,7 b' msgstr ""'
3147 3161 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:767
3148 3162 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:794
3149 3163 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:804
3150 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:847
3164 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:845
3151 3165 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:845
3152 3166 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:846
3153 3167 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:846
@@ -3166,7 +3180,7 b' msgstr ""'
3166 3180 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2300
3167 3181 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2351
3168 3182 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2352
3169 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2552 rhodecode/model/db.py:2817
3183 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2552 rhodecode/model/db.py:2994
3170 3184 msgid "User Registration with manual account activation"
3171 3185 msgstr ""
3172 3186
@@ -3182,7 +3196,7 b' msgstr ""'
3182 3196 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:768
3183 3197 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:795
3184 3198 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:805
3185 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:848
3199 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:846
3186 3200 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:846
3187 3201 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:847
3188 3202 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:847
@@ -3201,7 +3215,7 b' msgstr ""'
3201 3215 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2301
3202 3216 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2352
3203 3217 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2353
3204 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2553 rhodecode/model/db.py:2818
3218 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2553 rhodecode/model/db.py:2995
3205 3219 msgid "User Registration with automatic account activation"
3206 3220 msgstr ""
3207 3221
@@ -3217,7 +3231,7 b' msgstr ""'
3217 3231 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:770
3218 3232 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:797
3219 3233 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:807
3220 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:850
3234 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:848
3221 3235 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:848
3222 3236 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:849
3223 3237 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:849
@@ -3236,7 +3250,7 b' msgstr ""'
3236 3250 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2303
3237 3251 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2358
3238 3252 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2359
3239 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2559 rhodecode/model/db.py:2824
3253 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2559 rhodecode/model/db.py:3001
3240 3254 #: rhodecode/model/permission.py:105
3241 3255 msgid "Manual activation of external account"
3242 3256 msgstr ""
@@ -3253,7 +3267,7 b' msgstr ""'
3253 3267 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:771
3254 3268 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:798
3255 3269 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:808
3256 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:851
3270 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:849
3257 3271 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:849
3258 3272 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:850
3259 3273 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:850
@@ -3272,7 +3286,7 b' msgstr ""'
3272 3286 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2304
3273 3287 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2359
3274 3288 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2360
3275 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2560 rhodecode/model/db.py:2825
3289 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2560 rhodecode/model/db.py:3002
3276 3290 #: rhodecode/model/permission.py:106
3277 3291 msgid "Automatic activation of external account"
3278 3292 msgstr ""
@@ -3283,7 +3297,7 b' msgstr ""'
3283 3297 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:760
3284 3298 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:787
3285 3299 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:797
3286 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:840
3300 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:838
3287 3301 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:838
3288 3302 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:839
3289 3303 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:839
@@ -3302,7 +3316,7 b' msgstr ""'
3302 3316 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2293
3303 3317 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2344
3304 3318 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2345
3305 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2545 rhodecode/model/db.py:2810
3319 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2545 rhodecode/model/db.py:2987
3306 3320 msgid "Repository creation enabled with write permission to a repository group"
3307 3321 msgstr ""
3308 3322
@@ -3312,7 +3326,7 b' msgstr ""'
3312 3326 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:761
3313 3327 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:788
3314 3328 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:798
3315 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:841
3329 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:839
3316 3330 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:839
3317 3331 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:840
3318 3332 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:840
@@ -3331,14 +3345,14 b' msgstr ""'
3331 3345 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2294
3332 3346 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2345
3333 3347 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2346
3334 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2546 rhodecode/model/db.py:2811
3348 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2546 rhodecode/model/db.py:2988
3335 3349 msgid "Repository creation disabled with write permission to a repository group"
3336 3350 msgstr ""
3337 3351
3338 3352 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:735
3339 3353 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:762
3340 3354 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:772
3341 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:815
3355 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:813
3342 3356 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:813
3343 3357 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:814
3344 3358 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:814
@@ -3357,12 +3371,12 b' msgstr ""'
3357 3371 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2268
3358 3372 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2319
3359 3373 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2320
3360 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2520 rhodecode/model/db.py:2780
3374 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2520 rhodecode/model/db.py:2957
3361 3375 msgid "RhodeCode Super Administrator"
3362 3376 msgstr ""
3363 3377
3364 3378 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:810
3365 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:853
3379 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:851
3366 3380 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:851
3367 3381 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:852
3368 3382 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:852
@@ -3381,12 +3395,12 b' msgstr ""'
3381 3395 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2306
3382 3396 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2361
3383 3397 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2362
3384 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2562 rhodecode/model/db.py:2827
3398 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2562 rhodecode/model/db.py:3004
3385 3399 msgid "Inherit object permissions from default user disabled"
3386 3400 msgstr ""
3387 3401
3388 3402 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:811
3389 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:854
3403 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_1.py:852
3390 3404 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:852
3391 3405 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:853
3392 3406 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:853
@@ -3405,7 +3419,7 b' msgstr ""'
3405 3419 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2307
3406 3420 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2362
3407 3421 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2363
3408 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2563 rhodecode/model/db.py:2828
3422 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2563 rhodecode/model/db.py:3005
3409 3423 msgid "Inherit object permissions from default user enabled"
3410 3424 msgstr ""
3411 3425
@@ -3421,7 +3435,7 b' msgstr ""'
3421 3435 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:912
3422 3436 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:955
3423 3437 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:956
3424 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1050 rhodecode/model/db.py:1121
3438 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1050 rhodecode/model/db.py:1134
3425 3439 msgid "all"
3426 3440 msgstr ""
3427 3441
@@ -3437,7 +3451,7 b' msgstr ""'
3437 3451 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:913
3438 3452 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:956
3439 3453 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:957
3440 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1051 rhodecode/model/db.py:1122
3454 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1051 rhodecode/model/db.py:1135
3441 3455 msgid "http/web interface"
3442 3456 msgstr ""
3443 3457
@@ -3453,7 +3467,7 b' msgstr ""'
3453 3467 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:914
3454 3468 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:957
3455 3469 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:958
3456 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1052 rhodecode/model/db.py:1123
3470 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1052 rhodecode/model/db.py:1136
3457 3471 msgid "vcs (git/hg/svn protocol)"
3458 3472 msgstr ""
3459 3473
@@ -3469,7 +3483,7 b' msgstr ""'
3469 3483 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:915
3470 3484 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:958
3471 3485 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:959
3472 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1053 rhodecode/model/db.py:1124
3486 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1053 rhodecode/model/db.py:1137
3473 3487 msgid "api calls"
3474 3488 msgstr ""
3475 3489
@@ -3485,7 +3499,7 b' msgstr ""'
3485 3499 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:916
3486 3500 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:959
3487 3501 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:960
3488 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1054 rhodecode/model/db.py:1125
3502 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1054 rhodecode/model/db.py:1138
3489 3503 msgid "feed access"
3490 3504 msgstr ""
3491 3505
@@ -3501,7 +3515,7 b' msgstr ""'
3501 3515 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2046
3502 3516 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2090
3503 3517 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2091
3504 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2284 rhodecode/model/db.py:2521
3518 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2284 rhodecode/model/db.py:2610
3505 3519 msgid "No parent"
3506 3520 msgstr ""
3507 3521
@@ -3512,7 +3526,7 b' msgstr ""'
3512 3526 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2810
3513 3527 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2354
3514 3528 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2355
3515 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2555 rhodecode/model/db.py:2820
3529 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2555 rhodecode/model/db.py:2997
3516 3530 msgid "Password reset enabled"
3517 3531 msgstr ""
3518 3532
@@ -3523,7 +3537,7 b' msgstr ""'
3523 3537 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2811
3524 3538 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2355
3525 3539 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2356
3526 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2556 rhodecode/model/db.py:2821
3540 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2556 rhodecode/model/db.py:2998
3527 3541 msgid "Password reset hidden"
3528 3542 msgstr ""
3529 3543
@@ -3534,7 +3548,7 b' msgstr ""'
3534 3548 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2812
3535 3549 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2356
3536 3550 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2357
3537 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2557 rhodecode/model/db.py:2822
3551 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2557 rhodecode/model/db.py:2999
3538 3552 msgid "Password reset disabled"
3539 3553 msgstr ""
3540 3554
@@ -3542,7 +3556,7 b' msgstr ""'
3542 3556 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2754
3543 3557 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2787
3544 3558 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2787
3545 #: rhodecode/model/db.py:2797
3559 #: rhodecode/model/db.py:2974
3546 3560 msgid "Branch no permissions"
3547 3561 msgstr ""
3548 3562
@@ -3550,7 +3564,7 b' msgstr ""'
3550 3564 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2755
3551 3565 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2788
3552 3566 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2788
3553 #: rhodecode/model/db.py:2798
3567 #: rhodecode/model/db.py:2975
3554 3568 msgid "Branch access by web merge"
3555 3569 msgstr ""
3556 3570
@@ -3558,7 +3572,7 b' msgstr ""'
3558 3572 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2756
3559 3573 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2789
3560 3574 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2789
3561 #: rhodecode/model/db.py:2799
3575 #: rhodecode/model/db.py:2976
3562 3576 msgid "Branch access by push"
3563 3577 msgstr ""
3564 3578
@@ -3566,7 +3580,7 b' msgstr ""'
3566 3580 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2757
3567 3581 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2790
3568 3582 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2790
3569 #: rhodecode/model/db.py:2800
3583 #: rhodecode/model/db.py:2977
3570 3584 msgid "Branch access by push with force"
3571 3585 msgstr ""
3572 3586
@@ -3590,51 +3604,51 b' msgstr ""'
3590 3604 msgid "Commit index"
3591 3605 msgstr ""
3592 3606
3593 #: rhodecode/lib/vcs/backends/base.py:147
3607 #: rhodecode/lib/vcs/backends/base.py:150
3594 3608 msgid "This pull request can be automatically merged."
3595 3609 msgstr ""
3596 3610
3597 #: rhodecode/lib/vcs/backends/base.py:149
3598 msgid "This pull request cannot be merged because of an unhandled exception. {exception}"
3599 msgstr ""
3600
3601 3611 #: rhodecode/lib/vcs/backends/base.py:152
3612 msgid "This pull request cannot be merged because of an unhandled exception. {exception}"
3613 msgstr ""
3614
3615 #: rhodecode/lib/vcs/backends/base.py:155
3602 3616 msgid "This pull request cannot be merged because of merge conflicts."
3603 3617 msgstr ""
3604 3618
3605 #: rhodecode/lib/vcs/backends/base.py:154
3606 msgid "This pull request could not be merged because push to target:`{target}@{merge_commit}` failed."
3607 msgstr ""
3608
3609 3619 #: rhodecode/lib/vcs/backends/base.py:157
3610 msgid "This pull request cannot be merged because the target `{target_ref.name}` is not a head."
3620 msgid "This pull request could not be merged because push to target:`{target}@{merge_commit}` failed."
3611 3621 msgstr ""
3612 3622
3613 3623 #: rhodecode/lib/vcs/backends/base.py:160
3614 msgid "This pull request cannot be merged because the source contains more branches than the target."
3624 msgid "This pull request cannot be merged because the target `{target_ref.name}` is not a head."
3615 3625 msgstr ""
3616 3626
3617 3627 #: rhodecode/lib/vcs/backends/base.py:163
3618 msgid "This pull request cannot be merged because the target has multiple heads: `{heads}`."
3628 msgid "This pull request cannot be merged because the source contains more branches than the target."
3619 3629 msgstr ""
3620 3630
3621 3631 #: rhodecode/lib/vcs/backends/base.py:166
3632 msgid "This pull request cannot be merged because the target `{target_ref.name}` has multiple heads: `{heads}`."
3633 msgstr ""
3634
3635 #: rhodecode/lib/vcs/backends/base.py:169
3622 3636 msgid "This pull request cannot be merged because the target repository is locked by {locked_by}."
3623 3637 msgstr ""
3624 3638
3625 #: rhodecode/lib/vcs/backends/base.py:170
3626 msgid "This pull request cannot be merged because the target reference `{target_ref.name}` is missing."
3627 msgstr ""
3628
3629 3639 #: rhodecode/lib/vcs/backends/base.py:173
3630 msgid "This pull request cannot be merged because the source reference `{source_ref.name}` is missing."
3640 msgid "This pull request cannot be merged because the target reference `{target_ref.name}` is missing."
3631 3641 msgstr ""
3632 3642
3633 3643 #: rhodecode/lib/vcs/backends/base.py:176
3644 msgid "This pull request cannot be merged because the source reference `{source_ref.name}` is missing."
3645 msgstr ""
3646
3647 #: rhodecode/lib/vcs/backends/base.py:179
3634 3648 msgid "This pull request cannot be merged because of conflicts related to sub repositories."
3635 3649 msgstr ""
3636 3650
3637 #: rhodecode/lib/vcs/backends/base.py:181
3651 #: rhodecode/lib/vcs/backends/base.py:184
3638 3652 msgid "This pull request cannot be merged because the target or the source reference is missing."
3639 3653 msgstr ""
3640 3654
@@ -3654,11 +3668,11 b' msgstr ""'
3654 3668 msgid "1 month {end_date}"
3655 3669 msgstr ""
3656 3670
3657 #: rhodecode/model/comment.py:412
3671 #: rhodecode/model/comment.py:422
3658 3672 msgid "made a comment"
3659 3673 msgstr ""
3660 3674
3661 #: rhodecode/model/comment.py:413
3675 #: rhodecode/model/comment.py:423
3662 3676 msgid "Show it now"
3663 3677 msgstr ""
3664 3678
@@ -3764,39 +3778,34 b' msgstr ""'
3764 3778 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:13
3765 3779 #: rhodecode/templates/changeset/changeset_file_comment.mako:273
3766 3780 #: rhodecode/templates/changeset/changeset_file_comment.mako:323
3767 #: rhodecode/templates/data_table/_dt_elements.mako:387
3781 #: rhodecode/templates/data_table/_dt_elements.mako:411
3768 3782 msgid "Write"
3769 3783 msgstr ""
3770 3784
3771 3785 #: rhodecode/model/permission.py:74 rhodecode/model/permission.py:80
3772 3786 #: rhodecode/model/permission.py:86
3773 #: rhodecode/templates/admin/auth/auth_settings.mako:12
3774 3787 #: rhodecode/templates/admin/auth/plugin_settings.mako:12
3775 3788 #: rhodecode/templates/admin/defaults/defaults.mako:12
3776 3789 #: rhodecode/templates/admin/integrations/base.mako:21
3777 3790 #: rhodecode/templates/admin/integrations/form.mako:15
3778 3791 #: rhodecode/templates/admin/integrations/form.mako:28
3792 #: rhodecode/templates/admin/integrations/global.mako:12
3779 3793 #: rhodecode/templates/admin/integrations/list.mako:8
3780 3794 #: rhodecode/templates/admin/integrations/list.mako:14
3781 3795 #: rhodecode/templates/admin/integrations/new.mako:11
3782 3796 #: rhodecode/templates/admin/permissions/permissions.mako:12
3783 3797 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:12
3784 3798 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:14
3785 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:13
3786 3799 #: rhodecode/templates/admin/repos/repo_add.mako:13
3787 3800 #: rhodecode/templates/admin/repos/repo_add.mako:17
3788 3801 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:14
3789 #: rhodecode/templates/admin/repos/repos.mako:13
3790 3802 #: rhodecode/templates/admin/settings/settings.mako:12
3791 3803 #: rhodecode/templates/admin/user_groups/user_group_add.mako:11
3792 3804 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:12
3793 3805 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:14
3794 #: rhodecode/templates/admin/user_groups/user_groups.mako:13
3795 3806 #: rhodecode/templates/admin/users/user_add.mako:11
3796 3807 #: rhodecode/templates/admin/users/user_edit.mako:12
3797 #: rhodecode/templates/admin/users/users.mako:13
3798 #: rhodecode/templates/base/base.mako:536
3799 #: rhodecode/templates/base/base.mako:543
3808 #: rhodecode/templates/base/base.mako:639
3800 3809 msgid "Admin"
3801 3810 msgstr ""
3802 3811
@@ -3867,77 +3876,79 b' msgstr ""'
3867 3876 msgid "This pull request cannot be updated because the source reference is missing."
3868 3877 msgstr ""
3869 3878
3870 #: rhodecode/model/pull_request.py:1227
3879 #: rhodecode/model/pull_request.py:1240
3871 3880 msgid "Server-side pull request merging is disabled."
3872 3881 msgstr ""
3873 3882
3874 #: rhodecode/model/pull_request.py:1229
3883 #: rhodecode/model/pull_request.py:1242
3875 3884 msgid "This pull request is closed."
3876 3885 msgstr ""
3877 3886
3878 #: rhodecode/model/pull_request.py:1243
3887 #: rhodecode/model/pull_request.py:1256
3879 3888 msgid "Pull request merging is not supported."
3880 3889 msgstr ""
3881 3890
3882 #: rhodecode/model/pull_request.py:1262
3891 #: rhodecode/model/pull_request.py:1275
3883 3892 msgid "Target repository large files support is disabled."
3884 3893 msgstr ""
3885 3894
3886 #: rhodecode/model/pull_request.py:1265
3895 #: rhodecode/model/pull_request.py:1278
3887 3896 msgid "Source repository large files support is disabled."
3888 3897 msgstr ""
3889 3898
3890 #: rhodecode/model/pull_request.py:1430 rhodecode/model/scm.py:924
3899 #: rhodecode/model/pull_request.py:1455 rhodecode/model/scm.py:926
3891 3900 #: rhodecode/templates/admin/my_account/my_account.mako:31
3892 #: rhodecode/templates/base/base.mako:404
3901 #: rhodecode/templates/base/base.mako:469
3902 #: rhodecode/templates/summary/components.mako:46
3893 3903 msgid "Bookmarks"
3894 3904 msgstr ""
3895 3905
3896 #: rhodecode/model/pull_request.py:1435
3906 #: rhodecode/model/pull_request.py:1460
3897 3907 msgid "Commit IDs"
3898 3908 msgstr ""
3899 3909
3900 #: rhodecode/model/pull_request.py:1438
3910 #: rhodecode/model/pull_request.py:1463
3911 #: rhodecode/templates/summary/components.mako:22
3901 3912 msgid "Closed Branches"
3902 3913 msgstr ""
3903 3914
3904 #: rhodecode/model/pull_request.py:1603
3915 #: rhodecode/model/pull_request.py:1629
3905 3916 msgid "User `{}` not allowed to perform merge."
3906 3917 msgstr ""
3907 3918
3908 #: rhodecode/model/pull_request.py:1621
3919 #: rhodecode/model/pull_request.py:1647
3909 3920 msgid "Target branch `{}` changes rejected by rule {}."
3910 3921 msgstr ""
3911 3922
3912 #: rhodecode/model/pull_request.py:1635
3923 #: rhodecode/model/pull_request.py:1661
3913 3924 msgid "Pull request reviewer approval is pending."
3914 3925 msgstr ""
3915 3926
3916 #: rhodecode/model/pull_request.py:1649
3927 #: rhodecode/model/pull_request.py:1675
3917 3928 msgid "Cannot merge, {} TODO still not resolved."
3918 3929 msgstr ""
3919 3930
3920 #: rhodecode/model/pull_request.py:1652
3931 #: rhodecode/model/pull_request.py:1678
3921 3932 msgid "Cannot merge, {} TODOs still not resolved."
3922 3933 msgstr ""
3923 3934
3924 #: rhodecode/model/pull_request.py:1687
3935 #: rhodecode/model/pull_request.py:1713
3925 3936 msgid "Merge strategy: rebase"
3926 3937 msgstr ""
3927 3938
3928 #: rhodecode/model/pull_request.py:1692
3939 #: rhodecode/model/pull_request.py:1718
3929 3940 msgid "Merge strategy: explicit merge commit"
3930 3941 msgstr ""
3931 3942
3932 #: rhodecode/model/pull_request.py:1700
3943 #: rhodecode/model/pull_request.py:1726
3933 3944 msgid "Source branch will be closed after merge."
3934 3945 msgstr ""
3935 3946
3936 #: rhodecode/model/pull_request.py:1702
3947 #: rhodecode/model/pull_request.py:1728
3937 3948 msgid "Source branch will be deleted after merge."
3938 3949 msgstr ""
3939 3950
3940 #: rhodecode/model/scm.py:902
3951 #: rhodecode/model/scm.py:904
3941 3952 msgid "latest tip"
3942 3953 msgstr ""
3943 3954
@@ -4279,400 +4290,398 b' msgstr ""'
4279 4290 msgid ": , "
4280 4291 msgstr ""
4281 4292
4282 #: rhodecode/public/js/scripts.js:20578
4293 #: rhodecode/public/js/scripts.js:24109
4283 4294 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:38
4284 4295 #: rhodecode/public/js/src/plugins/jquery.autocomplete.js:87
4285 4296 msgid "No results"
4286 4297 msgstr ""
4287 4298
4288 #: rhodecode/public/js/scripts.js:22026
4299 #: rhodecode/public/js/scripts.js:25569
4289 4300 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:121
4290 4301 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:109
4291 4302 msgid "{0} year"
4292 4303 msgstr ""
4293 4304
4294 #: rhodecode/public/js/scripts.js:22027
4305 #: rhodecode/public/js/scripts.js:25570
4295 4306 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:113
4296 4307 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:110
4297 4308 msgid "{0} month"
4298 4309 msgstr ""
4299 4310
4300 #: rhodecode/public/js/scripts.js:22028
4311 #: rhodecode/public/js/scripts.js:25571
4301 4312 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:108
4302 4313 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:111
4303 4314 msgid "{0} day"
4304 4315 msgstr ""
4305 4316
4306 #: rhodecode/public/js/scripts.js:22029
4317 #: rhodecode/public/js/scripts.js:25572
4307 4318 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:110
4308 4319 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:112
4309 4320 msgid "{0} hour"
4310 4321 msgstr ""
4311 4322
4312 #: rhodecode/public/js/scripts.js:22030
4323 #: rhodecode/public/js/scripts.js:25573
4313 4324 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:112
4314 4325 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:113
4315 4326 msgid "{0} min"
4316 4327 msgstr ""
4317 4328
4318 #: rhodecode/public/js/scripts.js:22031
4329 #: rhodecode/public/js/scripts.js:25574
4319 4330 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:118
4320 4331 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:114
4321 4332 msgid "{0} sec"
4322 4333 msgstr ""
4323 4334
4324 #: rhodecode/public/js/scripts.js:22051
4335 #: rhodecode/public/js/scripts.js:25594
4325 4336 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:89
4326 4337 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:134
4327 4338 msgid "in {0}"
4328 4339 msgstr ""
4329 4340
4330 #: rhodecode/public/js/scripts.js:22059
4341 #: rhodecode/public/js/scripts.js:25602
4331 4342 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:105
4332 4343 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:142
4333 4344 msgid "{0} ago"
4334 4345 msgstr ""
4335 4346
4336 #: rhodecode/public/js/scripts.js:22071
4347 #: rhodecode/public/js/scripts.js:25614
4337 4348 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:123
4338 4349 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:154
4339 4350 msgid "{0}, {1} ago"
4340 4351 msgstr ""
4341 4352
4342 #: rhodecode/public/js/scripts.js:22073
4353 #: rhodecode/public/js/scripts.js:25616
4343 4354 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:91
4344 4355 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:156
4345 4356 msgid "in {0}, {1}"
4346 4357 msgstr ""
4347 4358
4348 #: rhodecode/public/js/scripts.js:22077
4359 #: rhodecode/public/js/scripts.js:25620
4349 4360 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:106
4350 4361 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:160
4351 4362 msgid "{0} and {1}"
4352 4363 msgstr ""
4353 4364
4354 #: rhodecode/public/js/scripts.js:22079
4365 #: rhodecode/public/js/scripts.js:25622
4355 4366 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:107
4356 4367 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:162
4357 4368 msgid "{0} and {1} ago"
4358 4369 msgstr ""
4359 4370
4360 #: rhodecode/public/js/scripts.js:22081
4371 #: rhodecode/public/js/scripts.js:25624
4361 4372 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:90
4362 4373 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:164
4363 4374 msgid "in {0} and {1}"
4364 4375 msgstr ""
4365 4376
4366 #: rhodecode/public/js/scripts.js:36140
4377 #: rhodecode/public/js/scripts.js:39683
4367 4378 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:28
4368 4379 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:4
4369 4380 msgid "Loading more results..."
4370 4381 msgstr ""
4371 4382
4372 #: rhodecode/public/js/scripts.js:36143
4383 #: rhodecode/public/js/scripts.js:39686
4373 4384 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:54
4374 4385 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:7
4375 4386 msgid "Searching..."
4376 4387 msgstr ""
4377 4388
4378 #: rhodecode/public/js/scripts.js:36146
4389 #: rhodecode/public/js/scripts.js:39689
4379 4390 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:33
4380 4391 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:10
4381 4392 msgid "No matches found"
4382 4393 msgstr ""
4383 4394
4384 #: rhodecode/public/js/scripts.js:36149
4395 #: rhodecode/public/js/scripts.js:39692
4385 4396 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:27
4386 4397 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:13
4387 4398 msgid "Loading failed"
4388 4399 msgstr ""
4389 4400
4390 #: rhodecode/public/js/scripts.js:36153
4401 #: rhodecode/public/js/scripts.js:39696
4391 4402 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:45
4392 4403 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:17
4393 4404 msgid "One result is available, press enter to select it."
4394 4405 msgstr ""
4395 4406
4396 #: rhodecode/public/js/scripts.js:36155
4407 #: rhodecode/public/js/scripts.js:39698
4397 4408 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:117
4398 4409 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:19
4399 4410 msgid "{0} results are available, use up and down arrow keys to navigate."
4400 4411 msgstr ""
4401 4412
4402 #: rhodecode/public/js/scripts.js:36160
4413 #: rhodecode/public/js/scripts.js:39703
4403 4414 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:50
4404 4415 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:24
4405 4416 msgid "Please enter {0} or more character"
4406 4417 msgstr ""
4407 4418
4408 #: rhodecode/public/js/scripts.js:36162
4419 #: rhodecode/public/js/scripts.js:39705
4409 4420 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:51
4410 4421 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:26
4411 4422 msgid "Please enter {0} or more characters"
4412 4423 msgstr ""
4413 4424
4414 #: rhodecode/public/js/scripts.js:36167
4425 #: rhodecode/public/js/scripts.js:39710
4415 4426 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:48
4416 4427 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:31
4417 4428 msgid "Please delete {0} character"
4418 4429 msgstr ""
4419 4430
4420 #: rhodecode/public/js/scripts.js:36169
4431 #: rhodecode/public/js/scripts.js:39712
4421 4432 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:49
4422 4433 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:33
4423 4434 msgid "Please delete {0} characters"
4424 4435 msgstr ""
4425 4436
4426 #: rhodecode/public/js/scripts.js:36173
4437 #: rhodecode/public/js/scripts.js:39716
4427 4438 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:80
4428 4439 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:37
4429 4440 msgid "You can only select {0} item"
4430 4441 msgstr ""
4431 4442
4432 #: rhodecode/public/js/scripts.js:36175
4443 #: rhodecode/public/js/scripts.js:39718
4433 4444 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:81
4434 4445 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:39
4435 4446 msgid "You can only select {0} items"
4436 4447 msgstr ""
4437 4448
4438 #: rhodecode/public/js/scripts.js:37113
4449 #: rhodecode/public/js/scripts.js:40656
4439 4450 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:97
4440 4451 #: rhodecode/public/js/src/rhodecode/changelog.js:35
4441 4452 msgid "showing {0} out of {1} commit"
4442 4453 msgstr ""
4443 4454
4444 #: rhodecode/public/js/scripts.js:37115
4455 #: rhodecode/public/js/scripts.js:40658
4445 4456 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:98
4446 4457 #: rhodecode/public/js/src/rhodecode/changelog.js:37
4447 4458 msgid "showing {0} out of {1} commits"
4448 4459 msgstr ""
4449 4460
4450 #: rhodecode/public/js/scripts.js:37627
4461 #: rhodecode/public/js/scripts.js:41194
4451 4462 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:57
4452 #: rhodecode/public/js/src/rhodecode/codemirror.js:359
4463 #: rhodecode/public/js/src/rhodecode/codemirror.js:364
4453 4464 msgid "Set status to Approved"
4454 4465 msgstr ""
4455 4466
4456 #: rhodecode/public/js/scripts.js:37646
4467 #: rhodecode/public/js/scripts.js:41213
4457 4468 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:58
4458 #: rhodecode/public/js/src/rhodecode/codemirror.js:378
4469 #: rhodecode/public/js/src/rhodecode/codemirror.js:383
4459 4470 msgid "Set status to Rejected"
4460 4471 msgstr ""
4461 4472
4462 #: rhodecode/public/js/scripts.js:37665
4473 #: rhodecode/public/js/scripts.js:41232
4463 4474 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:72
4464 #: rhodecode/public/js/src/rhodecode/codemirror.js:397
4475 #: rhodecode/public/js/src/rhodecode/codemirror.js:402
4465 4476 #: rhodecode/templates/email_templates/commit_comment.mako:102
4466 4477 #: rhodecode/templates/email_templates/pull_request_comment.mako:107
4467 4478 msgid "TODO comment"
4468 4479 msgstr ""
4469 4480
4470 #: rhodecode/public/js/scripts.js:37685
4481 #: rhodecode/public/js/scripts.js:41252
4471 4482 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:44
4472 #: rhodecode/public/js/src/rhodecode/codemirror.js:417
4483 #: rhodecode/public/js/src/rhodecode/codemirror.js:422
4473 4484 msgid "Note Comment"
4474 4485 msgstr ""
4475 4486
4476 #: rhodecode/public/js/scripts.js:37998 rhodecode/public/js/scripts.js:38352
4487 #: rhodecode/public/js/scripts.js:41553 rhodecode/public/js/scripts.js:41907
4477 4488 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:67
4478 #: rhodecode/public/js/src/rhodecode/codemirror.js:730
4489 #: rhodecode/public/js/src/rhodecode/codemirror.js:723
4479 4490 #: rhodecode/public/js/src/rhodecode/comments.js:233
4480 4491 msgid "Status Review"
4481 4492 msgstr ""
4482 4493
4483 #: rhodecode/public/js/scripts.js:38013 rhodecode/public/js/scripts.js:38367
4494 #: rhodecode/public/js/scripts.js:41568 rhodecode/public/js/scripts.js:41922
4484 4495 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:12
4485 #: rhodecode/public/js/src/rhodecode/codemirror.js:745
4496 #: rhodecode/public/js/src/rhodecode/codemirror.js:738
4486 4497 #: rhodecode/public/js/src/rhodecode/comments.js:248
4487 4498 msgid "Comment text will be set automatically based on currently selected status ({0}) ..."
4488 4499 msgstr ""
4489 4500
4490 #: rhodecode/public/js/scripts.js:38094 rhodecode/public/js/scripts.js:38562
4501 #: rhodecode/public/js/scripts.js:41649 rhodecode/public/js/scripts.js:42117
4502 #: rhodecode/public/js/scripts.js:43030
4491 4503 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:26
4492 #: rhodecode/public/js/src/rhodecode/codemirror.js:826
4504 #: rhodecode/public/js/src/rhodecode/codemirror.js:819
4493 4505 #: rhodecode/public/js/src/rhodecode/comments.js:443
4494 #: rhodecode/templates/files/files_browser_tree.mako:51
4506 #: rhodecode/public/js/src/rhodecode/files.js:493
4507 #: rhodecode/templates/files/files_browser_tree.mako:52
4495 4508 msgid "Loading ..."
4496 4509 msgstr ""
4497 4510
4498 #: rhodecode/public/js/scripts.js:38268
4511 #: rhodecode/public/js/scripts.js:41823
4499 4512 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:96
4500 4513 #: rhodecode/public/js/src/rhodecode/comments.js:149
4501 4514 msgid "resolve comment"
4502 4515 msgstr ""
4503 4516
4504 #: rhodecode/public/js/scripts.js:38511
4517 #: rhodecode/public/js/scripts.js:42066
4505 4518 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:69
4506 4519 #: rhodecode/public/js/src/rhodecode/comments.js:392
4507 4520 msgid "Submitting..."
4508 4521 msgstr ""
4509 4522
4510 #: rhodecode/public/js/scripts.js:38676
4523 #: rhodecode/public/js/scripts.js:42231
4511 4524 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:15
4512 4525 #: rhodecode/public/js/src/rhodecode/comments.js:557
4513 4526 msgid "Delete this comment?"
4514 4527 msgstr ""
4515 4528
4516 #: rhodecode/public/js/scripts.js:38748
4529 #: rhodecode/public/js/scripts.js:42305
4517 4530 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:24
4518 #: rhodecode/public/js/src/rhodecode/comments.js:629
4531 #: rhodecode/public/js/src/rhodecode/comments.js:631
4519 4532 msgid "Leave a comment, or click resolve button to resolve TODO comment #{0}"
4520 4533 msgstr ""
4521 4534
4522 #: rhodecode/public/js/scripts.js:38825
4535 #: rhodecode/public/js/scripts.js:42382
4523 4536 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:23
4524 #: rhodecode/public/js/src/rhodecode/comments.js:706
4537 #: rhodecode/public/js/src/rhodecode/comments.js:708
4525 4538 msgid "Leave a comment on line {0}."
4526 4539 msgstr ""
4527 4540
4528 #: rhodecode/public/js/scripts.js:38950
4541 #: rhodecode/public/js/scripts.js:42507
4529 4542 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:73
4530 #: rhodecode/public/js/src/rhodecode/comments.js:831
4543 #: rhodecode/public/js/src/rhodecode/comments.js:833
4531 4544 msgid "TODO from comment {0} was fixed."
4532 4545 msgstr ""
4533 4546
4534 #: rhodecode/public/js/scripts.js:39131
4547 #: rhodecode/public/js/scripts.js:42785
4535 4548 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:100
4536 #: rhodecode/public/js/src/rhodecode/files.js:151
4549 #: rhodecode/public/js/src/rhodecode/files.js:248
4537 4550 msgid "truncated result"
4538 4551 msgstr ""
4539 4552
4540 #: rhodecode/public/js/scripts.js:39133
4553 #: rhodecode/public/js/scripts.js:42787
4541 4554 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:101
4542 #: rhodecode/public/js/src/rhodecode/files.js:153
4555 #: rhodecode/public/js/src/rhodecode/files.js:250
4543 4556 msgid "truncated results"
4544 4557 msgstr ""
4545 4558
4546 #: rhodecode/public/js/scripts.js:39142
4559 #: rhodecode/public/js/scripts.js:42796
4547 4560 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:34
4548 #: rhodecode/public/js/src/rhodecode/files.js:162
4561 #: rhodecode/public/js/src/rhodecode/files.js:259
4549 4562 msgid "No matching files"
4550 4563 msgstr ""
4551 4564
4552 #: rhodecode/public/js/scripts.js:39277
4565 #: rhodecode/public/js/scripts.js:42854
4553 4566 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:55
4554 #: rhodecode/public/js/src/rhodecode/files.js:297
4567 #: rhodecode/public/js/src/rhodecode/files.js:317
4555 4568 msgid "Selection link"
4556 4569 msgstr ""
4557 4570
4558 #: rhodecode/public/js/scripts.js:39317
4559 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:68
4571 #: rhodecode/public/js/scripts.js:42946
4572 #: rhodecode/public/js/src/rhodecode/files.js:409
4573 msgid "All Authors"
4574 msgstr ""
4575
4576 #: rhodecode/public/js/scripts.js:43081
4560 4577 #: rhodecode/public/js/src/rhodecode/followers.js:26
4561 msgid "Stop following this repository"
4562 msgstr ""
4563
4564 #: rhodecode/public/js/scripts.js:39318
4565 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:76
4578 msgid "Stopped watching this repository"
4579 msgstr ""
4580
4581 #: rhodecode/public/js/scripts.js:43082
4566 4582 #: rhodecode/public/js/src/rhodecode/followers.js:27
4567 msgid "Unfollow"
4568 msgstr ""
4569
4570 #: rhodecode/public/js/scripts.js:39327
4571 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:66
4572 #: rhodecode/public/js/src/rhodecode/followers.js:36
4573 msgid "Start following this repository"
4574 msgstr ""
4575
4576 #: rhodecode/public/js/scripts.js:39328
4577 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:19
4578 #: rhodecode/public/js/src/rhodecode/followers.js:37
4579 msgid "Follow"
4580 msgstr ""
4581
4582 #: rhodecode/public/js/scripts.js:39709
4583 #: rhodecode/templates/base/base.mako:226
4584 msgid "Watch"
4585 msgstr ""
4586
4587 #: rhodecode/public/js/scripts.js:43085
4588 #: rhodecode/public/js/src/rhodecode/followers.js:30
4589 msgid "Started watching this repository"
4590 msgstr ""
4591
4592 #: rhodecode/public/js/scripts.js:43086
4593 #: rhodecode/public/js/src/rhodecode/followers.js:31
4594 #: rhodecode/templates/base/base.mako:224
4595 msgid "Unwatch"
4596 msgstr ""
4597
4598 #: rhodecode/public/js/scripts.js:43459
4583 4599 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:6
4584 4600 #: rhodecode/public/js/src/rhodecode/pullrequests.js:134
4585 4601 msgid "All reviewers must vote."
4586 4602 msgstr ""
4587 4603
4588 #: rhodecode/public/js/scripts.js:39718
4604 #: rhodecode/public/js/scripts.js:43468
4589 4605 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:5
4590 4606 #: rhodecode/public/js/src/rhodecode/pullrequests.js:143
4591 4607 msgid "All individual reviewers must vote."
4592 4608 msgstr ""
4593 4609
4594 #: rhodecode/public/js/scripts.js:39723
4610 #: rhodecode/public/js/scripts.js:43473
4595 4611 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:7
4596 4612 #: rhodecode/public/js/src/rhodecode/pullrequests.js:148
4597 4613 msgid "At least {0} reviewer must vote."
4598 4614 msgstr ""
4599 4615
4600 #: rhodecode/public/js/scripts.js:39729
4616 #: rhodecode/public/js/scripts.js:43479
4601 4617 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:8
4602 4618 #: rhodecode/public/js/src/rhodecode/pullrequests.js:154
4603 4619 msgid "At least {0} reviewers must vote."
4604 4620 msgstr ""
4605 4621
4606 #: rhodecode/public/js/scripts.js:39745
4622 #: rhodecode/public/js/scripts.js:43495
4607 4623 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:52
4608 4624 #: rhodecode/public/js/src/rhodecode/pullrequests.js:170
4609 4625 msgid "Reviewers picked from source code changes."
4610 4626 msgstr ""
4611 4627
4612 #: rhodecode/public/js/scripts.js:39752
4628 #: rhodecode/public/js/scripts.js:43502
4613 4629 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:4
4614 4630 #: rhodecode/public/js/src/rhodecode/pullrequests.js:177
4615 4631 msgid "Adding new reviewers is forbidden."
4616 4632 msgstr ""
4617 4633
4618 #: rhodecode/public/js/scripts.js:39759
4634 #: rhodecode/public/js/scripts.js:43509
4619 4635 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:9
4620 4636 #: rhodecode/public/js/src/rhodecode/pullrequests.js:184
4621 4637 msgid "Author is not allowed to be a reviewer."
4622 4638 msgstr ""
4623 4639
4624 #: rhodecode/public/js/scripts.js:39773
4640 #: rhodecode/public/js/scripts.js:43523
4625 4641 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:13
4626 4642 #: rhodecode/public/js/src/rhodecode/pullrequests.js:198
4627 4643 msgid "Commit Authors are not allowed to be a reviewer."
4628 4644 msgstr ""
4629 4645
4630 #: rhodecode/public/js/scripts.js:39881
4646 #: rhodecode/public/js/scripts.js:43631
4631 4647 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:79
4632 4648 #: rhodecode/public/js/src/rhodecode/pullrequests.js:306
4633 4649 msgid "User `{0}` not allowed to be a reviewer"
4634 4650 msgstr ""
4635 4651
4636 #: rhodecode/public/js/scripts.js:39887
4652 #: rhodecode/public/js/scripts.js:43637
4637 4653 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:78
4638 4654 #: rhodecode/public/js/src/rhodecode/pullrequests.js:312
4639 4655 msgid "User `{0}` already in reviewers"
4640 4656 msgstr ""
4641 4657
4642 #: rhodecode/public/js/scripts.js:39975
4658 #: rhodecode/public/js/scripts.js:43725
4643 4659 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:83
4644 4660 #: rhodecode/public/js/src/rhodecode/pullrequests.js:400
4645 4661 msgid "added manually by \"{0}\""
4646 4662 msgstr ""
4647 4663
4648 #: rhodecode/public/js/scripts.js:39979
4664 #: rhodecode/public/js/scripts.js:43729
4649 4665 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:94
4650 4666 #: rhodecode/public/js/src/rhodecode/pullrequests.js:404
4651 4667 msgid "member of \"{0}\""
4652 4668 msgstr ""
4653 4669
4654 #: rhodecode/public/js/scripts.js:40566
4670 #: rhodecode/public/js/scripts.js:44310
4655 4671 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:87
4656 #: rhodecode/public/js/src/rhodecode.js:143
4672 #: rhodecode/public/js/src/rhodecode.js:144
4657 4673 msgid "file"
4658 4674 msgstr ""
4659 4675
4660 #: rhodecode/public/js/scripts.js:40586
4661 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:61
4662 #: rhodecode/public/js/src/rhodecode.js:163
4663 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:33
4664 msgid "Show more"
4665 msgstr ""
4666
4667 #: rhodecode/public/js/scripts.js:40968
4676 #: rhodecode/public/js/scripts.js:44704
4668 4677 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:84
4669 #: rhodecode/public/js/src/rhodecode.js:545
4678 #: rhodecode/public/js/src/rhodecode.js:538
4670 4679 msgid "date not in future"
4671 4680 msgstr ""
4672 4681
4673 #: rhodecode/public/js/scripts.js:40976
4682 #: rhodecode/public/js/scripts.js:44712
4674 4683 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:65
4675 #: rhodecode/public/js/src/rhodecode.js:553
4684 #: rhodecode/public/js/src/rhodecode.js:546
4676 4685 msgid "Specified expiration date"
4677 4686 msgstr ""
4678 4687
@@ -4692,7 +4701,7 b' msgstr ""'
4692 4701
4693 4702 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:11
4694 4703 #: rhodecode/public/js/src/i18n_messages.js:5
4695 #: rhodecode/templates/pullrequests/pullrequest_show.mako:333
4704 #: rhodecode/templates/pullrequests/pullrequest_show.mako:329
4696 4705 msgid "Close"
4697 4706 msgstr ""
4698 4707
@@ -4712,6 +4721,10 b' msgstr ""'
4712 4721 msgid "Fetching repository state failed. Error code: {0} {1}. Try refreshing this page."
4713 4722 msgstr ""
4714 4723
4724 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:19
4725 msgid "Follow"
4726 msgstr ""
4727
4715 4728 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:20
4716 4729 msgid "Hide full context diff"
4717 4730 msgstr ""
@@ -4770,7 +4783,7 b' msgid "No users available yet."'
4770 4783 msgstr ""
4771 4784
4772 4785 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:46
4773 #: rhodecode/templates/changelog/changelog.mako:59
4786 #: rhodecode/templates/commits/changelog.mako:78
4774 4787 msgid "Open new pull request"
4775 4788 msgstr ""
4776 4789
@@ -4796,6 +4809,11 b' msgstr ""'
4796 4809 msgid "Show full context diff"
4797 4810 msgstr ""
4798 4811
4812 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:61
4813 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:39
4814 msgid "Show more"
4815 msgstr ""
4816
4799 4817 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:62
4800 4818 msgid "Show selected commit __S"
4801 4819 msgstr ""
@@ -4808,6 +4826,14 b' msgstr ""'
4808 4826 msgid "Show whitespace changes"
4809 4827 msgstr ""
4810 4828
4829 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:66
4830 msgid "Start following this repository"
4831 msgstr ""
4832
4833 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:68
4834 msgid "Stop following this repository"
4835 msgstr ""
4836
4811 4837 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:70
4812 4838 #: rhodecode/public/js/src/i18n_messages.js:7
4813 4839 msgid "Switch to chat"
@@ -4826,12 +4852,16 b' msgstr ""'
4826 4852 msgid "Toggle Wide Mode diff"
4827 4853 msgstr ""
4828 4854
4855 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:76
4856 msgid "Unfollow"
4857 msgstr ""
4858
4829 4859 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:77
4830 4860 msgid "Updating..."
4831 4861 msgstr ""
4832 4862
4833 4863 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:82
4834 #: rhodecode/templates/admin/auth/auth_settings.mako:72
4864 #: rhodecode/templates/admin/auth/auth_settings.mako:69
4835 4865 msgid "activated"
4836 4866 msgstr ""
4837 4867
@@ -4848,12 +4878,12 b' msgid "files"'
4848 4878 msgstr ""
4849 4879
4850 4880 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:93
4851 #: rhodecode/templates/pullrequests/pullrequest.mako:141
4881 #: rhodecode/templates/pullrequests/pullrequest.mako:135
4852 4882 msgid "loading..."
4853 4883 msgstr ""
4854 4884
4855 4885 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:95
4856 #: rhodecode/templates/admin/auth/auth_settings.mako:72
4886 #: rhodecode/templates/admin/auth/auth_settings.mako:69
4857 4887 msgid "not active"
4858 4888 msgstr ""
4859 4889
@@ -4917,65 +4947,68 b' msgstr ""'
4917 4947 msgid "Dashboard"
4918 4948 msgstr ""
4919 4949
4920 #: rhodecode/templates/index_base.mako:37
4950 #: rhodecode/templates/index_base.mako:20
4951 #: rhodecode/templates/admin/main.mako:34
4921 4952 #: rhodecode/templates/admin/repos/repo_add.mako:22
4922 #: rhodecode/templates/admin/repos/repos.mako:27
4923 #: rhodecode/templates/base/base.mako:350
4953 #: rhodecode/templates/admin/repos/repos.mako:31
4954 #: rhodecode/templates/base/base.mako:410
4924 4955 msgid "Add Repository"
4925 4956 msgstr ""
4926 4957
4927 #: rhodecode/templates/index_base.mako:41
4958 #: rhodecode/templates/index_base.mako:24
4959 #: rhodecode/templates/admin/main.mako:43
4928 4960 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:16
4929 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:27
4961 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:31
4962 #: rhodecode/templates/base/base.mako:413
4930 4963 msgid "Add Repository Group"
4931 4964 msgstr ""
4932 4965
4933 #: rhodecode/templates/index_base.mako:64
4966 #: rhodecode/templates/index_base.mako:47
4934 4967 msgid "No repositories or repositories groups exists here."
4935 4968 msgstr ""
4936 4969
4937 #: rhodecode/templates/index_base.mako:82
4938 #: rhodecode/templates/index_base.mako:112
4939 #: rhodecode/templates/admin/gists/index.mako:112
4970 #: rhodecode/templates/index_base.mako:65
4971 #: rhodecode/templates/index_base.mako:98
4972 #: rhodecode/templates/admin/gists/index.mako:107
4940 4973 #: rhodecode/templates/admin/integrations/list.mako:72
4941 4974 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:55
4942 4975 #: rhodecode/templates/admin/my_account/my_account_repos.mako:31
4943 4976 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:39
4944 4977 #: rhodecode/templates/admin/my_account/my_account_watched.mako:31
4945 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:53
4978 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:74
4946 4979 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:16
4947 #: rhodecode/templates/admin/repos/repos.mako:54
4948 #: rhodecode/templates/admin/user_groups/user_groups.mako:73
4980 #: rhodecode/templates/admin/repos/repos.mako:58
4981 #: rhodecode/templates/admin/user_groups/user_groups.mako:76
4949 4982 #: rhodecode/templates/admin/users/user_edit_groups.mako:54
4950 4983 #: rhodecode/templates/base/perms_summary.mako:168
4951 4984 #: rhodecode/templates/base/perms_summary.mako:242
4952 #: rhodecode/templates/bookmarks/bookmarks.mako:59
4953 #: rhodecode/templates/branches/branches.mako:58
4954 #: rhodecode/templates/files/files_browser_tree.mako:5
4955 #: rhodecode/templates/pullrequests/pullrequests.mako:110
4956 #: rhodecode/templates/tags/tags.mako:59
4985 #: rhodecode/templates/bookmarks/bookmarks.mako:57
4986 #: rhodecode/templates/branches/branches.mako:56
4987 #: rhodecode/templates/files/files_browser_tree.mako:11
4988 #: rhodecode/templates/pullrequests/pullrequests.mako:81
4989 #: rhodecode/templates/tags/tags.mako:57
4957 4990 msgid "Name"
4958 4991 msgstr ""
4959 4992
4960 #: rhodecode/templates/index_base.mako:85
4961 #: rhodecode/templates/index_base.mako:115
4962 #: rhodecode/templates/admin/gists/index.mako:114
4993 #: rhodecode/templates/index_base.mako:68
4994 #: rhodecode/templates/index_base.mako:101
4995 #: rhodecode/templates/admin/gists/index.mako:109
4963 4996 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:15
4964 4997 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:72
4965 4998 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:10
4966 4999 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:57
4967 5000 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:44
4968 5001 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:49
4969 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:54
5002 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:53
4970 5003 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:55
4971 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:56
5004 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:77
4972 5005 #: rhodecode/templates/admin/repos/repo_add_base.mako:66
4973 5006 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:29
4974 5007 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:170
4975 #: rhodecode/templates/admin/repos/repos.mako:57
4976 #: rhodecode/templates/admin/user_groups/user_group_add.mako:43
5008 #: rhodecode/templates/admin/repos/repos.mako:61
5009 #: rhodecode/templates/admin/user_groups/user_group_add.mako:42
4977 5010 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:42
4978 #: rhodecode/templates/admin/user_groups/user_groups.mako:75
5011 #: rhodecode/templates/admin/user_groups/user_groups.mako:78
4979 5012 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:15
4980 5013 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:72
4981 5014 #: rhodecode/templates/admin/users/user_edit_groups.mako:59
@@ -4988,59 +5021,58 b' msgstr ""'
4988 5021 #: rhodecode/templates/email_templates/commit_comment.mako:89
4989 5022 #: rhodecode/templates/email_templates/pull_request_review.mako:41
4990 5023 #: rhodecode/templates/email_templates/pull_request_review.mako:75
4991 #: rhodecode/templates/files/file_tree_detail.mako:5
4992 #: rhodecode/templates/files/file_tree_detail.mako:12
4993 #: rhodecode/templates/forks/fork.mako:60
4994 #: rhodecode/templates/forks/forks.mako:64
4995 #: rhodecode/templates/pullrequests/pullrequest.mako:55
4996 #: rhodecode/templates/pullrequests/pullrequest_show.mako:170
4997 #: rhodecode/templates/pullrequests/pullrequest_show.mako:484
4998 #: rhodecode/templates/summary/components.mako:151
5024 #: rhodecode/templates/forks/fork.mako:56
5025 #: rhodecode/templates/forks/forks.mako:62
5026 #: rhodecode/templates/pullrequests/pullrequest.mako:49
5027 #: rhodecode/templates/pullrequests/pullrequest_show.mako:166
5028 #: rhodecode/templates/pullrequests/pullrequest_show.mako:480
5029 #: rhodecode/templates/summary/components.mako:159
4999 5030 msgid "Description"
5000 5031 msgstr ""
5001 5032
5002 #: rhodecode/templates/index_base.mako:88
5003 #: rhodecode/templates/index_base.mako:118
5004 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:59
5005 #: rhodecode/templates/admin/repos/repos.mako:60
5033 #: rhodecode/templates/index_base.mako:71
5034 #: rhodecode/templates/index_base.mako:104
5035 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:80
5036 #: rhodecode/templates/admin/repos/repos.mako:64
5006 5037 msgid "Last Change"
5007 5038 msgstr ""
5008 5039
5009 #: rhodecode/templates/index_base.mako:90
5010 #: rhodecode/templates/index_base.mako:123
5040 #: rhodecode/templates/index_base.mako:76
5041 #: rhodecode/templates/index_base.mako:109
5011 5042 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:50
5012 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:6
5043 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:8
5013 5044 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:37
5014 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:63
5045 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:84
5015 5046 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:6
5016 5047 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:152
5017 #: rhodecode/templates/admin/repos/repos.mako:65
5048 #: rhodecode/templates/admin/repos/repos.mako:69
5018 5049 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:6
5019 5050 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:24
5020 #: rhodecode/templates/admin/user_groups/user_groups.mako:83
5051 #: rhodecode/templates/admin/user_groups/user_groups.mako:86
5021 5052 #: rhodecode/templates/admin/users/user_edit_groups.mako:65
5022 #: rhodecode/templates/forks/forks.mako:60
5023 #: rhodecode/templates/summary/components.mako:224
5024 #: rhodecode/templates/user_group/profile.mako:23
5053 #: rhodecode/templates/forks/forks.mako:58
5054 #: rhodecode/templates/summary/components.mako:148
5055 #: rhodecode/templates/user_group/profile.mako:24
5025 5056 msgid "Owner"
5026 5057 msgstr ""
5027 5058
5028 #: rhodecode/templates/index_base.mako:121
5059 #: rhodecode/templates/index_base.mako:107
5029 5060 #: rhodecode/templates/admin/my_account/my_account_repos.mako:35
5030 5061 #: rhodecode/templates/admin/my_account/my_account_watched.mako:35
5031 #: rhodecode/templates/admin/repos/repos.mako:63
5032 #: rhodecode/templates/bookmarks/bookmarks.mako:66
5033 #: rhodecode/templates/branches/branches.mako:65
5034 #: rhodecode/templates/changelog/changelog.mako:116
5035 #: rhodecode/templates/changeset/changeset.mako:37
5062 #: rhodecode/templates/admin/repos/repos.mako:67
5063 #: rhodecode/templates/bookmarks/bookmarks.mako:64
5064 #: rhodecode/templates/branches/branches.mako:63
5065 #: rhodecode/templates/changeset/changeset.mako:33
5036 5066 #: rhodecode/templates/compare/compare_commits.mako:19
5037 5067 #: rhodecode/templates/email_templates/commit_comment.mako:49
5038 5068 #: rhodecode/templates/email_templates/commit_comment.mako:88
5039 #: rhodecode/templates/files/file_authors_box.mako:31
5040 #: rhodecode/templates/pullrequests/pullrequest_show.mako:482
5069 #: rhodecode/templates/files/file_authors_box.mako:26
5070 #: rhodecode/templates/pullrequests/pullrequest_show.mako:478
5041 5071 #: rhodecode/templates/search/search_commit.mako:9
5072 #: rhodecode/templates/summary/components.mako:117
5073 #: rhodecode/templates/summary/components.mako:125
5042 5074 #: rhodecode/templates/summary/summary_commits.mako:8
5043 #: rhodecode/templates/tags/tags.mako:66
5075 #: rhodecode/templates/tags/tags.mako:64
5044 5076 msgid "Commit"
5045 5077 msgstr ""
5046 5078
@@ -5050,58 +5082,58 b' msgid "%s Repository group dashboard"'
5050 5082 msgstr ""
5051 5083
5052 5084 #: rhodecode/templates/index_repo_group.mako:13
5085 #: rhodecode/templates/base/base.mako:611
5086 #: rhodecode/templates/base/base.mako:612
5053 5087 msgid "Home"
5054 5088 msgstr ""
5055 5089
5056 #: rhodecode/templates/login.mako:5 rhodecode/templates/login.mako:89
5090 #: rhodecode/templates/login.mako:5 rhodecode/templates/login.mako:91
5057 5091 #: rhodecode/templates/debug_style/login.html:60
5058 5092 msgid "Sign In"
5059 5093 msgstr ""
5060 5094
5061 #: rhodecode/templates/login.mako:37
5095 #: rhodecode/templates/login.mako:39
5062 5096 msgid "Sign In using username/password"
5063 5097 msgstr ""
5064 5098
5065 #: rhodecode/templates/login.mako:51
5099 #: rhodecode/templates/login.mako:53
5066 5100 msgid "Forgot your password?"
5067 5101 msgstr ""
5068 5102
5069 #: rhodecode/templates/login.mako:64
5070 msgid "Remember my indefinitely"
5071 msgstr ""
5072
5073 5103 #: rhodecode/templates/login.mako:66
5104 msgid "Remember my indefinitely"
5105 msgstr ""
5106
5107 #: rhodecode/templates/login.mako:68
5074 5108 msgid "Remember me for {}"
5075 5109 msgstr ""
5076 5110
5077 #: rhodecode/templates/login.mako:72
5111 #: rhodecode/templates/login.mako:74
5078 5112 msgid "Create a new account."
5079 5113 msgstr ""
5080 5114
5081 #: rhodecode/templates/login.mako:79
5115 #: rhodecode/templates/login.mako:81
5082 5116 msgid "Password reset is disabled."
5083 5117 msgstr ""
5084 5118
5085 #: rhodecode/templates/login.mako:80
5119 #: rhodecode/templates/login.mako:82
5086 5120 msgid "Please contact "
5087 5121 msgstr ""
5088 5122
5089 #: rhodecode/templates/login.mako:82 rhodecode/templates/password_reset.mako:37
5090 #: rhodecode/templates/base/base.mako:48
5123 #: rhodecode/templates/login.mako:84 rhodecode/templates/password_reset.mako:39
5124 #: rhodecode/templates/base/base.mako:50
5091 5125 msgid "Support"
5092 5126 msgstr ""
5093 5127
5094 #: rhodecode/templates/login.mako:83 rhodecode/templates/password_reset.mako:38
5095 #: rhodecode/templates/files/files_add.mako:54
5096 #: rhodecode/templates/files/files_add.mako:71
5097 msgid "or"
5098 msgstr ""
5099
5100 5128 #: rhodecode/templates/login.mako:85 rhodecode/templates/password_reset.mako:40
5129 msgid "or"
5130 msgstr ""
5131
5132 #: rhodecode/templates/login.mako:87 rhodecode/templates/password_reset.mako:42
5101 5133 msgid "an administrator if you need help."
5102 5134 msgstr ""
5103 5135
5104 #: rhodecode/templates/login.mako:89
5136 #: rhodecode/templates/login.mako:91
5105 5137 msgid "Sign in to {}"
5106 5138 msgstr ""
5107 5139
@@ -5109,32 +5141,32 b' msgstr ""'
5109 5141 msgid "Reset Password"
5110 5142 msgstr ""
5111 5143
5112 #: rhodecode/templates/password_reset.mako:35
5144 #: rhodecode/templates/password_reset.mako:37
5113 5145 msgid "Password reset is disabled. Please contact "
5114 5146 msgstr ""
5115 5147
5116 #: rhodecode/templates/password_reset.mako:47
5148 #: rhodecode/templates/password_reset.mako:49
5117 5149 msgid "Reset your Password"
5118 5150 msgstr ""
5119 5151
5120 #: rhodecode/templates/password_reset.mako:48
5152 #: rhodecode/templates/password_reset.mako:50
5121 5153 msgid "Go to the login page to sign in."
5122 5154 msgstr ""
5123 5155
5124 #: rhodecode/templates/password_reset.mako:52
5156 #: rhodecode/templates/password_reset.mako:54
5125 5157 msgid "Email Address"
5126 5158 msgstr ""
5127 5159
5128 #: rhodecode/templates/password_reset.mako:58
5160 #: rhodecode/templates/password_reset.mako:60
5129 5161 msgid "Password reset link will be sent to matching email address"
5130 5162 msgstr ""
5131 5163
5132 #: rhodecode/templates/password_reset.mako:62
5133 #: rhodecode/templates/register.mako:102
5164 #: rhodecode/templates/password_reset.mako:64
5165 #: rhodecode/templates/register.mako:104
5134 5166 msgid "Captcha"
5135 5167 msgstr ""
5136 5168
5137 #: rhodecode/templates/password_reset.mako:73
5169 #: rhodecode/templates/password_reset.mako:75
5138 5170 msgid "Send password reset email"
5139 5171 msgstr ""
5140 5172
@@ -5142,49 +5174,49 b' msgstr ""'
5142 5174 msgid "Create an Account"
5143 5175 msgstr ""
5144 5176
5145 #: rhodecode/templates/register.mako:36
5177 #: rhodecode/templates/register.mako:38
5146 5178 msgid "Create an account linked with {}"
5147 5179 msgstr ""
5148 5180
5149 #: rhodecode/templates/register.mako:38
5181 #: rhodecode/templates/register.mako:40
5150 5182 msgid "Create an account"
5151 5183 msgstr ""
5152 5184
5153 #: rhodecode/templates/register.mako:41
5185 #: rhodecode/templates/register.mako:43
5154 5186 msgid "Go to the login page to sign in with an existing account."
5155 5187 msgstr ""
5156 5188
5157 #: rhodecode/templates/register.mako:67
5189 #: rhodecode/templates/register.mako:69
5158 5190 msgid "Re-enter password"
5159 5191 msgstr ""
5160 5192
5161 #: rhodecode/templates/register.mako:79
5162 #: rhodecode/templates/admin/my_account/my_account_profile.mako:32
5193 #: rhodecode/templates/register.mako:81
5194 #: rhodecode/templates/admin/my_account/my_account_profile.mako:35
5163 5195 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:32
5164 5196 #: rhodecode/templates/admin/users/user_add.mako:68
5165 #: rhodecode/templates/admin/users/user_edit_profile.mako:47
5166 #: rhodecode/templates/admin/users/users.mako:75
5197 #: rhodecode/templates/admin/users/user_edit_profile.mako:46
5198 #: rhodecode/templates/admin/users/users.mako:78
5167 5199 msgid "First Name"
5168 5200 msgstr ""
5169 5201
5170 #: rhodecode/templates/register.mako:86
5171 #: rhodecode/templates/admin/my_account/my_account_profile.mako:40
5202 #: rhodecode/templates/register.mako:88
5203 #: rhodecode/templates/admin/my_account/my_account_profile.mako:45
5172 5204 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:41
5173 5205 #: rhodecode/templates/admin/users/user_add.mako:77
5174 #: rhodecode/templates/admin/users/user_edit_profile.mako:56
5175 #: rhodecode/templates/admin/users/users.mako:77
5206 #: rhodecode/templates/admin/users/user_edit_profile.mako:55
5207 #: rhodecode/templates/admin/users/users.mako:80
5176 5208 msgid "Last Name"
5177 5209 msgstr ""
5178 5210
5179 #: rhodecode/templates/register.mako:114
5211 #: rhodecode/templates/register.mako:116
5180 5212 msgid "Account activation requires admin approval."
5181 5213 msgstr ""
5182 5214
5183 #: rhodecode/templates/register.mako:121
5215 #: rhodecode/templates/register.mako:123
5184 5216 msgid "Create Account"
5185 5217 msgstr ""
5186 5218
5187 #: rhodecode/templates/register.mako:121
5219 #: rhodecode/templates/register.mako:123
5188 5220 msgid "Create Account in {}"
5189 5221 msgstr ""
5190 5222
@@ -5192,93 +5224,92 b' msgstr ""'
5192 5224 msgid "Admin audit log entry"
5193 5225 msgstr ""
5194 5226
5195 #: rhodecode/templates/admin/admin_audit_log_entry.mako:13
5227 #: rhodecode/templates/admin/admin_audit_log_entry.mako:26
5196 5228 msgid "Audit long entry"
5197 5229 msgstr ""
5198 5230
5199 #: rhodecode/templates/admin/admin_audit_log_entry.mako:31
5231 #: rhodecode/templates/admin/admin_audit_log_entry.mako:34
5200 5232 #: rhodecode/templates/users/user.mako:4 rhodecode/templates/users/user.mako:11
5201 5233 msgid "User"
5202 5234 msgstr ""
5203 5235
5204 #: rhodecode/templates/admin/admin_audit_log_entry.mako:43
5236 #: rhodecode/templates/admin/admin_audit_log_entry.mako:46
5205 5237 #: rhodecode/templates/admin/admin_log_base.mako:11
5206 #: rhodecode/templates/bookmarks/bookmarks.mako:61
5207 #: rhodecode/templates/branches/branches.mako:60
5208 #: rhodecode/templates/tags/tags.mako:61
5238 #: rhodecode/templates/bookmarks/bookmarks.mako:59
5239 #: rhodecode/templates/branches/branches.mako:58
5240 #: rhodecode/templates/tags/tags.mako:59
5209 5241 msgid "Date"
5210 5242 msgstr ""
5211 5243
5212 #: rhodecode/templates/admin/admin_audit_log_entry.mako:51
5244 #: rhodecode/templates/admin/admin_audit_log_entry.mako:54
5213 5245 #: rhodecode/templates/admin/admin_log_base.mako:12
5214 5246 msgid "IP"
5215 5247 msgstr ""
5216 5248
5217 #: rhodecode/templates/admin/admin_audit_log_entry.mako:60
5249 #: rhodecode/templates/admin/admin_audit_log_entry.mako:63
5218 5250 #: rhodecode/templates/admin/admin_log_base.mako:8
5219 5251 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:19
5220 5252 #: rhodecode/templates/admin/my_account/my_account_repos.mako:37
5221 5253 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:13
5222 5254 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:55
5223 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:65
5255 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:86
5224 5256 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:13
5225 #: rhodecode/templates/admin/repos/repos.mako:69
5257 #: rhodecode/templates/admin/repos/repos.mako:73
5226 5258 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:71
5227 #: rhodecode/templates/admin/user_groups/user_groups.mako:85
5259 #: rhodecode/templates/admin/user_groups/user_groups.mako:88
5228 5260 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:19
5229 5261 #: rhodecode/templates/admin/users/user_edit_groups.mako:73
5230 5262 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:13
5231 #: rhodecode/templates/admin/users/users.mako:88
5232 #: rhodecode/templates/files/files_detail.mako:58
5233 #: rhodecode/templates/forks/forks.mako:71
5263 #: rhodecode/templates/admin/users/users.mako:91
5264 #: rhodecode/templates/forks/forks.mako:69
5234 5265 msgid "Action"
5235 5266 msgstr ""
5236 5267
5237 #: rhodecode/templates/admin/admin_audit_log_entry.mako:78
5268 #: rhodecode/templates/admin/admin_audit_log_entry.mako:81
5238 5269 #: rhodecode/templates/admin/admin_log_base.mako:9
5239 5270 msgid "Action Data"
5240 5271 msgstr ""
5241 5272
5242 #: rhodecode/templates/admin/admin_audit_log_entry.mako:86
5273 #: rhodecode/templates/admin/admin_audit_log_entry.mako:89
5243 5274 #: rhodecode/templates/admin/admin_log_base.mako:47
5244 5275 msgid "data not available for v1 entries type"
5245 5276 msgstr ""
5246 5277
5247 #: rhodecode/templates/admin/admin_audit_log_entry.mako:92
5278 #: rhodecode/templates/admin/admin_audit_log_entry.mako:95
5248 5279 #: rhodecode/templates/admin/admin_log_base.mako:10
5249 #: rhodecode/templates/admin/defaults/defaults.mako:31
5280 #: rhodecode/templates/admin/defaults/defaults.mako:32
5250 5281 #: rhodecode/templates/admin/permissions/permissions_objects.mako:16
5251 #: rhodecode/templates/base/base.mako:421
5252 #: rhodecode/templates/base/base.mako:423
5253 #: rhodecode/templates/base/base.mako:425
5282 #: rhodecode/templates/base/base.mako:486
5283 #: rhodecode/templates/base/base.mako:488
5284 #: rhodecode/templates/base/base.mako:490
5254 5285 #: rhodecode/templates/search/search_commit.mako:8
5255 5286 #: rhodecode/templates/search/search_path.mako:7
5256 5287 msgid "Repository"
5257 5288 msgstr ""
5258 5289
5259 5290 #: rhodecode/templates/admin/admin_audit_logs.mako:5
5260 #: rhodecode/templates/base/base.mako:77
5291 #: rhodecode/templates/base/base.mako:102
5261 5292 msgid "Admin audit logs"
5262 5293 msgstr ""
5263 5294
5264 #: rhodecode/templates/admin/admin_audit_logs.mako:13
5295 #: rhodecode/templates/admin/admin_audit_logs.mako:25
5265 5296 msgid "filter..."
5266 5297 msgstr ""
5267 5298
5268 #: rhodecode/templates/admin/admin_audit_logs.mako:14
5299 #: rhodecode/templates/admin/admin_audit_logs.mako:26
5269 5300 #: rhodecode/templates/admin/repos/repo_edit_audit.mako:15
5270 5301 #: rhodecode/templates/admin/users/user_edit_audit.mako:15
5271 5302 #: rhodecode/templates/journal/journal.mako:13
5272 5303 msgid "filter"
5273 5304 msgstr ""
5274 5305
5275 #: rhodecode/templates/admin/admin_audit_logs.mako:15
5276 #: rhodecode/templates/admin/repos/repo_edit.mako:95
5277 #: rhodecode/templates/admin/users/user_edit.mako:47
5306 #: rhodecode/templates/admin/admin_audit_logs.mako:27
5307 #: rhodecode/templates/admin/repos/repo_edit.mako:91
5308 #: rhodecode/templates/admin/users/user_edit.mako:48
5278 5309 msgid "Audit logs"
5279 5310 msgstr ""
5280 5311
5281 #: rhodecode/templates/admin/admin_audit_logs.mako:17
5312 #: rhodecode/templates/admin/admin_audit_logs.mako:29
5282 5313 #: rhodecode/templates/admin/repos/repo_edit_audit.mako:18
5283 5314 #: rhodecode/templates/admin/users/user_edit_audit.mako:18
5284 5315 #: rhodecode/templates/journal/journal.mako:16
@@ -5297,48 +5328,75 b' msgstr ""'
5297 5328 msgid "No actions yet"
5298 5329 msgstr ""
5299 5330
5331 #: rhodecode/templates/admin/main.mako:5
5332 #: rhodecode/templates/admin/settings/settings.mako:5
5333 msgid "Settings administration"
5334 msgstr ""
5335
5336 #: rhodecode/templates/admin/main.mako:26
5337 msgid "Administration area"
5338 msgstr ""
5339
5340 #: rhodecode/templates/admin/main.mako:30
5341 msgid "Repositories under administration"
5342 msgstr ""
5343
5344 #: rhodecode/templates/admin/main.mako:39
5345 msgid "Repository groups under administration"
5346 msgstr ""
5347
5348 #: rhodecode/templates/admin/main.mako:48
5349 msgid "User groups under administration"
5350 msgstr ""
5351
5352 #: rhodecode/templates/admin/main.mako:52
5353 #: rhodecode/templates/admin/user_groups/user_group_add.mako:15
5354 #: rhodecode/templates/admin/user_groups/user_groups.mako:31
5355 msgid "Add User Group"
5356 msgstr ""
5357
5300 5358 #: rhodecode/templates/admin/auth/auth_settings.mako:5
5301 5359 #: rhodecode/templates/admin/auth/plugin_settings.mako:5
5302 5360 msgid "Authentication Settings"
5303 5361 msgstr ""
5304 5362
5305 #: rhodecode/templates/admin/auth/auth_settings.mako:45
5363 #: rhodecode/templates/admin/auth/auth_settings.mako:42
5306 5364 msgid "Enabled and Available Plugins"
5307 5365 msgstr ""
5308 5366
5309 #: rhodecode/templates/admin/auth/auth_settings.mako:51
5367 #: rhodecode/templates/admin/auth/auth_settings.mako:48
5310 5368 msgid "Ordered Activated Plugins"
5311 5369 msgstr ""
5312 5370
5313 #: rhodecode/templates/admin/auth/auth_settings.mako:56
5371 #: rhodecode/templates/admin/auth/auth_settings.mako:53
5314 5372 msgid ""
5315 5373 "List of plugins, separated by commas.\n"
5316 5374 "The order of the plugins is also the order in which RhodeCode Enterprise will try to authenticate a user."
5317 5375 msgstr ""
5318 5376
5377 #: rhodecode/templates/admin/auth/auth_settings.mako:60
5378 msgid "Activate"
5379 msgstr ""
5380
5381 #: rhodecode/templates/admin/auth/auth_settings.mako:61
5382 msgid "Plugin Name"
5383 msgstr ""
5384
5385 #: rhodecode/templates/admin/auth/auth_settings.mako:62
5386 msgid "Documentation"
5387 msgstr ""
5388
5319 5389 #: rhodecode/templates/admin/auth/auth_settings.mako:63
5320 msgid "Activate"
5321 msgstr ""
5322
5323 #: rhodecode/templates/admin/auth/auth_settings.mako:64
5324 msgid "Plugin Name"
5325 msgstr ""
5326
5327 #: rhodecode/templates/admin/auth/auth_settings.mako:65
5328 msgid "Documentation"
5329 msgstr ""
5330
5331 #: rhodecode/templates/admin/auth/auth_settings.mako:66
5332 5390 msgid "Plugin ID"
5333 5391 msgstr ""
5334 5392
5335 #: rhodecode/templates/admin/auth/auth_settings.mako:88
5336 #: rhodecode/templates/admin/auth/plugin_settings.mako:95
5393 #: rhodecode/templates/admin/auth/auth_settings.mako:85
5394 #: rhodecode/templates/admin/auth/plugin_settings.mako:96
5337 5395 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:63
5338 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:105
5396 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:108
5339 5397 #: rhodecode/templates/admin/permissions/permissions_application.mako:59
5340 5398 #: rhodecode/templates/admin/permissions/permissions_objects.mako:59
5341 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:78
5399 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:77
5342 5400 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:205
5343 5401 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:83
5344 5402 #: rhodecode/templates/admin/repos/repo_add_base.mako:106
@@ -5347,17 +5405,17 b' msgstr ""'
5347 5405 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:243
5348 5406 #: rhodecode/templates/admin/settings/settings_hooks.mako:63
5349 5407 #: rhodecode/templates/admin/settings/settings_issuetracker.mako:15
5350 #: rhodecode/templates/admin/user_groups/user_group_add.mako:60
5408 #: rhodecode/templates/admin/user_groups/user_group_add.mako:59
5351 5409 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:192
5352 5410 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:102
5353 5411 #: rhodecode/templates/admin/users/user_add.mako:128
5354 5412 #: rhodecode/templates/admin/users/user_edit_groups.mako:27
5355 #: rhodecode/templates/admin/users/user_edit_profile.mako:135
5413 #: rhodecode/templates/admin/users/user_edit_profile.mako:134
5356 5414 #: rhodecode/templates/base/default_perms_box.mako:88
5357 5415 msgid "Save"
5358 5416 msgstr ""
5359 5417
5360 #: rhodecode/templates/admin/auth/plugin_settings.mako:45
5418 #: rhodecode/templates/admin/auth/plugin_settings.mako:46
5361 5419 msgid "Plugin"
5362 5420 msgstr ""
5363 5421
@@ -5371,7 +5429,7 b' msgid "Default Settings For New Reposito'
5371 5429 msgstr ""
5372 5430
5373 5431 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:14
5374 #: rhodecode/templates/admin/gists/index.mako:110
5432 #: rhodecode/templates/admin/gists/index.mako:105
5375 5433 #: rhodecode/templates/admin/integrations/list.mako:73
5376 5434 #: rhodecode/templates/admin/repos/repo_add_base.mako:43
5377 5435 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:12
@@ -5386,7 +5444,7 b' msgstr ""'
5386 5444 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:27
5387 5445 #: rhodecode/templates/admin/repos/repo_add_base.mako:102
5388 5446 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:192
5389 #: rhodecode/templates/forks/fork.mako:99
5447 #: rhodecode/templates/forks/fork.mako:95
5390 5448 msgid "Private repositories are only visible to people explicitly added as collaborators."
5391 5449 msgstr ""
5392 5450
@@ -5436,8 +5494,8 b' msgstr ""'
5436 5494
5437 5495 #: rhodecode/templates/admin/gists/edit.mako:56
5438 5496 #: rhodecode/templates/admin/gists/new.mako:50
5439 #: rhodecode/templates/files/files_add.mako:80
5440 #: rhodecode/templates/files/files_edit.mako:81
5497 #: rhodecode/templates/files/files_add.mako:68
5498 #: rhodecode/templates/files/files_edit.mako:69
5441 5499 msgid "plain"
5442 5500 msgstr ""
5443 5501
@@ -5449,10 +5507,7 b' msgstr ""'
5449 5507 #: rhodecode/templates/base/issue_tracker_settings.mako:73
5450 5508 #: rhodecode/templates/changeset/changeset_file_comment.mako:392
5451 5509 #: rhodecode/templates/codeblocks/diffs.mako:72
5452 #: rhodecode/templates/files/files_add.mako:108
5453 #: rhodecode/templates/files/files_delete.mako:69
5454 #: rhodecode/templates/files/files_edit.mako:108
5455 #: rhodecode/templates/pullrequests/pullrequest_show.mako:65
5510 #: rhodecode/templates/pullrequests/pullrequest_show.mako:61
5456 5511 msgid "Cancel"
5457 5512 msgstr ""
5458 5513
@@ -5462,90 +5517,77 b' msgid "Gist was updated since you starte'
5462 5517 msgstr ""
5463 5518
5464 5519 #: rhodecode/templates/admin/gists/index.mako:6
5465 #: rhodecode/templates/admin/gists/index.mako:20
5466 #, python-format
5467 msgid "Private Gists for user %s"
5520 msgid "Private Gists for user {}"
5468 5521 msgstr ""
5469 5522
5470 5523 #: rhodecode/templates/admin/gists/index.mako:8
5471 #: rhodecode/templates/admin/gists/index.mako:22
5472 #, python-format
5473 msgid "Public Gists for user %s"
5524 msgid "Public Gists for user {}"
5474 5525 msgstr ""
5475 5526
5476 5527 #: rhodecode/templates/admin/gists/index.mako:10
5477 5528 msgid "Public Gists"
5478 5529 msgstr ""
5479 5530
5480 #: rhodecode/templates/admin/gists/index.mako:18
5531 #: rhodecode/templates/admin/gists/index.mako:30
5532 msgid "All gists"
5533 msgstr ""
5534
5535 #: rhodecode/templates/admin/gists/index.mako:32
5536 msgid "All public"
5537 msgstr ""
5538
5539 #: rhodecode/templates/admin/gists/index.mako:34
5540 msgid "My gists"
5541 msgstr ""
5542
5543 #: rhodecode/templates/admin/gists/index.mako:35
5544 msgid "My private"
5545 msgstr ""
5546
5547 #: rhodecode/templates/admin/gists/index.mako:36
5548 msgid "My public"
5549 msgstr ""
5550
5551 #: rhodecode/templates/admin/gists/index.mako:43
5552 #: rhodecode/templates/admin/gists/show.mako:35
5553 msgid "Create New Gist"
5554 msgstr ""
5555
5556 #: rhodecode/templates/admin/gists/index.mako:54
5481 5557 #: rhodecode/templates/admin/my_account/my_account_repos.mako:7
5482 5558 #: rhodecode/templates/admin/my_account/my_account_watched.mako:7
5483 5559 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:11
5484 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:12
5485 #: rhodecode/templates/admin/repos/repos.mako:12
5486 #: rhodecode/templates/admin/user_groups/user_groups.mako:12
5487 #: rhodecode/templates/admin/users/users.mako:12
5488 #: rhodecode/templates/bookmarks/bookmarks.mako:12
5489 #: rhodecode/templates/branches/branches.mako:12
5560 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:25
5561 #: rhodecode/templates/admin/repos/repos.mako:25
5562 #: rhodecode/templates/admin/user_groups/user_groups.mako:25
5563 #: rhodecode/templates/admin/users/users.mako:26
5564 #: rhodecode/templates/bookmarks/bookmarks.mako:33
5565 #: rhodecode/templates/branches/branches.mako:33
5490 5566 #: rhodecode/templates/journal/journal.mako:12
5491 #: rhodecode/templates/tags/tags.mako:12
5567 #: rhodecode/templates/tags/tags.mako:33
5492 5568 msgid "quick filter..."
5493 5569 msgstr ""
5494 5570
5495 #: rhodecode/templates/admin/gists/index.mako:24
5496 #, python-format
5497 msgid "All Gists for user %s"
5498 msgstr ""
5499
5500 #: rhodecode/templates/admin/gists/index.mako:26
5501 msgid "All Public Gists"
5502 msgstr ""
5503
5504 #: rhodecode/templates/admin/gists/index.mako:44
5505 #: rhodecode/templates/admin/gists/show.mako:35
5506 msgid "Create New Gist"
5507 msgstr ""
5508
5509 #: rhodecode/templates/admin/gists/index.mako:56
5510 msgid "All gists"
5511 msgstr ""
5512
5513 #: rhodecode/templates/admin/gists/index.mako:58
5514 msgid "All public"
5515 msgstr ""
5516
5517 #: rhodecode/templates/admin/gists/index.mako:60
5518 msgid "My gists"
5519 msgstr ""
5520
5521 #: rhodecode/templates/admin/gists/index.mako:61
5522 msgid "My private"
5523 msgstr ""
5524
5525 #: rhodecode/templates/admin/gists/index.mako:62
5526 msgid "My public"
5527 msgstr ""
5528
5529 #: rhodecode/templates/admin/gists/index.mako:108
5571 #: rhodecode/templates/admin/gists/index.mako:103
5530 5572 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:57
5531 #: rhodecode/templates/bookmarks/bookmarks.mako:63
5532 #: rhodecode/templates/branches/branches.mako:62
5533 #: rhodecode/templates/changelog/changelog.mako:124
5534 #: rhodecode/templates/changeset/changeset.mako:199
5573 #: rhodecode/templates/bookmarks/bookmarks.mako:61
5574 #: rhodecode/templates/branches/branches.mako:60
5575 #: rhodecode/templates/changeset/changeset.mako:195
5576 #: rhodecode/templates/commits/changelog.mako:119
5535 5577 #: rhodecode/templates/compare/compare_commits.mako:18
5536 #: rhodecode/templates/files/files_browser_tree.mako:9
5537 #: rhodecode/templates/pullrequests/pullrequest_show.mako:481
5538 #: rhodecode/templates/pullrequests/pullrequests.mako:112
5578 #: rhodecode/templates/files/files_browser_tree.mako:15
5579 #: rhodecode/templates/pullrequests/pullrequest_show.mako:477
5580 #: rhodecode/templates/pullrequests/pullrequests.mako:83
5539 5581 #: rhodecode/templates/search/search_commit.mako:19
5540 5582 #: rhodecode/templates/summary/summary_commits.mako:11
5541 #: rhodecode/templates/tags/tags.mako:63
5583 #: rhodecode/templates/tags/tags.mako:61
5542 5584 msgid "Author"
5543 5585 msgstr ""
5544 5586
5545 #: rhodecode/templates/admin/gists/index.mako:116
5587 #: rhodecode/templates/admin/gists/index.mako:111
5546 5588 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:11
5547 5589 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:51
5548 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:7
5590 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:9
5549 5591 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:7
5550 5592 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:7
5551 5593 #: rhodecode/templates/admin/users/user_edit_advanced.mako:6
@@ -5553,7 +5595,7 b' msgstr ""'
5553 5595 msgid "Created on"
5554 5596 msgstr ""
5555 5597
5556 #: rhodecode/templates/admin/gists/index.mako:118
5598 #: rhodecode/templates/admin/gists/index.mako:113
5557 5599 #: rhodecode/templates/admin/gists/show.mako:72
5558 5600 msgid "Expires"
5559 5601 msgstr ""
@@ -5613,8 +5655,8 b' msgid "created"'
5613 5655 msgstr ""
5614 5656
5615 5657 #: rhodecode/templates/admin/gists/show.mako:100
5616 #: rhodecode/templates/files/files_delete.mako:50
5617 #: rhodecode/templates/files/files_source.mako:104
5658 #: rhodecode/templates/files/files_delete.mako:58
5659 #: rhodecode/templates/files/files_source.mako:133
5618 5660 msgid "Show as raw"
5619 5661 msgstr ""
5620 5662
@@ -5626,14 +5668,15 b' msgstr ""'
5626 5668 #: rhodecode/templates/admin/integrations/form.mako:8
5627 5669 #: rhodecode/templates/admin/integrations/form.mako:21
5628 5670 #: rhodecode/templates/admin/integrations/form.mako:32
5671 #: rhodecode/templates/admin/integrations/global.mako:14
5629 5672 #: rhodecode/templates/admin/integrations/list.mako:21
5630 5673 #: rhodecode/templates/admin/integrations/list.mako:25
5631 5674 #: rhodecode/templates/admin/integrations/list.mako:29
5632 5675 #: rhodecode/templates/admin/integrations/list.mako:36
5633 5676 #: rhodecode/templates/admin/integrations/new.mako:15
5634 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:37
5635 #: rhodecode/templates/admin/repos/repo_edit.mako:78
5636 #: rhodecode/templates/base/base.mako:84
5677 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:33
5678 #: rhodecode/templates/admin/repos/repo_edit.mako:74
5679 #: rhodecode/templates/base/base.mako:109
5637 5680 msgid "Integrations"
5638 5681 msgstr ""
5639 5682
@@ -5642,12 +5685,12 b' msgstr ""'
5642 5685 #: rhodecode/templates/admin/integrations/new.mako:7
5643 5686 #: rhodecode/templates/admin/integrations/new.mako:9
5644 5687 #: rhodecode/templates/admin/integrations/new.mako:13
5645 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:34
5688 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:30
5646 5689 #: rhodecode/templates/admin/repos/repo_edit.mako:15
5647 #: rhodecode/templates/admin/repos/repo_edit.mako:46
5690 #: rhodecode/templates/admin/repos/repo_edit.mako:42
5648 5691 #: rhodecode/templates/admin/settings/settings.mako:14
5649 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:33
5650 #: rhodecode/templates/base/base.mako:86
5692 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:34
5693 #: rhodecode/templates/base/base.mako:111
5651 5694 msgid "Settings"
5652 5695 msgstr ""
5653 5696
@@ -5656,12 +5699,16 b' msgstr ""'
5656 5699 msgid "Create New %(integration_type)s Integration"
5657 5700 msgstr ""
5658 5701
5702 #: rhodecode/templates/admin/integrations/global.mako:5
5703 msgid "Integrations administration"
5704 msgstr ""
5705
5659 5706 #: rhodecode/templates/admin/integrations/list.mako:44
5660 5707 msgid "Current Integrations for Repository: {repo_name}"
5661 5708 msgstr ""
5662 5709
5663 5710 #: rhodecode/templates/admin/integrations/list.mako:46
5664 msgid "Current Integrations for repository group: {repo_group_name}"
5711 msgid "Repository Group Integrations: {}"
5665 5712 msgstr ""
5666 5713
5667 5714 #: rhodecode/templates/admin/integrations/list.mako:48
@@ -5678,7 +5725,7 b' msgid "Scope"'
5678 5725 msgstr ""
5679 5726
5680 5727 #: rhodecode/templates/admin/integrations/list.mako:75
5681 #: rhodecode/templates/compare/compare_diff.mako:92
5728 #: rhodecode/templates/compare/compare_diff.mako:84
5682 5729 msgid "Actions"
5683 5730 msgstr ""
5684 5731
@@ -5698,31 +5745,31 b' msgstr ""'
5698 5745 msgid "Create one"
5699 5746 msgstr ""
5700 5747
5701 #: rhodecode/templates/admin/integrations/list.mako:134
5748 #: rhodecode/templates/admin/integrations/list.mako:132
5702 5749 msgid "repo"
5703 5750 msgstr ""
5704 5751
5752 #: rhodecode/templates/admin/integrations/list.mako:136
5753 msgid "repogroup"
5754 msgstr ""
5755
5705 5756 #: rhodecode/templates/admin/integrations/list.mako:138
5706 msgid "repogroup"
5757 msgid "child repos only"
5707 5758 msgstr ""
5708 5759
5709 5760 #: rhodecode/templates/admin/integrations/list.mako:140
5710 msgid "child repos only"
5711 msgstr ""
5712
5713 #: rhodecode/templates/admin/integrations/list.mako:142
5714 5761 msgid "cascade to all"
5715 5762 msgstr ""
5716 5763
5764 #: rhodecode/templates/admin/integrations/list.mako:145
5765 msgid "top level repos only"
5766 msgstr ""
5767
5717 5768 #: rhodecode/templates/admin/integrations/list.mako:147
5718 msgid "top level repos only"
5719 msgstr ""
5720
5721 #: rhodecode/templates/admin/integrations/list.mako:149
5722 5769 msgid "global"
5723 5770 msgstr ""
5724 5771
5725 #: rhodecode/templates/admin/integrations/list.mako:155
5772 #: rhodecode/templates/admin/integrations/list.mako:153
5726 5773 msgid "unknown integration"
5727 5774 msgstr ""
5728 5775
@@ -5743,7 +5790,7 b' msgid "No description available"'
5743 5790 msgstr ""
5744 5791
5745 5792 #: rhodecode/templates/admin/my_account/my_account.mako:5
5746 #: rhodecode/templates/base/base.mako:397
5793 #: rhodecode/templates/base/base.mako:462
5747 5794 msgid "My account"
5748 5795 msgstr ""
5749 5796
@@ -5765,7 +5812,7 b' msgstr ""'
5765 5812 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:3
5766 5813 #: rhodecode/templates/admin/permissions/permissions.mako:51
5767 5814 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:4
5768 #: rhodecode/templates/admin/users/user_edit.mako:40
5815 #: rhodecode/templates/admin/users/user_edit.mako:41
5769 5816 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:3
5770 5817 msgid "SSH Keys"
5771 5818 msgstr ""
@@ -5780,7 +5827,7 b' msgid "External Identities"'
5780 5827 msgstr ""
5781 5828
5782 5829 #: rhodecode/templates/admin/my_account/my_account.mako:41
5783 #: rhodecode/templates/admin/users/user_edit.mako:44
5830 #: rhodecode/templates/admin/users/user_edit.mako:45
5784 5831 msgid "Emails"
5785 5832 msgstr ""
5786 5833
@@ -5789,18 +5836,18 b' msgid "Watched"'
5789 5836 msgstr ""
5790 5837
5791 5838 #: rhodecode/templates/admin/my_account/my_account.mako:44
5792 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:43
5793 #: rhodecode/templates/base/base.mako:243
5794 #: rhodecode/templates/base/base.mako:401
5839 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:42
5840 #: rhodecode/templates/base/base.mako:303
5841 #: rhodecode/templates/base/base.mako:466
5795 5842 msgid "Pull Requests"
5796 5843 msgstr ""
5797 5844
5798 5845 #: rhodecode/templates/admin/my_account/my_account.mako:45
5799 5846 #: rhodecode/templates/admin/permissions/permissions.mako:14
5800 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:35
5801 #: rhodecode/templates/admin/repos/repo_edit.mako:49
5802 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:34
5803 #: rhodecode/templates/base/base.mako:82
5847 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:31
5848 #: rhodecode/templates/admin/repos/repo_edit.mako:45
5849 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:35
5850 #: rhodecode/templates/base/base.mako:107
5804 5851 msgid "Permissions"
5805 5852 msgstr ""
5806 5853
@@ -5887,51 +5934,55 b' msgstr ""'
5887 5934 msgid "Clear"
5888 5935 msgstr ""
5889 5936
5890 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:30
5937 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:29
5938 msgid "Server URL is available as ${server_url} variable. E.g. Redirect url: ${server_url}/_admin/exception_tracker"
5939 msgstr ""
5940
5941 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:33
5891 5942 msgid "Redirect URL"
5892 5943 msgstr ""
5893 5944
5894 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:40
5945 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:43
5895 5946 msgid "Repository template"
5896 5947 msgstr ""
5897 5948
5898 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:46
5949 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:49
5899 5950 msgid "Repository group template"
5900 5951 msgstr ""
5901 5952
5902 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:52
5953 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:55
5903 5954 msgid "Template Repository or Repository group"
5904 5955 msgstr ""
5905 5956
5906 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:62
5957 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:65
5907 5958 msgid "Available as ${repo_url} e.g. Redirect url: ${repo_url}/changelog"
5908 5959 msgstr ""
5909 5960
5910 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:64
5961 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:67
5911 5962 msgid "Available as ${repo_group_url} e.g. Redirect url: ${repo_group_url}"
5912 5963 msgstr ""
5913 5964
5914 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:66
5965 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:69
5915 5966 msgid "Available as full url variables in redirect url. i.e: ${repo_url}, ${repo_group_url}."
5916 5967 msgstr ""
5917 5968
5918 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:76
5969 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:79
5919 5970 msgid "Your Bookmarks"
5920 5971 msgstr ""
5921 5972
5922 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:81
5973 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:84
5923 5974 msgid "Store upto 10 bookmark links to favorite repositories, external issue tracker or CI server. "
5924 5975 msgstr ""
5925 5976
5926 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:83
5977 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:86
5927 5978 msgid "Bookmarks are accessible from your username dropdown or by keyboard shortcut `g 0-9`"
5928 5979 msgstr ""
5929 5980
5930 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:137
5981 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:140
5931 5982 msgid "repository"
5932 5983 msgstr ""
5933 5984
5934 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:188
5985 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:191
5935 5986 msgid "repository group"
5936 5987 msgstr ""
5937 5988
@@ -5993,15 +6044,8 b' msgstr ""'
5993 6044 msgid "Photo"
5994 6045 msgstr ""
5995 6046
5996 #: rhodecode/templates/admin/my_account/my_account_profile.mako:18
5997 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:62
5998 #: rhodecode/templates/admin/users/user_edit_profile.mako:33
5999 #: rhodecode/templates/users/user_profile.mako:21
6000 msgid "Avatars are disabled"
6001 msgstr ""
6002
6003 #: rhodecode/templates/admin/my_account/my_account_profile.mako:51
6004 #: rhodecode/templates/users/user_profile.mako:54
6047 #: rhodecode/templates/admin/my_account/my_account_profile.mako:59
6048 #: rhodecode/templates/users/user_profile.mako:62
6005 6049 msgid "Missing email, please update your user email address."
6006 6050 msgstr ""
6007 6051
@@ -6026,13 +6070,13 b' msgstr ""'
6026 6070 #: rhodecode/templates/admin/settings/settings_global.mako:9
6027 6071 #: rhodecode/templates/email_templates/pull_request_review.mako:39
6028 6072 #: rhodecode/templates/email_templates/pull_request_review.mako:72
6029 #: rhodecode/templates/pullrequests/pullrequest.mako:46
6030 #: rhodecode/templates/pullrequests/pullrequests.mako:114
6073 #: rhodecode/templates/pullrequests/pullrequest.mako:40
6074 #: rhodecode/templates/pullrequests/pullrequests.mako:85
6031 6075 msgid "Title"
6032 6076 msgstr ""
6033 6077
6034 6078 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:63
6035 #: rhodecode/templates/pullrequests/pullrequests.mako:118
6079 #: rhodecode/templates/pullrequests/pullrequests.mako:89
6036 6080 msgid "Last Update"
6037 6081 msgstr ""
6038 6082
@@ -6088,14 +6132,14 b' msgstr ""'
6088 6132
6089 6133 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:49
6090 6134 #: rhodecode/templates/admin/repos/repo_edit_caches.mako:41
6091 #: rhodecode/templates/admin/user_groups/user_group_add.mako:52
6135 #: rhodecode/templates/admin/user_groups/user_group_add.mako:51
6092 6136 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:51
6093 #: rhodecode/templates/admin/user_groups/user_groups.mako:81
6137 #: rhodecode/templates/admin/user_groups/user_groups.mako:84
6094 6138 #: rhodecode/templates/admin/users/user_add.mako:97
6095 6139 #: rhodecode/templates/admin/users/user_edit_groups.mako:64
6096 #: rhodecode/templates/admin/users/user_edit_profile.mako:90
6097 #: rhodecode/templates/admin/users/users.mako:82
6098 #: rhodecode/templates/user_group/profile.mako:33
6140 #: rhodecode/templates/admin/users/user_edit_profile.mako:89
6141 #: rhodecode/templates/admin/users/users.mako:85
6142 #: rhodecode/templates/user_group/profile.mako:34
6099 6143 msgid "Active"
6100 6144 msgstr ""
6101 6145
@@ -6122,7 +6166,7 b' msgstr ""'
6122 6166
6123 6167 #: rhodecode/templates/admin/notifications/notifications_show.mako:12
6124 6168 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:5
6125 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:12
6169 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:20
6126 6170 msgid "My Notifications"
6127 6171 msgstr ""
6128 6172
@@ -6130,21 +6174,21 b' msgstr ""'
6130 6174 msgid "Subject"
6131 6175 msgstr ""
6132 6176
6133 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:26
6134 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:30
6177 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:25
6178 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:29
6135 6179 msgid "Mark all as read"
6136 6180 msgstr ""
6137 6181
6182 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:39
6183 msgid "Unread"
6184 msgstr ""
6185
6138 6186 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:40
6139 msgid "Unread"
6187 msgid "All"
6140 6188 msgstr ""
6141 6189
6142 6190 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:41
6143 msgid "All"
6144 msgstr ""
6145
6146 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:42
6147 #: rhodecode/templates/changeset/changeset.mako:159
6191 #: rhodecode/templates/changeset/changeset.mako:158
6148 6192 msgid "Comments"
6149 6193 msgstr ""
6150 6194
@@ -6223,6 +6267,7 b' msgstr ""'
6223 6267 #: rhodecode/templates/admin/repos/repo_edit_remote.mako:62
6224 6268 #: rhodecode/templates/admin/repos/repo_edit_reviewers.mako:6
6225 6269 #: rhodecode/templates/admin/settings/settings_automation.mako:6
6270 #: rhodecode/templates/artifacts/artifact_list.mako:24
6226 6271 msgid "This feature is available in RhodeCode EE edition only. Contact {sales_email} to obtain a trial license."
6227 6272 msgstr ""
6228 6273
@@ -6312,38 +6357,39 b' msgstr ""'
6312 6357
6313 6358 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:14
6314 6359 #: rhodecode/templates/admin/users/user_edit_advanced.mako:13
6315 #: rhodecode/templates/base/base.mako:79 rhodecode/templates/base/base.mako:153
6360 #: rhodecode/templates/base/base.mako:104
6361 #: rhodecode/templates/base/base.mako:125
6316 6362 msgid "Repository groups"
6317 6363 msgstr ""
6318 6364
6319 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:36
6365 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:35
6320 6366 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:15
6321 #: rhodecode/templates/admin/user_groups/user_group_add.mako:35
6367 #: rhodecode/templates/admin/user_groups/user_group_add.mako:34
6322 6368 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:15
6323 6369 msgid "Group name"
6324 6370 msgstr ""
6325 6371
6326 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:45
6372 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:44
6327 6373 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:25
6328 6374 #: rhodecode/templates/admin/repos/repo_add_base.mako:52
6329 6375 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:33
6330 #: rhodecode/templates/base/base.mako:434
6376 #: rhodecode/templates/base/base.mako:499
6331 6377 #: rhodecode/templates/data_table/_dt_elements.mako:208
6332 #: rhodecode/templates/forks/fork.mako:45
6378 #: rhodecode/templates/forks/fork.mako:41
6333 6379 msgid "Repository group"
6334 6380 msgstr ""
6335 6381
6336 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:59
6382 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:58
6337 6383 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:62
6338 6384 msgid "Plain text format with support of {metatags}"
6339 6385 msgstr ""
6340 6386
6341 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:69
6387 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:68
6342 6388 #: rhodecode/templates/admin/repos/repo_add_base.mako:89
6343 6389 msgid "Copy Parent Group Permissions"
6344 6390 msgstr ""
6345 6391
6346 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:73
6392 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:72
6347 6393 #: rhodecode/templates/admin/repos/repo_add_base.mako:93
6348 6394 msgid "Copy permissions from parent repository group."
6349 6395 msgstr ""
@@ -6353,53 +6399,66 b' msgstr ""'
6353 6399 msgid "%s repository group settings"
6354 6400 msgstr ""
6355 6401
6356 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:36
6357 #: rhodecode/templates/admin/repos/repo_edit.mako:55
6358 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:35
6359 #: rhodecode/templates/admin/users/user_edit.mako:41
6402 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:32
6403 #: rhodecode/templates/admin/repos/repo_edit.mako:51
6404 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:36
6405 #: rhodecode/templates/admin/users/user_edit.mako:42
6360 6406 msgid "Advanced"
6361 6407 msgstr ""
6362 6408
6363 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:5
6409 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:7
6364 6410 msgid "Repository Group ID"
6365 6411 msgstr ""
6366 6412
6367 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:8
6368 msgid "Is Personal Group"
6369 msgstr ""
6370
6371 6413 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:10
6372 msgid "Total repositories"
6414 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:8
6415 msgid "Updated on"
6373 6416 msgstr ""
6374 6417
6375 6418 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:11
6419 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:10
6420 msgid "Cached Commit date"
6421 msgstr ""
6422
6423 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:12
6424 msgid "Cached Commit repo_id"
6425 msgstr ""
6426
6427 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:14
6428 msgid "Is Personal Group"
6429 msgstr ""
6430
6431 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:16
6432 msgid "Total repositories"
6433 msgstr ""
6434
6435 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:17
6376 6436 msgid "Top level repositories"
6377 6437 msgstr ""
6378 6438
6379 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:13
6380 msgid "Children groups"
6381 msgstr ""
6382
6383 6439 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:19
6384 #, python-format
6385 msgid "Repository Group: %s"
6386 msgstr ""
6387
6388 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:29
6440 msgid "Children groups"
6441 msgstr ""
6442
6443 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:25
6444 msgid "Repository Group Advanced: {}"
6445 msgstr ""
6446
6447 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:35
6389 6448 msgid "Delete repository group"
6390 6449 msgstr ""
6391 6450
6392 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:58
6451 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:64
6393 6452 #, python-format
6394 6453 msgid "Confirm to delete this group: %s"
6395 6454 msgstr ""
6396 6455
6397 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:59
6456 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:65
6398 6457 msgid "Delete this repository group"
6399 6458 msgstr ""
6400 6459
6401 6460 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:5
6402 msgid "Repository Group Permissions"
6461 msgid "Repository Group Permissions: {}"
6403 6462 msgstr ""
6404 6463
6405 6464 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:15
@@ -6476,8 +6535,7 b' msgid "Set or revoke permissions to sele'
6476 6535 msgstr ""
6477 6536
6478 6537 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:6
6479 #, python-format
6480 msgid "Settings for Repository Group: %s"
6538 msgid "Repository Group Settings: {}"
6481 6539 msgstr ""
6482 6540
6483 6541 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:31
@@ -6500,11 +6558,11 b' msgstr ""'
6500 6558 msgid "Repository groups administration"
6501 6559 msgstr ""
6502 6560
6503 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:13
6561 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:26
6504 6562 msgid "repository groups"
6505 6563 msgstr ""
6506 6564
6507 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:61
6565 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:82
6508 6566 msgid "Number of top level repositories"
6509 6567 msgstr ""
6510 6568
@@ -6521,7 +6579,7 b' msgid "Import Existing Repository ?"'
6521 6579 msgstr ""
6522 6580
6523 6581 #: rhodecode/templates/admin/repos/repo_add_base.mako:23
6524 #: rhodecode/templates/base/base.mako:198
6582 #: rhodecode/templates/base/base.mako:248
6525 6583 msgid "Clone from"
6526 6584 msgstr ""
6527 6585
@@ -6530,31 +6588,31 b' msgid "Set the type of repository to cre'
6530 6588 msgstr ""
6531 6589
6532 6590 #: rhodecode/templates/admin/repos/repo_add_base.mako:58
6533 #: rhodecode/templates/forks/fork.mako:51
6591 #: rhodecode/templates/forks/fork.mako:47
6534 6592 #, python-format
6535 6593 msgid "Select my personal group (%(repo_group_name)s)"
6536 6594 msgstr ""
6537 6595
6538 6596 #: rhodecode/templates/admin/repos/repo_add_base.mako:61
6539 #: rhodecode/templates/forks/fork.mako:54
6597 #: rhodecode/templates/forks/fork.mako:50
6540 6598 msgid "Optionally select a group to put this repository into."
6541 6599 msgstr ""
6542 6600
6543 6601 #: rhodecode/templates/admin/repos/repo_add_base.mako:71
6544 6602 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:177
6545 #: rhodecode/templates/forks/fork.mako:65
6603 #: rhodecode/templates/forks/fork.mako:61
6546 6604 msgid "Plain text format with support of {metatags}. Add a README file for longer descriptions"
6547 6605 msgstr ""
6548 6606
6549 6607 #: rhodecode/templates/admin/repos/repo_add_base.mako:80
6550 6608 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:141
6551 #: rhodecode/templates/forks/fork.mako:75
6609 #: rhodecode/templates/forks/fork.mako:71
6552 6610 msgid "Landing commit"
6553 6611 msgstr ""
6554 6612
6555 6613 #: rhodecode/templates/admin/repos/repo_add_base.mako:84
6556 6614 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:146
6557 #: rhodecode/templates/forks/fork.mako:79
6615 #: rhodecode/templates/forks/fork.mako:75
6558 6616 msgid "The default commit for file pages, downloads, full text search index, and README generation."
6559 6617 msgstr ""
6560 6618
@@ -6576,51 +6634,50 b' msgstr ""'
6576 6634 msgid "%s repository settings"
6577 6635 msgstr ""
6578 6636
6579 #: rhodecode/templates/admin/repos/repo_edit.mako:52
6637 #: rhodecode/templates/admin/repos/repo_edit.mako:48
6580 6638 msgid "Branch Permissions"
6581 6639 msgstr ""
6582 6640
6583 #: rhodecode/templates/admin/repos/repo_edit.mako:58
6641 #: rhodecode/templates/admin/repos/repo_edit.mako:54
6584 6642 msgid "VCS"
6585 6643 msgstr ""
6586 6644
6587 #: rhodecode/templates/admin/repos/repo_edit.mako:61
6645 #: rhodecode/templates/admin/repos/repo_edit.mako:57
6588 6646 msgid "Extra Fields"
6589 6647 msgstr ""
6590 6648
6591 #: rhodecode/templates/admin/repos/repo_edit.mako:64
6649 #: rhodecode/templates/admin/repos/repo_edit.mako:60
6592 6650 msgid "Issue Tracker"
6593 6651 msgstr ""
6594 6652
6653 #: rhodecode/templates/admin/repos/repo_edit.mako:63
6654 #: rhodecode/templates/admin/users/user_edit.mako:49
6655 #: rhodecode/templates/admin/users/user_edit_caches.mako:5
6656 msgid "Caches"
6657 msgstr ""
6658
6595 6659 #: rhodecode/templates/admin/repos/repo_edit.mako:67
6596 #: rhodecode/templates/admin/users/user_edit.mako:48
6597 #: rhodecode/templates/admin/users/user_edit_caches.mako:5
6598 msgid "Caches"
6660 msgid "Remote sync"
6599 6661 msgstr ""
6600 6662
6601 6663 #: rhodecode/templates/admin/repos/repo_edit.mako:71
6602 msgid "Remote sync"
6603 msgstr ""
6604
6605 #: rhodecode/templates/admin/repos/repo_edit.mako:75
6606 #: rhodecode/templates/summary/components.mako:196
6607 6664 msgid "Statistics"
6608 6665 msgstr ""
6609 6666
6667 #: rhodecode/templates/admin/repos/repo_edit.mako:78
6668 msgid "Reviewer Rules"
6669 msgstr ""
6670
6610 6671 #: rhodecode/templates/admin/repos/repo_edit.mako:82
6611 msgid "Reviewer Rules"
6612 msgstr ""
6613
6614 #: rhodecode/templates/admin/repos/repo_edit.mako:86
6615 6672 msgid "Automation"
6616 6673 msgstr ""
6617 6674
6618 #: rhodecode/templates/admin/repos/repo_edit.mako:89
6675 #: rhodecode/templates/admin/repos/repo_edit.mako:85
6619 6676 #: rhodecode/templates/admin/repos/repo_edit_maintenance.mako:3
6620 6677 msgid "Maintenance"
6621 6678 msgstr ""
6622 6679
6623 #: rhodecode/templates/admin/repos/repo_edit.mako:92
6680 #: rhodecode/templates/admin/repos/repo_edit.mako:88
6624 6681 msgid "Strip"
6625 6682 msgstr ""
6626 6683
@@ -6628,180 +6685,180 b' msgstr ""'
6628 6685 msgid "Repository ID"
6629 6686 msgstr ""
6630 6687
6631 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:8
6632 msgid "Updated on"
6633 msgstr ""
6634
6635 6688 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:9
6636 6689 msgid "Cached Commit id"
6637 6690 msgstr ""
6638 6691
6639 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:10
6640 msgid "Attached scoped tokens"
6641 msgstr ""
6642
6643 6692 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:11
6644 msgid "Pull requests source"
6693 msgid "Attached scoped tokens"
6645 6694 msgstr ""
6646 6695
6647 6696 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:12
6697 msgid "Pull requests source"
6698 msgstr ""
6699
6700 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:13
6648 6701 msgid "Pull requests target"
6649 6702 msgstr ""
6650 6703
6651 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:18
6704 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:14
6705 msgid "Attached Artifacts"
6706 msgstr ""
6707
6708 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:20
6652 6709 #, python-format
6653 6710 msgid "Repository: %s"
6654 6711 msgstr ""
6655 6712
6656 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:28
6713 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:30
6657 6714 msgid "Fork Reference"
6658 6715 msgstr ""
6659 6716
6660 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:34
6717 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:36
6661 6718 #, python-format
6662 6719 msgid "This repository is a fork of %(repo_link)s"
6663 6720 msgstr ""
6664 6721
6665 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:40
6722 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:42
6666 6723 msgid "Set"
6667 6724 msgstr ""
6668 6725
6669 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:43
6726 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:45
6670 6727 msgid "Manually set this repository as a fork of another from the list"
6671 6728 msgstr ""
6672 6729
6673 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:52
6730 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:54
6674 6731 msgid "Public Journal Visibility"
6675 6732 msgstr ""
6676 6733
6677 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:59
6734 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:61
6678 6735 msgid "Remove from Public Journal"
6679 6736 msgstr ""
6680 6737
6681 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:63
6738 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:65
6682 6739 msgid "Add to Public Journal"
6683 6740 msgstr ""
6684 6741
6685 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:68
6742 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:70
6686 6743 msgid "All actions made on this repository will be visible to everyone following the public journal."
6687 6744 msgstr ""
6688 6745
6689 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:77
6746 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:79
6690 6747 msgid "Locking state"
6691 6748 msgstr ""
6692 6749
6693 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:86
6750 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:88
6694 6751 msgid "This Repository is not currently locked."
6695 6752 msgstr ""
6696 6753
6697 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:93
6698 msgid "Confirm to unlock repository."
6699 msgstr ""
6700
6701 6754 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:95
6755 msgid "Confirm to unlock repository."
6756 msgstr ""
6757
6758 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:97
6702 6759 msgid "Unlock repository"
6703 6760 msgstr ""
6704 6761
6705 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:100
6706 msgid "Confirm to lock repository."
6707 msgstr ""
6708
6709 6762 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:102
6763 msgid "Confirm to lock repository."
6764 msgstr ""
6765
6766 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:104
6710 6767 msgid "Lock repository"
6711 6768 msgstr ""
6712 6769
6713 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:108
6770 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:110
6714 6771 msgid "Force repository locking. This only works when anonymous access is disabled. Pulling from the repository locks the repository to that user until the same user pushes to that repository again."
6715 6772 msgstr ""
6716 6773
6717 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:118
6774 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:120
6718 6775 msgid "Hooks"
6719 6776 msgstr ""
6720 6777
6721 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:122
6722 msgid "Hook type"
6723 msgstr ""
6724
6725 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:123
6726 msgid "Hook version"
6727 msgstr ""
6728
6729 6778 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:124
6779 msgid "Hook type"
6780 msgstr ""
6781
6782 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:125
6783 msgid "Hook version"
6784 msgstr ""
6785
6786 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:126
6730 6787 msgid "Current version"
6731 6788 msgstr ""
6732 6789
6733 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:127
6790 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:129
6734 6791 msgid "PRE HOOK"
6735 6792 msgstr ""
6736 6793
6737 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:132
6794 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:134
6738 6795 msgid "POST HOOK"
6739 6796 msgstr ""
6740 6797
6741 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:138
6798 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:140
6742 6799 msgid "Unable to read hook information from VCS Server"
6743 6800 msgstr ""
6744 6801
6745 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:144
6802 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:146
6746 6803 msgid "Confirm to reinstall hooks for this repository."
6747 6804 msgstr ""
6748 6805
6749 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:145
6806 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:147
6750 6807 msgid "Update Hooks"
6751 6808 msgstr ""
6752 6809
6753 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:152
6810 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:154
6754 6811 msgid "Archive repository"
6755 6812 msgstr ""
6756 6813
6757 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:161
6758 #, python-format
6759 msgid "Confirm to archive this repository: %s"
6760 msgstr ""
6761
6762 6814 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:163
6815 #, python-format
6816 msgid "Confirm to archive this repository: %s"
6817 msgstr ""
6818
6819 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:165
6763 6820 msgid "Archive this repository"
6764 6821 msgstr ""
6765 6822
6766 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:168
6823 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:170
6767 6824 msgid "Archiving the repository will make it entirely read-only. The repository cannot be committed to.It is hidden from the search results and dashboard. "
6768 6825 msgstr ""
6769 6826
6770 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:180
6827 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:182
6771 6828 msgid "Delete repository"
6772 6829 msgstr ""
6773 6830
6774 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:191
6831 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:193
6775 6832 msgid "Detach forks"
6776 6833 msgstr ""
6777 6834
6778 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:196
6835 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:198
6779 6836 msgid "Delete forks"
6780 6837 msgstr ""
6781 6838
6782 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:206
6839 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:208
6783 6840 msgid "Consider to archive this repository instead."
6784 6841 msgstr ""
6785 6842
6786 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:217
6843 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:219
6787 6844 #: rhodecode/templates/data_table/_dt_elements.mako:173
6788 6845 #, python-format
6789 6846 msgid "Confirm to delete this repository: %s"
6790 6847 msgstr ""
6791 6848
6792 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:219
6849 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:221
6793 6850 msgid "Delete this repository"
6794 6851 msgstr ""
6795 6852
6796 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:224
6853 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:226
6797 6854 msgid "This repository will be renamed in a special way in order to make it inaccessible to RhodeCode Enterprise and its VCS systems. If you need to fully delete it from the file system, please do it manually, or with rhodecode-cleanup-repos command available in rhodecode-tools."
6798 6855 msgstr ""
6799 6856
6800 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:258
6857 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:260
6801 6858 msgid "Change repository"
6802 6859 msgstr ""
6803 6860
6804 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:258
6861 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:260
6805 6862 msgid "Pick repository"
6806 6863 msgstr ""
6807 6864
@@ -7133,7 +7190,7 b' msgid "Private repository"'
7133 7190 msgstr ""
7134 7191
7135 7192 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:197
7136 #: rhodecode/templates/summary/components.mako:209
7193 #: rhodecode/templates/summary/components.mako:238
7137 7194 msgid "Enable statistics"
7138 7195 msgstr ""
7139 7196
@@ -7142,7 +7199,7 b' msgid "Enable statistics window on summa'
7142 7199 msgstr ""
7143 7200
7144 7201 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:207
7145 #: rhodecode/templates/summary/components.mako:177
7202 #: rhodecode/templates/summary/components.mako:184
7146 7203 msgid "Enable downloads"
7147 7204 msgstr ""
7148 7205
@@ -7250,18 +7307,14 b' msgstr ""'
7250 7307 msgid "Repositories administration"
7251 7308 msgstr ""
7252 7309
7253 #: rhodecode/templates/admin/repos/repos.mako:13
7310 #: rhodecode/templates/admin/repos/repos.mako:26
7254 7311 msgid "repositories"
7255 7312 msgstr ""
7256 7313
7257 #: rhodecode/templates/admin/repos/repos.mako:67
7314 #: rhodecode/templates/admin/repos/repos.mako:71
7258 7315 msgid "State"
7259 7316 msgstr ""
7260 7317
7261 #: rhodecode/templates/admin/settings/settings.mako:5
7262 msgid "Settings administration"
7263 msgstr ""
7264
7265 7318 #: rhodecode/templates/admin/settings/settings_automation.mako:3
7266 7319 msgid "Admin Automation"
7267 7320 msgstr ""
@@ -7351,22 +7404,26 b' msgid "There is {} stored exception."'
7351 7404 msgstr ""
7352 7405
7353 7406 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:9
7354 msgid "There are {} stored exceptions."
7355 msgstr ""
7356
7357 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:11
7407 msgid "There are total {} stored exceptions."
7408 msgstr ""
7409
7410 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:12
7358 7411 msgid "Store directory"
7359 7412 msgstr ""
7360 7413
7361 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:18
7414 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:19
7362 7415 msgid "Confirm to delete all exceptions"
7363 7416 msgstr ""
7364 7417
7365 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:20
7418 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:22
7419 msgid "Delete All `{}`"
7420 msgstr ""
7421
7422 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:24
7366 7423 msgid "Delete All"
7367 7424 msgstr ""
7368 7425
7369 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:32
7426 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:38
7370 7427 msgid "Exceptions Tracker - Showing the last {} Exceptions"
7371 7428 msgstr ""
7372 7429
@@ -7810,16 +7867,12 b' msgstr ""'
7810 7867
7811 7868 #: rhodecode/templates/admin/user_groups/user_group_add.mako:13
7812 7869 #: rhodecode/templates/admin/users/user_edit_advanced.mako:14
7813 #: rhodecode/templates/base/base.mako:81 rhodecode/templates/base/base.mako:156
7870 #: rhodecode/templates/base/base.mako:106
7871 #: rhodecode/templates/base/base.mako:128
7814 7872 msgid "User groups"
7815 7873 msgstr ""
7816 7874
7817 #: rhodecode/templates/admin/user_groups/user_group_add.mako:15
7818 #: rhodecode/templates/admin/user_groups/user_groups.mako:28
7819 msgid "Add User Group"
7820 msgstr ""
7821
7822 #: rhodecode/templates/admin/user_groups/user_group_add.mako:47
7875 #: rhodecode/templates/admin/user_groups/user_group_add.mako:46
7823 7876 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:46
7824 7877 msgid "Short, optional description for this user group."
7825 7878 msgstr ""
@@ -7829,13 +7882,13 b' msgstr ""'
7829 7882 msgid "%s user group settings"
7830 7883 msgstr ""
7831 7884
7832 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:36
7833 #: rhodecode/templates/admin/users/user_edit.mako:42
7834 msgid "Global permissions"
7835 msgstr ""
7836
7837 7885 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:37
7838 7886 #: rhodecode/templates/admin/users/user_edit.mako:43
7887 msgid "Global permissions"
7888 msgstr ""
7889
7890 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:38
7891 #: rhodecode/templates/admin/users/user_edit.mako:44
7839 7892 msgid "Permissions summary"
7840 7893 msgstr ""
7841 7894
@@ -7844,9 +7897,9 b' msgid "User Group ID"'
7844 7897 msgstr ""
7845 7898
7846 7899 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:9
7847 #: rhodecode/templates/admin/user_groups/user_groups.mako:77
7900 #: rhodecode/templates/admin/user_groups/user_groups.mako:80
7848 7901 #: rhodecode/templates/debug_style/form-elements.html:509
7849 #: rhodecode/templates/user_group/profile.mako:42
7902 #: rhodecode/templates/user_group/profile.mako:45
7850 7903 msgid "Members"
7851 7904 msgstr ""
7852 7905
@@ -7927,7 +7980,7 b' msgid "Add members"'
7927 7980 msgstr ""
7928 7981
7929 7982 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:96
7930 #: rhodecode/templates/user_group/profile.mako:63
7983 #: rhodecode/templates/user_group/profile.mako:68
7931 7984 msgid "No members yet"
7932 7985 msgstr ""
7933 7986
@@ -7936,7 +7989,7 b' msgstr ""'
7936 7989 msgid "User groups administration"
7937 7990 msgstr ""
7938 7991
7939 #: rhodecode/templates/admin/user_groups/user_groups.mako:79
7992 #: rhodecode/templates/admin/user_groups/user_groups.mako:82
7940 7993 msgid "Sync"
7941 7994 msgstr ""
7942 7995
@@ -7946,12 +7999,12 b' msgstr ""'
7946 7999
7947 8000 #: rhodecode/templates/admin/users/user_add.mako:13
7948 8001 #: rhodecode/templates/admin/users/user_edit.mako:14
7949 #: rhodecode/templates/base/base.mako:80
8002 #: rhodecode/templates/base/base.mako:105
7950 8003 msgid "Users"
7951 8004 msgstr ""
7952 8005
7953 8006 #: rhodecode/templates/admin/users/user_add.mako:15
7954 #: rhodecode/templates/admin/users/users.mako:28
8007 #: rhodecode/templates/admin/users/users.mako:31
7955 8008 msgid "Add User"
7956 8009 msgstr ""
7957 8010
@@ -7994,25 +8047,25 b' msgstr ""'
7994 8047 msgid "%s user settings"
7995 8048 msgstr ""
7996 8049
7997 #: rhodecode/templates/admin/users/user_edit.mako:19
8050 #: rhodecode/templates/admin/users/user_edit.mako:31
7998 8051 msgid "This user is set as disabled"
7999 8052 msgstr ""
8000 8053
8001 #: rhodecode/templates/admin/users/user_edit.mako:38
8054 #: rhodecode/templates/admin/users/user_edit.mako:39
8002 8055 #: rhodecode/templates/admin/users/user_edit_profile.mako:5
8003 8056 #: rhodecode/templates/users/user_profile.mako:5
8004 8057 msgid "User Profile"
8005 8058 msgstr ""
8006 8059
8007 #: rhodecode/templates/admin/users/user_edit.mako:39
8060 #: rhodecode/templates/admin/users/user_edit.mako:40
8008 8061 msgid "Auth tokens"
8009 8062 msgstr ""
8010 8063
8011 #: rhodecode/templates/admin/users/user_edit.mako:45
8012 msgid "Ip Whitelist"
8013 msgstr ""
8014
8015 8064 #: rhodecode/templates/admin/users/user_edit.mako:46
8065 msgid "Ip Whitelist"
8066 msgstr ""
8067
8068 #: rhodecode/templates/admin/users/user_edit.mako:47
8016 8069 msgid "User Groups Management"
8017 8070 msgstr ""
8018 8071
@@ -8029,8 +8082,8 b' msgid "Last login"'
8029 8082 msgstr ""
8030 8083
8031 8084 #: rhodecode/templates/admin/users/user_edit_advanced.mako:10
8032 #: rhodecode/templates/admin/users/users.mako:80
8033 #: rhodecode/templates/forks/forks.mako:69
8085 #: rhodecode/templates/admin/users/users.mako:83
8086 #: rhodecode/templates/forks/forks.mako:67
8034 8087 msgid "Last activity"
8035 8088 msgstr ""
8036 8089
@@ -8180,9 +8233,9 b' msgstr ""'
8180 8233
8181 8234 #: rhodecode/templates/admin/users/user_edit_ips.mako:64
8182 8235 msgid ""
8183 "Enter comma separated list of ip addresses like 127.0.0.1,\n"
8184 "or use a ip address with a mask 127.0.0.1/24, to create a network range.\n"
8185 "To specify multiple address range use 127.0.0.1-127.0.0.10 syntax"
8236 "Enter comma separated list of ip addresses like 10.0.0.1,10.0.0.2.\n"
8237 "Use a ip address with a mask 127.0.0.1/24, to create a network match pattern.\n"
8238 "To specify multiple entries on an address range use 127.0.0.1-127.0.0.10 syntax"
8186 8239 msgstr ""
8187 8240
8188 8241 #: rhodecode/templates/admin/users/user_edit_profile.mako:17
@@ -8194,35 +8247,35 b' msgstr ""'
8194 8247 msgid "Change the avatar at"
8195 8248 msgstr ""
8196 8249
8197 #: rhodecode/templates/admin/users/user_edit_profile.mako:74
8250 #: rhodecode/templates/admin/users/user_edit_profile.mako:73
8198 8251 msgid "New Password"
8199 8252 msgstr ""
8200 8253
8201 #: rhodecode/templates/admin/users/user_edit_profile.mako:82
8254 #: rhodecode/templates/admin/users/user_edit_profile.mako:81
8202 8255 msgid "New Password Confirmation"
8203 8256 msgstr ""
8204 8257
8205 #: rhodecode/templates/admin/users/user_edit_profile.mako:98
8258 #: rhodecode/templates/admin/users/user_edit_profile.mako:97
8206 8259 msgid "Super Admin"
8207 8260 msgstr ""
8208 8261
8209 #: rhodecode/templates/admin/users/user_edit_profile.mako:106
8262 #: rhodecode/templates/admin/users/user_edit_profile.mako:105
8210 8263 msgid "Authentication type"
8211 8264 msgstr ""
8212 8265
8213 #: rhodecode/templates/admin/users/user_edit_profile.mako:111
8266 #: rhodecode/templates/admin/users/user_edit_profile.mako:110
8214 8267 msgid "User was created using an external source. He is bound to authentication using this method."
8215 8268 msgstr ""
8216 8269
8217 #: rhodecode/templates/admin/users/user_edit_profile.mako:116
8270 #: rhodecode/templates/admin/users/user_edit_profile.mako:115
8218 8271 msgid "Name in Source of Record"
8219 8272 msgstr ""
8220 8273
8221 #: rhodecode/templates/admin/users/user_edit_profile.mako:125
8274 #: rhodecode/templates/admin/users/user_edit_profile.mako:124
8222 8275 msgid "Language"
8223 8276 msgstr ""
8224 8277
8225 #: rhodecode/templates/admin/users/user_edit_profile.mako:131
8278 #: rhodecode/templates/admin/users/user_edit_profile.mako:130
8226 8279 #, python-format
8227 8280 msgid "User interface language. Help translate %(rc_link)s into your language."
8228 8281 msgstr ""
@@ -8268,203 +8321,212 b' msgstr ""'
8268 8321 msgid "Users administration"
8269 8322 msgstr ""
8270 8323
8271 #: rhodecode/templates/admin/users/users.mako:84
8324 #: rhodecode/templates/admin/users/users.mako:87
8272 8325 #: rhodecode/templates/base/perms_summary.mako:145
8273 8326 msgid "Super admin"
8274 8327 msgstr ""
8275 8328
8276 #: rhodecode/templates/admin/users/users.mako:86
8329 #: rhodecode/templates/admin/users/users.mako:89
8277 8330 msgid "Auth type"
8278 8331 msgstr ""
8279 8332
8280 #: rhodecode/templates/base/base.mako:55
8333 #: rhodecode/templates/artifacts/artifact_list.mako:5
8334 msgid "{} Artifacts"
8335 msgstr ""
8336
8337 #: rhodecode/templates/base/base.mako:57
8281 8338 msgid "RhodeCode instance id: {}"
8282 8339 msgstr ""
8283 8340
8284 #: rhodecode/templates/base/base.mako:83
8341 #: rhodecode/templates/base/base.mako:90
8342 msgid "Super Admin Panel"
8343 msgstr ""
8344
8345 #: rhodecode/templates/base/base.mako:92
8346 msgid "Delegated Admin Panel"
8347 msgstr ""
8348
8349 #: rhodecode/templates/base/base.mako:108
8285 8350 msgid "Authentication"
8286 8351 msgstr ""
8287 8352
8288 #: rhodecode/templates/base/base.mako:85
8353 #: rhodecode/templates/base/base.mako:110
8289 8354 msgid "Defaults"
8290 8355 msgstr ""
8291 8356
8292 #: rhodecode/templates/base/base.mako:103
8293 #: rhodecode/templates/files/files_pjax.mako:24
8294 #: rhodecode/templates/summary/components.mako:42
8357 #: rhodecode/templates/base/base.mako:150
8358 #: rhodecode/templates/files/files_source_header.mako:53
8359 #: rhodecode/templates/files/files_tree_header.mako:40
8360 #: rhodecode/templates/summary/components.mako:250
8295 8361 msgid "Show More"
8296 8362 msgstr ""
8297 8363
8298 #: rhodecode/templates/base/base.mako:190
8364 #: rhodecode/templates/base/base.mako:220
8365 #: rhodecode/templates/base/base.mako:231
8366 msgid "RSS Feed"
8367 msgstr ""
8368
8369 #: rhodecode/templates/base/base.mako:222
8370 msgid "Watch this Repository and actions on it in your personalized journal"
8371 msgstr ""
8372
8373 #: rhodecode/templates/base/base.mako:240
8299 8374 msgid "Fork of"
8300 8375 msgstr ""
8301 8376
8302 #: rhodecode/templates/base/base.mako:207
8377 #: rhodecode/templates/base/base.mako:257
8303 8378 #, python-format
8304 8379 msgid "Repository locked by %(user)s"
8305 8380 msgstr ""
8306 8381
8307 #: rhodecode/templates/base/base.mako:212
8382 #: rhodecode/templates/base/base.mako:262
8308 8383 msgid "Repository not locked. Pull repository to lock it."
8309 8384 msgstr ""
8310 8385
8311 #: rhodecode/templates/base/base.mako:230
8386 #: rhodecode/templates/base/base.mako:277
8387 msgid "This repository has been archived. It is now read-only."
8388 msgstr ""
8389
8390 #: rhodecode/templates/base/base.mako:290
8312 8391 #: rhodecode/templates/data_table/_dt_elements.mako:46
8313 8392 #: rhodecode/templates/data_table/_dt_elements.mako:47
8314 8393 #: rhodecode/templates/data_table/_dt_elements.mako:198
8315 #: rhodecode/templates/pullrequests/pullrequest.mako:36
8394 #: rhodecode/templates/pullrequests/pullrequest.mako:30
8316 8395 msgid "Summary"
8317 8396 msgstr ""
8318 8397
8319 #: rhodecode/templates/base/base.mako:231
8398 #: rhodecode/templates/base/base.mako:291
8320 8399 #: rhodecode/templates/data_table/_dt_elements.mako:51
8321 8400 #: rhodecode/templates/data_table/_dt_elements.mako:52
8322 msgid "Changelog"
8323 msgstr ""
8324
8325 #: rhodecode/templates/base/base.mako:232
8401 #: rhodecode/templates/files/file_authors_box.mako:28
8402 #: rhodecode/templates/search/search.mako:85
8403 #: rhodecode/templates/summary/components.mako:119
8404 #: rhodecode/templates/summary/components.mako:127
8405 msgid "Commits"
8406 msgstr ""
8407
8408 #: rhodecode/templates/base/base.mako:292
8326 8409 #: rhodecode/templates/data_table/_dt_elements.mako:56
8327 8410 #: rhodecode/templates/data_table/_dt_elements.mako:57
8328 8411 #: rhodecode/templates/files/files.mako:15
8329 #: rhodecode/templates/search/search.mako:90
8412 #: rhodecode/templates/search/search.mako:85
8330 8413 msgid "Files"
8331 8414 msgstr ""
8332 8415
8333 #: rhodecode/templates/base/base.mako:233
8334 #: rhodecode/templates/bookmarks/bookmarks.mako:68
8335 #: rhodecode/templates/branches/branches.mako:67
8336 #: rhodecode/templates/tags/tags.mako:68
8337 msgid "Compare"
8338 msgstr ""
8339
8340 #: rhodecode/templates/base/base.mako:234
8341 #: rhodecode/templates/base/base.mako:339
8342 #: rhodecode/templates/base/base.mako:530
8343 #: rhodecode/templates/search/search.mako:93
8344 msgid "Search"
8345 msgstr ""
8346
8347 #: rhodecode/templates/base/base.mako:239
8348 #, python-format
8349 msgid "Show Pull Requests for %s"
8350 msgstr ""
8351
8352 #: rhodecode/templates/base/base.mako:250
8353 #: rhodecode/templates/base/base.mako:343
8354 msgid "Options"
8355 msgstr ""
8356
8357 #: rhodecode/templates/base/base.mako:254
8358 msgid "Repository Settings"
8359 msgstr ""
8360
8361 #: rhodecode/templates/base/base.mako:258
8362 #: rhodecode/templates/changelog/changelog.mako:40
8363 #, python-format
8364 msgid "Compare fork with %s"
8365 msgstr ""
8366
8367 #: rhodecode/templates/base/base.mako:274
8368 msgid "Unlock"
8369 msgstr ""
8370
8371 #: rhodecode/templates/base/base.mako:276
8372 msgid "Lock"
8373 msgstr ""
8374
8375 #: rhodecode/templates/base/base.mako:281
8376 #: rhodecode/templates/data_table/_dt_elements.mako:61
8377 #: rhodecode/templates/data_table/_dt_elements.mako:62
8378 msgid "Fork"
8379 msgstr ""
8380
8381 #: rhodecode/templates/base/base.mako:282
8382 msgid "Create Pull Request"
8383 msgstr ""
8384
8385 8416 #: rhodecode/templates/base/base.mako:293
8386 msgid "This repository has been archived. It is now read-only."
8387 msgstr ""
8388
8389 #: rhodecode/templates/base/base.mako:338
8417 #: rhodecode/templates/bookmarks/bookmarks.mako:66
8418 #: rhodecode/templates/branches/branches.mako:65
8419 #: rhodecode/templates/tags/tags.mako:66
8420 msgid "Compare"
8421 msgstr ""
8422
8423 #: rhodecode/templates/base/base.mako:298
8424 #, python-format
8425 msgid "Show Pull Requests for %s"
8426 msgstr ""
8427
8428 #: rhodecode/templates/base/base.mako:301
8429 msgid "Pull Request"
8430 msgstr ""
8431
8432 #: rhodecode/templates/base/base.mako:310
8433 msgid "Artifacts"
8434 msgstr ""
8435
8436 #: rhodecode/templates/base/base.mako:313
8437 msgid "Repository Settings"
8438 msgstr ""
8439
8440 #: rhodecode/templates/base/base.mako:324
8441 #: rhodecode/templates/base/base.mako:339
8442 #: rhodecode/templates/base/base.mako:406
8443 #: rhodecode/templates/base/base.mako:418
8444 msgid "Options"
8445 msgstr ""
8446
8447 #: rhodecode/templates/base/base.mako:327
8448 msgid "Fork this repository"
8449 msgstr ""
8450
8451 #: rhodecode/templates/base/base.mako:328
8452 msgid "Create Pull Request"
8453 msgstr ""
8454
8455 #: rhodecode/templates/base/base.mako:331
8456 msgid "Unlock Repository"
8457 msgstr ""
8458
8459 #: rhodecode/templates/base/base.mako:333
8460 msgid "Lock Repository"
8461 msgstr ""
8462
8463 #: rhodecode/templates/base/base.mako:393
8390 8464 msgid "Group Home"
8391 8465 msgstr ""
8392 8466
8393 #: rhodecode/templates/base/base.mako:347
8467 #: rhodecode/templates/base/base.mako:395
8394 8468 msgid "You have admin right to this group, and can edit it"
8395 8469 msgstr ""
8396 8470
8397 #: rhodecode/templates/base/base.mako:347
8471 #: rhodecode/templates/base/base.mako:395
8398 8472 msgid "Group Settings"
8399 8473 msgstr ""
8400 8474
8401 #: rhodecode/templates/base/base.mako:353
8402 msgid "Add Parent Group"
8403 msgstr ""
8404
8405 #: rhodecode/templates/base/base.mako:374
8475 #: rhodecode/templates/base/base.mako:439
8406 8476 msgid "Sign in"
8407 8477 msgstr ""
8408 8478
8409 #: rhodecode/templates/base/base.mako:399
8479 #: rhodecode/templates/base/base.mako:464
8410 8480 msgid "My personal group"
8411 8481 msgstr ""
8412 8482
8413 #: rhodecode/templates/base/base.mako:406
8483 #: rhodecode/templates/base/base.mako:471
8414 8484 msgid "Manage"
8415 8485 msgstr ""
8416 8486
8417 #: rhodecode/templates/base/base.mako:411
8487 #: rhodecode/templates/base/base.mako:476
8418 8488 msgid "No Bookmarks yet."
8419 8489 msgstr ""
8420 8490
8421 #: rhodecode/templates/base/base.mako:449
8491 #: rhodecode/templates/base/base.mako:514
8422 8492 msgid "Sign Out"
8423 8493 msgstr ""
8424 8494
8425 #: rhodecode/templates/base/base.mako:487
8495 #: rhodecode/templates/base/base.mako:575
8426 8496 msgid "search / go to..."
8427 8497 msgstr ""
8428 8498
8429 #: rhodecode/templates/base/base.mako:512
8499 #: rhodecode/templates/base/base.mako:618
8430 8500 msgid "Show activity journal"
8431 8501 msgstr ""
8432 8502
8433 #: rhodecode/templates/base/base.mako:513
8503 #: rhodecode/templates/base/base.mako:619
8434 8504 #: rhodecode/templates/journal/journal.mako:4
8435 8505 #: rhodecode/templates/journal/journal.mako:14
8436 8506 msgid "Journal"
8437 8507 msgstr ""
8438 8508
8439 #: rhodecode/templates/base/base.mako:518
8509 #: rhodecode/templates/base/base.mako:624
8440 8510 msgid "Show Public activity journal"
8441 8511 msgstr ""
8442 8512
8443 #: rhodecode/templates/base/base.mako:519
8513 #: rhodecode/templates/base/base.mako:625
8444 8514 msgid "Public journal"
8445 8515 msgstr ""
8446 8516
8447 #: rhodecode/templates/base/base.mako:524
8517 #: rhodecode/templates/base/base.mako:631
8448 8518 msgid "Show Gists"
8449 8519 msgstr ""
8450 8520
8451 #: rhodecode/templates/base/base.mako:525
8521 #: rhodecode/templates/base/base.mako:632
8452 8522 msgid "Gists"
8453 8523 msgstr ""
8454 8524
8455 #: rhodecode/templates/base/base.mako:529
8456 msgid "Search in repositories you have access to"
8457 msgstr ""
8458
8459 #: rhodecode/templates/base/base.mako:535
8525 #: rhodecode/templates/base/base.mako:638
8460 8526 msgid "Admin settings"
8461 8527 msgstr ""
8462 8528
8463 #: rhodecode/templates/base/base.mako:542
8464 msgid "Delegated Admin settings"
8465 msgstr ""
8466
8467 #: rhodecode/templates/base/base.mako:555
8529 #: rhodecode/templates/base/base.mako:649
8468 8530 #: rhodecode/templates/debug_style/alerts.html:5
8469 8531 #: rhodecode/templates/debug_style/buttons.html:5
8470 8532 #: rhodecode/templates/debug_style/code-block.html:6
@@ -8486,15 +8548,15 b' msgstr ""'
8486 8548 msgid "Style"
8487 8549 msgstr ""
8488 8550
8489 #: rhodecode/templates/base/base.mako:556
8551 #: rhodecode/templates/base/base.mako:650
8490 8552 msgid "[Style]"
8491 8553 msgstr ""
8492 8554
8493 #: rhodecode/templates/base/base.mako:748
8555 #: rhodecode/templates/base/base.mako:907
8494 8556 msgid "Keyboard shortcuts"
8495 8557 msgstr ""
8496 8558
8497 #: rhodecode/templates/base/base.mako:756
8559 #: rhodecode/templates/base/base.mako:915
8498 8560 msgid "Site-wide shortcuts"
8499 8561 msgstr ""
8500 8562
@@ -8592,11 +8654,9 b' msgstr ""'
8592 8654 #: rhodecode/templates/base/issue_tracker_settings.mako:191
8593 8655 #: rhodecode/templates/changeset/changeset_file_comment.mako:276
8594 8656 #: rhodecode/templates/changeset/changeset_file_comment.mako:326
8595 #: rhodecode/templates/data_table/_dt_elements.mako:390
8596 #: rhodecode/templates/files/files_add.mako:84
8597 #: rhodecode/templates/files/files_add.mako:230
8598 #: rhodecode/templates/files/files_edit.mako:85
8599 #: rhodecode/templates/files/files_edit.mako:189
8657 #: rhodecode/templates/data_table/_dt_elements.mako:414
8658 #: rhodecode/templates/files/files_add.mako:61
8659 #: rhodecode/templates/files/files_edit.mako:62
8600 8660 msgid "Preview"
8601 8661 msgstr ""
8602 8662
@@ -8619,9 +8679,9 b' msgid "none"'
8619 8679 msgstr ""
8620 8680
8621 8681 #: rhodecode/templates/base/perms_summary.mako:37
8622 #: rhodecode/templates/changelog/changelog_elements.mako:104
8623 #: rhodecode/templates/changeset/changeset.mako:109
8624 #: rhodecode/templates/files/base.mako:4
8682 #: rhodecode/templates/changeset/changeset.mako:107
8683 #: rhodecode/templates/commits/changelog_elements.mako:102
8684 #: rhodecode/templates/files/base.mako:11
8625 8685 msgid "merge"
8626 8686 msgstr ""
8627 8687
@@ -8709,7 +8769,7 b' msgstr ""'
8709 8769 msgid "No matching permission defined"
8710 8770 msgstr ""
8711 8771
8712 #: rhodecode/templates/base/root.mako:148
8772 #: rhodecode/templates/base/root.mako:149
8713 8773 msgid "Please enable JavaScript to use RhodeCode Enterprise"
8714 8774 msgstr ""
8715 8775
@@ -8806,15 +8866,15 b' msgid "Requires hgsubversion library to '
8806 8866 msgstr ""
8807 8867
8808 8868 #: rhodecode/templates/base/vcs_settings.mako:136
8809 msgid "Enable evolve extension"
8869 msgid "Enable Evolve and Topic extension"
8810 8870 msgstr ""
8811 8871
8812 8872 #: rhodecode/templates/base/vcs_settings.mako:140
8813 msgid "Enable evolve extension for all repositories."
8873 msgid "Enable Evolve and Topic extensions for all repositories."
8814 8874 msgstr ""
8815 8875
8816 8876 #: rhodecode/templates/base/vcs_settings.mako:142
8817 msgid "Enable evolve extension for this repository."
8877 msgid "Enable Evolve and Topic extensions for this repository."
8818 8878 msgstr ""
8819 8879
8820 8880 #: rhodecode/templates/base/vcs_settings.mako:153
@@ -8926,19 +8986,19 b' msgstr ""'
8926 8986 msgid "%s Bookmarks"
8927 8987 msgstr ""
8928 8988
8929 #: rhodecode/templates/bookmarks/bookmarks.mako:13
8989 #: rhodecode/templates/bookmarks/bookmarks.mako:28
8990 msgid "Compare Selected Bookmarks"
8991 msgstr ""
8992
8993 #: rhodecode/templates/bookmarks/bookmarks.mako:34
8930 8994 msgid "bookmarks"
8931 8995 msgstr ""
8932 8996
8933 #: rhodecode/templates/bookmarks/bookmarks.mako:31
8934 msgid "Compare Selected Bookmarks"
8935 msgstr ""
8936
8937 8997 #: rhodecode/templates/bookmarks/bookmarks_data.mako:13
8938 #: rhodecode/templates/changelog/changelog_elements.mako:118
8939 #: rhodecode/templates/changeset/changeset.mako:115
8940 #: rhodecode/templates/files/base.mako:10
8941 #: rhodecode/templates/summary/summary_commits.mako:71
8998 #: rhodecode/templates/changeset/changeset.mako:113
8999 #: rhodecode/templates/commits/changelog_elements.mako:116
9000 #: rhodecode/templates/files/base.mako:17
9001 #: rhodecode/templates/summary/summary_commits.mako:64
8942 9002 #, python-format
8943 9003 msgid "Bookmark %s"
8944 9004 msgstr ""
@@ -8948,229 +9008,124 b' msgstr ""'
8948 9008 msgid "%s Branches"
8949 9009 msgstr ""
8950 9010
8951 #: rhodecode/templates/branches/branches.mako:13
9011 #: rhodecode/templates/branches/branches.mako:28
9012 msgid "Compare Selected Branches"
9013 msgstr ""
9014
9015 #: rhodecode/templates/branches/branches.mako:34
8952 9016 msgid "branches"
8953 9017 msgstr ""
8954 9018
8955 #: rhodecode/templates/branches/branches.mako:31
8956 msgid "Compare Selected Branches"
8957 msgstr ""
8958
8959 9019 #: rhodecode/templates/branches/branches_data.mako:12
8960 #: rhodecode/templates/changelog/changelog_elements.mako:110
8961 #: rhodecode/templates/changeset/changeset.mako:128
8962 #: rhodecode/templates/files/base.mako:23
8963 #: rhodecode/templates/summary/summary_commits.mako:85
9020 #: rhodecode/templates/changeset/changeset.mako:126
9021 #: rhodecode/templates/commits/changelog_elements.mako:108
9022 #: rhodecode/templates/files/base.mako:36
9023 #: rhodecode/templates/summary/summary_commits.mako:78
8964 9024 #, python-format
8965 9025 msgid "Branch %s"
8966 9026 msgstr ""
8967 9027
8968 #: rhodecode/templates/changelog/changelog.mako:6
8969 #, python-format
8970 msgid "%s Changelog"
8971 msgstr ""
8972
8973 #: rhodecode/templates/changelog/changelog.mako:50
8974 #, python-format
8975 msgid "Compare fork with Parent (%s)"
8976 msgstr ""
8977
8978 #: rhodecode/templates/changelog/changelog.mako:65
8979 #: rhodecode/templates/changelog/changelog.mako:66
8980 msgid "Clear selection"
8981 msgstr ""
8982
8983 #: rhodecode/templates/changelog/changelog.mako:81
8984 msgid "Clear filter"
8985 msgstr ""
8986
8987 #: rhodecode/templates/changelog/changelog.mako:89
8988 msgid "Hide obsolete/hidden"
8989 msgstr ""
8990
8991 #: rhodecode/templates/changelog/changelog.mako:91
8992 msgid "Show obsolete/hidden"
8993 msgstr ""
8994
8995 #: rhodecode/templates/changelog/changelog.mako:94
8996 msgid "Show hidden"
8997 msgstr ""
8998
8999 #: rhodecode/templates/changelog/changelog.mako:121
9000 #: rhodecode/templates/files/files_add.mako:99
9001 #: rhodecode/templates/files/files_delete.mako:60
9002 #: rhodecode/templates/files/files_edit.mako:99
9003 msgid "Commit Message"
9004 msgstr ""
9005
9006 #: rhodecode/templates/changelog/changelog.mako:123
9007 #: rhodecode/templates/summary/summary_commits.mako:10
9008 msgid "Age"
9009 msgstr ""
9010
9011 #: rhodecode/templates/changelog/changelog.mako:126
9012 #: rhodecode/templates/summary/summary_commits.mako:12
9013 msgid "Refs"
9014 msgstr ""
9015
9016 #: rhodecode/templates/changelog/changelog.mako:250
9017 msgid "Filter changelog"
9018 msgstr ""
9019
9020 #: rhodecode/templates/changelog/changelog.mako:311
9021 msgid "There are no changes yet"
9022 msgstr ""
9023
9024 #: rhodecode/templates/changelog/changelog_elements.mako:8
9025 msgid "load previous"
9026 msgstr ""
9027
9028 #: rhodecode/templates/changelog/changelog_elements.mako:31
9029 #: rhodecode/templates/summary/summary_commits.mako:27
9030 #, python-format
9031 msgid ""
9032 "Commit status: %s\n"
9033 "Click to open associated pull request #%s"
9034 msgstr ""
9035
9036 #: rhodecode/templates/changelog/changelog_elements.mako:35
9037 #: rhodecode/templates/summary/summary_commits.mako:31
9038 msgid "Commit status: {}"
9039 msgstr ""
9040
9041 #: rhodecode/templates/changelog/changelog_elements.mako:41
9042 #: rhodecode/templates/summary/summary_commits.mako:37
9043 msgid "Commit status: Not Reviewed"
9044 msgstr ""
9045
9046 #: rhodecode/templates/changelog/changelog_elements.mako:46
9047 #: rhodecode/templates/summary/summary_commits.mako:42
9048 msgid "Commit has comments"
9049 msgstr ""
9050
9051 #: rhodecode/templates/changelog/changelog_elements.mako:57
9052 #: rhodecode/templates/changeset/changeset.mako:42
9053 #: rhodecode/templates/summary/summary_commits.mako:50
9054 msgid "Copy the full commit id"
9055 msgstr ""
9056
9057 #: rhodecode/templates/changelog/changelog_elements.mako:64
9058 #: rhodecode/templates/changeset/changeset.mako:44
9059 msgid "Commit phase"
9060 msgstr ""
9061
9062 #: rhodecode/templates/changelog/changelog_elements.mako:71
9063 #: rhodecode/templates/changelog/changelog_elements.mako:78
9064 #: rhodecode/templates/changeset/changeset.mako:50
9065 #: rhodecode/templates/changeset/changeset.mako:57
9066 msgid "Evolve State"
9067 msgstr ""
9068
9069 #: rhodecode/templates/changelog/changelog_elements.mako:71
9070 #: rhodecode/templates/changeset/changeset.mako:50
9071 msgid "obsolete"
9072 msgstr ""
9073
9074 #: rhodecode/templates/changelog/changelog_elements.mako:78
9075 #: rhodecode/templates/changeset/changeset.mako:57
9076 msgid "hidden"
9077 msgstr ""
9078
9079 #: rhodecode/templates/changelog/changelog_elements.mako:82
9080 #: rhodecode/templates/compare/compare_commits.mako:48
9081 #: rhodecode/templates/pullrequests/pullrequest_show.mako:519
9082 #: rhodecode/templates/search/search_commit.mako:34
9083 msgid "Expand commit message"
9084 msgstr ""
9085
9086 #: rhodecode/templates/changelog/changelog_elements.mako:126
9087 #: rhodecode/templates/changeset/changeset.mako:122
9088 #: rhodecode/templates/files/base.mako:17
9089 #: rhodecode/templates/summary/summary_commits.mako:78
9090 #: rhodecode/templates/tags/tags_data.mako:12
9091 #, python-format
9092 msgid "Tag %s"
9093 msgstr ""
9094
9095 #: rhodecode/templates/changelog/changelog_elements.mako:140
9096 msgid "load next"
9097 msgstr ""
9098
9099 #: rhodecode/templates/changelog/changelog_file_history.mako:33
9100 msgid "Show File"
9101 msgstr ""
9102
9103 9028 #: rhodecode/templates/changeset/changeset.mako:7
9104 9029 #, python-format
9105 9030 msgid "%s Commit"
9106 9031 msgstr ""
9107 9032
9108 #: rhodecode/templates/changeset/changeset.mako:65
9033 #: rhodecode/templates/changeset/changeset.mako:38
9034 #: rhodecode/templates/commits/changelog_elements.mako:56
9035 #: rhodecode/templates/summary/summary_commits.mako:43
9036 msgid "Copy the full commit id"
9037 msgstr ""
9038
9039 #: rhodecode/templates/changeset/changeset.mako:40
9040 msgid "Commit phase"
9041 msgstr ""
9042
9043 #: rhodecode/templates/changeset/changeset.mako:46
9044 #: rhodecode/templates/changeset/changeset.mako:53
9045 msgid "Evolve State"
9046 msgstr ""
9047
9048 #: rhodecode/templates/changeset/changeset.mako:46
9049 msgid "obsolete"
9050 msgstr ""
9051
9052 #: rhodecode/templates/changeset/changeset.mako:53
9053 msgid "hidden"
9054 msgstr ""
9055
9056 #: rhodecode/templates/changeset/changeset.mako:60
9109 9057 msgid "Parent Commit"
9110 9058 msgstr ""
9111 9059
9112 #: rhodecode/templates/changeset/changeset.mako:65
9060 #: rhodecode/templates/changeset/changeset.mako:60
9113 9061 msgid "parent"
9114 9062 msgstr ""
9115 9063
9116 #: rhodecode/templates/changeset/changeset.mako:69
9064 #: rhodecode/templates/changeset/changeset.mako:64
9117 9065 msgid "Child Commit"
9118 9066 msgstr ""
9119 9067
9120 #: rhodecode/templates/changeset/changeset.mako:69
9068 #: rhodecode/templates/changeset/changeset.mako:64
9121 9069 msgid "child"
9122 9070 msgstr ""
9123 9071
9124 #: rhodecode/templates/changeset/changeset.mako:81
9072 #: rhodecode/templates/changeset/changeset.mako:80
9125 9073 msgid "Expand"
9126 9074 msgstr ""
9127 9075
9128 9076 #: rhodecode/templates/changeset/changeset.mako:89
9129 #: rhodecode/templates/changeset/changeset.mako:95
9077 #: rhodecode/templates/changeset/changeset.mako:94
9130 9078 #: rhodecode/templates/changeset/changeset_file_comment.mako:83
9131 #: rhodecode/templates/compare/compare_diff.mako:135
9079 #: rhodecode/templates/compare/compare_diff.mako:139
9132 9080 msgid "Commit status"
9133 9081 msgstr ""
9134 9082
9135 9083 #: rhodecode/templates/changeset/changeset.mako:102
9136 #: rhodecode/templates/files/file_tree_detail.mako:21
9137 #: rhodecode/templates/files/files_detail.mako:20
9138 9084 msgid "References"
9139 9085 msgstr ""
9140 9086
9141 #: rhodecode/templates/changeset/changeset.mako:138
9087 #: rhodecode/templates/changeset/changeset.mako:120
9088 #: rhodecode/templates/commits/changelog_elements.mako:124
9089 #: rhodecode/templates/files/base.mako:27
9090 #: rhodecode/templates/summary/summary_commits.mako:71
9091 #: rhodecode/templates/tags/tags_data.mako:12
9092 #, python-format
9093 msgid "Tag %s"
9094 msgstr ""
9095
9096 #: rhodecode/templates/changeset/changeset.mako:137
9142 9097 msgid "Diff options"
9143 9098 msgstr ""
9144 9099
9145 #: rhodecode/templates/changeset/changeset.mako:142
9100 #: rhodecode/templates/changeset/changeset.mako:140
9146 9101 msgid "Raw diff"
9147 9102 msgstr ""
9148 9103
9149 #: rhodecode/templates/changeset/changeset.mako:143
9104 #: rhodecode/templates/changeset/changeset.mako:141
9150 9105 msgid "Raw Diff"
9151 9106 msgstr ""
9152 9107
9153 #: rhodecode/templates/changeset/changeset.mako:146
9108 #: rhodecode/templates/changeset/changeset.mako:144
9154 9109 msgid "Patch diff"
9155 9110 msgstr ""
9156 9111
9157 #: rhodecode/templates/changeset/changeset.mako:147
9112 #: rhodecode/templates/changeset/changeset.mako:145
9158 9113 msgid "Patch Diff"
9159 9114 msgstr ""
9160 9115
9161 #: rhodecode/templates/changeset/changeset.mako:150
9116 #: rhodecode/templates/changeset/changeset.mako:148
9162 9117 msgid "Download diff"
9163 9118 msgstr ""
9164 9119
9165 #: rhodecode/templates/changeset/changeset.mako:151
9120 #: rhodecode/templates/changeset/changeset.mako:149
9166 9121 msgid "Download Diff"
9167 9122 msgstr ""
9168 9123
9169 #: rhodecode/templates/changeset/changeset.mako:179
9124 #: rhodecode/templates/changeset/changeset.mako:178
9170 9125 msgid "Unresolved TODOs"
9171 9126 msgstr ""
9172 9127
9173 #: rhodecode/templates/changeset/changeset.mako:188
9128 #: rhodecode/templates/changeset/changeset.mako:186
9174 9129 msgid "There are no unresolved TODOs"
9175 9130 msgstr ""
9176 9131
@@ -9269,16 +9224,16 b' msgstr ""'
9269 9224
9270 9225 #: rhodecode/templates/changeset/changeset_file_comment.mako:370
9271 9226 #: rhodecode/templates/pullrequests/pullrequest_show.mako:16
9272 #: rhodecode/templates/pullrequests/pullrequest_show.mako:160
9273 #: rhodecode/templates/pullrequests/pullrequests.mako:52
9227 #: rhodecode/templates/pullrequests/pullrequest_show.mako:156
9228 #: rhodecode/templates/pullrequests/pullrequests.mako:31
9274 9229 msgid "Closed"
9275 9230 msgstr ""
9276 9231
9277 9232 #: rhodecode/templates/changeset/changeset_file_comment.mako:400
9278 #: rhodecode/templates/compare/compare_diff.mako:104
9279 #: rhodecode/templates/compare/compare_diff.mako:112
9280 #: rhodecode/templates/compare/compare_diff.mako:120
9281 #: rhodecode/templates/compare/compare_diff.mako:122
9233 #: rhodecode/templates/compare/compare_diff.mako:108
9234 #: rhodecode/templates/compare/compare_diff.mako:116
9235 #: rhodecode/templates/compare/compare_diff.mako:124
9236 #: rhodecode/templates/compare/compare_diff.mako:126
9282 9237 msgid "Comment"
9283 9238 msgstr ""
9284 9239
@@ -9287,22 +9242,20 b' msgstr ""'
9287 9242 msgid "%s Commits"
9288 9243 msgstr ""
9289 9244
9290 #: rhodecode/templates/changeset/changeset_range.mako:16
9291 #: rhodecode/templates/files/file_authors_box.mako:33
9292 #: rhodecode/templates/search/search.mako:90
9293 msgid "Commits"
9294 msgstr ""
9295
9296 #: rhodecode/templates/changeset/changeset_range.mako:44
9245 #: rhodecode/templates/changeset/changeset_range.mako:32
9297 9246 msgid "Commit Range"
9298 9247 msgstr ""
9299 9248
9300 #: rhodecode/templates/changeset/changeset_range.mako:54
9301 msgid "Diff option"
9302 msgstr ""
9303
9304 #: rhodecode/templates/changeset/changeset_range.mako:65
9305 msgid "Show combined compare"
9249 #: rhodecode/templates/changeset/changeset_range.mako:41
9250 msgid "Range"
9251 msgstr ""
9252
9253 #: rhodecode/templates/changeset/changeset_range.mako:59
9254 msgid "Diff Option"
9255 msgstr ""
9256
9257 #: rhodecode/templates/changeset/changeset_range.mako:71
9258 msgid "Show combined diff"
9306 9259 msgstr ""
9307 9260
9308 9261 #: rhodecode/templates/changeset/diff_block.mako:7
@@ -9391,8 +9344,6 b' msgid "File was deleted in this version.'
9391 9344 msgstr ""
9392 9345
9393 9346 #: rhodecode/templates/codeblocks/diffs.mako:387
9394 #: rhodecode/templates/files/files_source.mako:12
9395 #: rhodecode/templates/search/search_content.mako:79
9396 9347 msgid "Copy the full path"
9397 9348 msgstr ""
9398 9349
@@ -9479,7 +9430,7 b' msgstr ""'
9479 9430 msgid "Disabled on range diff"
9480 9431 msgstr ""
9481 9432
9482 #: rhodecode/templates/codeblocks/diffs.mako:1011
9433 #: rhodecode/templates/codeblocks/diffs.mako:1017
9483 9434 msgid "Diff Options"
9484 9435 msgstr ""
9485 9436
@@ -9487,6 +9438,130 b' msgstr ""'
9487 9438 msgid "view annotation from before this change"
9488 9439 msgstr ""
9489 9440
9441 #: rhodecode/templates/commits/changelog.mako:6
9442 #, python-format
9443 msgid "%s Changelog"
9444 msgstr ""
9445
9446 #: rhodecode/templates/commits/changelog.mako:38
9447 msgid "Clear filter"
9448 msgstr ""
9449
9450 #: rhodecode/templates/commits/changelog.mako:45
9451 msgid "Hide obsolete/hidden"
9452 msgstr ""
9453
9454 #: rhodecode/templates/commits/changelog.mako:47
9455 msgid "Show obsolete/hidden"
9456 msgstr ""
9457
9458 #: rhodecode/templates/commits/changelog.mako:50
9459 msgid "Show hidden"
9460 msgstr ""
9461
9462 #: rhodecode/templates/commits/changelog.mako:59
9463 #: rhodecode/templates/compare/compare_diff.mako:93
9464 #, python-format
9465 msgid "Compare fork with %s"
9466 msgstr ""
9467
9468 #: rhodecode/templates/commits/changelog.mako:69
9469 #, python-format
9470 msgid "Compare fork with Parent (%s)"
9471 msgstr ""
9472
9473 #: rhodecode/templates/commits/changelog.mako:107
9474 msgid "Clear selection"
9475 msgstr ""
9476
9477 #: rhodecode/templates/commits/changelog.mako:110
9478 msgid "Select second commit"
9479 msgstr ""
9480
9481 #: rhodecode/templates/commits/changelog.mako:116
9482 msgid "Commit Message"
9483 msgstr ""
9484
9485 #: rhodecode/templates/commits/changelog.mako:118
9486 #: rhodecode/templates/summary/summary_commits.mako:10
9487 msgid "Age"
9488 msgstr ""
9489
9490 #: rhodecode/templates/commits/changelog.mako:121
9491 #: rhodecode/templates/summary/summary_commits.mako:12
9492 msgid "Refs"
9493 msgstr ""
9494
9495 #: rhodecode/templates/commits/changelog.mako:262
9496 msgid "Branch filter"
9497 msgstr ""
9498
9499 #: rhodecode/templates/commits/changelog.mako:323
9500 msgid "There are no changes yet"
9501 msgstr ""
9502
9503 #: rhodecode/templates/commits/changelog_elements.mako:8
9504 msgid "load previous"
9505 msgstr ""
9506
9507 #: rhodecode/templates/commits/changelog_elements.mako:35
9508 #: rhodecode/templates/summary/summary_commits.mako:27
9509 #, python-format
9510 msgid ""
9511 "Commit status: %s\n"
9512 "Click to open associated pull request #%s"
9513 msgstr ""
9514
9515 #: rhodecode/templates/commits/changelog_elements.mako:39
9516 #: rhodecode/templates/summary/summary_commits.mako:31
9517 msgid "Commit status: {}"
9518 msgstr ""
9519
9520 #: rhodecode/templates/commits/changelog_elements.mako:45
9521 #: rhodecode/templates/summary/summary_commits.mako:37
9522 msgid "Commit status: Not Reviewed"
9523 msgstr ""
9524
9525 #: rhodecode/templates/commits/changelog_elements.mako:63
9526 msgid "{} commit phase"
9527 msgstr ""
9528
9529 #: rhodecode/templates/commits/changelog_elements.mako:69
9530 msgid "Obsolete Evolve State"
9531 msgstr ""
9532
9533 #: rhodecode/templates/commits/changelog_elements.mako:74
9534 msgid "Hidden Evolve State"
9535 msgstr ""
9536
9537 #: rhodecode/templates/commits/changelog_elements.mako:80
9538 #: rhodecode/templates/compare/compare_commits.mako:48
9539 #: rhodecode/templates/pullrequests/pullrequest_show.mako:515
9540 #: rhodecode/templates/search/search_commit.mako:34
9541 msgid "Expand commit message"
9542 msgstr ""
9543
9544 #: rhodecode/templates/commits/changelog_elements.mako:135
9545 #: rhodecode/templates/summary/summary_commits.mako:87
9546 msgid "Commit has comments"
9547 msgstr ""
9548
9549 #: rhodecode/templates/commits/changelog_elements.mako:150
9550 msgid "load next"
9551 msgstr ""
9552
9553 #: rhodecode/templates/commits/changelog_file_history.mako:33
9554 msgid "Show File"
9555 msgstr ""
9556
9557 #: rhodecode/templates/commits/changelog_file_history.mako:38
9558 msgid "Diff File"
9559 msgstr ""
9560
9561 #: rhodecode/templates/commits/changelog_file_history.mako:46
9562 msgid "Show Full History"
9563 msgstr ""
9564
9490 9565 #: rhodecode/templates/compare/compare_commits.mako:5
9491 9566 msgid "Common Ancestor Commit"
9492 9567 msgstr ""
@@ -9496,7 +9571,7 b' msgid "Compare was calculated based on t'
9496 9571 msgstr ""
9497 9572
9498 9573 #: rhodecode/templates/compare/compare_commits.mako:17
9499 #: rhodecode/templates/pullrequests/pullrequest_show.mako:480
9574 #: rhodecode/templates/pullrequests/pullrequest_show.mako:476
9500 9575 msgid "Time"
9501 9576 msgstr ""
9502 9577
@@ -9510,50 +9585,59 b' msgstr ""'
9510 9585 msgid "%s Compare"
9511 9586 msgstr ""
9512 9587
9513 #: rhodecode/templates/compare/compare_diff.mako:44
9514 #: rhodecode/templates/compare/compare_diff.mako:101
9515 #: rhodecode/templates/compare/compare_diff.mako:110
9516 #: rhodecode/templates/compare/compare_diff.mako:115
9588 #: rhodecode/templates/compare/compare_diff.mako:38
9589 #: rhodecode/templates/compare/compare_diff.mako:90
9590 #: rhodecode/templates/compare/compare_diff.mako:114
9591 #: rhodecode/templates/compare/compare_diff.mako:119
9517 9592 msgid "Compare Commits"
9518 9593 msgstr ""
9519 9594
9520 #: rhodecode/templates/compare/compare_diff.mako:46
9595 #: rhodecode/templates/compare/compare_diff.mako:40
9521 9596 msgid "for file"
9522 9597 msgstr ""
9523 9598
9524 #: rhodecode/templates/compare/compare_diff.mako:60
9599 #: rhodecode/templates/compare/compare_diff.mako:56
9525 9600 #: rhodecode/templates/email_templates/pull_request_review.mako:74
9526 #: rhodecode/templates/pullrequests/pullrequest_show.mako:108
9601 #: rhodecode/templates/pullrequests/pullrequest_show.mako:104
9527 9602 msgid "Target"
9528 9603 msgstr ""
9529 9604
9530 #: rhodecode/templates/compare/compare_diff.mako:76
9605 #: rhodecode/templates/compare/compare_diff.mako:70
9531 9606 #: rhodecode/templates/email_templates/pull_request_comment.mako:90
9532 9607 #: rhodecode/templates/email_templates/pull_request_review.mako:73
9533 #: rhodecode/templates/files/files_source.mako:33
9534 #: rhodecode/templates/pullrequests/pullrequest_show.mako:72
9608 #: rhodecode/templates/files/files_source.mako:86
9609 #: rhodecode/templates/pullrequests/pullrequest_show.mako:68
9535 9610 msgid "Source"
9536 9611 msgstr ""
9537 9612
9538 #: rhodecode/templates/compare/compare_diff.mako:103
9539 #: rhodecode/templates/compare/compare_diff.mako:104
9613 #: rhodecode/templates/compare/compare_diff.mako:102
9614 msgid "Compare with origin"
9615 msgstr ""
9616
9617 #: rhodecode/templates/compare/compare_diff.mako:107
9618 #: rhodecode/templates/compare/compare_diff.mako:108
9619 #: rhodecode/templates/compare/compare_diff.mako:114
9620 #: rhodecode/templates/compare/compare_diff.mako:115
9621 #: rhodecode/templates/compare/compare_diff.mako:116
9622 #: rhodecode/templates/compare/compare_diff.mako:126
9623 msgid "Action unavailable in current view"
9624 msgstr ""
9625
9626 #: rhodecode/templates/compare/compare_diff.mako:107
9627 #: rhodecode/templates/compare/compare_diff.mako:115
9628 #: rhodecode/templates/compare/compare_diff.mako:120
9629 msgid "Swap"
9630 msgstr ""
9631
9540 9632 #: rhodecode/templates/compare/compare_diff.mako:110
9541 #: rhodecode/templates/compare/compare_diff.mako:111
9542 #: rhodecode/templates/compare/compare_diff.mako:112
9543 #: rhodecode/templates/compare/compare_diff.mako:122
9544 msgid "Action unavailable in current view"
9545 msgstr ""
9546
9547 #: rhodecode/templates/compare/compare_diff.mako:103
9548 #: rhodecode/templates/compare/compare_diff.mako:111
9549 #: rhodecode/templates/compare/compare_diff.mako:116
9550 msgid "Swap"
9551 msgstr ""
9552
9553 #: rhodecode/templates/compare/compare_diff.mako:106
9554 9633 msgid "Compare commits, branches, bookmarks or tags."
9555 9634 msgstr ""
9556 9635
9636 #: rhodecode/templates/data_table/_dt_elements.mako:61
9637 #: rhodecode/templates/data_table/_dt_elements.mako:62
9638 msgid "Fork"
9639 msgstr ""
9640
9557 9641 #: rhodecode/templates/data_table/_dt_elements.mako:83
9558 9642 msgid "Mercurial repository"
9559 9643 msgstr ""
@@ -9618,7 +9702,7 b' msgid "User group"'
9618 9702 msgstr ""
9619 9703
9620 9704 #: rhodecode/templates/data_table/_dt_elements.mako:333
9621 #: rhodecode/templates/forks/fork.mako:95
9705 #: rhodecode/templates/forks/fork.mako:91
9622 9706 msgid "Private"
9623 9707 msgstr ""
9624 9708
@@ -9627,7 +9711,16 b' msgstr ""'
9627 9711 msgid "Pull request #%(pr_number)s"
9628 9712 msgstr ""
9629 9713
9630 #: rhodecode/templates/data_table/_dt_elements.mako:407
9714 #: rhodecode/templates/data_table/_dt_elements.mako:387
9715 msgid "Copy the full url"
9716 msgstr ""
9717
9718 #: rhodecode/templates/data_table/_dt_elements.mako:398
9719 #, python-format
9720 msgid "Confirm to delete this artifact: %s"
9721 msgstr ""
9722
9723 #: rhodecode/templates/data_table/_dt_elements.mako:431
9631 9724 #, python-format
9632 9725 msgid "Parsed using %s syntax"
9633 9726 msgstr ""
@@ -9861,7 +9954,7 b' msgid "{user} left a {comment_type} on p'
9861 9954 msgstr ""
9862 9955
9863 9956 #: rhodecode/templates/email_templates/pull_request_comment.mako:49
9864 #: rhodecode/templates/pullrequests/pullrequest.mako:73
9957 #: rhodecode/templates/pullrequests/pullrequest.mako:67
9865 9958 msgid "Source repository"
9866 9959 msgstr ""
9867 9960
@@ -9945,93 +10038,46 b' msgstr ""'
9945 10038 msgid "Commit was too big and was cut off..."
9946 10039 msgstr ""
9947 10040
9948 #: rhodecode/templates/files/file_authors_box.mako:6
9949 msgid "Last Author"
9950 msgstr ""
9951
9952 #: rhodecode/templates/files/file_authors_box.mako:11
9953 msgid "Show All"
9954 msgstr ""
9955
9956 #: rhodecode/templates/files/file_authors_box.mako:25
10041 #: rhodecode/templates/files/file_authors_box.mako:16
10042 msgid "Load All Authors"
10043 msgstr ""
10044
10045 #: rhodecode/templates/files/file_authors_box.mako:18
9957 10046 msgid "last author"
9958 10047 msgstr ""
9959 10048
9960 #: rhodecode/templates/files/file_tree_author_box.mako:5
9961 msgid "Commit Author"
9962 msgstr ""
9963
9964 10049 #: rhodecode/templates/files/files.mako:4
9965 10050 #: rhodecode/templates/files/files_pjax.mako:2
9966 #, python-format
9967 msgid "%s Files"
9968 msgstr ""
9969
9970 #: rhodecode/templates/files/files.mako:131
9971 msgid "Pick Commit"
10051 msgid "{} Files"
9972 10052 msgstr ""
9973 10053
9974 10054 #: rhodecode/templates/files/files_add.mako:4
9975 #, python-format
9976 msgid "%s Files Add"
9977 msgstr ""
9978
9979 #: rhodecode/templates/files/files_add.mako:15
10055 msgid "{} Files Add"
10056 msgstr ""
10057
10058 #: rhodecode/templates/files/files_add.mako:25
9980 10059 msgid "Add new file"
9981 10060 msgstr ""
9982 10061
9983 #: rhodecode/templates/files/files_add.mako:34
9984 #: rhodecode/templates/files/files_delete.mako:34
9985 #: rhodecode/templates/files/files_edit.mako:34
9986 msgid "Path"
9987 msgstr ""
9988
9989 #: rhodecode/templates/files/files_add.mako:39
9990 msgid "Specify Custom Path"
9991 msgstr ""
9992
9993 10062 #: rhodecode/templates/files/files_add.mako:44
9994 msgid "Remove Custom Path"
9995 msgstr ""
9996
9997 #: rhodecode/templates/files/files_add.mako:50
9998 #: rhodecode/templates/files/files_add.mako:59
9999 msgid "Filename"
10000 msgstr ""
10001
10002 #: rhodecode/templates/files/files_add.mako:54
10003 msgid "Upload File"
10004 msgstr ""
10005
10006 #: rhodecode/templates/files/files_add.mako:62
10007 msgid "No file selected"
10063 #: rhodecode/templates/files/files_edit.mako:45
10064 msgid "Filename e.g example.py, or docs/readme.md"
10008 10065 msgstr ""
10009 10066
10010 10067 #: rhodecode/templates/files/files_add.mako:65
10011 msgid "Upload file"
10012 msgstr ""
10013
10014 #: rhodecode/templates/files/files_add.mako:71
10015 msgid "Create New File"
10016 msgstr ""
10017
10018 #: rhodecode/templates/files/files_add.mako:81
10019 #: rhodecode/templates/files/files_edit.mako:82
10020 msgid "line wraps"
10021 msgstr ""
10022
10023 #: rhodecode/templates/files/files_add.mako:82
10024 #: rhodecode/templates/files/files_edit.mako:83
10025 msgid "on"
10026 msgstr ""
10027
10028 #: rhodecode/templates/files/files_add.mako:82
10029 #: rhodecode/templates/files/files_edit.mako:83
10030 msgid "off"
10031 msgstr ""
10032
10033 #: rhodecode/templates/files/files_add.mako:109
10034 #: rhodecode/templates/files/files_edit.mako:109
10068 #: rhodecode/templates/files/files_edit.mako:66
10069 msgid "Line wraps on"
10070 msgstr ""
10071
10072 #: rhodecode/templates/files/files_add.mako:65
10073 #: rhodecode/templates/files/files_edit.mako:66
10074 msgid "line wraps off"
10075 msgstr ""
10076
10077 #: rhodecode/templates/files/files_add.mako:88
10078 #: rhodecode/templates/files/files_delete.mako:72
10079 #: rhodecode/templates/files/files_edit.mako:89
10080 #: rhodecode/templates/files/files_upload.mako:102
10035 10081 msgid "Commit changes"
10036 10082 msgstr ""
10037 10083
@@ -10039,182 +10085,144 b' msgstr ""'
10039 10085 msgid "Previous commit"
10040 10086 msgstr ""
10041 10087
10042 #: rhodecode/templates/files/files_browser.mako:13
10088 #: rhodecode/templates/files/files_browser.mako:15
10043 10089 msgid "Next commit"
10044 10090 msgstr ""
10045 10091
10046 #: rhodecode/templates/files/files_browser.mako:19
10047 msgid "Search File List"
10048 msgstr ""
10049
10050 10092 #: rhodecode/templates/files/files_browser.mako:22
10051 msgid "Close File List"
10093 msgid "Upload File"
10052 10094 msgstr ""
10053 10095
10054 10096 #: rhodecode/templates/files/files_browser.mako:25
10055 #: rhodecode/templates/summary/summary_commits.mako:112
10056 msgid "Add New File"
10057 msgstr ""
10058
10059 #: rhodecode/templates/files/files_browser.mako:27
10060 10097 msgid "Add File"
10061 10098 msgstr ""
10062 10099
10063 #: rhodecode/templates/files/files_browser.mako:32
10064 #: rhodecode/templates/files/files_browser.mako:34
10065 msgid "Download tree at {}"
10066 msgstr ""
10067
10068 #: rhodecode/templates/files/files_browser.mako:42
10069 msgid "Loading file list..."
10070 msgstr ""
10071
10072 #: rhodecode/templates/files/files_browser_tree.mako:6
10100 #: rhodecode/templates/files/files_browser.mako:35
10101 msgid "Download full tree ZIP"
10102 msgstr ""
10103
10104 #: rhodecode/templates/files/files_browser.mako:39
10105 msgid "Download this tree ZIP"
10106 msgstr ""
10107
10108 #: rhodecode/templates/files/files_browser_tree.mako:12
10073 10109 #: rhodecode/templates/search/search_path.mako:9
10074 10110 msgid "Size"
10075 10111 msgstr ""
10076 10112
10077 #: rhodecode/templates/files/files_browser_tree.mako:7
10113 #: rhodecode/templates/files/files_browser_tree.mako:13
10078 10114 msgid "Modified"
10079 10115 msgstr ""
10080 10116
10081 #: rhodecode/templates/files/files_browser_tree.mako:8
10117 #: rhodecode/templates/files/files_browser_tree.mako:14
10082 10118 msgid "Last Commit"
10083 10119 msgstr ""
10084 10120
10085 10121 #: rhodecode/templates/files/files_delete.mako:4
10086 #, python-format
10087 msgid "%s Files Delete"
10088 msgstr ""
10089
10090 #: rhodecode/templates/files/files_delete.mako:15
10122 msgid "{} Files Delete"
10123 msgstr ""
10124
10125 #: rhodecode/templates/files/files_delete.mako:25
10091 10126 msgid "Delete file"
10092 10127 msgstr ""
10093 10128
10094 #: rhodecode/templates/files/files_delete.mako:45
10095 #: rhodecode/templates/files/files_source.mako:75
10129 #: rhodecode/templates/files/files_delete.mako:53
10130 #: rhodecode/templates/files/files_source.mako:104
10096 10131 #, python-format
10097 10132 msgid "Binary file (%s)"
10098 10133 msgstr ""
10099 10134
10100 #: rhodecode/templates/files/files_delete.mako:50
10101 #: rhodecode/templates/files/files_source.mako:104
10135 #: rhodecode/templates/files/files_delete.mako:58
10136 #: rhodecode/templates/files/files_source.mako:133
10102 10137 msgid "File size {} is bigger then allowed limit {}. "
10103 10138 msgstr ""
10104 10139
10105 #: rhodecode/templates/files/files_delete.mako:70
10106 msgid "Delete File"
10107 msgstr ""
10108
10109 #: rhodecode/templates/files/files_detail.mako:5
10110 #: rhodecode/templates/files/files_detail.mako:12
10111 msgid "Commit Description"
10112 msgstr ""
10113
10114 #: rhodecode/templates/files/files_detail.mako:32
10115 msgid "File last commit"
10116 msgstr ""
10117
10118 #: rhodecode/templates/files/files_detail.mako:46
10119 msgid "Show/Diff file"
10120 msgstr ""
10121
10122 #: rhodecode/templates/files/files_detail.mako:61
10123 msgid "Diff to Commit"
10124 msgstr ""
10125
10126 #: rhodecode/templates/files/files_detail.mako:62
10127 msgid "Show at Commit"
10128 msgstr ""
10129
10130 10140 #: rhodecode/templates/files/files_edit.mako:4
10131 #, python-format
10132 msgid "%s File Edit"
10133 msgstr ""
10134
10135 #: rhodecode/templates/files/files_edit.mako:15
10141 msgid "{} Files Edit"
10142 msgstr ""
10143
10144 #: rhodecode/templates/files/files_edit.mako:25
10136 10145 msgid "Edit file"
10137 10146 msgstr ""
10138 10147
10139 #: rhodecode/templates/files/files_edit.mako:55
10140 msgid "history"
10141 msgstr ""
10142
10143 #: rhodecode/templates/files/files_edit.mako:61
10144 msgid "source"
10145 msgstr ""
10146
10147 #: rhodecode/templates/files/files_edit.mako:63
10148 #: rhodecode/templates/files/files_pjax.mako:19
10149 msgid "annotation"
10150 msgstr ""
10151
10152 #: rhodecode/templates/files/files_edit.mako:67
10153 msgid "raw"
10154 msgstr ""
10155
10156 #: rhodecode/templates/files/files_edit.mako:70
10157 msgid "download"
10158 msgstr ""
10159
10160 #: rhodecode/templates/files/files_edit.mako:77
10161 msgid "Editing file"
10162 msgstr ""
10163
10164 #: rhodecode/templates/files/files_pjax.mako:17
10165 msgid "Location"
10166 msgstr ""
10167
10168 #: rhodecode/templates/files/files_source.mako:16
10169 msgid "This file is a pointer to large binary file"
10170 msgstr ""
10171
10172 10148 #: rhodecode/templates/files/files_source.mako:16
10149 msgid "Download largefile"
10150 msgstr ""
10151
10152 #: rhodecode/templates/files/files_source.mako:20
10153 msgid "Download file"
10154 msgstr ""
10155
10156 #: rhodecode/templates/files/files_source.mako:29
10157 msgid "Editing binary files not allowed"
10158 msgstr ""
10159
10160 #: rhodecode/templates/files/files_source.mako:33
10161 msgid "Edit on branch: "
10162 msgstr ""
10163
10164 #: rhodecode/templates/files/files_source.mako:42
10165 msgid "Editing files allowed only when on branch head commit"
10166 msgstr ""
10167
10168 #: rhodecode/templates/files/files_source.mako:43
10169 msgid "Deleting files allowed only when on branch head commit"
10170 msgstr ""
10171
10172 #: rhodecode/templates/files/files_source.mako:67
10173 msgid "This file is a pointer to large binary file"
10174 msgstr ""
10175
10176 #: rhodecode/templates/files/files_source.mako:67
10173 10177 msgid "LargeFile"
10174 10178 msgstr ""
10175 10179
10176 #: rhodecode/templates/files/files_source.mako:27
10180 #: rhodecode/templates/files/files_source.mako:82
10177 10181 msgid "History"
10178 10182 msgstr ""
10179 10183
10180 #: rhodecode/templates/files/files_source.mako:30
10181 #: rhodecode/templates/search/search_content.mako:86
10182 msgid "Show Full History"
10183 msgstr ""
10184
10185 #: rhodecode/templates/files/files_source.mako:35
10186 #: rhodecode/templates/search/search_content.mako:88
10184 #: rhodecode/templates/files/files_source.mako:88
10187 10185 msgid "Annotation"
10188 10186 msgstr ""
10189 10187
10190 #: rhodecode/templates/files/files_source.mako:37
10191 #: rhodecode/templates/search/search_content.mako:89
10188 #: rhodecode/templates/files/files_source.mako:90
10192 10189 msgid "Raw"
10193 10190 msgstr ""
10194 10191
10195 #: rhodecode/templates/files/files_source.mako:41
10196 msgid "Download largefile"
10197 msgstr ""
10198
10199 #: rhodecode/templates/files/files_source.mako:45
10200 #: rhodecode/templates/search/search_content.mako:90
10201 msgid "Download"
10202 msgstr ""
10203
10204 #: rhodecode/templates/files/files_source.mako:53
10205 msgid "Edit on Branch:{}"
10206 msgstr ""
10207
10208 #: rhodecode/templates/files/files_source.mako:58
10209 msgid "Editing binary files not allowed"
10210 msgstr ""
10211
10212 #: rhodecode/templates/files/files_source.mako:61
10213 msgid "Editing files allowed only when on branch head commit"
10214 msgstr ""
10215
10216 #: rhodecode/templates/files/files_source.mako:62
10217 msgid "Deleting files allowed only when on branch head commit"
10192 #: rhodecode/templates/files/files_source_header.mako:31
10193 msgid "File last commit"
10194 msgstr ""
10195
10196 #: rhodecode/templates/files/files_upload.mako:4
10197 msgid "{} Files Upload"
10198 msgstr ""
10199
10200 #: rhodecode/templates/files/files_upload.mako:36
10201 msgid "Uploading..."
10202 msgstr ""
10203
10204 #: rhodecode/templates/files/files_upload.mako:38
10205 msgid "Uploaded"
10206 msgstr ""
10207
10208 #: rhodecode/templates/files/files_upload.mako:52
10209 msgid "Upload new file"
10210 msgstr ""
10211
10212 #: rhodecode/templates/files/files_upload.mako:86
10213 msgid "Drag'n Drop files here or"
10214 msgstr ""
10215
10216 #: rhodecode/templates/files/files_upload.mako:86
10217 msgid "Choose your files"
10218 msgstr ""
10219
10220 #: rhodecode/templates/files/files_upload.mako:109
10221 msgid "Commiting..."
10222 msgstr ""
10223
10224 #: rhodecode/templates/files/files_upload.mako:110
10225 msgid "Please wait while the files are being uploaded"
10218 10226 msgstr ""
10219 10227
10220 10228 #: rhodecode/templates/forks/fork.mako:5
@@ -10222,20 +10230,20 b' msgstr ""'
10222 10230 msgid "Fork repository %s"
10223 10231 msgstr ""
10224 10232
10225 #: rhodecode/templates/forks/fork.mako:34
10226 #: rhodecode/templates/forks/forks.mako:62
10233 #: rhodecode/templates/forks/fork.mako:30
10234 #: rhodecode/templates/forks/forks.mako:60
10227 10235 msgid "Fork name"
10228 10236 msgstr ""
10229 10237
10238 #: rhodecode/templates/forks/fork.mako:81
10239 msgid "Copy permissions"
10240 msgstr ""
10241
10230 10242 #: rhodecode/templates/forks/fork.mako:85
10231 msgid "Copy permissions"
10232 msgstr ""
10233
10234 #: rhodecode/templates/forks/fork.mako:89
10235 10243 msgid "Copy permissions from parent repository."
10236 10244 msgstr ""
10237 10245
10238 #: rhodecode/templates/forks/fork.mako:104
10246 #: rhodecode/templates/forks/fork.mako:100
10239 10247 msgid "Fork this Repository"
10240 10248 msgstr ""
10241 10249
@@ -10244,15 +10252,11 b' msgstr ""'
10244 10252 msgid "%s Forks"
10245 10253 msgstr ""
10246 10254
10247 #: rhodecode/templates/forks/forks.mako:12
10248 msgid "Forks"
10249 msgstr ""
10250
10251 #: rhodecode/templates/forks/forks.mako:30
10255 #: rhodecode/templates/forks/forks.mako:28
10252 10256 msgid "Create new fork"
10253 10257 msgstr ""
10254 10258
10255 #: rhodecode/templates/forks/forks.mako:66
10259 #: rhodecode/templates/forks/forks.mako:64
10256 10260 msgid "Forked"
10257 10261 msgstr ""
10258 10262
@@ -10282,65 +10286,65 b' msgid "RSS public journal feed"'
10282 10286 msgstr ""
10283 10287
10284 10288 #: rhodecode/templates/pullrequests/pullrequest.mako:5
10285 #: rhodecode/templates/pullrequests/pullrequest.mako:9
10289 #: rhodecode/templates/pullrequests/pullrequest.mako:22
10286 10290 msgid "New pull request"
10287 10291 msgstr ""
10288 10292
10289 #: rhodecode/templates/pullrequests/pullrequest.mako:65
10293 #: rhodecode/templates/pullrequests/pullrequest.mako:59
10290 10294 msgid "Commit flow"
10291 10295 msgstr ""
10292 10296
10293 #: rhodecode/templates/pullrequests/pullrequest.mako:91
10297 #: rhodecode/templates/pullrequests/pullrequest.mako:85
10294 10298 msgid "Loading refs..."
10295 10299 msgstr ""
10296 10300
10297 #: rhodecode/templates/pullrequests/pullrequest.mako:102
10301 #: rhodecode/templates/pullrequests/pullrequest.mako:96
10298 10302 msgid "Submit Pull Request"
10299 10303 msgstr ""
10300 10304
10301 #: rhodecode/templates/pullrequests/pullrequest.mako:116
10302 #: rhodecode/templates/pullrequests/pullrequest_show.mako:317
10305 #: rhodecode/templates/pullrequests/pullrequest.mako:110
10306 #: rhodecode/templates/pullrequests/pullrequest_show.mako:313
10303 10307 msgid "Author of this pull request"
10304 10308 msgstr ""
10305 10309
10306 #: rhodecode/templates/pullrequests/pullrequest.mako:130
10307 #: rhodecode/templates/pullrequests/pullrequest_show.mako:331
10310 #: rhodecode/templates/pullrequests/pullrequest.mako:124
10311 #: rhodecode/templates/pullrequests/pullrequest_show.mako:327
10308 10312 msgid "Reviewer rules"
10309 10313 msgstr ""
10310 10314
10311 #: rhodecode/templates/pullrequests/pullrequest.mako:140
10312 #: rhodecode/templates/pullrequests/pullrequest_show.mako:345
10315 #: rhodecode/templates/pullrequests/pullrequest.mako:134
10316 #: rhodecode/templates/pullrequests/pullrequest_show.mako:341
10313 10317 msgid "Pull request reviewers"
10314 10318 msgstr ""
10315 10319
10316 #: rhodecode/templates/pullrequests/pullrequest.mako:151
10317 #: rhodecode/templates/pullrequests/pullrequest_show.mako:388
10320 #: rhodecode/templates/pullrequests/pullrequest.mako:145
10321 #: rhodecode/templates/pullrequests/pullrequest_show.mako:384
10318 10322 msgid "Add reviewer or reviewer group"
10319 10323 msgstr ""
10320 10324
10325 #: rhodecode/templates/pullrequests/pullrequest.mako:301
10326 #: rhodecode/templates/pullrequests/pullrequest.mako:518
10327 msgid "Please select source and target"
10328 msgstr ""
10329
10321 10330 #: rhodecode/templates/pullrequests/pullrequest.mako:307
10322 #: rhodecode/templates/pullrequests/pullrequest.mako:524
10323 msgid "Please select source and target"
10324 msgstr ""
10325
10326 #: rhodecode/templates/pullrequests/pullrequest.mako:313
10327 10331 msgid "Loading compare ..."
10328 10332 msgstr ""
10329 10333
10330 #: rhodecode/templates/pullrequests/pullrequest.mako:372
10334 #: rhodecode/templates/pullrequests/pullrequest.mako:366
10331 10335 msgid "Show detailed compare."
10332 10336 msgstr ""
10333 10337
10334 #: rhodecode/templates/pullrequests/pullrequest.mako:379
10338 #: rhodecode/templates/pullrequests/pullrequest.mako:373
10335 10339 msgid "There are no commits to merge."
10336 10340 msgstr ""
10337 10341
10338 #: rhodecode/templates/pullrequests/pullrequest.mako:429
10339 #: rhodecode/templates/pullrequests/pullrequest.mako:455
10342 #: rhodecode/templates/pullrequests/pullrequest.mako:423
10343 #: rhodecode/templates/pullrequests/pullrequest.mako:449
10340 10344 msgid "Select commit reference"
10341 10345 msgstr ""
10342 10346
10343 #: rhodecode/templates/pullrequests/pullrequest.mako:445
10347 #: rhodecode/templates/pullrequests/pullrequest.mako:439
10344 10348 msgid "Target repository"
10345 10349 msgstr ""
10346 10350
@@ -10352,26 +10356,26 b' msgstr ""'
10352 10356 msgid "Merge is not currently possible because of below failed checks."
10353 10357 msgstr ""
10354 10358
10355 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:52
10356 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:57
10359 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:55
10360 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:60
10357 10361 msgid "refresh checks"
10358 10362 msgstr ""
10359 10363
10360 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:53
10361 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:58
10364 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:56
10365 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:61
10362 10366 msgid "Merge Pull Request"
10363 10367 msgstr ""
10364 10368
10365 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:58
10369 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:61
10366 10370 msgid "You are not allowed to merge this pull request."
10367 10371 msgstr ""
10368 10372
10369 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:60
10373 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:63
10370 10374 msgid "Login to Merge this Pull Request"
10371 10375 msgstr ""
10372 10376
10373 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:69
10374 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:73
10377 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:72
10378 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:76
10375 10379 msgid "Close with status {}"
10376 10380 msgstr ""
10377 10381
@@ -10380,182 +10384,182 b' msgstr ""'
10380 10384 msgid "%s Pull Request #%s"
10381 10385 msgstr ""
10382 10386
10383 #: rhodecode/templates/pullrequests/pullrequest_show.mako:52
10387 #: rhodecode/templates/pullrequests/pullrequest_show.mako:48
10384 10388 msgid "From"
10385 10389 msgstr ""
10386 10390
10387 #: rhodecode/templates/pullrequests/pullrequest_show.mako:58
10391 #: rhodecode/templates/pullrequests/pullrequest_show.mako:54
10388 10392 msgid "Confirm to delete this pull request"
10389 10393 msgstr ""
10390 10394
10391 #: rhodecode/templates/pullrequests/pullrequest_show.mako:89
10395 #: rhodecode/templates/pullrequests/pullrequest_show.mako:85
10392 10396 msgid "Common ancestor"
10393 10397 msgstr ""
10394 10398
10395 #: rhodecode/templates/pullrequests/pullrequest_show.mako:101
10399 #: rhodecode/templates/pullrequests/pullrequest_show.mako:97
10396 10400 msgid "Copy the pull url"
10397 10401 msgstr ""
10398 10402
10399 #: rhodecode/templates/pullrequests/pullrequest_show.mako:130
10403 #: rhodecode/templates/pullrequests/pullrequest_show.mako:126
10400 10404 msgid "Merge"
10401 10405 msgstr ""
10402 10406
10407 #: rhodecode/templates/pullrequests/pullrequest_show.mako:137
10408 #: rhodecode/templates/summary/components.mako:78
10409 msgid "Copy the clone url"
10410 msgstr ""
10411
10403 10412 #: rhodecode/templates/pullrequests/pullrequest_show.mako:141
10404 #: rhodecode/templates/summary/components.mako:66
10405 msgid "Copy the clone url"
10406 msgstr ""
10407
10408 #: rhodecode/templates/pullrequests/pullrequest_show.mako:145
10409 10413 msgid "Shadow repository data not available"
10410 10414 msgstr ""
10411 10415
10412 #: rhodecode/templates/pullrequests/pullrequest_show.mako:153
10416 #: rhodecode/templates/pullrequests/pullrequest_show.mako:149
10413 10417 msgid "Review"
10414 10418 msgstr ""
10415 10419
10416 #: rhodecode/templates/pullrequests/pullrequest_show.mako:169
10420 #: rhodecode/templates/pullrequests/pullrequest_show.mako:165
10417 10421 msgid "Rendered using {} renderer"
10418 10422 msgstr ""
10419 10423
10420 #: rhodecode/templates/pullrequests/pullrequest_show.mako:183
10424 #: rhodecode/templates/pullrequests/pullrequest_show.mako:179
10421 10425 msgid "Versions"
10422 10426 msgstr ""
10423 10427
10424 #: rhodecode/templates/pullrequests/pullrequest_show.mako:195
10428 #: rhodecode/templates/pullrequests/pullrequest_show.mako:191
10425 10429 msgid "Hide all versions of this pull request"
10426 10430 msgstr ""
10427 10431
10428 #: rhodecode/templates/pullrequests/pullrequest_show.mako:220
10432 #: rhodecode/templates/pullrequests/pullrequest_show.mako:216
10429 10433 msgid "Your review status at this version"
10430 10434 msgstr ""
10431 10435
10432 #: rhodecode/templates/pullrequests/pullrequest_show.mako:226
10436 #: rhodecode/templates/pullrequests/pullrequest_show.mako:222
10433 10437 msgid "Comment from pull request version v{0}, general:{1} inline:{2}"
10434 10438 msgstr ""
10435 10439
10440 #: rhodecode/templates/pullrequests/pullrequest_show.mako:239
10436 10441 #: rhodecode/templates/pullrequests/pullrequest_show.mako:243
10437 #: rhodecode/templates/pullrequests/pullrequest_show.mako:247
10438 10442 msgid "select versions to show changes"
10439 10443 msgstr ""
10440 10444
10441 #: rhodecode/templates/pullrequests/pullrequest_show.mako:244
10445 #: rhodecode/templates/pullrequests/pullrequest_show.mako:240
10442 10446 msgid "show changes between versions"
10443 10447 msgstr ""
10444 10448
10445 #: rhodecode/templates/pullrequests/pullrequest_show.mako:245
10449 #: rhodecode/templates/pullrequests/pullrequest_show.mako:241
10446 10450 msgid "show pull request for this version"
10447 10451 msgstr ""
10448 10452
10453 #: rhodecode/templates/pullrequests/pullrequest_show.mako:256
10454 msgid "Comments at this version"
10455 msgstr ""
10456
10449 10457 #: rhodecode/templates/pullrequests/pullrequest_show.mako:260
10450 msgid "Comments at this version"
10451 msgstr ""
10452
10453 #: rhodecode/templates/pullrequests/pullrequest_show.mako:264
10454 10458 msgid "Comments for this pull request"
10455 10459 msgstr ""
10456 10460
10457 #: rhodecode/templates/pullrequests/pullrequest_show.mako:269
10458 #: rhodecode/templates/pullrequests/pullrequest_show.mako:271
10461 #: rhodecode/templates/pullrequests/pullrequest_show.mako:265
10462 #: rhodecode/templates/pullrequests/pullrequest_show.mako:267
10459 10463 #, python-format
10460 10464 msgid "%d General "
10461 10465 msgstr ""
10462 10466
10463 #: rhodecode/templates/pullrequests/pullrequest_show.mako:275
10464 #: rhodecode/templates/pullrequests/pullrequest_show.mako:277
10467 #: rhodecode/templates/pullrequests/pullrequest_show.mako:271
10468 #: rhodecode/templates/pullrequests/pullrequest_show.mako:273
10465 10469 #, python-format
10466 10470 msgid "%d Inline"
10467 10471 msgstr ""
10468 10472
10473 #: rhodecode/templates/pullrequests/pullrequest_show.mako:277
10469 10474 #: rhodecode/templates/pullrequests/pullrequest_show.mako:281
10470 #: rhodecode/templates/pullrequests/pullrequest_show.mako:285
10471 10475 #, python-format
10472 10476 msgid "%d Outdated"
10473 10477 msgstr ""
10474 10478
10475 #: rhodecode/templates/pullrequests/pullrequest_show.mako:282
10479 #: rhodecode/templates/pullrequests/pullrequest_show.mako:278
10476 10480 msgid "show outdated comments"
10477 10481 msgstr ""
10478 10482
10479 #: rhodecode/templates/pullrequests/pullrequest_show.mako:283
10483 #: rhodecode/templates/pullrequests/pullrequest_show.mako:279
10480 10484 msgid "hide outdated comments"
10481 10485 msgstr ""
10482 10486
10483 #: rhodecode/templates/pullrequests/pullrequest_show.mako:294
10487 #: rhodecode/templates/pullrequests/pullrequest_show.mako:290
10484 10488 msgid "Pull request versions not available"
10485 10489 msgstr ""
10486 10490
10487 #: rhodecode/templates/pullrequests/pullrequest_show.mako:308
10488 #: rhodecode/templates/pullrequests/pullrequest_show.mako:393
10491 #: rhodecode/templates/pullrequests/pullrequest_show.mako:304
10492 #: rhodecode/templates/pullrequests/pullrequest_show.mako:389
10489 10493 msgid "Save Changes"
10490 10494 msgstr ""
10491 10495
10492 #: rhodecode/templates/pullrequests/pullrequest_show.mako:410
10496 #: rhodecode/templates/pullrequests/pullrequest_show.mako:406
10493 10497 msgid "Missing requirements:"
10494 10498 msgstr ""
10495 10499
10496 #: rhodecode/templates/pullrequests/pullrequest_show.mako:411
10500 #: rhodecode/templates/pullrequests/pullrequest_show.mako:407
10497 10501 msgid "These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled."
10498 10502 msgstr ""
10499 10503
10500 #: rhodecode/templates/pullrequests/pullrequest_show.mako:419
10504 #: rhodecode/templates/pullrequests/pullrequest_show.mako:415
10501 10505 msgid "Missing commits"
10502 10506 msgstr ""
10503 10507
10504 #: rhodecode/templates/pullrequests/pullrequest_show.mako:420
10508 #: rhodecode/templates/pullrequests/pullrequest_show.mako:416
10505 10509 msgid "This pull request cannot be displayed, because one or more commits no longer exist in the source repository."
10506 10510 msgstr ""
10507 10511
10508 #: rhodecode/templates/pullrequests/pullrequest_show.mako:421
10512 #: rhodecode/templates/pullrequests/pullrequest_show.mako:417
10509 10513 msgid "Please update this pull request, push the commits back into the source repository, or consider closing this pull request."
10510 10514 msgstr ""
10511 10515
10512 #: rhodecode/templates/pullrequests/pullrequest_show.mako:422
10516 #: rhodecode/templates/pullrequests/pullrequest_show.mako:418
10513 10517 msgid "Consider doing a {force_refresh_url} in case you think this is an error."
10514 10518 msgstr ""
10515 10519
10516 #: rhodecode/templates/pullrequests/pullrequest_show.mako:433
10520 #: rhodecode/templates/pullrequests/pullrequest_show.mako:429
10517 10521 #, python-format
10518 10522 msgid "Showing changes at v%d, commenting is disabled."
10519 10523 msgstr ""
10520 10524
10521 #: rhodecode/templates/pullrequests/pullrequest_show.mako:456
10522 #: rhodecode/templates/pullrequests/pullrequest_show.mako:458
10525 #: rhodecode/templates/pullrequests/pullrequest_show.mako:452
10526 #: rhodecode/templates/pullrequests/pullrequest_show.mako:454
10523 10527 msgid "Update commits"
10524 10528 msgstr ""
10525 10529
10526 #: rhodecode/templates/pullrequests/pullrequest_show.mako:458
10530 #: rhodecode/templates/pullrequests/pullrequest_show.mako:454
10527 10531 msgid "Update is disabled for current view"
10528 10532 msgstr ""
10529 10533
10534 #: rhodecode/templates/pullrequests/pullrequest_show.mako:465
10535 msgid "Commits and changes between v{ver_from} and {ver_to} of this pull request, commenting is disabled"
10536 msgstr ""
10537
10530 10538 #: rhodecode/templates/pullrequests/pullrequest_show.mako:469
10531 msgid "Commits and changes between v{ver_from} and {ver_to} of this pull request, commenting is disabled"
10532 msgstr ""
10533
10534 #: rhodecode/templates/pullrequests/pullrequest_show.mako:473
10535 10539 msgid "commits added: {}, removed: {}"
10536 10540 msgstr ""
10537 10541
10538 #: rhodecode/templates/pullrequests/pullrequest_show.mako:491
10542 #: rhodecode/templates/pullrequests/pullrequest_show.mako:487
10539 10543 msgid "Commit added in displayed changes"
10540 10544 msgstr ""
10541 10545
10542 #: rhodecode/templates/pullrequests/pullrequest_show.mako:493
10546 #: rhodecode/templates/pullrequests/pullrequest_show.mako:489
10543 10547 msgid "Commit removed in displayed changes"
10544 10548 msgstr ""
10545 10549
10550 #: rhodecode/templates/pullrequests/pullrequest_show.mako:578
10551 msgid "there is {num} general comment from older versions"
10552 msgstr ""
10553
10554 #: rhodecode/templates/pullrequests/pullrequest_show.mako:579
10555 msgid "show it"
10556 msgstr ""
10557
10558 #: rhodecode/templates/pullrequests/pullrequest_show.mako:581
10559 msgid "there are {num} general comments from older versions"
10560 msgstr ""
10561
10546 10562 #: rhodecode/templates/pullrequests/pullrequest_show.mako:582
10547 msgid "there is {num} general comment from older versions"
10548 msgstr ""
10549
10550 #: rhodecode/templates/pullrequests/pullrequest_show.mako:583
10551 msgid "show it"
10552 msgstr ""
10553
10554 #: rhodecode/templates/pullrequests/pullrequest_show.mako:585
10555 msgid "there are {num} general comments from older versions"
10556 msgstr ""
10557
10558 #: rhodecode/templates/pullrequests/pullrequest_show.mako:586
10559 10563 msgid "show them"
10560 10564 msgstr ""
10561 10565
@@ -10564,58 +10568,28 b' msgstr ""'
10564 10568 msgid "%s Pull Requests"
10565 10569 msgstr ""
10566 10570
10567 #: rhodecode/templates/pullrequests/pullrequests.mako:34
10568 msgid "Open new Pull Request"
10569 msgstr ""
10570
10571 #: rhodecode/templates/pullrequests/pullrequests.mako:48
10571 #: rhodecode/templates/pullrequests/pullrequests.mako:27
10572 10572 msgid "Opened"
10573 10573 msgstr ""
10574 10574
10575 #: rhodecode/templates/pullrequests/pullrequests.mako:49
10575 #: rhodecode/templates/pullrequests/pullrequests.mako:28
10576 10576 msgid "Opened by me"
10577 10577 msgstr ""
10578 10578
10579 #: rhodecode/templates/pullrequests/pullrequests.mako:50
10579 #: rhodecode/templates/pullrequests/pullrequests.mako:29
10580 10580 msgid "Awaiting review"
10581 10581 msgstr ""
10582 10582
10583 #: rhodecode/templates/pullrequests/pullrequests.mako:51
10583 #: rhodecode/templates/pullrequests/pullrequests.mako:30
10584 10584 msgid "Awaiting my review"
10585 10585 msgstr ""
10586 10586
10587 #: rhodecode/templates/pullrequests/pullrequests.mako:53
10587 #: rhodecode/templates/pullrequests/pullrequests.mako:32
10588 10588 msgid "From this repo"
10589 10589 msgstr ""
10590 10590
10591 #: rhodecode/templates/pullrequests/pullrequests.mako:62
10592 #, python-format
10593 msgid "Pull Requests from %(repo_name)s repository"
10594 msgstr ""
10595
10596 #: rhodecode/templates/pullrequests/pullrequests.mako:64
10597 #, python-format
10598 msgid "Closed Pull Requests to repository %(repo_name)s"
10599 msgstr ""
10600
10601 #: rhodecode/templates/pullrequests/pullrequests.mako:66
10602 #, python-format
10603 msgid "Pull Requests to %(repo_name)s repository opened by me"
10604 msgstr ""
10605
10606 #: rhodecode/templates/pullrequests/pullrequests.mako:68
10607 #, python-format
10608 msgid "Pull Requests to %(repo_name)s repository awaiting review"
10609 msgstr ""
10610
10611 #: rhodecode/templates/pullrequests/pullrequests.mako:70
10612 #, python-format
10613 msgid "Pull Requests to %(repo_name)s repository awaiting my review"
10614 msgstr ""
10615
10616 #: rhodecode/templates/pullrequests/pullrequests.mako:72
10617 #, python-format
10618 msgid "Pull Requests to %(repo_name)s repository"
10591 #: rhodecode/templates/pullrequests/pullrequests.mako:40
10592 msgid "Open new Pull Request"
10619 10593 msgstr ""
10620 10594
10621 10595 #: rhodecode/templates/search/search.mako:6
@@ -10633,17 +10607,21 b' msgstr ""'
10633 10607 msgid "Search inside all accessible repositories"
10634 10608 msgstr ""
10635 10609
10636 #: rhodecode/templates/search/search.mako:90
10610 #: rhodecode/templates/search/search.mako:85
10637 10611 msgid "File path"
10638 10612 msgstr ""
10639 10613
10640 #: rhodecode/templates/search/search.mako:99
10641 #: rhodecode/templates/search/search.mako:101
10642 #: rhodecode/templates/search/search.mako:103
10614 #: rhodecode/templates/search/search.mako:88
10615 msgid "Search"
10616 msgstr ""
10617
10618 #: rhodecode/templates/search/search.mako:94
10619 #: rhodecode/templates/search/search.mako:96
10620 #: rhodecode/templates/search/search.mako:98
10643 10621 msgid "Global Search"
10644 10622 msgstr ""
10645 10623
10646 #: rhodecode/templates/search/search.mako:138
10624 #: rhodecode/templates/search/search.mako:133
10647 10625 msgid "Query Langague examples"
10648 10626 msgstr ""
10649 10627
@@ -10668,11 +10646,11 b' msgstr ""'
10668 10646 msgid "more matches in this file"
10669 10647 msgstr ""
10670 10648
10671 #: rhodecode/templates/search/search_content.mako:127
10649 #: rhodecode/templates/search/search_content.mako:112
10672 10650 msgid "Narrow to this repository group"
10673 10651 msgstr ""
10674 10652
10675 #: rhodecode/templates/search/search_content.mako:134
10653 #: rhodecode/templates/search/search_content.mako:119
10676 10654 msgid "Narrow to this repository"
10677 10655 msgstr ""
10678 10656
@@ -10684,64 +10662,63 b' msgstr ""'
10684 10662 msgid "Lines"
10685 10663 msgstr ""
10686 10664
10687 #: rhodecode/templates/summary/components.mako:71
10665 #: rhodecode/templates/summary/components.mako:20
10666 msgid "Closed Branch"
10667 msgstr ""
10668
10669 #: rhodecode/templates/summary/components.mako:83
10688 10670 msgid "Copy the clone by id url"
10689 10671 msgstr ""
10690 10672
10691 #: rhodecode/templates/summary/components.mako:76
10673 #: rhodecode/templates/summary/components.mako:88
10692 10674 msgid "Copy the clone by ssh url"
10693 10675 msgstr ""
10694 10676
10695 #: rhodecode/templates/summary/components.mako:80
10677 #: rhodecode/templates/summary/components.mako:92
10696 10678 msgid "SVN Protocol is disabled. To enable it, see the"
10697 10679 msgstr ""
10698 10680
10699 #: rhodecode/templates/summary/components.mako:80
10681 #: rhodecode/templates/summary/components.mako:92
10700 10682 msgid "documentation here"
10701 10683 msgstr ""
10702 10684
10703 #: rhodecode/templates/summary/components.mako:117
10685 #: rhodecode/templates/summary/components.mako:135
10704 10686 msgid "Number of Repository Forks"
10705 10687 msgstr ""
10706 10688
10707 #: rhodecode/templates/summary/components.mako:128
10689 #: rhodecode/templates/summary/components.mako:172
10690 msgid "Downloads"
10691 msgstr ""
10692
10693 #: rhodecode/templates/summary/components.mako:177
10694 msgid "There are no downloads yet"
10695 msgstr ""
10696
10697 #: rhodecode/templates/summary/components.mako:181
10698 msgid "Downloads are disabled for this repository"
10699 msgstr ""
10700
10701 #: rhodecode/templates/summary/components.mako:203
10708 10702 msgid "Repository size"
10709 10703 msgstr ""
10710 10704
10711 #: rhodecode/templates/summary/components.mako:141
10705 #: rhodecode/templates/summary/components.mako:215
10712 10706 msgid "Calculating Repository Size..."
10713 10707 msgstr ""
10714 10708
10715 #: rhodecode/templates/summary/components.mako:164
10716 msgid "Downloads"
10717 msgstr ""
10718
10719 #: rhodecode/templates/summary/components.mako:170
10720 msgid "There are no downloads yet"
10721 msgstr ""
10722
10723 #: rhodecode/templates/summary/components.mako:174
10724 msgid "Downloads are disabled for this repository"
10725 msgstr ""
10726
10727 #: rhodecode/templates/summary/components.mako:202
10728 msgid "Calculating Code Statistics..."
10729 msgstr ""
10730
10731 #: rhodecode/templates/summary/components.mako:206
10709 #: rhodecode/templates/summary/components.mako:226
10710 msgid "Code Statistics"
10711 msgstr ""
10712
10713 #: rhodecode/templates/summary/components.mako:235
10732 10714 msgid "Statistics are disabled for this repository"
10733 10715 msgstr ""
10734 10716
10735 #: rhodecode/templates/summary/summary.mako:19
10736 10717 #: rhodecode/templates/summary/summary.mako:21
10737 msgid "RSS Feed"
10738 msgstr ""
10739
10740 #: rhodecode/templates/summary/summary.mako:37
10741 10718 msgid "Quick start"
10742 10719 msgstr ""
10743 10720
10744 #: rhodecode/templates/summary/summary.mako:50
10721 #: rhodecode/templates/summary/summary.mako:36
10745 10722 #, python-format
10746 10723 msgid "Readme file from commit %s:%s"
10747 10724 msgstr ""
@@ -10761,15 +10738,23 b' msgstr ""'
10761 10738 msgid "%s RSS feed"
10762 10739 msgstr ""
10763 10740
10764 #: rhodecode/templates/summary/summary_commits.mako:109
10741 #: rhodecode/templates/summary/summary_commits.mako:117
10765 10742 msgid "Add or upload files directly via RhodeCode:"
10766 10743 msgstr ""
10767 10744
10768 #: rhodecode/templates/summary/summary_commits.mako:120
10745 #: rhodecode/templates/summary/summary_commits.mako:119
10746 msgid "Add New File"
10747 msgstr ""
10748
10749 #: rhodecode/templates/summary/summary_commits.mako:122
10750 msgid "Upload New File"
10751 msgstr ""
10752
10753 #: rhodecode/templates/summary/summary_commits.mako:128
10769 10754 msgid "Push new repo:"
10770 10755 msgstr ""
10771 10756
10772 #: rhodecode/templates/summary/summary_commits.mako:131
10757 #: rhodecode/templates/summary/summary_commits.mako:151
10773 10758 msgid "Existing repository?"
10774 10759 msgstr ""
10775 10760
@@ -10778,19 +10763,19 b' msgstr ""'
10778 10763 msgid "%s Tags"
10779 10764 msgstr ""
10780 10765
10781 #: rhodecode/templates/tags/tags.mako:13
10766 #: rhodecode/templates/tags/tags.mako:28
10767 msgid "Compare Selected Tags"
10768 msgstr ""
10769
10770 #: rhodecode/templates/tags/tags.mako:34
10782 10771 msgid "tags"
10783 10772 msgstr ""
10784 10773
10785 #: rhodecode/templates/tags/tags.mako:31
10786 msgid "Compare Selected Tags"
10787 msgstr ""
10788
10789 10774 #: rhodecode/templates/user_group/profile.mako:5
10790 10775 msgid "User group profile"
10791 10776 msgstr ""
10792 10777
10793 #: rhodecode/templates/user_group/profile.mako:15
10778 #: rhodecode/templates/user_group/profile.mako:14
10794 10779 msgid "Group Name"
10795 10780 msgstr ""
10796 10781
@@ -10798,11 +10783,11 b' msgstr ""'
10798 10783 msgid "User Group Profile"
10799 10784 msgstr ""
10800 10785
10801 #: rhodecode/templates/users/user_profile.mako:35
10786 #: rhodecode/templates/users/user_profile.mako:38
10802 10787 msgid "First name"
10803 10788 msgstr ""
10804 10789
10805 #: rhodecode/templates/users/user_profile.mako:43
10790 #: rhodecode/templates/users/user_profile.mako:48
10806 10791 msgid "Last name"
10807 10792 msgstr ""
10808 10793
@@ -4,6 +4,7 b' import logging'
4 4
5 5 from alembic.migration import MigrationContext
6 6 from alembic.operations import Operations
7 from sqlalchemy import String
7 8
8 9 from rhodecode.lib.dbmigrate.versions import _reset_base
9 10 from rhodecode.model import init_model_encryption
@@ -28,7 +29,7 b' def upgrade(migrate_engine):'
28 29 repo_group = db_4_16_0_2.RepoGroup.__table__
29 30
30 31 with op.batch_alter_table(repo_group.name) as batch_op:
31 batch_op.alter_column("repo_group_name_hash", nullable=False)
32 batch_op.alter_column("repo_group_name_hash", type_=String(1024), nullable=False)
32 33
33 34
34 35 def downgrade(migrate_engine):
@@ -147,7 +147,7 b' class RemoteRepo(object):'
147 147
148 148 def _call_with_logging(self, name, *args, **kwargs):
149 149 context_uid = self._wire.get('context')
150 log.debug('Calling %s@%s with args:%r. wire_context: %s',
150 log.debug('Calling %s@%s with args:%.10240r. wire_context: %s',
151 151 self.url, name, args, context_uid)
152 152 return RemoteRepo._call(self, name, *args, **kwargs)
153 153
@@ -1841,6 +1841,10 b' class Repository(Base, BaseModel):'
1841 1841 return q.all()
1842 1842
1843 1843 @property
1844 def repo_uid(self):
1845 return '_{}'.format(self.repo_id)
1846
1847 @property
1844 1848 def forks(self):
1845 1849 """
1846 1850 Return forks of this repo
@@ -4111,7 +4115,7 b' class PullRequest(Base, _PullRequestBase'
4111 4115 def pull_request_version_id(self):
4112 4116 return getattr(pull_request_obj, 'pull_request_version_id', None)
4113 4117
4114 attrs = StrictAttributeDict(pull_request_obj.get_api_data())
4118 attrs = StrictAttributeDict(pull_request_obj.get_api_data(with_merge_state=False))
4115 4119
4116 4120 attrs.author = StrictAttributeDict(
4117 4121 pull_request_obj.author.get_api_data())
@@ -33,7 +33,7 b' from rhodecode import events'
33 33 from rhodecode.integrations.types.base import EEIntegration
34 34 from rhodecode.lib.caching_query import FromCache
35 35 from rhodecode.model import BaseModel
36 from rhodecode.model.db import Integration, Repository, RepoGroup, true, false
36 from rhodecode.model.db import Integration, Repository, RepoGroup, true, false, case
37 37 from rhodecode.integrations import integration_type_registry
38 38
39 39 log = logging.getLogger(__name__)
@@ -155,6 +155,7 b' class IntegrationModel(BaseModel):'
155 155 """
156 156 Get integrations that match an event
157 157 """
158 # base query
158 159 query = self.sa.query(
159 160 Integration
160 161 ).filter(
@@ -164,7 +165,7 b' class IntegrationModel(BaseModel):'
164 165 global_integrations_filter = and_(
165 166 Integration.repo_id == None,
166 167 Integration.repo_group_id == None,
167 Integration.child_repos_only == False,
168 Integration.child_repos_only == false(),
168 169 )
169 170
170 171 if isinstance(event, events.RepoEvent):
@@ -177,42 +178,61 b' class IntegrationModel(BaseModel):'
177 178 clauses = [
178 179 global_integrations_filter,
179 180 ]
181 cases = [
182 (global_integrations_filter, 1),
183 (root_repos_integrations_filter, 2),
184 ]
180 185
181 # repo integrations
182 if event.repo.repo_id: # pre create events dont have a repo_id yet
183 clauses.append(
184 Integration.repo_id == event.repo.repo_id
186 # repo group integrations
187 if event.repo.group:
188 # repo group with only root level repos
189 group_child_repos_filter = and_(
190 Integration.repo_group_id == event.repo.group.group_id,
191 Integration.child_repos_only == true()
185 192 )
186 193
187 if event.repo.group:
188 clauses.append(
189 and_(
190 Integration.repo_group_id == event.repo.group.group_id,
191 Integration.child_repos_only == true()
192 )
194 clauses.append(group_child_repos_filter)
195 cases.append(
196 (group_child_repos_filter, 3),
193 197 )
198
194 199 # repo group cascade to kids
195 clauses.append(
196 and_(
197 Integration.repo_group_id.in_(
198 [group.group_id for group in
199 event.repo.groups_with_parents]
200 ),
201 Integration.child_repos_only == false()
202 )
200 group_recursive_repos_filter = and_(
201 Integration.repo_group_id.in_(
202 [group.group_id for group in event.repo.groups_with_parents]
203 ),
204 Integration.child_repos_only == false()
205 )
206 clauses.append(group_recursive_repos_filter)
207 cases.append(
208 (group_recursive_repos_filter, 4),
203 209 )
204 210
205 211 if not event.repo.group: # root repo
206 212 clauses.append(root_repos_integrations_filter)
207 213
214 # repo integrations
215 if event.repo.repo_id: # pre create events dont have a repo_id yet
216 specific_repo_filter = Integration.repo_id == event.repo.repo_id
217 clauses.append(specific_repo_filter)
218 cases.append(
219 (specific_repo_filter, 5),
220 )
221
222 order_by_criterion = case(cases)
223
208 224 query = query.filter(or_(*clauses))
225 query = query.order_by(order_by_criterion)
209 226
210 227 if cache:
211 228 cache_key = "get_enabled_repo_integrations_%i" % event.repo.repo_id
212 229 query = query.options(
213 230 FromCache("sql_cache_short", cache_key))
214 231 else: # only global integrations
232 order_by_criterion = Integration.integration_id
233
215 234 query = query.filter(global_integrations_filter)
235 query = query.order_by(order_by_criterion)
216 236 if cache:
217 237 query = query.options(
218 238 FromCache("sql_cache_short", "get_enabled_global_integrations"))
@@ -374,8 +374,7 b' class RepoModel(BaseModel):'
374 374 )
375 375
376 376 # handle extra fields
377 for field in filter(lambda k: k.startswith(RepositoryField.PREFIX),
378 kwargs):
377 for field in filter(lambda k: k.startswith(RepositoryField.PREFIX), kwargs):
379 378 k = RepositoryField.un_prefix_key(field)
380 379 ex_field = RepositoryField.get_by_key_name(
381 380 key=k, repo=cur_repo)
@@ -53,7 +53,7 b' input[type="button"] {'
53 53 .border ( @border-thickness, @grey4 );
54 54 }
55 55
56 .icon-remove-sign {
56 .icon-remove {
57 57 display: none;
58 58 }
59 59
@@ -536,7 +536,7 b' th {'
536 536 .glyphicon-minus-sign:before {
537 537 content: "\e082";
538 538 }
539 .glyphicon-remove-sign:before {
539 .glyphicon-remove:before {
540 540 content: "\e083";
541 541 }
542 542 .glyphicon-ok-sign:before {
@@ -1622,8 +1622,14 b' table.integrations {'
1622 1622 margin-left: 8px;
1623 1623 }
1624 1624
1625 #pull_request_overview {
1626 div.ancestor {
1627 margin: -33px 0;
1628 }
1629 }
1630
1625 1631 div.ancestor {
1626 margin: -30px 0px;
1632 line-height: 33px;
1627 1633 }
1628 1634
1629 1635 .cs_icon_td input[type="checkbox"] {
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Add another comment',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Show more',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Submitting...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Add another comment',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Show more',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Submitting...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Add another comment',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Show more',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Submitting...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Add another comment',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Show more',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Submitting...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Add another comment',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Show more',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Suivre ce dépôt',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Arrêter de suivre ce dépôt',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Envoi…',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'Activé',
93 99 'file': 'file',
94 100 'files': 'Fichiers',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} mois',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Aggiungi un altro commento',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Mostra ancora',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Inizia a seguire il repository',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Smetti di seguire il repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Inoltro...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'Al momento non ci sono richieste di PULL che richiedono il tuo intervento',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Smetti di seguire',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'abilitato',
93 99 'file': 'file',
94 100 'files': 'i file',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': '別のコメントを追加',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'ステータスを承認にする',
64 65 'Set status to Rejected': 'ステータスを拒否にする',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'もっと表示',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'このリポジトリのフォローする',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'ステータスレビュー',
74 77 'Stop following this repository': 'このリポジトリのフォローをやめる',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': '送信中...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'アンフォロー',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': '{0} 件のみ選択できます',
87 93 'You can only select {0} items': '{0} 件のみ選択できます',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': '有効',
93 99 'file': 'ファイル',
94 100 'files': 'ファイル',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} 分',
119 126 '{0} month': '{0} ヶ月',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} 件の結果があります。矢印キーの上下で選択できます。',
124 133 '{0} sec': '{0} 秒',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -2,6 +2,7 b''
2 2 _gettext('(from usergroup {0})');
3 3 _gettext('Add another comment');
4 4 _gettext('Adding new reviewers is forbidden.');
5 _gettext('All Authors');
5 6 _gettext('All individual reviewers must vote.');
6 7 _gettext('All reviewers must vote.');
7 8 _gettext('At least {0} reviewer must vote.');
@@ -57,6 +58,7 b''
57 58 _gettext('Set status to Approved');
58 59 _gettext('Set status to Rejected');
59 60 _gettext('Show at Commit ');
61 _gettext('Show commit range {0} ... {1}');
60 62 _gettext('Show full context diff');
61 63 _gettext('Show more');
62 64 _gettext('Show selected commit __S');
@@ -64,8 +66,10 b''
64 66 _gettext('Show whitespace changes');
65 67 _gettext('Specified expiration date');
66 68 _gettext('Start following this repository');
69 _gettext('Started watching this repository');
67 70 _gettext('Status Review');
68 71 _gettext('Stop following this repository');
72 _gettext('Stopped watching this repository');
69 73 _gettext('Submitting...');
70 74 _gettext('Switch to chat');
71 75 _gettext('Switch to comment');
@@ -74,9 +78,11 b''
74 78 _gettext('There are currently no open pull requests requiring your participation.');
75 79 _gettext('Toggle Wide Mode diff');
76 80 _gettext('Unfollow');
81 _gettext('Unwatch');
77 82 _gettext('Updating...');
78 83 _gettext('User `{0}` already in reviewers');
79 84 _gettext('User `{0}` not allowed to be a reviewer');
85 _gettext('Watch');
80 86 _gettext('You can only select {0} item');
81 87 _gettext('You can only select {0} items');
82 88 _gettext('activated');
@@ -86,6 +92,7 b''
86 92 _gettext('enabled');
87 93 _gettext('file');
88 94 _gettext('files');
95 _gettext('go to numeric commit');
89 96 _gettext('in {0}');
90 97 _gettext('in {0} and {1}');
91 98 _gettext('in {0}, {1}');
@@ -112,8 +119,10 b''
112 119 _gettext('{0} min');
113 120 _gettext('{0} month');
114 121 _gettext('{0} months');
122 _gettext('{0} of {1} repository groups');
115 123 _gettext('{0} out of {1} ssh keys');
116 124 _gettext('{0} out of {1} users');
125 _gettext('{0} repository groups');
117 126 _gettext('{0} results are available, use up and down arrow keys to navigate.');
118 127 _gettext('{0} sec');
119 128 _gettext('{0} user groups ({1} inactive)');
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Dodaj kolejny komentarz',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Pokaż więcej',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Zacznij obserwację tego repozytorium',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Zakończyć obserwację tego repozytorium',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Przesyłanie...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Nie obserwuj',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'pliki',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Adicionar outro comentário',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Mostrar mais',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Passar a seguir este repositório',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Parar de seguir este repositório',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Enviando...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Parar de seguir',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'arquivos',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Добавить другой комментарий',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Показать еще',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': 'Наблюдать за репозиторием',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': 'Отменить наблюдение за репозиторием',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': 'Применение...',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Не наблюдать',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': 'файлы',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 8 '(from usergroup {0})': '(from usergroup {0})',
9 9 'Add another comment': 'Add another comment',
10 10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 13 'All reviewers must vote.': 'All reviewers must vote.',
13 14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 64 'Set status to Approved': 'Set status to Approved',
64 65 'Set status to Rejected': 'Set status to Rejected',
65 66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 68 'Show full context diff': 'Show full context diff',
67 69 'Show more': 'Show more',
68 70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 72 'Show whitespace changes': 'Show whitespace changes',
71 73 'Specified expiration date': 'Specified expiration date',
72 74 'Start following this repository': '开始关注该版本库',
75 'Started watching this repository': 'Started watching this repository',
73 76 'Status Review': 'Status Review',
74 77 'Stop following this repository': '停止关注该版本库',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 79 'Submitting...': '提交中……',
76 80 'Switch to chat': 'Switch to chat',
77 81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 88 'Updating...': 'Updating...',
84 89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 92 'You can only select {0} item': 'You can only select {0} item',
87 93 'You can only select {0} items': 'You can only select {0} items',
88 94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 98 'enabled': 'enabled',
93 99 'file': 'file',
94 100 'files': '文件',
101 'go to numeric commit': 'go to numeric commit',
95 102 'in {0}': 'in {0}',
96 103 'in {0} and {1}': 'in {0} and {1}',
97 104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 125 '{0} min': '{0} min',
119 126 '{0} month': '{0} month',
120 127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 132 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
124 133 '{0} sec': '{0} sec',
125 134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -239,6 +239,7 b' function registerRCRoutes() {'
239 239 pyroutes.register('edit_repo_advanced_hooks', '/%(repo_name)s/settings/advanced/hooks', ['repo_name']);
240 240 pyroutes.register('edit_repo_caches', '/%(repo_name)s/settings/caches', ['repo_name']);
241 241 pyroutes.register('edit_repo_perms', '/%(repo_name)s/settings/permissions', ['repo_name']);
242 pyroutes.register('edit_repo_perms_set_private', '/%(repo_name)s/settings/permissions/set_private', ['repo_name']);
242 243 pyroutes.register('edit_repo_maintenance', '/%(repo_name)s/settings/maintenance', ['repo_name']);
243 244 pyroutes.register('edit_repo_maintenance_execute', '/%(repo_name)s/settings/maintenance/execute', ['repo_name']);
244 245 pyroutes.register('edit_repo_fields', '/%(repo_name)s/settings/fields', ['repo_name']);
@@ -262,8 +263,10 b' function registerRCRoutes() {'
262 263 pyroutes.register('strip_check', '/%(repo_name)s/settings/strip_check', ['repo_name']);
263 264 pyroutes.register('strip_execute', '/%(repo_name)s/settings/strip_execute', ['repo_name']);
264 265 pyroutes.register('edit_repo_audit_logs', '/%(repo_name)s/settings/audit_logs', ['repo_name']);
265 pyroutes.register('rss_feed_home', '/%(repo_name)s/feed/rss', ['repo_name']);
266 pyroutes.register('atom_feed_home', '/%(repo_name)s/feed/atom', ['repo_name']);
266 pyroutes.register('rss_feed_home', '/%(repo_name)s/feed-rss', ['repo_name']);
267 pyroutes.register('atom_feed_home', '/%(repo_name)s/feed-atom', ['repo_name']);
268 pyroutes.register('rss_feed_home_old', '/%(repo_name)s/feed/rss', ['repo_name']);
269 pyroutes.register('atom_feed_home_old', '/%(repo_name)s/feed/atom', ['repo_name']);
267 270 pyroutes.register('repo_summary', '/%(repo_name)s', ['repo_name']);
268 271 pyroutes.register('repo_summary_slash', '/%(repo_name)s/', ['repo_name']);
269 272 pyroutes.register('edit_repo_group', '/%(repo_group_name)s/_edit', ['repo_group_name']);
@@ -107,7 +107,10 b' var CommitsController = function () {'
107 107
108 108 $.each($('.message.truncate'), function(idx, value) {
109 109 if(!(value.offsetWidth < value.scrollWidth)){
110 $(this).closest('td').siblings('.expand_commit').find('i').hide();
110 var expandTd = $(this).closest('td').siblings('.expand_commit');
111 expandTd.find('i').hide();
112 expandTd.removeAttr('title');
113 expandTd.removeClass('expand_commit');
111 114 }
112 115 });
113 116
@@ -11,7 +11,7 b''
11 11 <div class="input">
12 12 ${h.text('repo_name', class_="medium")}
13 13 <div class="info-block">
14 <a id="remote_clone_toggle" href="#"><i class="icon-download-alt"></i> ${_('Import Existing Repository ?')}</a>
14 <a id="remote_clone_toggle" href="#">${_('Import Existing Repository ?')}</a>
15 15 </div>
16 16 %if not c.rhodecode_user.is_admin:
17 17 ${h.hidden('user_created',True)}
@@ -161,7 +161,7 b''
161 161 <div class="field">
162 162 <button class="btn btn-small btn-danger" type="submit"
163 163 onclick="return confirm('${_('Confirm to archive this repository: %s') % c.repo_name}');">
164 <i class="icon-remove-sign"></i>
164 <i class="icon-remove"></i>
165 165 ${_('Archive this repository')}
166 166 </button>
167 167 </div>
@@ -217,7 +217,7 b''
217 217 <div class="field">
218 218 <button class="btn btn-small btn-danger" type="submit"
219 219 onclick="return confirm('${_('Confirm to delete this repository: %s') % c.repo_name}');">
220 <i class="icon-remove-sign"></i>
220 <i class="icon-remove"></i>
221 221 ${_('Delete this repository')}
222 222 </button>
223 223 </div>
@@ -105,6 +105,10 b''
105 105 member="${_user.user_id}" member_type="user">
106 106 ${_('Remove')}
107 107 </span>
108 %elif _user.username == h.DEFAULT_USER:
109 <span class="tooltip btn btn-link btn-default" onclick="enablePrivateRepo(); return false" title="${_('Private repositories are only visible to people explicitly added as collaborators.')}">
110 ${_('set private mode')}
111 </span>
108 112 %endif
109 113 </td>
110 114 <td class="quick_repo_menu">
@@ -199,4 +203,20 b''
199 203 markRevokePermInput($(this), 'repository');
200 204 });
201 205 quick_repo_menu();
206
207 var enablePrivateRepo = function () {
208 var postData = {
209 'csrf_token': CSRF_TOKEN
210 };
211
212 var success = function(o) {
213 var defaultUrl = pyroutes.url('edit_repo_perms', {"repo_name": templateContext.repo_name});
214 window.location = o.redirect_url || defaultUrl;
215 };
216
217 ajaxPOST(
218 pyroutes.url('edit_repo_perms_set_private', {"repo_name": templateContext.repo_name}),
219 postData,
220 success);
221 }
202 222 </script>
@@ -57,7 +57,7 b''
57 57 % if not c.form['repo_clone_uri'].error:
58 58 <div id="clone_uri_hidden" class='text-as-placeholder'>
59 59 <span id="clone_uri_hidden_value">${c.rhodecode_db_repo.clone_uri_hidden}</span>
60 <span class="link" id="edit_clone_uri"><i class="icon-edit"></i>${_('edit')}</span>
60 <span class="link" id="edit_clone_uri">${_('edit')}</span>
61 61 </div>
62 62 % endif
63 63
@@ -99,7 +99,7 b''
99 99 % if not c.form['repo_push_uri'].error:
100 100 <div id="push_uri_hidden" class='text-as-placeholder'>
101 101 <span id="push_uri_hidden_value">${c.rhodecode_db_repo.push_uri_hidden}</span>
102 <span class="link" id="edit_push_uri"><i class="icon-edit"></i>${_('edit')}</span>
102 <span class="link" id="edit_push_uri">${_('edit')}</span>
103 103 </div>
104 104 % endif
105 105
@@ -27,7 +27,7 b''
27 27 <div class="field">
28 28 <button class="btn btn-small btn-danger" type="submit"
29 29 onclick="return confirm('${_('Confirm to delete this exception')}');">
30 <i class="icon-remove-sign"></i>
30 <i class="icon-remove"></i>
31 31 ${_('Delete This Exception')}
32 32 </button>
33 33 </div>
@@ -17,7 +17,7 b''
17 17 <div class="field">
18 18 <button class="btn btn-small btn-danger" type="submit"
19 19 onclick="return confirm('${_('Confirm to delete all exceptions')}');">
20 <i class="icon-remove-sign"></i>
20 <i class="icon-remove"></i>
21 21 % if c.type_filter:
22 22 ${_('Delete All `{}`').format(c.type_filter)}
23 23 % else:
@@ -108,8 +108,8 b''
108 108 <div style="padding: 10px 0px"></div>
109 109 <div class="textarea text-area">
110 110 ${h.textarea('rhodecode_pre_code',cols=23,rows=5,class_="medium")}
111 <span class="help-block">${_('Custom js/css code added at the end of the <header/> tag.')}
112 ${_('Use <script/> or <css/> tags to define custom styling or scripting')}</span>
111 <span class="help-block">${_('Custom js/css code added at the end of the <head/> tag.')}
112 ${_('Use <script/> or <style/> tags to define custom scripting or styling.')}</span>
113 113 </div>
114 114 </div>
115 115 </div>
@@ -131,7 +131,7 b''
131 131 <div class="textarea text-area">
132 132 ${h.textarea('rhodecode_post_code',cols=23,rows=5, class_="medium")}
133 133 <span class="help-block">${_('Custom js/css code added at the end of the <body> tag.')}
134 ${_('Use <script> or <css> tags to define custom styling or scripting')}</span>
134 ${_('Use <script> or <style> tags to define custom scripting or styling.')}</span>
135 135 </div>
136 136 </div>
137 137 </div>
@@ -77,7 +77,7 b''
77 77 ${h.hidden('force', 1)}
78 78 <button class="btn btn-small btn-danger" type="submit"
79 79 onclick="return confirm('${_('Confirm to delete user group `%(ugroup)s` with all permission assignments') % {'ugroup': c.user_group.users_group_name}}');">
80 <i class="icon-remove-sign"></i>
80 <i class="icon-remove"></i>
81 81 ${_('Delete This User Group')}
82 82 </button>
83 83 ${h.end_form()}
@@ -86,7 +86,7 b''
86 86 </td>
87 87 <td class="">
88 88 <div class="usergroup_member_remove action_button" onclick="removeUserGroupMember(${user.user_id}, true)" style="visibility: visible;">
89 <i class="icon-remove-sign"></i>
89 <i class="icon-remove"></i>
90 90 </div>
91 91 </td>
92 92 </tr>
@@ -155,7 +155,7 b''
155 155 '</td>'+
156 156 '<td class="td-author-new-entry">'+
157 157 '<div class="usergroup_member_remove action_button" onclick="removeUserGroupMember({5}, true)" style="visibility: visible;">'+
158 '<i class="icon-remove-sign"></i>'+
158 '<i class="icon-remove"></i>'+
159 159 '</div>'+
160 160 '</td>'+
161 161 '</tr>').format(gravatar, userLink, username,
@@ -217,7 +217,7 b''
217 217 ## Context Actions
218 218 <div class="pull-right">
219 219 %if c.rhodecode_user.username != h.DEFAULT_USER:
220 <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name, _query=dict(auth_token=c.rhodecode_user.feed_token))}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a>
220 <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a>
221 221
222 222 <a href="#WatchRepo" onclick="toggleFollowingRepo(this, templateContext.repo_id); return false" title="${_('Watch this Repository and actions on it in your personalized journal')}" class="btn btn-sm ${('watching' if c.repository_is_user_following else '')}">
223 223 % if c.repository_is_user_following:
@@ -228,7 +228,7 b''
228 228
229 229 </a>
230 230 %else:
231 <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name)}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a>
231 <a href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid)}" title="${_('RSS Feed')}" class="btn btn-sm"><i class="icon-rss-sign"></i>RSS</a>
232 232 %endif
233 233 </div>
234 234
@@ -556,7 +556,7 b' def get_comments_for(diff_type, comments'
556 556 %if line_old_comments:
557 557 <% has_outdated = any([x.outdated for x in line_old_comments]) %>
558 558 % if has_outdated:
559 <i title="${_('comments including outdated')}:${len(line_old_comments)}" class="icon-comment_toggle" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
559 <i title="${_('comments including outdated')}:${len(line_old_comments)}" class="icon-comment-toggle" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
560 560 % else:
561 561 <i title="${_('comments')}: ${len(line_old_comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
562 562 % endif
@@ -599,7 +599,7 b' def get_comments_for(diff_type, comments'
599 599 %if line_new_comments:
600 600 <% has_outdated = any([x.outdated for x in line_new_comments]) %>
601 601 % if has_outdated:
602 <i title="${_('comments including outdated')}:${len(line_new_comments)}" class="icon-comment_toggle" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
602 <i title="${_('comments including outdated')}:${len(line_new_comments)}" class="icon-comment-toggle" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
603 603 % else:
604 604 <i title="${_('comments')}: ${len(line_new_comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
605 605 % endif
@@ -655,7 +655,7 b' def get_comments_for(diff_type, comments'
655 655 % if comments:
656 656 <% has_outdated = any([x.outdated for x in comments]) %>
657 657 % if has_outdated:
658 <i title="${_('comments including outdated')}:${len(comments)}" class="icon-comment_toggle" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
658 <i title="${_('comments including outdated')}:${len(comments)}" class="icon-comment-toggle" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
659 659 % else:
660 660 <i title="${_('comments')}: ${len(comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
661 661 % endif
@@ -165,7 +165,8 b''
165 165 <div>
166 166 <div class="grid_edit">
167 167 <a href="${h.route_path('edit_repo',repo_name=repo_name)}" title="${_('Edit')}">
168 <i class="icon-pencil"></i>Edit</a>
168 Edit
169 </a>
169 170 </div>
170 171 <div class="grid_delete">
171 172 ${h.secure_form(h.route_path('edit_repo_advanced_delete', repo_name=repo_name), request=request)}
@@ -252,7 +253,8 b''
252 253 <%def name="user_actions(user_id, username)">
253 254 <div class="grid_edit">
254 255 <a href="${h.route_path('user_edit',user_id=user_id)}" title="${_('Edit')}">
255 <i class="icon-pencil"></i>${_('Edit')}</a>
256 ${_('Edit')}
257 </a>
256 258 </div>
257 259 <div class="grid_delete">
258 260 ${h.secure_form(h.route_path('user_delete', user_id=user_id), request=request)}
@@ -470,7 +470,7 b''
470 470 <a class="btn btn-mini" href="/example/annotate/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">annotation</a>
471 471 <a class="btn btn-mini" href="/example/raw/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">raw</a>
472 472 <a class="btn btn-mini" href="/example/rawfile/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">
473 <i class="icon-archive"></i> download
473 download
474 474 </a>
475 475
476 476 <a class="btn btn-mini disabled tooltip" href="#" title="Editing files allowed only when on branch head commit">edit</a>
@@ -648,7 +648,7 b' File Edit'
648 648 <a class="btn btn-mini" href="/example/files/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">source</a>
649 649 <a class="btn btn-mini" href="/example/raw/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">raw</a>
650 650 <a class="btn btn-mini" href="/example/rawfile/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">
651 <i class="icon-archive"></i> download
651 download
652 652 </a>
653 653 </div>
654 654 </div>
@@ -150,7 +150,7 b''
150 150 </div>
151 151 <input id="reviewer_70_input" type="hidden" value="70" name="review_members">
152 152 <div class="reviewer_member_remove action_button" onclick="removeReviewMember(70, true)" style="visibility: hidden;">
153 <i class="icon-remove-sign"></i>
153 <i class="icon-remove"></i>
154 154 </div>
155 155 </li>
156 156 <li id="reviewer_33" class="collapsable-content" data-toggle="reviewers">
@@ -250,7 +250,7 b''
250 250 <div class='input'>
251 251 <input id="05_example_input" type="text" readonly="readonly" placeholder="Example input">
252 252 <span class="btn action_button btn-x">
253 <i class="icon-remove-sign"></i>
253 <i class="icon-remove"></i>
254 254 delete
255 255 </span>
256 256 <span class="help-block">
@@ -42,7 +42,7 b''
42 42 <div class='input'>
43 43 <div class='text-as-placeholder'>
44 44 http://something.example.com
45 <span class="link" id="edit_clone_uri"><i class="icon-edit"></i>${_('edit')}</span>
45 <span class="link" id="edit_clone_uri">${_('edit')}</span>
46 46 </div>
47 47 <p class='help-block'>Help text in a paragraph.</p>
48 48 </div>
@@ -339,7 +339,7 b''
339 339 <div class='input'>
340 340 <input id="05_example_input" type="text" readonly="readonly" placeholder="Example input">
341 341 <span class="btn btn-x">
342 <i class="icon-remove-sign"></i>
342 <i class="icon-remove"></i>
343 343 delete
344 344 </span>
345 345 <button class='btn btn-primary'>Action</button>
@@ -47,7 +47,6 b''
47 47 <td>
48 48 <div class="grid_edit">
49 49 <a class="edit_issuetracker_entry" uid="4980baa2985b361e6e91b932f4a897d5" title="edit" href="#">
50 <i class="icon-pencil"></i>
51 50 <input type="submit" value="edit" class="btn btn-link">
52 51 </a>
53 52 </div>
@@ -59,7 +58,7 b''
59 58
60 59 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
61 60 <input type="hidden" value="4980baa2985b361e6e91b932f4a897d5" name="del_uid" id="del_uid">
62 <i class="icon-remove-sign"></i>
61 <i class="icon-remove"></i>
63 62 <input type="submit" value="delete" onclick="return confirm('Confirm to remove this pattern: kjlakjlkjlkj;lkjl;kjl;kjl;kjl;kj;lkj');" id="remove_user_3" class="btn btn-link btn-danger">
64 63 </form>
65 64 </div>
@@ -74,7 +73,6 b''
74 73 <td>
75 74 <div class="grid_edit">
76 75 <a class="edit_issuetracker_entry" uid="98ac51a4ab43bb36a4feceed15ac5b21" title="edit" href="#">
77 <i class="icon-pencil"></i>
78 76 <input type="submit" value="edit" class="btn btn-link">
79 77 </a>
80 78 </div>
@@ -86,7 +84,7 b''
86 84
87 85 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
88 86 <input type="hidden" value="98ac51a4ab43bb36a4feceed15ac5b21" name="del_uid" id="del_uid">
89 <i class="icon-remove-sign"></i>
87 <i class="icon-remove"></i>
90 88 <input type="submit" value="delete" onclick="return confirm('Confirm to remove this pattern: kajls;kdjfal;skdjflaskdjflksjdlfksjdlfksjdlfkjsldkfjslkdjflskdjflkdsjf');" id="remove_user_3" class="btn btn-link btn-danger">
91 89 </form>
92 90 </div>
@@ -101,7 +99,6 b''
101 99 <td>
102 100 <div class="grid_edit">
103 101 <a class="edit_issuetracker_entry" uid="098f6bcd4621d373cade4e832627b4f6" title="edit" href="#">
104 <i class="icon-pencil"></i>
105 102 <input type="submit" value="edit" class="btn btn-link">
106 103 </a>
107 104 </div>
@@ -113,7 +110,7 b''
113 110
114 111 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
115 112 <input type="hidden" value="098f6bcd4621d373cade4e832627b4f6" name="del_uid" id="del_uid">
116 <i class="icon-remove-sign"></i>
113 <i class="icon-remove"></i>
117 114 <input type="submit" value="delete" onclick="return confirm('Confirm to remove this pattern: test');" id="remove_user_3" class="btn btn-link btn-danger">
118 115 </form>
119 116 </div>
@@ -236,11 +236,12 b''
236 236 <td class="td-action">
237 237 <div class="grid_edit">
238 238 <a href="/_admin/users/2/edit" title="edit">
239 <i class="icon-pencil"></i>Edit</a>
239 Edit
240 </a>
240 241 </div>
241 242 <div class="grid_delete">
242 243 <form action="/_admin/users/2" method="post">
243 <i class="icon-remove-sign"></i>
244 <i class="icon-remove"></i>
244 245 <input class="btn btn-danger btn-link" id="remove_user_2" name="remove_" type="submit" value="delete">
245 246 </form>
246 247 </div>
@@ -104,12 +104,12 b' var CG = new ColorGenerator();'
104 104
105 105 <% if (mandatory) { %>
106 106 <div class="reviewer_member_mandatory_remove" style="visibility: <%= edit_visibility %>;">
107 <i class="icon-remove-sign"></i>
107 <i class="icon-remove"></i>
108 108 </div>
109 109 <% } else { %>
110 110 <% if (allowed_to_update) { %>
111 111 <div class="reviewer_member_remove action_button" onclick="reviewersController.removeReviewMember(<%= member.user_id %>, true)" style="visibility: <%= edit_visibility %>;">
112 <i class="icon-remove-sign" ></i>
112 <i class="icon-remove" ></i>
113 113 </div>
114 114 <% } %>
115 115 <% } %>
@@ -186,7 +186,7 b''
186 186 % else:
187 187 <span class="enabled">
188 188 <a id="archive_link" class="btn btn-small" href="${h.route_path('repo_archivefile',repo_name=c.rhodecode_db_repo.repo_name,fname='tip.zip')}">
189 <i class="icon-archive"></i> tip.zip
189 tip.zip
190 190 ## replaced by some JS on select
191 191 </a>
192 192 </span>
@@ -90,7 +90,7 b''
90 90 var fname = e.added.raw_id + ext;
91 91 var href = pyroutes.url('repo_archivefile', {'repo_name': templateContext.repo_name, 'fname':fname});
92 92 // set new label
93 $('#archive_link').html('<i class="icon-archive"></i> {0}{1}'.format(escapeHtml(e.added.text), ext));
93 $('#archive_link').html('{0}{1}'.format(escapeHtml(e.added.text), ext));
94 94
95 95 // set new url to button,
96 96 $('#archive_link').attr('href', href)
@@ -2,7 +2,7 b''
2 2
3 3 <%def name="title()">
4 4 ## represents page title
5 ${_('%s Summary') % c.repo_name}
5 ${_('{} Summary').format(c.repo_name)}
6 6 %if c.rhodecode_name:
7 7 &middot; ${h.branding(c.rhodecode_name)}
8 8 %endif
@@ -10,8 +10,8 b''
10 10
11 11
12 12 <%def name="head_extra()">
13 <link href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_name, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s ATOM feed') % c.repo_name)}" type="application/atom+xml" />
14 <link href="${h.route_path('rss_feed_home', repo_name=c.rhodecode_db_repo.repo_name, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s RSS feed') % c.repo_name)}" type="application/rss+xml" />
13 <link href="${h.route_path('atom_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s ATOM feed') % c.repo_name)}" type="application/atom+xml" />
14 <link href="${h.route_path('rss_feed_home', repo_name=c.rhodecode_db_repo.repo_uid, _query=dict(auth_token=c.rhodecode_user.feed_token))}" rel="alternate" title="${h.tooltip(_('%s RSS feed') % c.repo_name)}" type="application/rss+xml" />
15 15 </%def>
16 16
17 17
@@ -128,7 +128,7 b' def integration_repos(request, StubInteg'
128 128 'root_repo': root_repo,
129 129 'other_repo': other_repo,
130 130 'parent_repo': parent_repo,
131 'child_repo': child_repo,
131 'child_repo': child_repo,
132 132 }
133 133 }
134 134
@@ -151,9 +151,9 b' def test_enabled_integration_repo_scopes'
151 151
152 152 assert triggered_integrations == [
153 153 integrations['global'],
154 integrations['other_repo'],
155 154 integrations['other_group'],
156 155 integrations['other_group_recursive'],
156 integrations['other_repo'],
157 157 ]
158 158
159 159 triggered_integrations = IntegrationModel().get_for_event(
@@ -161,9 +161,9 b' def test_enabled_integration_repo_scopes'
161 161
162 162 assert triggered_integrations == [
163 163 integrations['global'],
164 integrations['parent_repo'],
165 164 integrations['parent_group'],
166 165 integrations['parent_group_recursive'],
166 integrations['parent_repo'],
167 167 ]
168 168
169 169 triggered_integrations = IntegrationModel().get_for_event(
@@ -171,10 +171,10 b' def test_enabled_integration_repo_scopes'
171 171
172 172 assert triggered_integrations == [
173 173 integrations['global'],
174 integrations['child_repo'],
174 integrations['child_group'],
175 175 integrations['parent_group_recursive'],
176 integrations['child_group'],
177 176 integrations['child_group_recursive'],
177 integrations['child_repo'],
178 178 ]
179 179
180 180
@@ -19,51 +19,55 b''
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 import timeit
22 import logging
23 import click
22 24
23 server = "localhost:5000"
25 log = logging.getLogger(__name__)
26
24 27
25 pages = [
26 "cpython",
27 "cpython/annotate/74236c8bf064188516b32bf95016971227ec72a9/Makefile.pre.in",
28 "cpython/changelog",
29 "cpython/changeset/e0f681f4ade3af52915d5f32daac97ada580d71a",
30 "cpython/compare/tag@v3.4.1rc1...tag@v3.4.1?target_repo=cpython",
31 "cpython/files/tip/",
32 "cpython/files/74236c8bf064188516b32bf95016971227ec72a9/Grammar",
33 "",
34 "git",
35 "git/annotate/6c4ab27f2378ce67940b4496365043119d7ffff2/gitk-git/.gitignore",
36 "git/changelog",
37 "git/changeset/d299e9e550c1bf8640907fdba1f03cc585ee71df",
38 "git/compare/rev@1200...rev@1300?target_repo=git",
39 "git/files/tip/",
40 "git/files/6c4ab27f2378ce67940b4496365043119d7ffff2/.gitignore"
41 ]
28 @click.command()
29 @click.option('--server', help='Server url to connect to. e.g http://rc.local.com', required=True)
30 @click.option('--pages', help='load pages to visit from a file', required=True, type=click.File())
31 @click.option('--repeat', help='number of times to repeat', default=10, type=int)
32 def main(server, repeat, pages):
33
34 print("Repeating each URL %d times\n" % repeat)
35 pages = pages.readlines()
36
37 for page_url in pages:
38
39 url = "%s/%s" % (server, page_url.strip())
40 print(url)
41
42 stmt = "requests.get('%s', timeout=120)" % url
43 t = timeit.Timer(stmt=stmt, setup="import requests")
42 44
43 svn_pages = [
44 "svn-apache",
45 "svn-apache/annotate/672129/cocoon/trunk/README.txt",
46 "svn-apache/changelog",
47 "svn-apache/changeset/1164362",
48 "svn-apache/compare/rev@1164350...rev@1164360?target_repo=svn-apache",
49 "svn-apache/compare/rev@1164300...rev@1164360?target_repo=svn-apache",
50 "svn-apache/files/tip/",
51 "svn-apache/files/1164363/cocoon/trunk/README.txt",
52 ]
45 result = t.repeat(repeat=repeat, number=1)
46 print(" %.3f (min) - %.3f (max) - %.3f (avg)\n" %
47 (min(result), max(result), sum(result) / len(result)))
48
53 49
54 # Uncomment to check also svn performance
55 # pages = pages + svn_pages
50 if __name__ == '__main__':
51 main()
52
53
54
55
56
57
58
56 59
57 repeat = 10
60
61
58 62
59 print("Repeating each URL x%d\n" % repeat)
60 for page in pages:
61 url = "http://%s/%s" % (server, page)
62 print(url)
63
64
65
63 66
64 stmt = "urllib2.urlopen('%s', timeout=120)" % url
65 t = timeit.Timer(stmt=stmt, setup="import urllib2")
67
68
69
66 70
67 result = t.repeat(repeat=repeat, number=1)
68 print("\t%.3f (min) - %.3f (max) - %.3f (avg)\n" %
69 (min(result), max(result), sum(result)/len(result)))
71
72
73
@@ -108,12 +108,12 b' class Repository(object):'
108 108 self.name = name
109 109 self.path = os.path.join(base_path, name)
110 110 self.api = api
111 self.url = None
111 112
112 113 def create(self):
113 114 self._create_filesystem_repo(self.path)
114 115 try:
115 self.url = self.api.create_repo(
116 self.name, self.TYPE, 'Performance tests')
116 self.url = self.api.create_repo(self.name, self.TYPE, 'Performance tests')
117 117 except ApiError as e:
118 118 log.error('api: {}'.format(e))
119 119
@@ -127,7 +127,7 b' class Repository(object):'
127 127 def create_commits(self, number, file_size):
128 128 for i in xrange(number):
129 129 file_name = self.FILE_NAME_TEMPLATE.format(i)
130 log.debug("Create commit {}".format(file_name))
130 log.debug("Create commit[{}] {}".format(self.name, file_name))
131 131 self._create_file(file_name, file_size)
132 132 self._create_commit(file_name)
133 133
@@ -258,8 +258,8 b' class Benchmark(object):'
258 258 for operation in operations:
259 259 for type_ in repos:
260 260 times = self._measure(repos[type_], *operation)
261 print("Mean {} {} time: {:.3f} sec.".format(
262 type_, operation[0], mean(times)))
261 print("Mean[of {}] {:5s} {:5s} time: {:.3f} sec.".format(
262 len(times), type_, operation[0], mean(times)))
263 263
264 264 def cleanup(self):
265 265 log.info("Cleaning up...")
@@ -296,6 +296,7 b' class Benchmark(object):'
296 296 log.addHandler(handler)
297 297 log.setLevel(log_level)
298 298
299
299 300 if __name__ == '__main__':
300 301 config = Config()
301 302 benchmark = Benchmark(config)
@@ -392,7 +392,7 b' def is_url_reachable(url):'
392 392 try:
393 393 urllib2.urlopen(url)
394 394 except urllib2.URLError:
395 log.exception('URL Reach error')
395 log.exception('URL `{}` reach error'.format(url))
396 396 return False
397 397 return True
398 398
General Comments 0
You need to be logged in to leave comments. Login now