##// 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 ^result$
41 ^result$
42 ^rhodecode/public/css/style.css$
42 ^rhodecode/public/css/style.css$
43 ^rhodecode/public/css/style-polymer.css$
43 ^rhodecode/public/css/style-polymer.css$
44 ^rhodecode/public/css/style-ipython.css$
44 ^rhodecode/public/js/rhodecode-components.html$
45 ^rhodecode/public/js/rhodecode-components.html$
45 ^rhodecode/public/js/rhodecode-components.js$
46 ^rhodecode/public/js/rhodecode-components.js$
46 ^rhodecode/public/js/scripts.js$
47 ^rhodecode/public/js/scripts.js$
@@ -52,3 +52,6 b' 4aaa40b605b01af78a9f6882eca561c54b525ef0'
52 797744642eca86640ed20bef2cd77445780abaec v4.16.0
52 797744642eca86640ed20bef2cd77445780abaec v4.16.0
53 6c3452c7c25ed35ff269690929e11960ed6ad7d3 v4.16.1
53 6c3452c7c25ed35ff269690929e11960ed6ad7d3 v4.16.1
54 5d8057df561c4b6b81b6401aed7d2f911e6e77f7 v4.16.2
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 .. toctree::
9 .. toctree::
10 :maxdepth: 1
10 :maxdepth: 1
11
11
12 release-notes-4.17.2.rst
13 release-notes-4.17.1.rst
12 release-notes-4.17.0.rst
14 release-notes-4.17.0.rst
13 release-notes-4.16.2.rst
15 release-notes-4.16.2.rst
14 release-notes-4.16.1.rst
16 release-notes-4.16.1.rst
@@ -1718,7 +1718,7 b' self: super: {'
1718 };
1718 };
1719 };
1719 };
1720 "rhodecode-enterprise-ce" = super.buildPythonPackage {
1720 "rhodecode-enterprise-ce" = super.buildPythonPackage {
1721 name = "rhodecode-enterprise-ce-4.17.0";
1721 name = "rhodecode-enterprise-ce-4.17.2";
1722 buildInputs = [
1722 buildInputs = [
1723 self."pytest"
1723 self."pytest"
1724 self."py"
1724 self."py"
@@ -369,6 +369,10 b' def includeme(config):'
369 name='edit_repo_perms',
369 name='edit_repo_perms',
370 pattern='/{repo_name:.*?[^/]}/settings/permissions', repo_route=True)
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 # Permissions Branch (EE feature)
376 # Permissions Branch (EE feature)
373 config.add_route(
377 config.add_route(
374 name='edit_repo_perms_branch',
378 name='edit_repo_perms_branch',
@@ -481,13 +485,21 b' def includeme(config):'
481 name='edit_repo_audit_logs',
485 name='edit_repo_audit_logs',
482 pattern='/{repo_name:.*?[^/]}/settings/audit_logs', repo_route=True)
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 config.add_route(
489 config.add_route(
486 name='rss_feed_home',
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 pattern='/{repo_name:.*?[^/]}/feed/rss', repo_route=True)
499 pattern='/{repo_name:.*?[^/]}/feed/rss', repo_route=True)
488
500
489 config.add_route(
501 config.add_route(
490 name='atom_feed_home',
502 name='atom_feed_home_old',
491 pattern='/{repo_name:.*?[^/]}/feed/atom', repo_route=True)
503 pattern='/{repo_name:.*?[^/]}/feed/atom', repo_route=True)
492
504
493 # NOTE(marcink): needs to be at the end for catch-all
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 import urllib
27 import urllib
28
28
29 base_url = {
29 base_url = {
30 'rss_feed_home': '/{repo_name}/feed/rss',
30 'rss_feed_home': '/{repo_name}/feed-rss',
31 'atom_feed_home': '/{repo_name}/feed/atom',
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 }[name].format(**kwargs)
34 }[name].format(**kwargs)
33
35
34 if params:
36 if params:
@@ -73,6 +75,42 b' class TestFeedView(TestController):'
73
75
74 assert response.content_type == content_type
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 @pytest.mark.parametrize("feed_type", ['rss', 'atom'])
114 @pytest.mark.parametrize("feed_type", ['rss', 'atom'])
77 def test_feed_with_auth_token_of_wrong_type(
115 def test_feed_with_auth_token_of_wrong_type(
78 self, backend, user_util, feed_type):
116 self, backend, user_util, feed_type):
@@ -40,8 +40,6 b' log = logging.getLogger(__name__)'
40 class RepoFeedView(RepoAppView):
40 class RepoFeedView(RepoAppView):
41 def load_default_context(self):
41 def load_default_context(self):
42 c = self._get_local_tmpl_context()
42 c = self._get_local_tmpl_context()
43
44
45 self._load_defaults()
43 self._load_defaults()
46 return c
44 return c
47
45
@@ -117,6 +115,9 b' class RepoFeedView(RepoAppView):'
117 @view_config(
115 @view_config(
118 route_name='atom_feed_home', request_method='GET',
116 route_name='atom_feed_home', request_method='GET',
119 renderer=None)
117 renderer=None)
118 @view_config(
119 route_name='atom_feed_home_old', request_method='GET',
120 renderer=None)
120 def atom(self):
121 def atom(self):
121 """
122 """
122 Produce an atom-1.0 feed via feedgenerator module
123 Produce an atom-1.0 feed via feedgenerator module
@@ -181,6 +182,9 b' class RepoFeedView(RepoAppView):'
181 @view_config(
182 @view_config(
182 route_name='rss_feed_home', request_method='GET',
183 route_name='rss_feed_home', request_method='GET',
183 renderer=None)
184 renderer=None)
185 @view_config(
186 route_name='rss_feed_home_old', request_method='GET',
187 renderer=None)
184 def rss(self):
188 def rss(self):
185 """
189 """
186 Produce an rss2 feed via feedgenerator module
190 Produce an rss2 feed via feedgenerator module
@@ -105,3 +105,30 b' class RepoSettingsPermissionsView(RepoAp'
105
105
106 raise HTTPFound(
106 raise HTTPFound(
107 h.route_path('edit_repo_perms', repo_name=self.db_repo_name))
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 #, fuzzy
6 #, fuzzy
7 msgid ""
7 msgid ""
8 msgstr ""
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 "Report-Msgid-Bugs-To: marcin@rhodecode.com\n"
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 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 "Language-Team: LANGUAGE <LL@li.org>\n"
14 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -25,11 +25,11 b' msgstr ""'
25 msgid "Error occurred during update of default values"
25 msgid "Error occurred during update of default values"
26 msgstr ""
26 msgstr ""
27
27
28 #: rhodecode/apps/admin/views/exception_tracker.py:142
28 #: rhodecode/apps/admin/views/exception_tracker.py:156
29 msgid "Removed {} Exceptions"
29 msgid "Removed {} Exceptions"
30 msgstr ""
30 msgstr ""
31
31
32 #: rhodecode/apps/admin/views/exception_tracker.py:159
32 #: rhodecode/apps/admin/views/exception_tracker.py:173
33 msgid "Removed Exception {}"
33 msgid "Removed Exception {}"
34 msgstr ""
34 msgstr ""
35
35
@@ -53,7 +53,7 b' msgstr ""'
53
53
54 #: rhodecode/apps/admin/views/permissions.py:484
54 #: rhodecode/apps/admin/views/permissions.py:484
55 #: rhodecode/templates/admin/gists/show.mako:63
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 #: rhodecode/templates/admin/my_account/my_account_profile.mako:5
57 #: rhodecode/templates/admin/my_account/my_account_profile.mako:5
58 #: rhodecode/templates/base/issue_tracker_settings.mako:60
58 #: rhodecode/templates/base/issue_tracker_settings.mako:60
59 #: rhodecode/templates/data_table/_dt_elements.mako:167
59 #: rhodecode/templates/data_table/_dt_elements.mako:167
@@ -62,12 +62,12 b' msgstr ""'
62 #: rhodecode/templates/data_table/_dt_elements.mako:255
62 #: rhodecode/templates/data_table/_dt_elements.mako:255
63 #: rhodecode/templates/data_table/_dt_elements.mako:267
63 #: rhodecode/templates/data_table/_dt_elements.mako:267
64 #: rhodecode/templates/debug_style/buttons.html:128
64 #: rhodecode/templates/debug_style/buttons.html:128
65 #: rhodecode/templates/files/files_add.mako:208
65 #: rhodecode/templates/files/files_add.mako:57
66 #: rhodecode/templates/files/files_edit.mako:168
66 #: rhodecode/templates/files/files_edit.mako:58
67 #: rhodecode/templates/files/files_source.mako:58
67 #: rhodecode/templates/files/files_source.mako:29
68 #: rhodecode/templates/files/files_source.mako:61
68 #: rhodecode/templates/files/files_source.mako:42
69 #: rhodecode/templates/pullrequests/pullrequest_show.mako:64
69 #: rhodecode/templates/pullrequests/pullrequest_show.mako:60
70 #: rhodecode/templates/pullrequests/pullrequest_show.mako:347
70 #: rhodecode/templates/pullrequests/pullrequest_show.mako:343
71 #: rhodecode/templates/user_group/profile.mako:7
71 #: rhodecode/templates/user_group/profile.mako:7
72 #: rhodecode/templates/users/user_profile.mako:7
72 #: rhodecode/templates/users/user_profile.mako:7
73 msgid "Edit"
73 msgid "Edit"
@@ -81,12 +81,12 b' msgstr ""'
81 msgid "SSH key support is disabled in .ini file"
81 msgid "SSH key support is disabled in .ini file"
82 msgstr ""
82 msgstr ""
83
83
84 #: rhodecode/apps/admin/views/repo_groups.py:183
84 #: rhodecode/apps/admin/views/repo_groups.py:329
85 #, python-format
85 #, python-format
86 msgid "Created repository group %s"
86 msgid "Created repository group %s"
87 msgstr ""
87 msgstr ""
88
88
89 #: rhodecode/apps/admin/views/repo_groups.py:201
89 #: rhodecode/apps/admin/views/repo_groups.py:347
90 #, python-format
90 #, python-format
91 msgid "Error occurred during creation of repository group %s"
91 msgid "Error occurred during creation of repository group %s"
92 msgstr ""
92 msgstr ""
@@ -345,12 +345,12 b' msgstr ""'
345 msgid "SVN"
345 msgid "SVN"
346 msgstr ""
346 msgstr ""
347
347
348 #: rhodecode/apps/admin/views/user_groups.py:231
348 #: rhodecode/apps/admin/views/user_groups.py:243
349 #, python-format
349 #, python-format
350 msgid "Created user group %(user_group_link)s"
350 msgid "Created user group %(user_group_link)s"
351 msgstr ""
351 msgstr ""
352
352
353 #: rhodecode/apps/admin/views/user_groups.py:253
353 #: rhodecode/apps/admin/views/user_groups.py:265
354 #, python-format
354 #, python-format
355 msgid "Error occurred during creation of user group %s"
355 msgid "Error occurred during creation of user group %s"
356 msgstr ""
356 msgstr ""
@@ -446,99 +446,99 b' msgstr ""'
446 msgid "Force password change disabled for user"
446 msgid "Force password change disabled for user"
447 msgstr ""
447 msgstr ""
448
448
449 #: rhodecode/apps/admin/views/users.py:696
449 #: rhodecode/apps/admin/views/users.py:695
450 #, python-format
450 #, python-format
451 msgid "Linked repository group `%s` as personal"
451 msgid "Linked repository group `%s` as personal"
452 msgstr ""
452 msgstr ""
453
453
454 #: rhodecode/apps/admin/views/users.py:702
454 #: rhodecode/apps/admin/views/users.py:701
455 #, python-format
455 #, python-format
456 msgid "Created repository group `%s`"
456 msgid "Created repository group `%s`"
457 msgstr ""
457 msgstr ""
458
458
459 #: rhodecode/apps/admin/views/users.py:706
459 #: rhodecode/apps/admin/views/users.py:705
460 #, python-format
460 #, python-format
461 msgid "Repository group `%s` is already taken"
461 msgid "Repository group `%s` is already taken"
462 msgstr ""
462 msgstr ""
463
463
464 #: rhodecode/apps/admin/views/users.py:711
464 #: rhodecode/apps/admin/views/users.py:710
465 msgid "An error occurred during repository group creation for user"
465 msgid "An error occurred during repository group creation for user"
466 msgstr ""
466 msgstr ""
467
467
468 #: rhodecode/apps/admin/views/users.py:734
468 #: rhodecode/apps/admin/views/users.py:733
469 #: rhodecode/apps/my_account/views/my_account.py:161
469 #: rhodecode/apps/my_account/views/my_account.py:161
470 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:16
470 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:16
471 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:16
471 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:16
472 msgid "Role"
472 msgid "Role"
473 msgstr ""
473 msgstr ""
474
474
475 #: rhodecode/apps/admin/views/users.py:773
475 #: rhodecode/apps/admin/views/users.py:772
476 #: rhodecode/apps/my_account/views/my_account.py:196
476 #: rhodecode/apps/my_account/views/my_account.py:196
477 msgid "Auth token successfully created"
477 msgid "Auth token successfully created"
478 msgstr ""
478 msgstr ""
479
479
480 #: rhodecode/apps/admin/views/users.py:802
480 #: rhodecode/apps/admin/views/users.py:801
481 #: rhodecode/apps/my_account/views/my_account.py:220
481 #: rhodecode/apps/my_account/views/my_account.py:220
482 msgid "Auth token successfully deleted"
482 msgid "Auth token successfully deleted"
483 msgstr ""
483 msgstr ""
484
484
485 #: rhodecode/apps/admin/views/users.py:875
485 #: rhodecode/apps/admin/views/users.py:874
486 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:114
486 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:114
487 msgid "Ssh Key successfully created"
487 msgid "Ssh Key successfully created"
488 msgstr ""
488 msgstr ""
489
489
490 #: rhodecode/apps/admin/views/users.py:881
490 #: rhodecode/apps/admin/views/users.py:880
491 #: rhodecode/apps/admin/views/users.py:885
491 #: rhodecode/apps/admin/views/users.py:884
492 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:120
492 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:120
493 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:124
493 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:124
494 msgid "An error occurred during ssh key saving: {}"
494 msgid "An error occurred during ssh key saving: {}"
495 msgstr ""
495 msgstr ""
496
496
497 #: rhodecode/apps/admin/views/users.py:919
497 #: rhodecode/apps/admin/views/users.py:918
498 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:154
498 #: rhodecode/apps/my_account/views/my_account_ssh_keys.py:154
499 msgid "Ssh key successfully deleted"
499 msgid "Ssh key successfully deleted"
500 msgstr ""
500 msgstr ""
501
501
502 #: rhodecode/apps/admin/views/users.py:965
502 #: rhodecode/apps/admin/views/users.py:964
503 #, python-format
503 #, python-format
504 msgid "Added new email address `%s` for user account"
504 msgid "Added new email address `%s` for user account"
505 msgstr ""
505 msgstr ""
506
506
507 #: rhodecode/apps/admin/views/users.py:971
507 #: rhodecode/apps/admin/views/users.py:970
508 msgid "Email `{}` is already registered for another user."
508 msgid "Email `{}` is already registered for another user."
509 msgstr ""
509 msgstr ""
510
510
511 #: rhodecode/apps/admin/views/users.py:975
511 #: rhodecode/apps/admin/views/users.py:974
512 msgid "An error occurred during email saving"
512 msgid "An error occurred during email saving"
513 msgstr ""
513 msgstr ""
514
514
515 #: rhodecode/apps/admin/views/users.py:1002
515 #: rhodecode/apps/admin/views/users.py:1001
516 msgid "Removed email address from user account"
516 msgid "Removed email address from user account"
517 msgstr ""
517 msgstr ""
518
518
519 #: rhodecode/apps/admin/views/users.py:1048
519 #: rhodecode/apps/admin/views/users.py:1047
520 #, python-format
520 #, python-format
521 msgid "An error occurred during ip saving:%s"
521 msgid "An error occurred during ip saving:%s"
522 msgstr ""
522 msgstr ""
523
523
524 #: rhodecode/apps/admin/views/users.py:1070
524 #: rhodecode/apps/admin/views/users.py:1069
525 msgid "An error occurred during ip saving"
525 msgid "An error occurred during ip saving"
526 msgstr ""
526 msgstr ""
527
527
528 #: rhodecode/apps/admin/views/users.py:1074
528 #: rhodecode/apps/admin/views/users.py:1073
529 #, python-format
529 #, python-format
530 msgid "Added ips %s to user whitelist"
530 msgid "Added ips %s to user whitelist"
531 msgstr ""
531 msgstr ""
532
532
533 #: rhodecode/apps/admin/views/users.py:1104
533 #: rhodecode/apps/admin/views/users.py:1103
534 msgid "Removed ip address from user whitelist"
534 msgid "Removed ip address from user whitelist"
535 msgstr ""
535 msgstr ""
536
536
537 #: rhodecode/apps/admin/views/users.py:1169
537 #: rhodecode/apps/admin/views/users.py:1168
538 msgid "Groups successfully changed"
538 msgid "Groups successfully changed"
539 msgstr ""
539 msgstr ""
540
540
541 #: rhodecode/apps/admin/views/users.py:1263
541 #: rhodecode/apps/admin/views/users.py:1262
542 msgid "Deleted {} cache keys"
542 msgid "Deleted {} cache keys"
543 msgstr ""
543 msgstr ""
544
544
@@ -562,9 +562,9 b' msgstr ""'
562 msgid "1 month"
562 msgid "1 month"
563 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:25
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 msgid "Lifetime"
568 msgid "Lifetime"
569 msgstr ""
569 msgstr ""
570
570
@@ -576,16 +576,16 b' msgstr ""'
576 msgid "Can be accessed by anonymous users"
576 msgid "Can be accessed by anonymous users"
577 msgstr ""
577 msgstr ""
578
578
579 #: rhodecode/apps/gist/views.py:214
579 #: rhodecode/apps/gist/views.py:213
580 msgid "Error occurred during gist creation"
580 msgid "Error occurred during gist creation"
581 msgstr ""
581 msgstr ""
582
582
583 #: rhodecode/apps/gist/views.py:238
583 #: rhodecode/apps/gist/views.py:237
584 #, python-format
584 #, python-format
585 msgid "Deleted gist %s"
585 msgid "Deleted gist %s"
586 msgstr ""
586 msgstr ""
587
587
588 #: rhodecode/apps/gist/views.py:324
588 #: rhodecode/apps/gist/views.py:325
589 #: rhodecode/templates/admin/gists/show.mako:74
589 #: rhodecode/templates/admin/gists/show.mako:74
590 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:36
590 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:36
591 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:36
591 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:36
@@ -593,41 +593,42 b' msgstr ""'
593 msgid "never"
593 msgid "never"
594 msgstr ""
594 msgstr ""
595
595
596 #: rhodecode/apps/gist/views.py:330
596 #: rhodecode/apps/gist/views.py:331
597 #, python-format
597 #, python-format
598 msgid "%(expiry)s - current value"
598 msgid "%(expiry)s - current value"
599 msgstr ""
599 msgstr ""
600
600
601 #: rhodecode/apps/gist/views.py:375
601 #: rhodecode/apps/gist/views.py:376
602 msgid "Successfully updated gist content"
602 msgid "Successfully updated gist content"
603 msgstr ""
603 msgstr ""
604
604
605 #: rhodecode/apps/gist/views.py:380
605 #: rhodecode/apps/gist/views.py:381
606 msgid "Successfully updated gist data"
606 msgid "Successfully updated gist data"
607 msgstr ""
607 msgstr ""
608
608
609 #: rhodecode/apps/gist/views.py:383
609 #: rhodecode/apps/gist/views.py:384
610 msgid "Error occurred during update of gist {}: {}"
610 msgid "Error occurred during update of gist {}: {}"
611 msgstr ""
611 msgstr ""
612
612
613 #: rhodecode/apps/gist/views.py:387
613 #: rhodecode/apps/gist/views.py:388
614 #, python-format
614 #, python-format
615 msgid "Error occurred during update of gist %s"
615 msgid "Error occurred during update of gist %s"
616 msgstr ""
616 msgstr ""
617
617
618 #: rhodecode/apps/home/views.py:308
618 #: rhodecode/apps/home/views.py:388
619 #: rhodecode/apps/repository/views/repo_pull_requests.py:878
619 #: rhodecode/apps/repository/views/repo_pull_requests.py:878
620 #: rhodecode/templates/admin/my_account/my_account.mako:42
620 #: rhodecode/templates/admin/my_account/my_account.mako:42
621 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:198
621 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:198
622 #: rhodecode/templates/admin/repos/repo_add.mako:15
622 #: rhodecode/templates/admin/repos/repo_add.mako:15
623 #: rhodecode/templates/admin/repos/repo_add.mako:19
623 #: rhodecode/templates/admin/repos/repo_add.mako:19
624 #: rhodecode/templates/admin/users/user_edit_advanced.mako:12
624 #: rhodecode/templates/admin/users/user_edit_advanced.mako:12
625 #: rhodecode/templates/base/base.mako:78 rhodecode/templates/base/base.mako:150
625 #: rhodecode/templates/base/base.mako:103
626 #: rhodecode/templates/base/base.mako:785
626 #: rhodecode/templates/base/base.mako:122
627 #: rhodecode/templates/base/base.mako:944
627 msgid "Repositories"
628 msgid "Repositories"
628 msgstr ""
629 msgstr ""
629
630
630 #: rhodecode/apps/home/views.py:335
631 #: rhodecode/apps/home/views.py:415
631 #: rhodecode/templates/admin/integrations/form.mako:17
632 #: rhodecode/templates/admin/integrations/form.mako:17
632 #: rhodecode/templates/admin/integrations/list.mako:10
633 #: rhodecode/templates/admin/integrations/list.mako:10
633 #: rhodecode/templates/admin/permissions/permissions_objects.mako:31
634 #: rhodecode/templates/admin/permissions/permissions_objects.mako:31
@@ -695,11 +696,11 b' msgstr ""'
695 msgid "Failed to update bookmarks. Make sure an unique position is used"
696 msgid "Failed to update bookmarks. Make sure an unique position is used"
696 msgstr ""
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 msgid "Your account was updated successfully"
700 msgid "Your account was updated successfully"
700 msgstr ""
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 msgid "Error occurred during update of user"
704 msgid "Error occurred during update of user"
704 msgstr ""
705 msgstr ""
705
706
@@ -746,9 +747,8 b' msgid "There are no commits yet"'
746 msgstr ""
747 msgstr ""
747
748
748 #: rhodecode/apps/repository/views/repo_changelog.py:71
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 #: rhodecode/apps/repository/views/repo_files.py:185
750 #: rhodecode/apps/repository/views/repo_files.py:185
751 #: rhodecode/apps/repository/views/repo_files.py:205
752 msgid "No such commit exists for this repository"
752 msgid "No such commit exists for this repository"
753 msgstr ""
753 msgstr ""
754
754
@@ -767,13 +767,17 b' msgstr ""'
767 msgid "Created repository %s"
767 msgid "Created repository %s"
768 msgstr ""
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 #: rhodecode/apps/repository/views/repo_pull_requests.py:1347
775 #: rhodecode/apps/repository/views/repo_pull_requests.py:1347
772 #, python-format
776 #, python-format
773 msgid "Status change %(transition_icon)s %(status)s"
777 msgid "Status change %(transition_icon)s %(status)s"
774 msgstr ""
778 msgstr ""
775
779
776 #: rhodecode/apps/repository/views/repo_commits.py:372
780 #: rhodecode/apps/repository/views/repo_commits.py:371
777 msgid "Changing the status of a commit associated with a closed pull request is not allowed"
781 msgid "Changing the status of a commit associated with a closed pull request is not allowed"
778 msgstr ""
782 msgstr ""
779
783
@@ -793,11 +797,11 b' msgstr ""'
793 msgid "The comparison of two different kinds of remote repos is not available"
797 msgid "The comparison of two different kinds of remote repos is not available"
794 msgstr ""
798 msgstr ""
795
799
796 #: rhodecode/apps/repository/views/repo_compare.py:231
800 #: rhodecode/apps/repository/views/repo_compare.py:225
797 msgid "Could not compare repos with different large file settings"
801 msgid "Could not compare repos with different large file settings"
798 msgstr ""
802 msgstr ""
799
803
800 #: rhodecode/apps/repository/views/repo_compare.py:277
804 #: rhodecode/apps/repository/views/repo_compare.py:271
801 #, python-format
805 #, python-format
802 msgid "Repositories unrelated. Cannot compare commit %(commit1)s from repository %(repo1)s with commit %(commit2)s from repository %(repo2)s."
806 msgid "Repositories unrelated. Cannot compare commit %(commit1)s from repository %(repo1)s with commit %(commit2)s from repository %(repo2)s."
803 msgstr ""
807 msgstr ""
@@ -812,122 +816,130 b' msgstr ""'
812 msgid "%s %s feed"
816 msgid "%s %s feed"
813 msgstr ""
817 msgstr ""
814
818
815 #: rhodecode/apps/repository/views/repo_files.py:95
819 #: rhodecode/apps/repository/views/repo_files.py:96
816 #, python-format
820 #, python-format
817 msgid "This repository has been locked by %s on %s"
821 msgid "This repository has been locked by %s on %s"
818 msgstr ""
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 msgid "Branch `{}` changes forbidden by rule {}."
829 msgid "Branch `{}` changes forbidden by rule {}."
822 msgstr ""
830 msgstr ""
823
831
824 #: rhodecode/apps/repository/views/repo_files.py:155
832 #: rhodecode/apps/repository/views/repo_files.py:175
825 msgid "Click here to add a new file."
833 msgid "Click here to add a new file."
826 msgstr ""
834 msgstr ""
827
835
828 #: rhodecode/apps/repository/views/repo_files.py:160
836 #: rhodecode/apps/repository/views/repo_files.py:180
829 #, python-format
837 #, python-format
830 msgid "There are no files yet. %s"
838 msgid "There are no files yet. %s"
831 msgstr ""
839 msgstr ""
832
840
833 #: rhodecode/apps/repository/views/repo_files.py:297
841 #: rhodecode/apps/repository/views/repo_files.py:325
834 msgid "Downloads disabled"
842 msgid "Downloads disabled"
835 msgstr ""
843 msgstr ""
836
844
837 #: rhodecode/apps/repository/views/repo_files.py:303
845 #: rhodecode/apps/repository/views/repo_files.py:331
838 msgid "Unknown archive type for: `{}`"
846 msgid "Unknown archive type for: `{}`"
839 msgstr ""
847 msgstr ""
840
848
841 #: rhodecode/apps/repository/views/repo_files.py:309
849 #: rhodecode/apps/repository/views/repo_files.py:337
842 msgid "Unknown commit_id {}"
850 msgid "Unknown commit_id {}"
843 msgstr ""
851 msgstr ""
844
852
845 #: rhodecode/apps/repository/views/repo_files.py:312
853 #: rhodecode/apps/repository/views/repo_files.py:340
846 msgid "Empty repository"
854 msgid "Empty repository"
847 msgstr ""
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 msgid "Unknown archive type"
862 msgid "Unknown archive type"
851 msgstr ""
863 msgstr ""
852
864
853 #: rhodecode/apps/repository/views/repo_files.py:915
865 #: rhodecode/apps/repository/views/repo_files.py:963
854 msgid "Changesets"
866 msgid "Changesets"
855 msgstr ""
867 msgstr ""
856
868
857 #: rhodecode/apps/repository/views/repo_files.py:936
869 #: rhodecode/apps/repository/views/repo_files.py:984
858 #: rhodecode/apps/repository/views/repo_summary.py:341
870 #: rhodecode/apps/repository/views/repo_summary.py:346
859 #: rhodecode/model/pull_request.py:1431 rhodecode/model/scm.py:916
871 #: rhodecode/model/pull_request.py:1456 rhodecode/model/scm.py:918
860 #: rhodecode/templates/base/vcs_settings.mako:235
872 #: rhodecode/templates/base/vcs_settings.mako:235
873 #: rhodecode/templates/summary/components.mako:10
861 msgid "Branches"
874 msgid "Branches"
862 msgstr ""
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 #: rhodecode/templates/base/vcs_settings.mako:260
878 #: rhodecode/templates/base/vcs_settings.mako:260
879 #: rhodecode/templates/summary/components.mako:34
866 msgid "Tags"
880 msgid "Tags"
867 msgstr ""
881 msgstr ""
868
882
869 #: rhodecode/apps/repository/views/repo_files.py:1039
883 #: rhodecode/apps/repository/views/repo_files.py:1092
870 #: rhodecode/apps/repository/views/repo_files.py:1073
884 #: rhodecode/apps/repository/views/repo_files.py:1120
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
876 msgid "Deleted file {} via RhodeCode Enterprise"
885 msgid "Deleted file {} via RhodeCode Enterprise"
877 msgstr ""
886 msgstr ""
878
887
879 #: rhodecode/apps/repository/views/repo_files.py:1105
888 #: rhodecode/apps/repository/views/repo_files.py:1141
880 msgid "Successfully deleted file `{}`"
889 msgid "Successfully deleted file `{}`"
881 msgstr ""
890 msgstr ""
882
891
883 #: rhodecode/apps/repository/views/repo_files.py:1109
892 #: rhodecode/apps/repository/views/repo_files.py:1145
884 #: rhodecode/apps/repository/views/repo_files.py:1235
893 #: rhodecode/apps/repository/views/repo_files.py:1262
885 #: rhodecode/apps/repository/views/repo_files.py:1393
894 #: rhodecode/apps/repository/views/repo_files.py:1393
895 #: rhodecode/apps/repository/views/repo_files.py:1516
886 msgid "Error occurred during commit"
896 msgid "Error occurred during commit"
887 msgstr ""
897 msgstr ""
888
898
889 #: rhodecode/apps/repository/views/repo_files.py:1129
899 #: rhodecode/apps/repository/views/repo_files.py:1177
890 #: rhodecode/apps/repository/views/repo_files.py:1169
900 #: rhodecode/apps/repository/views/repo_files.py:1208
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
896 msgid "Edited file {} via RhodeCode Enterprise"
901 msgid "Edited file {} via RhodeCode Enterprise"
897 msgstr ""
902 msgstr ""
898
903
899 #: rhodecode/apps/repository/views/repo_files.py:1206
900 msgid "No changes"
901 msgstr ""
902
903 #: rhodecode/apps/repository/views/repo_files.py:1231
904 #: rhodecode/apps/repository/views/repo_files.py:1231
904 msgid "Successfully committed changes to file `{}`"
905 msgid "No changes detected on {}"
905 msgstr ""
906 msgstr ""
906
907
907 #: rhodecode/apps/repository/views/repo_files.py:1255
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 msgid "Added file via RhodeCode Enterprise"
914 msgid "Added file via RhodeCode Enterprise"
910 msgstr ""
915 msgstr ""
911
916
912 #: rhodecode/apps/repository/views/repo_files.py:1268
917 #: rhodecode/apps/repository/views/repo_files.py:1353
913 #: rhodecode/apps/repository/views/repo_files.py:1309
918 msgid "No filename specified"
914 msgid "You can only add files with commit being a valid branch head."
919 msgstr ""
915 msgstr ""
920
916
921 #: rhodecode/apps/repository/views/repo_files.py:1378
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
922 msgid "Successfully committed new file `{}`"
922 msgid "Successfully committed new file `{}`"
923 msgstr ""
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 msgid "The location specified must be a relative path and must not contain .. in the path"
927 msgid "The location specified must be a relative path and must not contain .. in the path"
927 msgstr ""
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 #: rhodecode/apps/repository/views/repo_forks.py:147
942 #: rhodecode/apps/repository/views/repo_forks.py:147
930 #: rhodecode/templates/base/base.mako:267
931 msgid "Compare fork"
943 msgid "Compare fork"
932 msgstr ""
944 msgstr ""
933
945
@@ -1035,7 +1047,7 b' msgid "Repository has been %s"'
1035 msgstr ""
1047 msgstr ""
1036
1048
1037 #: rhodecode/apps/repository/views/repo_settings.py:219
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 msgid "An error occurred during unlocking"
1051 msgid "An error occurred during unlocking"
1040 msgstr ""
1052 msgstr ""
1041
1053
@@ -1043,78 +1055,78 b' msgstr ""'
1043 msgid "An error occurred during deletion of repository stats"
1055 msgid "An error occurred during deletion of repository stats"
1044 msgstr ""
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 #, python-format
1059 #, python-format
1048 msgid "Archived repository `%s`"
1060 msgid "Archived repository `%s`"
1049 msgstr ""
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 #, python-format
1064 #, python-format
1053 msgid "An error occurred during archiving of `%s`"
1065 msgid "An error occurred during archiving of `%s`"
1054 msgstr ""
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 #, python-format
1069 #, python-format
1058 msgid "Detached %s forks"
1070 msgid "Detached %s forks"
1059 msgstr ""
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 #, python-format
1074 #, python-format
1063 msgid "Deleted %s forks"
1075 msgid "Deleted %s forks"
1064 msgstr ""
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 #, python-format
1079 #, python-format
1068 msgid "Deleted repository `%s`"
1080 msgid "Deleted repository `%s`"
1069 msgstr ""
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 msgid "detach or delete"
1084 msgid "detach or delete"
1073 msgstr ""
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 msgid "Cannot delete `{repo}` it still contains attached forks. Try using {delete_or_detach} option."
1088 msgid "Cannot delete `{repo}` it still contains attached forks. Try using {delete_or_detach} option."
1077 msgstr ""
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 msgid "Cannot delete `{repo}` it still contains {num} attached pull requests. Consider archiving the repository instead."
1092 msgid "Cannot delete `{repo}` it still contains {num} attached pull requests. Consider archiving the repository instead."
1081 msgstr ""
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 #, python-format
1096 #, python-format
1085 msgid "An error occurred during deletion of `%s`"
1097 msgid "An error occurred during deletion of `%s`"
1086 msgstr ""
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 msgid "Updated repository visibility in public journal"
1101 msgid "Updated repository visibility in public journal"
1090 msgstr ""
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 msgid "An error occurred during setting this repository in public journal"
1105 msgid "An error occurred during setting this repository in public journal"
1094 msgstr ""
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 msgid "Nothing"
1109 msgid "Nothing"
1098 msgstr ""
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 #, python-format
1113 #, python-format
1102 msgid "Marked repo %s as fork of %s"
1114 msgid "Marked repo %s as fork of %s"
1103 msgstr ""
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 msgid "An error occurred during this operation"
1118 msgid "An error occurred during this operation"
1107 msgstr ""
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 msgid "Locked repository"
1122 msgid "Locked repository"
1111 msgstr ""
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 msgid "Unlocked repository"
1126 msgid "Unlocked repository"
1115 msgstr ""
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 msgid "installed updated hooks into this repository"
1130 msgid "installed updated hooks into this repository"
1119 msgstr ""
1131 msgstr ""
1120
1132
@@ -1142,21 +1154,23 b' msgstr ""'
1142 msgid "Error occurred during updating repository VCS settings"
1154 msgid "Error occurred during updating repository VCS settings"
1143 msgstr ""
1155 msgstr ""
1144
1156
1145 #: rhodecode/apps/repository/views/repo_summary.py:316
1157 #: rhodecode/apps/repository/views/repo_summary.py:322
1146 #: rhodecode/templates/admin/permissions/permissions.mako:42
1158 #: rhodecode/templates/admin/permissions/permissions.mako:42
1147 #: rhodecode/templates/files/files_add.mako:15
1159 #: rhodecode/templates/summary/components.mako:8
1148 msgid "Branch"
1160 msgid "Branch"
1149 msgstr ""
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 msgid "Tag"
1165 msgid "Tag"
1153 msgstr ""
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 msgid "Bookmark"
1170 msgid "Bookmark"
1157 msgstr ""
1171 msgstr ""
1158
1172
1159 #: rhodecode/apps/repository/views/repo_summary.py:342
1173 #: rhodecode/apps/repository/views/repo_summary.py:347
1160 msgid "Closed branches"
1174 msgid "Closed branches"
1161 msgstr ""
1175 msgstr ""
1162
1176
@@ -1207,7 +1221,6 b' msgid "An error occurred during synchron'
1207 msgstr ""
1221 msgstr ""
1208
1222
1209 #: rhodecode/authentication/routes.py:61
1223 #: rhodecode/authentication/routes.py:61
1210 #: rhodecode/templates/admin/auth/auth_settings.mako:14
1211 #: rhodecode/templates/admin/auth/plugin_settings.mako:14
1224 #: rhodecode/templates/admin/auth/plugin_settings.mako:14
1212 msgid "Authentication Plugins"
1225 msgid "Authentication Plugins"
1213 msgstr ""
1226 msgstr ""
@@ -1221,7 +1234,7 b' msgstr ""'
1221 #: rhodecode/model/permission.py:118 rhodecode/model/permission.py:122
1234 #: rhodecode/model/permission.py:118 rhodecode/model/permission.py:122
1222 #: rhodecode/model/permission.py:126 rhodecode/model/permission.py:130
1235 #: rhodecode/model/permission.py:126 rhodecode/model/permission.py:130
1223 #: rhodecode/model/validation_schema/schemas/integration_schema.py:195
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 #: rhodecode/templates/admin/integrations/list.mako:71
1238 #: rhodecode/templates/admin/integrations/list.mako:71
1226 msgid "Enabled"
1239 msgid "Enabled"
1227 msgstr ""
1240 msgstr ""
@@ -1375,8 +1388,8 b' msgid "Password to authenticate for give'
1375 msgstr ""
1388 msgstr ""
1376
1389
1377 #: rhodecode/authentication/plugins/auth_ldap.py:283
1390 #: rhodecode/authentication/plugins/auth_ldap.py:283
1378 #: rhodecode/integrations/types/webhook.py:89 rhodecode/templates/login.mako:49
1391 #: rhodecode/integrations/types/webhook.py:89 rhodecode/templates/login.mako:51
1379 #: rhodecode/templates/register.mako:60
1392 #: rhodecode/templates/register.mako:62
1380 #: rhodecode/templates/admin/my_account/my_account.mako:30
1393 #: rhodecode/templates/admin/my_account/my_account.mako:30
1381 #: rhodecode/templates/admin/users/user_add.mako:44
1394 #: rhodecode/templates/admin/users/user_add.mako:44
1382 #: rhodecode/templates/debug_style/login.html:45
1395 #: rhodecode/templates/debug_style/login.html:45
@@ -1650,14 +1663,14 b' msgstr ""'
1650 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:88
1663 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:88
1651 #: rhodecode/templates/admin/users/user_edit_emails.mako:63
1664 #: rhodecode/templates/admin/users/user_edit_emails.mako:63
1652 #: rhodecode/templates/admin/users/user_edit_ips.mako:71
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 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:67
1667 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:67
1655 #: rhodecode/templates/base/default_perms_box.mako:89
1668 #: rhodecode/templates/base/default_perms_box.mako:89
1656 msgid "Reset"
1669 msgid "Reset"
1657 msgstr ""
1670 msgstr ""
1658
1671
1659 #: rhodecode/forms/__init__.py:36 rhodecode/templates/admin/gists/show.mako:54
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 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:50
1674 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:50
1662 #: rhodecode/templates/admin/my_account/my_account_emails.mako:32
1675 #: rhodecode/templates/admin/my_account/my_account_emails.mako:32
1663 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:33
1676 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:33
@@ -1680,12 +1693,13 b' msgstr ""'
1680 #: rhodecode/templates/data_table/_dt_elements.mako:245
1693 #: rhodecode/templates/data_table/_dt_elements.mako:245
1681 #: rhodecode/templates/data_table/_dt_elements.mako:259
1694 #: rhodecode/templates/data_table/_dt_elements.mako:259
1682 #: rhodecode/templates/data_table/_dt_elements.mako:271
1695 #: rhodecode/templates/data_table/_dt_elements.mako:271
1696 #: rhodecode/templates/data_table/_dt_elements.mako:397
1683 #: rhodecode/templates/debug_style/buttons.html:132
1697 #: rhodecode/templates/debug_style/buttons.html:132
1684 #: rhodecode/templates/files/files_source.mako:55
1698 #: rhodecode/templates/files/files_source.mako:30
1685 #: rhodecode/templates/files/files_source.mako:59
1699 #: rhodecode/templates/files/files_source.mako:37
1686 #: rhodecode/templates/files/files_source.mako:62
1700 #: rhodecode/templates/files/files_source.mako:43
1701 #: rhodecode/templates/pullrequests/pullrequest_show.mako:53
1687 #: rhodecode/templates/pullrequests/pullrequest_show.mako:57
1702 #: rhodecode/templates/pullrequests/pullrequest_show.mako:57
1688 #: rhodecode/templates/pullrequests/pullrequest_show.mako:61
1689 msgid "Delete"
1703 msgid "Delete"
1690 msgstr ""
1704 msgstr ""
1691
1705
@@ -1720,32 +1734,32 b' msgstr ""'
1720 msgid "Root repositories only"
1734 msgid "Root repositories only"
1721 msgstr ""
1735 msgstr ""
1722
1736
1723 #: rhodecode/integrations/views.py:148
1737 #: rhodecode/integrations/views.py:147
1724 msgid "{repo_name} repository"
1738 msgid "{repo_name} repository"
1725 msgstr ""
1739 msgstr ""
1726
1740
1727 #: rhodecode/integrations/views.py:151
1741 #: rhodecode/integrations/views.py:150
1728 msgid "{repo_group_name} repo group"
1742 msgid "{repo_group_name} repo group"
1729 msgstr ""
1743 msgstr ""
1730
1744
1731 #: rhodecode/integrations/views.py:154
1745 #: rhodecode/integrations/views.py:153
1732 #: rhodecode/templates/admin/permissions/permissions.mako:36
1746 #: rhodecode/templates/admin/permissions/permissions.mako:36
1733 msgid "Global"
1747 msgid "Global"
1734 msgstr ""
1748 msgstr ""
1735
1749
1736 #: rhodecode/integrations/views.py:158
1750 #: rhodecode/integrations/views.py:157
1737 msgid "{name} integration"
1751 msgid "{name} integration"
1738 msgstr ""
1752 msgstr ""
1739
1753
1740 #: rhodecode/integrations/views.py:173
1754 #: rhodecode/integrations/views.py:172
1741 msgid "Integration {integration_name} deleted successfully."
1755 msgid "Integration {integration_name} deleted successfully."
1742 msgstr ""
1756 msgstr ""
1743
1757
1744 #: rhodecode/integrations/views.py:302
1758 #: rhodecode/integrations/views.py:301
1745 msgid "Errors exist when saving integration settings. Please check the form inputs."
1759 msgid "Errors exist when saving integration settings. Please check the form inputs."
1746 msgstr ""
1760 msgstr ""
1747
1761
1748 #: rhodecode/integrations/views.py:327
1762 #: rhodecode/integrations/views.py:326
1749 msgid "Integration {integration_name} updated successfully."
1763 msgid "Integration {integration_name} updated successfully."
1750 msgstr ""
1764 msgstr ""
1751
1765
@@ -1763,13 +1777,13 b' msgid "Email address"'
1763 msgstr ""
1777 msgstr ""
1764
1778
1765 #: rhodecode/integrations/types/email.py:174
1779 #: rhodecode/integrations/types/email.py:174
1766 #: rhodecode/templates/register.mako:93
1780 #: rhodecode/templates/register.mako:95
1767 #: rhodecode/templates/admin/my_account/my_account_profile.mako:48
1781 #: rhodecode/templates/admin/my_account/my_account_profile.mako:55
1768 #: rhodecode/templates/admin/users/user_add.mako:86
1782 #: rhodecode/templates/admin/users/user_add.mako:86
1769 #: rhodecode/templates/admin/users/user_edit_profile.mako:65
1783 #: rhodecode/templates/admin/users/user_edit_profile.mako:64
1770 #: rhodecode/templates/admin/users/users.mako:73
1784 #: rhodecode/templates/admin/users/users.mako:76
1771 #: rhodecode/templates/email_templates/user_registration.mako:25
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 msgid "Email"
1787 msgid "Email"
1774 msgstr ""
1788 msgstr ""
1775
1789
@@ -1838,20 +1852,20 b' msgid "This can be setup at the <a href='
1838 msgstr ""
1852 msgstr ""
1839
1853
1840 #: rhodecode/integrations/types/slack.py:85
1854 #: rhodecode/integrations/types/slack.py:85
1841 #: rhodecode/integrations/types/webhook.py:79 rhodecode/templates/login.mako:42
1855 #: rhodecode/integrations/types/webhook.py:79 rhodecode/templates/login.mako:44
1842 #: rhodecode/templates/register.mako:46
1856 #: rhodecode/templates/register.mako:48
1843 #: rhodecode/templates/admin/admin_log_base.mako:7
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 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:23
1859 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:23
1846 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:45
1860 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:45
1847 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:70
1861 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:70
1848 #: rhodecode/templates/admin/users/user_add.mako:35
1862 #: rhodecode/templates/admin/users/user_add.mako:35
1849 #: rhodecode/templates/admin/users/user_edit_profile.mako:39
1863 #: rhodecode/templates/admin/users/user_edit_profile.mako:38
1850 #: rhodecode/templates/admin/users/users.mako:71
1864 #: rhodecode/templates/admin/users/users.mako:74
1851 #: rhodecode/templates/debug_style/login.html:36
1865 #: rhodecode/templates/debug_style/login.html:36
1852 #: rhodecode/templates/email_templates/user_registration.mako:23
1866 #: rhodecode/templates/email_templates/user_registration.mako:23
1853 #: rhodecode/templates/user_group/profile.mako:46
1867 #: rhodecode/templates/user_group/profile.mako:51
1854 #: rhodecode/templates/users/user_profile.mako:27
1868 #: rhodecode/templates/users/user_profile.mako:28
1855 msgid "Username"
1869 msgid "Username"
1856 msgstr ""
1870 msgstr ""
1857
1871
@@ -2029,7 +2043,7 b' msgid "fork name %s"'
2029 msgstr ""
2043 msgstr ""
2030
2044
2031 #: rhodecode/lib/action_parser.py:191
2045 #: rhodecode/lib/action_parser.py:191
2032 #: rhodecode/templates/pullrequests/pullrequest_show.mako:52
2046 #: rhodecode/templates/pullrequests/pullrequest_show.mako:48
2033 #, python-format
2047 #, python-format
2034 msgid "Pull request #%s"
2048 msgid "Pull request #%s"
2035 msgstr ""
2049 msgstr ""
@@ -2079,7 +2093,7 b' msgstr ""'
2079 msgid "Click to select line"
2093 msgid "Click to select line"
2080 msgstr ""
2094 msgstr ""
2081
2095
2082 #: rhodecode/lib/helpers.py:1825
2096 #: rhodecode/lib/helpers.py:1857
2083 msgid ""
2097 msgid ""
2084 "Example filter terms:\n"
2098 "Example filter terms:\n"
2085 " repository:vcs\n"
2099 " repository:vcs\n"
@@ -2101,7 +2115,7 b' msgid ""'
2101 " \"username:test AND repository:test*\"\n"
2115 " \"username:test AND repository:test*\"\n"
2102 msgstr ""
2116 msgstr ""
2103
2117
2104 #: rhodecode/lib/helpers.py:1849
2118 #: rhodecode/lib/helpers.py:1881
2105 #, python-format
2119 #, python-format
2106 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"
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 msgstr ""
2121 msgstr ""
@@ -2138,7 +2152,7 b' msgstr ""'
2138 msgid "in ${val} and ${detail}"
2152 msgid "in ${val} and ${detail}"
2139 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:92
2156 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:92
2143 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:174
2157 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:174
2144 msgid "just now"
2158 msgid "just now"
@@ -2160,7 +2174,7 b' msgstr ""'
2160 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:737
2174 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:737
2161 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:764
2175 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:764
2162 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:774
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:815
2178 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:815
2165 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:816
2179 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:816
2166 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:816
2180 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:816
@@ -2179,7 +2193,7 b' msgstr ""'
2179 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2270
2193 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2270
2180 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2321
2194 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2321
2181 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2322
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 msgid "Repository no access"
2197 msgid "Repository no access"
2184 msgstr ""
2198 msgstr ""
2185
2199
@@ -2199,7 +2213,7 b' msgstr ""'
2199 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:738
2213 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:738
2200 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:765
2214 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:765
2201 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:775
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:816
2217 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:816
2204 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:817
2218 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:817
2205 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:817
2219 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:817
@@ -2218,7 +2232,7 b' msgstr ""'
2218 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2271
2232 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2271
2219 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2322
2233 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2322
2220 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2323
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 msgid "Repository read access"
2236 msgid "Repository read access"
2223 msgstr ""
2237 msgstr ""
2224
2238
@@ -2238,7 +2252,7 b' msgstr ""'
2238 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:739
2252 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:739
2239 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:766
2253 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:766
2240 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:776
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:817
2256 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:817
2243 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:818
2257 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:818
2244 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:818
2258 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:818
@@ -2257,7 +2271,7 b' msgstr ""'
2257 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2272
2271 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2272
2258 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2323
2272 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2323
2259 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2324
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 msgid "Repository write access"
2275 msgid "Repository write access"
2262 msgstr ""
2276 msgstr ""
2263
2277
@@ -2277,7 +2291,7 b' msgstr ""'
2277 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:740
2291 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:740
2278 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:767
2292 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:767
2279 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:777
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:818
2295 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:818
2282 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:819
2296 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:819
2283 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:819
2297 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:819
@@ -2296,7 +2310,7 b' msgstr ""'
2296 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2273
2310 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2273
2297 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2324
2311 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2324
2298 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2325
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 msgid "Repository admin access"
2314 msgid "Repository admin access"
2301 msgstr ""
2315 msgstr ""
2302
2316
@@ -2356,7 +2370,7 b' msgstr ""'
2356 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:758
2370 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:758
2357 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:785
2371 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:785
2358 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:795
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:836
2374 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:836
2361 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:837
2375 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:837
2362 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:837
2376 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:837
@@ -2375,7 +2389,7 b' msgstr ""'
2375 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2291
2389 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2291
2376 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2342
2390 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2342
2377 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2343
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 msgid "Repository creation disabled"
2393 msgid "Repository creation disabled"
2380 msgstr ""
2394 msgstr ""
2381
2395
@@ -2395,7 +2409,7 b' msgstr ""'
2395 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:759
2409 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:759
2396 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:786
2410 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:786
2397 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:796
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:837
2413 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:837
2400 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:838
2414 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:838
2401 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:838
2415 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:838
@@ -2414,7 +2428,7 b' msgstr ""'
2414 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2292
2428 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2292
2415 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2343
2429 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2343
2416 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2344
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 msgid "Repository creation enabled"
2432 msgid "Repository creation enabled"
2419 msgstr ""
2433 msgstr ""
2420
2434
@@ -2434,7 +2448,7 b' msgstr ""'
2434 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:763
2448 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:763
2435 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:790
2449 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:790
2436 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:800
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:841
2452 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:841
2439 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:842
2453 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:842
2440 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:842
2454 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:842
@@ -2453,7 +2467,7 b' msgstr ""'
2453 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2296
2467 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2296
2454 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2347
2468 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2347
2455 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2348
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 msgid "Repository forking disabled"
2471 msgid "Repository forking disabled"
2458 msgstr ""
2472 msgstr ""
2459
2473
@@ -2473,7 +2487,7 b' msgstr ""'
2473 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:764
2487 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:764
2474 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:791
2488 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:791
2475 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:801
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:842
2491 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:842
2478 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:843
2492 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:843
2479 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:843
2493 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:843
@@ -2492,7 +2506,7 b' msgstr ""'
2492 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2297
2506 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2297
2493 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2348
2507 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2348
2494 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2349
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 msgid "Repository forking enabled"
2510 msgid "Repository forking enabled"
2497 msgstr ""
2511 msgstr ""
2498
2512
@@ -2533,7 +2547,7 b' msgstr ""'
2533 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1090
2547 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1090
2534 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1120
2548 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1120
2535 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1134
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1175
2551 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1175
2538 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1184
2552 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1184
2539 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1184
2553 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1184
@@ -2552,8 +2566,8 b' msgstr ""'
2552 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2910
2566 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2910
2553 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3011
2567 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3011
2554 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3012
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
2569 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3230 rhodecode/model/db.py:3712
2556 #: rhodecode/public/js/scripts.js:39894
2570 #: rhodecode/public/js/scripts.js:43644
2557 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:43
2571 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:43
2558 #: rhodecode/public/js/src/rhodecode/pullrequests.js:319
2572 #: rhodecode/public/js/src/rhodecode/pullrequests.js:319
2559 msgid "Not Reviewed"
2573 msgid "Not Reviewed"
@@ -2575,7 +2589,7 b' msgstr ""'
2575 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1091
2589 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1091
2576 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1121
2590 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1121
2577 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1135
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1176
2593 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1176
2580 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1185
2594 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1185
2581 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1185
2595 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1185
@@ -2594,7 +2608,7 b' msgstr ""'
2594 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2911
2608 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2911
2595 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3012
2609 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3012
2596 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3013
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 msgid "Approved"
2612 msgid "Approved"
2599 msgstr ""
2613 msgstr ""
2600
2614
@@ -2614,7 +2628,7 b' msgstr ""'
2614 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1092
2628 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1092
2615 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1122
2629 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1122
2616 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1136
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1177
2632 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1177
2619 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1186
2633 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1186
2620 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1186
2634 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1186
@@ -2633,7 +2647,7 b' msgstr ""'
2633 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2912
2647 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2912
2634 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3013
2648 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3013
2635 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3014
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 msgid "Rejected"
2651 msgid "Rejected"
2638 msgstr ""
2652 msgstr ""
2639
2653
@@ -2653,7 +2667,7 b' msgstr ""'
2653 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1093
2667 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:1093
2654 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1123
2668 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:1123
2655 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:1137
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1178
2671 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:1178
2658 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1187
2672 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:1187
2659 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1187
2673 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:1187
@@ -2672,7 +2686,7 b' msgstr ""'
2672 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2913
2686 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2913
2673 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3014
2687 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3014
2674 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3015
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 msgid "Under Review"
2690 msgid "Under Review"
2677 msgstr ""
2691 msgstr ""
2678
2692
@@ -2689,7 +2703,7 b' msgstr ""'
2689 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:742
2703 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:742
2690 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:769
2704 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:769
2691 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:779
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:820
2707 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:820
2694 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:821
2708 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:821
2695 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:821
2709 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:821
@@ -2708,7 +2722,7 b' msgstr ""'
2708 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2275
2722 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2275
2709 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2326
2723 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2326
2710 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2327
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 msgid "Repository group no access"
2726 msgid "Repository group no access"
2713 msgstr ""
2727 msgstr ""
2714
2728
@@ -2725,7 +2739,7 b' msgstr ""'
2725 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:743
2739 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:743
2726 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:770
2740 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:770
2727 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:780
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:821
2743 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:821
2730 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:822
2744 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:822
2731 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:822
2745 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:822
@@ -2744,7 +2758,7 b' msgstr ""'
2744 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2276
2758 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2276
2745 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2327
2759 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2327
2746 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2328
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 msgid "Repository group read access"
2762 msgid "Repository group read access"
2749 msgstr ""
2763 msgstr ""
2750
2764
@@ -2761,7 +2775,7 b' msgstr ""'
2761 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:744
2775 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:744
2762 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:771
2776 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:771
2763 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:781
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:822
2779 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:822
2766 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:823
2780 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:823
2767 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:823
2781 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:823
@@ -2780,7 +2794,7 b' msgstr ""'
2780 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2277
2794 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2277
2781 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2328
2795 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2328
2782 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2329
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 msgid "Repository group write access"
2798 msgid "Repository group write access"
2785 msgstr ""
2799 msgstr ""
2786
2800
@@ -2797,7 +2811,7 b' msgstr ""'
2797 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:745
2811 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:745
2798 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:772
2812 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:772
2799 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:782
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:823
2815 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:823
2802 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:824
2816 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:824
2803 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:824
2817 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:824
@@ -2816,7 +2830,7 b' msgstr ""'
2816 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2278
2830 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2278
2817 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2329
2831 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2329
2818 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2330
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 msgid "Repository group admin access"
2834 msgid "Repository group admin access"
2821 msgstr ""
2835 msgstr ""
2822
2836
@@ -2832,7 +2846,7 b' msgstr ""'
2832 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:747
2846 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:747
2833 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:774
2847 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:774
2834 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:784
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:825
2850 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:825
2837 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:826
2851 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:826
2838 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:826
2852 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:826
@@ -2851,7 +2865,7 b' msgstr ""'
2851 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2280
2865 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2280
2852 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2331
2866 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2331
2853 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2332
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 msgid "User group no access"
2869 msgid "User group no access"
2856 msgstr ""
2870 msgstr ""
2857
2871
@@ -2867,7 +2881,7 b' msgstr ""'
2867 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:748
2881 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:748
2868 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:775
2882 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:775
2869 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:785
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:826
2885 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:826
2872 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:827
2886 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:827
2873 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:827
2887 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:827
@@ -2886,7 +2900,7 b' msgstr ""'
2886 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2281
2900 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2281
2887 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2332
2901 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2332
2888 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2333
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 msgid "User group read access"
2904 msgid "User group read access"
2891 msgstr ""
2905 msgstr ""
2892
2906
@@ -2902,7 +2916,7 b' msgstr ""'
2902 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:749
2916 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:749
2903 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:776
2917 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:776
2904 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:786
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:827
2920 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:827
2907 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:828
2921 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:828
2908 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:828
2922 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:828
@@ -2921,7 +2935,7 b' msgstr ""'
2921 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2282
2935 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2282
2922 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2333
2936 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2333
2923 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2334
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 msgid "User group write access"
2939 msgid "User group write access"
2926 msgstr ""
2940 msgstr ""
2927
2941
@@ -2937,7 +2951,7 b' msgstr ""'
2937 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:750
2951 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:750
2938 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:777
2952 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:777
2939 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:787
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:828
2955 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:828
2942 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:829
2956 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:829
2943 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:829
2957 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:829
@@ -2956,7 +2970,7 b' msgstr ""'
2956 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2283
2970 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2283
2957 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2334
2971 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2334
2958 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2335
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 msgid "User group admin access"
2974 msgid "User group admin access"
2961 msgstr ""
2975 msgstr ""
2962
2976
@@ -2972,7 +2986,7 b' msgstr ""'
2972 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:752
2986 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:752
2973 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:779
2987 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:779
2974 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:789
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:830
2990 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:830
2977 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:831
2991 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:831
2978 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:831
2992 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:831
@@ -2991,7 +3005,7 b' msgstr ""'
2991 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2285
3005 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2285
2992 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2336
3006 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2336
2993 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2337
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 msgid "Repository Group creation disabled"
3009 msgid "Repository Group creation disabled"
2996 msgstr ""
3010 msgstr ""
2997
3011
@@ -3007,7 +3021,7 b' msgstr ""'
3007 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:753
3021 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:753
3008 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:780
3022 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:780
3009 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:790
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:831
3025 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:831
3012 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:832
3026 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:832
3013 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:832
3027 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:832
@@ -3026,7 +3040,7 b' msgstr ""'
3026 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2286
3040 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2286
3027 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2337
3041 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2337
3028 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2338
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 msgid "Repository Group creation enabled"
3044 msgid "Repository Group creation enabled"
3031 msgstr ""
3045 msgstr ""
3032
3046
@@ -3042,7 +3056,7 b' msgstr ""'
3042 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:755
3056 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:755
3043 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:782
3057 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:782
3044 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:792
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:833
3060 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:833
3047 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:834
3061 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:834
3048 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:834
3062 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:834
@@ -3061,7 +3075,7 b' msgstr ""'
3061 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2288
3075 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2288
3062 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2339
3076 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2339
3063 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2340
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 msgid "User Group creation disabled"
3079 msgid "User Group creation disabled"
3066 msgstr ""
3080 msgstr ""
3067
3081
@@ -3077,7 +3091,7 b' msgstr ""'
3077 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:756
3091 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:756
3078 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:783
3092 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:783
3079 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:793
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:834
3095 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:834
3082 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:835
3096 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:835
3083 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:835
3097 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:835
@@ -3096,7 +3110,7 b' msgstr ""'
3096 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2289
3110 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2289
3097 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2340
3111 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2340
3098 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2341
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 msgid "User Group creation enabled"
3114 msgid "User Group creation enabled"
3101 msgstr ""
3115 msgstr ""
3102
3116
@@ -3112,7 +3126,7 b' msgstr ""'
3112 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:766
3126 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:766
3113 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:793
3127 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:793
3114 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:803
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:844
3130 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:844
3117 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:845
3131 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:845
3118 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:845
3132 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:845
@@ -3131,7 +3145,7 b' msgstr ""'
3131 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2299
3145 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2299
3132 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2350
3146 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2350
3133 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2351
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 msgid "Registration disabled"
3149 msgid "Registration disabled"
3136 msgstr ""
3150 msgstr ""
3137
3151
@@ -3147,7 +3161,7 b' msgstr ""'
3147 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:767
3161 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:767
3148 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:794
3162 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:794
3149 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:804
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:845
3165 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:845
3152 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:846
3166 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:846
3153 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:846
3167 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:846
@@ -3166,7 +3180,7 b' msgstr ""'
3166 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2300
3180 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2300
3167 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2351
3181 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2351
3168 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2352
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 msgid "User Registration with manual account activation"
3184 msgid "User Registration with manual account activation"
3171 msgstr ""
3185 msgstr ""
3172
3186
@@ -3182,7 +3196,7 b' msgstr ""'
3182 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:768
3196 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:768
3183 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:795
3197 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:795
3184 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:805
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:846
3200 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:846
3187 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:847
3201 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:847
3188 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:847
3202 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:847
@@ -3201,7 +3215,7 b' msgstr ""'
3201 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2301
3215 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2301
3202 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2352
3216 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2352
3203 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2353
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 msgid "User Registration with automatic account activation"
3219 msgid "User Registration with automatic account activation"
3206 msgstr ""
3220 msgstr ""
3207
3221
@@ -3217,7 +3231,7 b' msgstr ""'
3217 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:770
3231 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:770
3218 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:797
3232 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:797
3219 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:807
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:848
3235 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:848
3222 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:849
3236 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:849
3223 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:849
3237 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:849
@@ -3236,7 +3250,7 b' msgstr ""'
3236 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2303
3250 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2303
3237 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2358
3251 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2358
3238 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2359
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 #: rhodecode/model/permission.py:105
3254 #: rhodecode/model/permission.py:105
3241 msgid "Manual activation of external account"
3255 msgid "Manual activation of external account"
3242 msgstr ""
3256 msgstr ""
@@ -3253,7 +3267,7 b' msgstr ""'
3253 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:771
3267 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:771
3254 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:798
3268 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:798
3255 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:808
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:849
3271 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:849
3258 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:850
3272 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:850
3259 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:850
3273 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:850
@@ -3272,7 +3286,7 b' msgstr ""'
3272 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2304
3286 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2304
3273 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2359
3287 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2359
3274 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2360
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 #: rhodecode/model/permission.py:106
3290 #: rhodecode/model/permission.py:106
3277 msgid "Automatic activation of external account"
3291 msgid "Automatic activation of external account"
3278 msgstr ""
3292 msgstr ""
@@ -3283,7 +3297,7 b' msgstr ""'
3283 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:760
3297 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:760
3284 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:787
3298 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:787
3285 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:797
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:838
3301 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:838
3288 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:839
3302 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:839
3289 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:839
3303 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:839
@@ -3302,7 +3316,7 b' msgstr ""'
3302 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2293
3316 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2293
3303 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2344
3317 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2344
3304 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2345
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 msgid "Repository creation enabled with write permission to a repository group"
3320 msgid "Repository creation enabled with write permission to a repository group"
3307 msgstr ""
3321 msgstr ""
3308
3322
@@ -3312,7 +3326,7 b' msgstr ""'
3312 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:761
3326 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:761
3313 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:788
3327 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:788
3314 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:798
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:839
3330 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:839
3317 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:840
3331 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:840
3318 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:840
3332 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:840
@@ -3331,14 +3345,14 b' msgstr ""'
3331 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2294
3345 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2294
3332 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2345
3346 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2345
3333 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2346
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 msgid "Repository creation disabled with write permission to a repository group"
3349 msgid "Repository creation disabled with write permission to a repository group"
3336 msgstr ""
3350 msgstr ""
3337
3351
3338 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:735
3352 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_1.py:735
3339 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:762
3353 #: rhodecode/lib/dbmigrate/schema/db_2_3_0_2.py:762
3340 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:772
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:813
3356 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:813
3343 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:814
3357 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:814
3344 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:814
3358 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:814
@@ -3357,12 +3371,12 b' msgstr ""'
3357 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2268
3371 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2268
3358 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2319
3372 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2319
3359 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2320
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 msgid "RhodeCode Super Administrator"
3375 msgid "RhodeCode Super Administrator"
3362 msgstr ""
3376 msgstr ""
3363
3377
3364 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:810
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:851
3380 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:851
3367 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:852
3381 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:852
3368 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:852
3382 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:852
@@ -3381,12 +3395,12 b' msgstr ""'
3381 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2306
3395 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2306
3382 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2361
3396 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2361
3383 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2362
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 msgid "Inherit object permissions from default user disabled"
3399 msgid "Inherit object permissions from default user disabled"
3386 msgstr ""
3400 msgstr ""
3387
3401
3388 #: rhodecode/lib/dbmigrate/schema/db_3_0_0_0.py:811
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 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:852
3404 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_0.py:852
3391 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:853
3405 #: rhodecode/lib/dbmigrate/schema/db_3_1_0_1.py:853
3392 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:853
3406 #: rhodecode/lib/dbmigrate/schema/db_3_2_0_0.py:853
@@ -3405,7 +3419,7 b' msgstr ""'
3405 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2307
3419 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2307
3406 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2362
3420 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2362
3407 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2363
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 msgid "Inherit object permissions from default user enabled"
3423 msgid "Inherit object permissions from default user enabled"
3410 msgstr ""
3424 msgstr ""
3411
3425
@@ -3421,7 +3435,7 b' msgstr ""'
3421 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:912
3435 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:912
3422 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:955
3436 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:955
3423 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:956
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 msgid "all"
3439 msgid "all"
3426 msgstr ""
3440 msgstr ""
3427
3441
@@ -3437,7 +3451,7 b' msgstr ""'
3437 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:913
3451 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:913
3438 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:956
3452 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:956
3439 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:957
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 msgid "http/web interface"
3455 msgid "http/web interface"
3442 msgstr ""
3456 msgstr ""
3443
3457
@@ -3453,7 +3467,7 b' msgstr ""'
3453 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:914
3467 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:914
3454 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:957
3468 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:957
3455 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:958
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 msgid "vcs (git/hg/svn protocol)"
3471 msgid "vcs (git/hg/svn protocol)"
3458 msgstr ""
3472 msgstr ""
3459
3473
@@ -3469,7 +3483,7 b' msgstr ""'
3469 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:915
3483 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:915
3470 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:958
3484 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:958
3471 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:959
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 msgid "api calls"
3487 msgid "api calls"
3474 msgstr ""
3488 msgstr ""
3475
3489
@@ -3485,7 +3499,7 b' msgstr ""'
3485 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:916
3499 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:916
3486 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:959
3500 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:959
3487 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:960
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 msgid "feed access"
3503 msgid "feed access"
3490 msgstr ""
3504 msgstr ""
3491
3505
@@ -3501,7 +3515,7 b' msgstr ""'
3501 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2046
3515 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2046
3502 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2090
3516 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2090
3503 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2091
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 msgid "No parent"
3519 msgid "No parent"
3506 msgstr ""
3520 msgstr ""
3507
3521
@@ -3512,7 +3526,7 b' msgstr ""'
3512 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2810
3526 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2810
3513 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2354
3527 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2354
3514 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2355
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 msgid "Password reset enabled"
3530 msgid "Password reset enabled"
3517 msgstr ""
3531 msgstr ""
3518
3532
@@ -3523,7 +3537,7 b' msgstr ""'
3523 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2811
3537 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2811
3524 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2355
3538 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2355
3525 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2356
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 msgid "Password reset hidden"
3541 msgid "Password reset hidden"
3528 msgstr ""
3542 msgstr ""
3529
3543
@@ -3534,7 +3548,7 b' msgstr ""'
3534 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2812
3548 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2812
3535 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2356
3549 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2356
3536 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2357
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 msgid "Password reset disabled"
3552 msgid "Password reset disabled"
3539 msgstr ""
3553 msgstr ""
3540
3554
@@ -3542,7 +3556,7 b' msgstr ""'
3542 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2754
3556 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2754
3543 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2787
3557 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2787
3544 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2787
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 msgid "Branch no permissions"
3560 msgid "Branch no permissions"
3547 msgstr ""
3561 msgstr ""
3548
3562
@@ -3550,7 +3564,7 b' msgstr ""'
3550 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2755
3564 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2755
3551 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2788
3565 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2788
3552 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2788
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 msgid "Branch access by web merge"
3568 msgid "Branch access by web merge"
3555 msgstr ""
3569 msgstr ""
3556
3570
@@ -3558,7 +3572,7 b' msgstr ""'
3558 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2756
3572 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2756
3559 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2789
3573 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2789
3560 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2789
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 msgid "Branch access by push"
3576 msgid "Branch access by push"
3563 msgstr ""
3577 msgstr ""
3564
3578
@@ -3566,7 +3580,7 b' msgstr ""'
3566 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2757
3580 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_0.py:2757
3567 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2790
3581 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_1.py:2790
3568 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2790
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 msgid "Branch access by push with force"
3584 msgid "Branch access by push with force"
3571 msgstr ""
3585 msgstr ""
3572
3586
@@ -3590,51 +3604,51 b' msgstr ""'
3590 msgid "Commit index"
3604 msgid "Commit index"
3591 msgstr ""
3605 msgstr ""
3592
3606
3593 #: rhodecode/lib/vcs/backends/base.py:147
3607 #: rhodecode/lib/vcs/backends/base.py:150
3594 msgid "This pull request can be automatically merged."
3608 msgid "This pull request can be automatically merged."
3595 msgstr ""
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 #: rhodecode/lib/vcs/backends/base.py:152
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 msgid "This pull request cannot be merged because of merge conflicts."
3616 msgid "This pull request cannot be merged because of merge conflicts."
3603 msgstr ""
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 #: rhodecode/lib/vcs/backends/base.py:157
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 msgstr ""
3621 msgstr ""
3612
3622
3613 #: rhodecode/lib/vcs/backends/base.py:160
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 msgstr ""
3625 msgstr ""
3616
3626
3617 #: rhodecode/lib/vcs/backends/base.py:163
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 msgstr ""
3629 msgstr ""
3620
3630
3621 #: rhodecode/lib/vcs/backends/base.py:166
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 msgid "This pull request cannot be merged because the target repository is locked by {locked_by}."
3636 msgid "This pull request cannot be merged because the target repository is locked by {locked_by}."
3623 msgstr ""
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 #: rhodecode/lib/vcs/backends/base.py:173
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 msgstr ""
3641 msgstr ""
3632
3642
3633 #: rhodecode/lib/vcs/backends/base.py:176
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 msgid "This pull request cannot be merged because of conflicts related to sub repositories."
3648 msgid "This pull request cannot be merged because of conflicts related to sub repositories."
3635 msgstr ""
3649 msgstr ""
3636
3650
3637 #: rhodecode/lib/vcs/backends/base.py:181
3651 #: rhodecode/lib/vcs/backends/base.py:184
3638 msgid "This pull request cannot be merged because the target or the source reference is missing."
3652 msgid "This pull request cannot be merged because the target or the source reference is missing."
3639 msgstr ""
3653 msgstr ""
3640
3654
@@ -3654,11 +3668,11 b' msgstr ""'
3654 msgid "1 month {end_date}"
3668 msgid "1 month {end_date}"
3655 msgstr ""
3669 msgstr ""
3656
3670
3657 #: rhodecode/model/comment.py:412
3671 #: rhodecode/model/comment.py:422
3658 msgid "made a comment"
3672 msgid "made a comment"
3659 msgstr ""
3673 msgstr ""
3660
3674
3661 #: rhodecode/model/comment.py:413
3675 #: rhodecode/model/comment.py:423
3662 msgid "Show it now"
3676 msgid "Show it now"
3663 msgstr ""
3677 msgstr ""
3664
3678
@@ -3764,39 +3778,34 b' msgstr ""'
3764 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:13
3778 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:13
3765 #: rhodecode/templates/changeset/changeset_file_comment.mako:273
3779 #: rhodecode/templates/changeset/changeset_file_comment.mako:273
3766 #: rhodecode/templates/changeset/changeset_file_comment.mako:323
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 msgid "Write"
3782 msgid "Write"
3769 msgstr ""
3783 msgstr ""
3770
3784
3771 #: rhodecode/model/permission.py:74 rhodecode/model/permission.py:80
3785 #: rhodecode/model/permission.py:74 rhodecode/model/permission.py:80
3772 #: rhodecode/model/permission.py:86
3786 #: rhodecode/model/permission.py:86
3773 #: rhodecode/templates/admin/auth/auth_settings.mako:12
3774 #: rhodecode/templates/admin/auth/plugin_settings.mako:12
3787 #: rhodecode/templates/admin/auth/plugin_settings.mako:12
3775 #: rhodecode/templates/admin/defaults/defaults.mako:12
3788 #: rhodecode/templates/admin/defaults/defaults.mako:12
3776 #: rhodecode/templates/admin/integrations/base.mako:21
3789 #: rhodecode/templates/admin/integrations/base.mako:21
3777 #: rhodecode/templates/admin/integrations/form.mako:15
3790 #: rhodecode/templates/admin/integrations/form.mako:15
3778 #: rhodecode/templates/admin/integrations/form.mako:28
3791 #: rhodecode/templates/admin/integrations/form.mako:28
3792 #: rhodecode/templates/admin/integrations/global.mako:12
3779 #: rhodecode/templates/admin/integrations/list.mako:8
3793 #: rhodecode/templates/admin/integrations/list.mako:8
3780 #: rhodecode/templates/admin/integrations/list.mako:14
3794 #: rhodecode/templates/admin/integrations/list.mako:14
3781 #: rhodecode/templates/admin/integrations/new.mako:11
3795 #: rhodecode/templates/admin/integrations/new.mako:11
3782 #: rhodecode/templates/admin/permissions/permissions.mako:12
3796 #: rhodecode/templates/admin/permissions/permissions.mako:12
3783 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:12
3797 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:12
3784 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:14
3798 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:14
3785 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:13
3786 #: rhodecode/templates/admin/repos/repo_add.mako:13
3799 #: rhodecode/templates/admin/repos/repo_add.mako:13
3787 #: rhodecode/templates/admin/repos/repo_add.mako:17
3800 #: rhodecode/templates/admin/repos/repo_add.mako:17
3788 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:14
3801 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:14
3789 #: rhodecode/templates/admin/repos/repos.mako:13
3790 #: rhodecode/templates/admin/settings/settings.mako:12
3802 #: rhodecode/templates/admin/settings/settings.mako:12
3791 #: rhodecode/templates/admin/user_groups/user_group_add.mako:11
3803 #: rhodecode/templates/admin/user_groups/user_group_add.mako:11
3792 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:12
3804 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:12
3793 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:14
3805 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:14
3794 #: rhodecode/templates/admin/user_groups/user_groups.mako:13
3795 #: rhodecode/templates/admin/users/user_add.mako:11
3806 #: rhodecode/templates/admin/users/user_add.mako:11
3796 #: rhodecode/templates/admin/users/user_edit.mako:12
3807 #: rhodecode/templates/admin/users/user_edit.mako:12
3797 #: rhodecode/templates/admin/users/users.mako:13
3808 #: rhodecode/templates/base/base.mako:639
3798 #: rhodecode/templates/base/base.mako:536
3799 #: rhodecode/templates/base/base.mako:543
3800 msgid "Admin"
3809 msgid "Admin"
3801 msgstr ""
3810 msgstr ""
3802
3811
@@ -3867,77 +3876,79 b' msgstr ""'
3867 msgid "This pull request cannot be updated because the source reference is missing."
3876 msgid "This pull request cannot be updated because the source reference is missing."
3868 msgstr ""
3877 msgstr ""
3869
3878
3870 #: rhodecode/model/pull_request.py:1227
3879 #: rhodecode/model/pull_request.py:1240
3871 msgid "Server-side pull request merging is disabled."
3880 msgid "Server-side pull request merging is disabled."
3872 msgstr ""
3881 msgstr ""
3873
3882
3874 #: rhodecode/model/pull_request.py:1229
3883 #: rhodecode/model/pull_request.py:1242
3875 msgid "This pull request is closed."
3884 msgid "This pull request is closed."
3876 msgstr ""
3885 msgstr ""
3877
3886
3878 #: rhodecode/model/pull_request.py:1243
3887 #: rhodecode/model/pull_request.py:1256
3879 msgid "Pull request merging is not supported."
3888 msgid "Pull request merging is not supported."
3880 msgstr ""
3889 msgstr ""
3881
3890
3882 #: rhodecode/model/pull_request.py:1262
3891 #: rhodecode/model/pull_request.py:1275
3883 msgid "Target repository large files support is disabled."
3892 msgid "Target repository large files support is disabled."
3884 msgstr ""
3893 msgstr ""
3885
3894
3886 #: rhodecode/model/pull_request.py:1265
3895 #: rhodecode/model/pull_request.py:1278
3887 msgid "Source repository large files support is disabled."
3896 msgid "Source repository large files support is disabled."
3888 msgstr ""
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 #: rhodecode/templates/admin/my_account/my_account.mako:31
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 msgid "Bookmarks"
3903 msgid "Bookmarks"
3894 msgstr ""
3904 msgstr ""
3895
3905
3896 #: rhodecode/model/pull_request.py:1435
3906 #: rhodecode/model/pull_request.py:1460
3897 msgid "Commit IDs"
3907 msgid "Commit IDs"
3898 msgstr ""
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 msgid "Closed Branches"
3912 msgid "Closed Branches"
3902 msgstr ""
3913 msgstr ""
3903
3914
3904 #: rhodecode/model/pull_request.py:1603
3915 #: rhodecode/model/pull_request.py:1629
3905 msgid "User `{}` not allowed to perform merge."
3916 msgid "User `{}` not allowed to perform merge."
3906 msgstr ""
3917 msgstr ""
3907
3918
3908 #: rhodecode/model/pull_request.py:1621
3919 #: rhodecode/model/pull_request.py:1647
3909 msgid "Target branch `{}` changes rejected by rule {}."
3920 msgid "Target branch `{}` changes rejected by rule {}."
3910 msgstr ""
3921 msgstr ""
3911
3922
3912 #: rhodecode/model/pull_request.py:1635
3923 #: rhodecode/model/pull_request.py:1661
3913 msgid "Pull request reviewer approval is pending."
3924 msgid "Pull request reviewer approval is pending."
3914 msgstr ""
3925 msgstr ""
3915
3926
3916 #: rhodecode/model/pull_request.py:1649
3927 #: rhodecode/model/pull_request.py:1675
3917 msgid "Cannot merge, {} TODO still not resolved."
3928 msgid "Cannot merge, {} TODO still not resolved."
3918 msgstr ""
3929 msgstr ""
3919
3930
3920 #: rhodecode/model/pull_request.py:1652
3931 #: rhodecode/model/pull_request.py:1678
3921 msgid "Cannot merge, {} TODOs still not resolved."
3932 msgid "Cannot merge, {} TODOs still not resolved."
3922 msgstr ""
3933 msgstr ""
3923
3934
3924 #: rhodecode/model/pull_request.py:1687
3935 #: rhodecode/model/pull_request.py:1713
3925 msgid "Merge strategy: rebase"
3936 msgid "Merge strategy: rebase"
3926 msgstr ""
3937 msgstr ""
3927
3938
3928 #: rhodecode/model/pull_request.py:1692
3939 #: rhodecode/model/pull_request.py:1718
3929 msgid "Merge strategy: explicit merge commit"
3940 msgid "Merge strategy: explicit merge commit"
3930 msgstr ""
3941 msgstr ""
3931
3942
3932 #: rhodecode/model/pull_request.py:1700
3943 #: rhodecode/model/pull_request.py:1726
3933 msgid "Source branch will be closed after merge."
3944 msgid "Source branch will be closed after merge."
3934 msgstr ""
3945 msgstr ""
3935
3946
3936 #: rhodecode/model/pull_request.py:1702
3947 #: rhodecode/model/pull_request.py:1728
3937 msgid "Source branch will be deleted after merge."
3948 msgid "Source branch will be deleted after merge."
3938 msgstr ""
3949 msgstr ""
3939
3950
3940 #: rhodecode/model/scm.py:902
3951 #: rhodecode/model/scm.py:904
3941 msgid "latest tip"
3952 msgid "latest tip"
3942 msgstr ""
3953 msgstr ""
3943
3954
@@ -4279,400 +4290,398 b' msgstr ""'
4279 msgid ": , "
4290 msgid ": , "
4280 msgstr ""
4291 msgstr ""
4281
4292
4282 #: rhodecode/public/js/scripts.js:20578
4293 #: rhodecode/public/js/scripts.js:24109
4283 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:38
4294 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:38
4284 #: rhodecode/public/js/src/plugins/jquery.autocomplete.js:87
4295 #: rhodecode/public/js/src/plugins/jquery.autocomplete.js:87
4285 msgid "No results"
4296 msgid "No results"
4286 msgstr ""
4297 msgstr ""
4287
4298
4288 #: rhodecode/public/js/scripts.js:22026
4299 #: rhodecode/public/js/scripts.js:25569
4289 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:121
4300 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:121
4290 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:109
4301 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:109
4291 msgid "{0} year"
4302 msgid "{0} year"
4292 msgstr ""
4303 msgstr ""
4293
4304
4294 #: rhodecode/public/js/scripts.js:22027
4305 #: rhodecode/public/js/scripts.js:25570
4295 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:113
4306 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:113
4296 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:110
4307 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:110
4297 msgid "{0} month"
4308 msgid "{0} month"
4298 msgstr ""
4309 msgstr ""
4299
4310
4300 #: rhodecode/public/js/scripts.js:22028
4311 #: rhodecode/public/js/scripts.js:25571
4301 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:108
4312 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:108
4302 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:111
4313 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:111
4303 msgid "{0} day"
4314 msgid "{0} day"
4304 msgstr ""
4315 msgstr ""
4305
4316
4306 #: rhodecode/public/js/scripts.js:22029
4317 #: rhodecode/public/js/scripts.js:25572
4307 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:110
4318 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:110
4308 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:112
4319 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:112
4309 msgid "{0} hour"
4320 msgid "{0} hour"
4310 msgstr ""
4321 msgstr ""
4311
4322
4312 #: rhodecode/public/js/scripts.js:22030
4323 #: rhodecode/public/js/scripts.js:25573
4313 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:112
4324 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:112
4314 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:113
4325 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:113
4315 msgid "{0} min"
4326 msgid "{0} min"
4316 msgstr ""
4327 msgstr ""
4317
4328
4318 #: rhodecode/public/js/scripts.js:22031
4329 #: rhodecode/public/js/scripts.js:25574
4319 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:118
4330 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:118
4320 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:114
4331 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:114
4321 msgid "{0} sec"
4332 msgid "{0} sec"
4322 msgstr ""
4333 msgstr ""
4323
4334
4324 #: rhodecode/public/js/scripts.js:22051
4335 #: rhodecode/public/js/scripts.js:25594
4325 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:89
4336 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:89
4326 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:134
4337 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:134
4327 msgid "in {0}"
4338 msgid "in {0}"
4328 msgstr ""
4339 msgstr ""
4329
4340
4330 #: rhodecode/public/js/scripts.js:22059
4341 #: rhodecode/public/js/scripts.js:25602
4331 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:105
4342 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:105
4332 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:142
4343 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:142
4333 msgid "{0} ago"
4344 msgid "{0} ago"
4334 msgstr ""
4345 msgstr ""
4335
4346
4336 #: rhodecode/public/js/scripts.js:22071
4347 #: rhodecode/public/js/scripts.js:25614
4337 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:123
4348 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:123
4338 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:154
4349 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:154
4339 msgid "{0}, {1} ago"
4350 msgid "{0}, {1} ago"
4340 msgstr ""
4351 msgstr ""
4341
4352
4342 #: rhodecode/public/js/scripts.js:22073
4353 #: rhodecode/public/js/scripts.js:25616
4343 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:91
4354 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:91
4344 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:156
4355 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:156
4345 msgid "in {0}, {1}"
4356 msgid "in {0}, {1}"
4346 msgstr ""
4357 msgstr ""
4347
4358
4348 #: rhodecode/public/js/scripts.js:22077
4359 #: rhodecode/public/js/scripts.js:25620
4349 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:106
4360 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:106
4350 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:160
4361 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:160
4351 msgid "{0} and {1}"
4362 msgid "{0} and {1}"
4352 msgstr ""
4363 msgstr ""
4353
4364
4354 #: rhodecode/public/js/scripts.js:22079
4365 #: rhodecode/public/js/scripts.js:25622
4355 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:107
4366 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:107
4356 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:162
4367 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:162
4357 msgid "{0} and {1} ago"
4368 msgid "{0} and {1} ago"
4358 msgstr ""
4369 msgstr ""
4359
4370
4360 #: rhodecode/public/js/scripts.js:22081
4371 #: rhodecode/public/js/scripts.js:25624
4361 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:90
4372 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:90
4362 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:164
4373 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:164
4363 msgid "in {0} and {1}"
4374 msgid "in {0} and {1}"
4364 msgstr ""
4375 msgstr ""
4365
4376
4366 #: rhodecode/public/js/scripts.js:36140
4377 #: rhodecode/public/js/scripts.js:39683
4367 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:28
4378 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:28
4368 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:4
4379 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:4
4369 msgid "Loading more results..."
4380 msgid "Loading more results..."
4370 msgstr ""
4381 msgstr ""
4371
4382
4372 #: rhodecode/public/js/scripts.js:36143
4383 #: rhodecode/public/js/scripts.js:39686
4373 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:54
4384 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:54
4374 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:7
4385 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:7
4375 msgid "Searching..."
4386 msgid "Searching..."
4376 msgstr ""
4387 msgstr ""
4377
4388
4378 #: rhodecode/public/js/scripts.js:36146
4389 #: rhodecode/public/js/scripts.js:39689
4379 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:33
4390 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:33
4380 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:10
4391 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:10
4381 msgid "No matches found"
4392 msgid "No matches found"
4382 msgstr ""
4393 msgstr ""
4383
4394
4384 #: rhodecode/public/js/scripts.js:36149
4395 #: rhodecode/public/js/scripts.js:39692
4385 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:27
4396 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:27
4386 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:13
4397 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:13
4387 msgid "Loading failed"
4398 msgid "Loading failed"
4388 msgstr ""
4399 msgstr ""
4389
4400
4390 #: rhodecode/public/js/scripts.js:36153
4401 #: rhodecode/public/js/scripts.js:39696
4391 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:45
4402 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:45
4392 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:17
4403 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:17
4393 msgid "One result is available, press enter to select it."
4404 msgid "One result is available, press enter to select it."
4394 msgstr ""
4405 msgstr ""
4395
4406
4396 #: rhodecode/public/js/scripts.js:36155
4407 #: rhodecode/public/js/scripts.js:39698
4397 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:117
4408 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:117
4398 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:19
4409 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:19
4399 msgid "{0} results are available, use up and down arrow keys to navigate."
4410 msgid "{0} results are available, use up and down arrow keys to navigate."
4400 msgstr ""
4411 msgstr ""
4401
4412
4402 #: rhodecode/public/js/scripts.js:36160
4413 #: rhodecode/public/js/scripts.js:39703
4403 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:50
4414 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:50
4404 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:24
4415 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:24
4405 msgid "Please enter {0} or more character"
4416 msgid "Please enter {0} or more character"
4406 msgstr ""
4417 msgstr ""
4407
4418
4408 #: rhodecode/public/js/scripts.js:36162
4419 #: rhodecode/public/js/scripts.js:39705
4409 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:51
4420 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:51
4410 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:26
4421 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:26
4411 msgid "Please enter {0} or more characters"
4422 msgid "Please enter {0} or more characters"
4412 msgstr ""
4423 msgstr ""
4413
4424
4414 #: rhodecode/public/js/scripts.js:36167
4425 #: rhodecode/public/js/scripts.js:39710
4415 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:48
4426 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:48
4416 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:31
4427 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:31
4417 msgid "Please delete {0} character"
4428 msgid "Please delete {0} character"
4418 msgstr ""
4429 msgstr ""
4419
4430
4420 #: rhodecode/public/js/scripts.js:36169
4431 #: rhodecode/public/js/scripts.js:39712
4421 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:49
4432 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:49
4422 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:33
4433 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:33
4423 msgid "Please delete {0} characters"
4434 msgid "Please delete {0} characters"
4424 msgstr ""
4435 msgstr ""
4425
4436
4426 #: rhodecode/public/js/scripts.js:36173
4437 #: rhodecode/public/js/scripts.js:39716
4427 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:80
4438 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:80
4428 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:37
4439 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:37
4429 msgid "You can only select {0} item"
4440 msgid "You can only select {0} item"
4430 msgstr ""
4441 msgstr ""
4431
4442
4432 #: rhodecode/public/js/scripts.js:36175
4443 #: rhodecode/public/js/scripts.js:39718
4433 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:81
4444 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:81
4434 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:39
4445 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:39
4435 msgid "You can only select {0} items"
4446 msgid "You can only select {0} items"
4436 msgstr ""
4447 msgstr ""
4437
4448
4438 #: rhodecode/public/js/scripts.js:37113
4449 #: rhodecode/public/js/scripts.js:40656
4439 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:97
4450 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:97
4440 #: rhodecode/public/js/src/rhodecode/changelog.js:35
4451 #: rhodecode/public/js/src/rhodecode/changelog.js:35
4441 msgid "showing {0} out of {1} commit"
4452 msgid "showing {0} out of {1} commit"
4442 msgstr ""
4453 msgstr ""
4443
4454
4444 #: rhodecode/public/js/scripts.js:37115
4455 #: rhodecode/public/js/scripts.js:40658
4445 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:98
4456 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:98
4446 #: rhodecode/public/js/src/rhodecode/changelog.js:37
4457 #: rhodecode/public/js/src/rhodecode/changelog.js:37
4447 msgid "showing {0} out of {1} commits"
4458 msgid "showing {0} out of {1} commits"
4448 msgstr ""
4459 msgstr ""
4449
4460
4450 #: rhodecode/public/js/scripts.js:37627
4461 #: rhodecode/public/js/scripts.js:41194
4451 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:57
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 msgid "Set status to Approved"
4464 msgid "Set status to Approved"
4454 msgstr ""
4465 msgstr ""
4455
4466
4456 #: rhodecode/public/js/scripts.js:37646
4467 #: rhodecode/public/js/scripts.js:41213
4457 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:58
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 msgid "Set status to Rejected"
4470 msgid "Set status to Rejected"
4460 msgstr ""
4471 msgstr ""
4461
4472
4462 #: rhodecode/public/js/scripts.js:37665
4473 #: rhodecode/public/js/scripts.js:41232
4463 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:72
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 #: rhodecode/templates/email_templates/commit_comment.mako:102
4476 #: rhodecode/templates/email_templates/commit_comment.mako:102
4466 #: rhodecode/templates/email_templates/pull_request_comment.mako:107
4477 #: rhodecode/templates/email_templates/pull_request_comment.mako:107
4467 msgid "TODO comment"
4478 msgid "TODO comment"
4468 msgstr ""
4479 msgstr ""
4469
4480
4470 #: rhodecode/public/js/scripts.js:37685
4481 #: rhodecode/public/js/scripts.js:41252
4471 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:44
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 msgid "Note Comment"
4484 msgid "Note Comment"
4474 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:67
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 #: rhodecode/public/js/src/rhodecode/comments.js:233
4490 #: rhodecode/public/js/src/rhodecode/comments.js:233
4480 msgid "Status Review"
4491 msgid "Status Review"
4481 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:12
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 #: rhodecode/public/js/src/rhodecode/comments.js:248
4497 #: rhodecode/public/js/src/rhodecode/comments.js:248
4487 msgid "Comment text will be set automatically based on currently selected status ({0}) ..."
4498 msgid "Comment text will be set automatically based on currently selected status ({0}) ..."
4488 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:26
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 #: rhodecode/public/js/src/rhodecode/comments.js:443
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 msgid "Loading ..."
4508 msgid "Loading ..."
4496 msgstr ""
4509 msgstr ""
4497
4510
4498 #: rhodecode/public/js/scripts.js:38268
4511 #: rhodecode/public/js/scripts.js:41823
4499 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:96
4512 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:96
4500 #: rhodecode/public/js/src/rhodecode/comments.js:149
4513 #: rhodecode/public/js/src/rhodecode/comments.js:149
4501 msgid "resolve comment"
4514 msgid "resolve comment"
4502 msgstr ""
4515 msgstr ""
4503
4516
4504 #: rhodecode/public/js/scripts.js:38511
4517 #: rhodecode/public/js/scripts.js:42066
4505 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:69
4518 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:69
4506 #: rhodecode/public/js/src/rhodecode/comments.js:392
4519 #: rhodecode/public/js/src/rhodecode/comments.js:392
4507 msgid "Submitting..."
4520 msgid "Submitting..."
4508 msgstr ""
4521 msgstr ""
4509
4522
4510 #: rhodecode/public/js/scripts.js:38676
4523 #: rhodecode/public/js/scripts.js:42231
4511 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:15
4524 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:15
4512 #: rhodecode/public/js/src/rhodecode/comments.js:557
4525 #: rhodecode/public/js/src/rhodecode/comments.js:557
4513 msgid "Delete this comment?"
4526 msgid "Delete this comment?"
4514 msgstr ""
4527 msgstr ""
4515
4528
4516 #: rhodecode/public/js/scripts.js:38748
4529 #: rhodecode/public/js/scripts.js:42305
4517 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:24
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 msgid "Leave a comment, or click resolve button to resolve TODO comment #{0}"
4532 msgid "Leave a comment, or click resolve button to resolve TODO comment #{0}"
4520 msgstr ""
4533 msgstr ""
4521
4534
4522 #: rhodecode/public/js/scripts.js:38825
4535 #: rhodecode/public/js/scripts.js:42382
4523 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:23
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 msgid "Leave a comment on line {0}."
4538 msgid "Leave a comment on line {0}."
4526 msgstr ""
4539 msgstr ""
4527
4540
4528 #: rhodecode/public/js/scripts.js:38950
4541 #: rhodecode/public/js/scripts.js:42507
4529 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:73
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 msgid "TODO from comment {0} was fixed."
4544 msgid "TODO from comment {0} was fixed."
4532 msgstr ""
4545 msgstr ""
4533
4546
4534 #: rhodecode/public/js/scripts.js:39131
4547 #: rhodecode/public/js/scripts.js:42785
4535 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:100
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 msgid "truncated result"
4550 msgid "truncated result"
4538 msgstr ""
4551 msgstr ""
4539
4552
4540 #: rhodecode/public/js/scripts.js:39133
4553 #: rhodecode/public/js/scripts.js:42787
4541 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:101
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 msgid "truncated results"
4556 msgid "truncated results"
4544 msgstr ""
4557 msgstr ""
4545
4558
4546 #: rhodecode/public/js/scripts.js:39142
4559 #: rhodecode/public/js/scripts.js:42796
4547 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:34
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 msgid "No matching files"
4562 msgid "No matching files"
4550 msgstr ""
4563 msgstr ""
4551
4564
4552 #: rhodecode/public/js/scripts.js:39277
4565 #: rhodecode/public/js/scripts.js:42854
4553 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:55
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 msgid "Selection link"
4568 msgid "Selection link"
4556 msgstr ""
4569 msgstr ""
4557
4570
4558 #: rhodecode/public/js/scripts.js:39317
4571 #: rhodecode/public/js/scripts.js:42946
4559 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:68
4572 #: rhodecode/public/js/src/rhodecode/files.js:409
4573 msgid "All Authors"
4574 msgstr ""
4575
4576 #: rhodecode/public/js/scripts.js:43081
4560 #: rhodecode/public/js/src/rhodecode/followers.js:26
4577 #: rhodecode/public/js/src/rhodecode/followers.js:26
4561 msgid "Stop following this repository"
4578 msgid "Stopped watching this repository"
4562 msgstr ""
4579 msgstr ""
4563
4580
4564 #: rhodecode/public/js/scripts.js:39318
4581 #: rhodecode/public/js/scripts.js:43082
4565 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:76
4566 #: rhodecode/public/js/src/rhodecode/followers.js:27
4582 #: rhodecode/public/js/src/rhodecode/followers.js:27
4567 msgid "Unfollow"
4583 #: rhodecode/templates/base/base.mako:226
4568 msgstr ""
4584 msgid "Watch"
4569
4585 msgstr ""
4570 #: rhodecode/public/js/scripts.js:39327
4586
4571 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:66
4587 #: rhodecode/public/js/scripts.js:43085
4572 #: rhodecode/public/js/src/rhodecode/followers.js:36
4588 #: rhodecode/public/js/src/rhodecode/followers.js:30
4573 msgid "Start following this repository"
4589 msgid "Started watching this repository"
4574 msgstr ""
4590 msgstr ""
4575
4591
4576 #: rhodecode/public/js/scripts.js:39328
4592 #: rhodecode/public/js/scripts.js:43086
4577 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:19
4593 #: rhodecode/public/js/src/rhodecode/followers.js:31
4578 #: rhodecode/public/js/src/rhodecode/followers.js:37
4594 #: rhodecode/templates/base/base.mako:224
4579 msgid "Follow"
4595 msgid "Unwatch"
4580 msgstr ""
4596 msgstr ""
4581
4597
4582 #: rhodecode/public/js/scripts.js:39709
4598 #: rhodecode/public/js/scripts.js:43459
4583 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:6
4599 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:6
4584 #: rhodecode/public/js/src/rhodecode/pullrequests.js:134
4600 #: rhodecode/public/js/src/rhodecode/pullrequests.js:134
4585 msgid "All reviewers must vote."
4601 msgid "All reviewers must vote."
4586 msgstr ""
4602 msgstr ""
4587
4603
4588 #: rhodecode/public/js/scripts.js:39718
4604 #: rhodecode/public/js/scripts.js:43468
4589 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:5
4605 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:5
4590 #: rhodecode/public/js/src/rhodecode/pullrequests.js:143
4606 #: rhodecode/public/js/src/rhodecode/pullrequests.js:143
4591 msgid "All individual reviewers must vote."
4607 msgid "All individual reviewers must vote."
4592 msgstr ""
4608 msgstr ""
4593
4609
4594 #: rhodecode/public/js/scripts.js:39723
4610 #: rhodecode/public/js/scripts.js:43473
4595 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:7
4611 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:7
4596 #: rhodecode/public/js/src/rhodecode/pullrequests.js:148
4612 #: rhodecode/public/js/src/rhodecode/pullrequests.js:148
4597 msgid "At least {0} reviewer must vote."
4613 msgid "At least {0} reviewer must vote."
4598 msgstr ""
4614 msgstr ""
4599
4615
4600 #: rhodecode/public/js/scripts.js:39729
4616 #: rhodecode/public/js/scripts.js:43479
4601 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:8
4617 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:8
4602 #: rhodecode/public/js/src/rhodecode/pullrequests.js:154
4618 #: rhodecode/public/js/src/rhodecode/pullrequests.js:154
4603 msgid "At least {0} reviewers must vote."
4619 msgid "At least {0} reviewers must vote."
4604 msgstr ""
4620 msgstr ""
4605
4621
4606 #: rhodecode/public/js/scripts.js:39745
4622 #: rhodecode/public/js/scripts.js:43495
4607 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:52
4623 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:52
4608 #: rhodecode/public/js/src/rhodecode/pullrequests.js:170
4624 #: rhodecode/public/js/src/rhodecode/pullrequests.js:170
4609 msgid "Reviewers picked from source code changes."
4625 msgid "Reviewers picked from source code changes."
4610 msgstr ""
4626 msgstr ""
4611
4627
4612 #: rhodecode/public/js/scripts.js:39752
4628 #: rhodecode/public/js/scripts.js:43502
4613 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:4
4629 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:4
4614 #: rhodecode/public/js/src/rhodecode/pullrequests.js:177
4630 #: rhodecode/public/js/src/rhodecode/pullrequests.js:177
4615 msgid "Adding new reviewers is forbidden."
4631 msgid "Adding new reviewers is forbidden."
4616 msgstr ""
4632 msgstr ""
4617
4633
4618 #: rhodecode/public/js/scripts.js:39759
4634 #: rhodecode/public/js/scripts.js:43509
4619 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:9
4635 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:9
4620 #: rhodecode/public/js/src/rhodecode/pullrequests.js:184
4636 #: rhodecode/public/js/src/rhodecode/pullrequests.js:184
4621 msgid "Author is not allowed to be a reviewer."
4637 msgid "Author is not allowed to be a reviewer."
4622 msgstr ""
4638 msgstr ""
4623
4639
4624 #: rhodecode/public/js/scripts.js:39773
4640 #: rhodecode/public/js/scripts.js:43523
4625 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:13
4641 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:13
4626 #: rhodecode/public/js/src/rhodecode/pullrequests.js:198
4642 #: rhodecode/public/js/src/rhodecode/pullrequests.js:198
4627 msgid "Commit Authors are not allowed to be a reviewer."
4643 msgid "Commit Authors are not allowed to be a reviewer."
4628 msgstr ""
4644 msgstr ""
4629
4645
4630 #: rhodecode/public/js/scripts.js:39881
4646 #: rhodecode/public/js/scripts.js:43631
4631 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:79
4647 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:79
4632 #: rhodecode/public/js/src/rhodecode/pullrequests.js:306
4648 #: rhodecode/public/js/src/rhodecode/pullrequests.js:306
4633 msgid "User `{0}` not allowed to be a reviewer"
4649 msgid "User `{0}` not allowed to be a reviewer"
4634 msgstr ""
4650 msgstr ""
4635
4651
4636 #: rhodecode/public/js/scripts.js:39887
4652 #: rhodecode/public/js/scripts.js:43637
4637 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:78
4653 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:78
4638 #: rhodecode/public/js/src/rhodecode/pullrequests.js:312
4654 #: rhodecode/public/js/src/rhodecode/pullrequests.js:312
4639 msgid "User `{0}` already in reviewers"
4655 msgid "User `{0}` already in reviewers"
4640 msgstr ""
4656 msgstr ""
4641
4657
4642 #: rhodecode/public/js/scripts.js:39975
4658 #: rhodecode/public/js/scripts.js:43725
4643 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:83
4659 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:83
4644 #: rhodecode/public/js/src/rhodecode/pullrequests.js:400
4660 #: rhodecode/public/js/src/rhodecode/pullrequests.js:400
4645 msgid "added manually by \"{0}\""
4661 msgid "added manually by \"{0}\""
4646 msgstr ""
4662 msgstr ""
4647
4663
4648 #: rhodecode/public/js/scripts.js:39979
4664 #: rhodecode/public/js/scripts.js:43729
4649 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:94
4665 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:94
4650 #: rhodecode/public/js/src/rhodecode/pullrequests.js:404
4666 #: rhodecode/public/js/src/rhodecode/pullrequests.js:404
4651 msgid "member of \"{0}\""
4667 msgid "member of \"{0}\""
4652 msgstr ""
4668 msgstr ""
4653
4669
4654 #: rhodecode/public/js/scripts.js:40566
4670 #: rhodecode/public/js/scripts.js:44310
4655 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:87
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 msgid "file"
4673 msgid "file"
4658 msgstr ""
4674 msgstr ""
4659
4675
4660 #: rhodecode/public/js/scripts.js:40586
4676 #: rhodecode/public/js/scripts.js:44704
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
4668 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:84
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 msgid "date not in future"
4679 msgid "date not in future"
4671 msgstr ""
4680 msgstr ""
4672
4681
4673 #: rhodecode/public/js/scripts.js:40976
4682 #: rhodecode/public/js/scripts.js:44712
4674 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:65
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 msgid "Specified expiration date"
4685 msgid "Specified expiration date"
4677 msgstr ""
4686 msgstr ""
4678
4687
@@ -4692,7 +4701,7 b' msgstr ""'
4692
4701
4693 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:11
4702 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:11
4694 #: rhodecode/public/js/src/i18n_messages.js:5
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 msgid "Close"
4705 msgid "Close"
4697 msgstr ""
4706 msgstr ""
4698
4707
@@ -4712,6 +4721,10 b' msgstr ""'
4712 msgid "Fetching repository state failed. Error code: {0} {1}. Try refreshing this page."
4721 msgid "Fetching repository state failed. Error code: {0} {1}. Try refreshing this page."
4713 msgstr ""
4722 msgstr ""
4714
4723
4724 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:19
4725 msgid "Follow"
4726 msgstr ""
4727
4715 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:20
4728 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:20
4716 msgid "Hide full context diff"
4729 msgid "Hide full context diff"
4717 msgstr ""
4730 msgstr ""
@@ -4770,7 +4783,7 b' msgid "No users available yet."'
4770 msgstr ""
4783 msgstr ""
4771
4784
4772 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:46
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 msgid "Open new pull request"
4787 msgid "Open new pull request"
4775 msgstr ""
4788 msgstr ""
4776
4789
@@ -4796,6 +4809,11 b' msgstr ""'
4796 msgid "Show full context diff"
4809 msgid "Show full context diff"
4797 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:62
4817 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:62
4800 msgid "Show selected commit __S"
4818 msgid "Show selected commit __S"
4801 msgstr ""
4819 msgstr ""
@@ -4808,6 +4826,14 b' msgstr ""'
4808 msgid "Show whitespace changes"
4826 msgid "Show whitespace changes"
4809 msgstr ""
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 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:70
4837 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:70
4812 #: rhodecode/public/js/src/i18n_messages.js:7
4838 #: rhodecode/public/js/src/i18n_messages.js:7
4813 msgid "Switch to chat"
4839 msgid "Switch to chat"
@@ -4826,12 +4852,16 b' msgstr ""'
4826 msgid "Toggle Wide Mode diff"
4852 msgid "Toggle Wide Mode diff"
4827 msgstr ""
4853 msgstr ""
4828
4854
4855 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:76
4856 msgid "Unfollow"
4857 msgstr ""
4858
4829 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:77
4859 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:77
4830 msgid "Updating..."
4860 msgid "Updating..."
4831 msgstr ""
4861 msgstr ""
4832
4862
4833 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:82
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 msgid "activated"
4865 msgid "activated"
4836 msgstr ""
4866 msgstr ""
4837
4867
@@ -4848,12 +4878,12 b' msgid "files"'
4848 msgstr ""
4878 msgstr ""
4849
4879
4850 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:93
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 msgid "loading..."
4882 msgid "loading..."
4853 msgstr ""
4883 msgstr ""
4854
4884
4855 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:95
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 msgid "not active"
4887 msgid "not active"
4858 msgstr ""
4888 msgstr ""
4859
4889
@@ -4917,65 +4947,68 b' msgstr ""'
4917 msgid "Dashboard"
4947 msgid "Dashboard"
4918 msgstr ""
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 #: rhodecode/templates/admin/repos/repo_add.mako:22
4952 #: rhodecode/templates/admin/repos/repo_add.mako:22
4922 #: rhodecode/templates/admin/repos/repos.mako:27
4953 #: rhodecode/templates/admin/repos/repos.mako:31
4923 #: rhodecode/templates/base/base.mako:350
4954 #: rhodecode/templates/base/base.mako:410
4924 msgid "Add Repository"
4955 msgid "Add Repository"
4925 msgstr ""
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 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:16
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 msgid "Add Repository Group"
4963 msgid "Add Repository Group"
4931 msgstr ""
4964 msgstr ""
4932
4965
4933 #: rhodecode/templates/index_base.mako:64
4966 #: rhodecode/templates/index_base.mako:47
4934 msgid "No repositories or repositories groups exists here."
4967 msgid "No repositories or repositories groups exists here."
4935 msgstr ""
4968 msgstr ""
4936
4969
4937 #: rhodecode/templates/index_base.mako:82
4970 #: rhodecode/templates/index_base.mako:65
4938 #: rhodecode/templates/index_base.mako:112
4971 #: rhodecode/templates/index_base.mako:98
4939 #: rhodecode/templates/admin/gists/index.mako:112
4972 #: rhodecode/templates/admin/gists/index.mako:107
4940 #: rhodecode/templates/admin/integrations/list.mako:72
4973 #: rhodecode/templates/admin/integrations/list.mako:72
4941 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:55
4974 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:55
4942 #: rhodecode/templates/admin/my_account/my_account_repos.mako:31
4975 #: rhodecode/templates/admin/my_account/my_account_repos.mako:31
4943 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:39
4976 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:39
4944 #: rhodecode/templates/admin/my_account/my_account_watched.mako:31
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 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:16
4979 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:16
4947 #: rhodecode/templates/admin/repos/repos.mako:54
4980 #: rhodecode/templates/admin/repos/repos.mako:58
4948 #: rhodecode/templates/admin/user_groups/user_groups.mako:73
4981 #: rhodecode/templates/admin/user_groups/user_groups.mako:76
4949 #: rhodecode/templates/admin/users/user_edit_groups.mako:54
4982 #: rhodecode/templates/admin/users/user_edit_groups.mako:54
4950 #: rhodecode/templates/base/perms_summary.mako:168
4983 #: rhodecode/templates/base/perms_summary.mako:168
4951 #: rhodecode/templates/base/perms_summary.mako:242
4984 #: rhodecode/templates/base/perms_summary.mako:242
4952 #: rhodecode/templates/bookmarks/bookmarks.mako:59
4985 #: rhodecode/templates/bookmarks/bookmarks.mako:57
4953 #: rhodecode/templates/branches/branches.mako:58
4986 #: rhodecode/templates/branches/branches.mako:56
4954 #: rhodecode/templates/files/files_browser_tree.mako:5
4987 #: rhodecode/templates/files/files_browser_tree.mako:11
4955 #: rhodecode/templates/pullrequests/pullrequests.mako:110
4988 #: rhodecode/templates/pullrequests/pullrequests.mako:81
4956 #: rhodecode/templates/tags/tags.mako:59
4989 #: rhodecode/templates/tags/tags.mako:57
4957 msgid "Name"
4990 msgid "Name"
4958 msgstr ""
4991 msgstr ""
4959
4992
4960 #: rhodecode/templates/index_base.mako:85
4993 #: rhodecode/templates/index_base.mako:68
4961 #: rhodecode/templates/index_base.mako:115
4994 #: rhodecode/templates/index_base.mako:101
4962 #: rhodecode/templates/admin/gists/index.mako:114
4995 #: rhodecode/templates/admin/gists/index.mako:109
4963 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:15
4996 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:15
4964 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:72
4997 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:72
4965 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:10
4998 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:10
4966 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:57
4999 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:57
4967 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:44
5000 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:44
4968 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:49
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:55
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 #: rhodecode/templates/admin/repos/repo_add_base.mako:66
5005 #: rhodecode/templates/admin/repos/repo_add_base.mako:66
4973 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:29
5006 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:29
4974 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:170
5007 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:170
4975 #: rhodecode/templates/admin/repos/repos.mako:57
5008 #: rhodecode/templates/admin/repos/repos.mako:61
4976 #: rhodecode/templates/admin/user_groups/user_group_add.mako:43
5009 #: rhodecode/templates/admin/user_groups/user_group_add.mako:42
4977 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:42
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 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:15
5012 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:15
4980 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:72
5013 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:72
4981 #: rhodecode/templates/admin/users/user_edit_groups.mako:59
5014 #: rhodecode/templates/admin/users/user_edit_groups.mako:59
@@ -4988,59 +5021,58 b' msgstr ""'
4988 #: rhodecode/templates/email_templates/commit_comment.mako:89
5021 #: rhodecode/templates/email_templates/commit_comment.mako:89
4989 #: rhodecode/templates/email_templates/pull_request_review.mako:41
5022 #: rhodecode/templates/email_templates/pull_request_review.mako:41
4990 #: rhodecode/templates/email_templates/pull_request_review.mako:75
5023 #: rhodecode/templates/email_templates/pull_request_review.mako:75
4991 #: rhodecode/templates/files/file_tree_detail.mako:5
5024 #: rhodecode/templates/forks/fork.mako:56
4992 #: rhodecode/templates/files/file_tree_detail.mako:12
5025 #: rhodecode/templates/forks/forks.mako:62
4993 #: rhodecode/templates/forks/fork.mako:60
5026 #: rhodecode/templates/pullrequests/pullrequest.mako:49
4994 #: rhodecode/templates/forks/forks.mako:64
5027 #: rhodecode/templates/pullrequests/pullrequest_show.mako:166
4995 #: rhodecode/templates/pullrequests/pullrequest.mako:55
5028 #: rhodecode/templates/pullrequests/pullrequest_show.mako:480
4996 #: rhodecode/templates/pullrequests/pullrequest_show.mako:170
5029 #: rhodecode/templates/summary/components.mako:159
4997 #: rhodecode/templates/pullrequests/pullrequest_show.mako:484
4998 #: rhodecode/templates/summary/components.mako:151
4999 msgid "Description"
5030 msgid "Description"
5000 msgstr ""
5031 msgstr ""
5001
5032
5002 #: rhodecode/templates/index_base.mako:88
5033 #: rhodecode/templates/index_base.mako:71
5003 #: rhodecode/templates/index_base.mako:118
5034 #: rhodecode/templates/index_base.mako:104
5004 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:59
5035 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:80
5005 #: rhodecode/templates/admin/repos/repos.mako:60
5036 #: rhodecode/templates/admin/repos/repos.mako:64
5006 msgid "Last Change"
5037 msgid "Last Change"
5007 msgstr ""
5038 msgstr ""
5008
5039
5009 #: rhodecode/templates/index_base.mako:90
5040 #: rhodecode/templates/index_base.mako:76
5010 #: rhodecode/templates/index_base.mako:123
5041 #: rhodecode/templates/index_base.mako:109
5011 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:50
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:37
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 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:6
5046 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:6
5016 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:152
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 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:6
5049 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:6
5019 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:24
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 #: rhodecode/templates/admin/users/user_edit_groups.mako:65
5052 #: rhodecode/templates/admin/users/user_edit_groups.mako:65
5022 #: rhodecode/templates/forks/forks.mako:60
5053 #: rhodecode/templates/forks/forks.mako:58
5023 #: rhodecode/templates/summary/components.mako:224
5054 #: rhodecode/templates/summary/components.mako:148
5024 #: rhodecode/templates/user_group/profile.mako:23
5055 #: rhodecode/templates/user_group/profile.mako:24
5025 msgid "Owner"
5056 msgid "Owner"
5026 msgstr ""
5057 msgstr ""
5027
5058
5028 #: rhodecode/templates/index_base.mako:121
5059 #: rhodecode/templates/index_base.mako:107
5029 #: rhodecode/templates/admin/my_account/my_account_repos.mako:35
5060 #: rhodecode/templates/admin/my_account/my_account_repos.mako:35
5030 #: rhodecode/templates/admin/my_account/my_account_watched.mako:35
5061 #: rhodecode/templates/admin/my_account/my_account_watched.mako:35
5031 #: rhodecode/templates/admin/repos/repos.mako:63
5062 #: rhodecode/templates/admin/repos/repos.mako:67
5032 #: rhodecode/templates/bookmarks/bookmarks.mako:66
5063 #: rhodecode/templates/bookmarks/bookmarks.mako:64
5033 #: rhodecode/templates/branches/branches.mako:65
5064 #: rhodecode/templates/branches/branches.mako:63
5034 #: rhodecode/templates/changelog/changelog.mako:116
5065 #: rhodecode/templates/changeset/changeset.mako:33
5035 #: rhodecode/templates/changeset/changeset.mako:37
5036 #: rhodecode/templates/compare/compare_commits.mako:19
5066 #: rhodecode/templates/compare/compare_commits.mako:19
5037 #: rhodecode/templates/email_templates/commit_comment.mako:49
5067 #: rhodecode/templates/email_templates/commit_comment.mako:49
5038 #: rhodecode/templates/email_templates/commit_comment.mako:88
5068 #: rhodecode/templates/email_templates/commit_comment.mako:88
5039 #: rhodecode/templates/files/file_authors_box.mako:31
5069 #: rhodecode/templates/files/file_authors_box.mako:26
5040 #: rhodecode/templates/pullrequests/pullrequest_show.mako:482
5070 #: rhodecode/templates/pullrequests/pullrequest_show.mako:478
5041 #: rhodecode/templates/search/search_commit.mako:9
5071 #: rhodecode/templates/search/search_commit.mako:9
5072 #: rhodecode/templates/summary/components.mako:117
5073 #: rhodecode/templates/summary/components.mako:125
5042 #: rhodecode/templates/summary/summary_commits.mako:8
5074 #: rhodecode/templates/summary/summary_commits.mako:8
5043 #: rhodecode/templates/tags/tags.mako:66
5075 #: rhodecode/templates/tags/tags.mako:64
5044 msgid "Commit"
5076 msgid "Commit"
5045 msgstr ""
5077 msgstr ""
5046
5078
@@ -5050,58 +5082,58 b' msgid "%s Repository group dashboard"'
5050 msgstr ""
5082 msgstr ""
5051
5083
5052 #: rhodecode/templates/index_repo_group.mako:13
5084 #: rhodecode/templates/index_repo_group.mako:13
5085 #: rhodecode/templates/base/base.mako:611
5086 #: rhodecode/templates/base/base.mako:612
5053 msgid "Home"
5087 msgid "Home"
5054 msgstr ""
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 #: rhodecode/templates/debug_style/login.html:60
5091 #: rhodecode/templates/debug_style/login.html:60
5058 msgid "Sign In"
5092 msgid "Sign In"
5059 msgstr ""
5093 msgstr ""
5060
5094
5061 #: rhodecode/templates/login.mako:37
5095 #: rhodecode/templates/login.mako:39
5062 msgid "Sign In using username/password"
5096 msgid "Sign In using username/password"
5063 msgstr ""
5097 msgstr ""
5064
5098
5065 #: rhodecode/templates/login.mako:51
5099 #: rhodecode/templates/login.mako:53
5066 msgid "Forgot your password?"
5100 msgid "Forgot your password?"
5067 msgstr ""
5101 msgstr ""
5068
5102
5069 #: rhodecode/templates/login.mako:64
5070 msgid "Remember my indefinitely"
5071 msgstr ""
5072
5073 #: rhodecode/templates/login.mako:66
5103 #: rhodecode/templates/login.mako:66
5104 msgid "Remember my indefinitely"
5105 msgstr ""
5106
5107 #: rhodecode/templates/login.mako:68
5074 msgid "Remember me for {}"
5108 msgid "Remember me for {}"
5075 msgstr ""
5109 msgstr ""
5076
5110
5077 #: rhodecode/templates/login.mako:72
5111 #: rhodecode/templates/login.mako:74
5078 msgid "Create a new account."
5112 msgid "Create a new account."
5079 msgstr ""
5113 msgstr ""
5080
5114
5081 #: rhodecode/templates/login.mako:79
5115 #: rhodecode/templates/login.mako:81
5082 msgid "Password reset is disabled."
5116 msgid "Password reset is disabled."
5083 msgstr ""
5117 msgstr ""
5084
5118
5085 #: rhodecode/templates/login.mako:80
5119 #: rhodecode/templates/login.mako:82
5086 msgid "Please contact "
5120 msgid "Please contact "
5087 msgstr ""
5121 msgstr ""
5088
5122
5089 #: rhodecode/templates/login.mako:82 rhodecode/templates/password_reset.mako:37
5123 #: rhodecode/templates/login.mako:84 rhodecode/templates/password_reset.mako:39
5090 #: rhodecode/templates/base/base.mako:48
5124 #: rhodecode/templates/base/base.mako:50
5091 msgid "Support"
5125 msgid "Support"
5092 msgstr ""
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 #: rhodecode/templates/login.mako:85 rhodecode/templates/password_reset.mako:40
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 msgid "an administrator if you need help."
5133 msgid "an administrator if you need help."
5102 msgstr ""
5134 msgstr ""
5103
5135
5104 #: rhodecode/templates/login.mako:89
5136 #: rhodecode/templates/login.mako:91
5105 msgid "Sign in to {}"
5137 msgid "Sign in to {}"
5106 msgstr ""
5138 msgstr ""
5107
5139
@@ -5109,32 +5141,32 b' msgstr ""'
5109 msgid "Reset Password"
5141 msgid "Reset Password"
5110 msgstr ""
5142 msgstr ""
5111
5143
5112 #: rhodecode/templates/password_reset.mako:35
5144 #: rhodecode/templates/password_reset.mako:37
5113 msgid "Password reset is disabled. Please contact "
5145 msgid "Password reset is disabled. Please contact "
5114 msgstr ""
5146 msgstr ""
5115
5147
5116 #: rhodecode/templates/password_reset.mako:47
5148 #: rhodecode/templates/password_reset.mako:49
5117 msgid "Reset your Password"
5149 msgid "Reset your Password"
5118 msgstr ""
5150 msgstr ""
5119
5151
5120 #: rhodecode/templates/password_reset.mako:48
5152 #: rhodecode/templates/password_reset.mako:50
5121 msgid "Go to the login page to sign in."
5153 msgid "Go to the login page to sign in."
5122 msgstr ""
5154 msgstr ""
5123
5155
5124 #: rhodecode/templates/password_reset.mako:52
5156 #: rhodecode/templates/password_reset.mako:54
5125 msgid "Email Address"
5157 msgid "Email Address"
5126 msgstr ""
5158 msgstr ""
5127
5159
5128 #: rhodecode/templates/password_reset.mako:58
5160 #: rhodecode/templates/password_reset.mako:60
5129 msgid "Password reset link will be sent to matching email address"
5161 msgid "Password reset link will be sent to matching email address"
5130 msgstr ""
5162 msgstr ""
5131
5163
5132 #: rhodecode/templates/password_reset.mako:62
5164 #: rhodecode/templates/password_reset.mako:64
5133 #: rhodecode/templates/register.mako:102
5165 #: rhodecode/templates/register.mako:104
5134 msgid "Captcha"
5166 msgid "Captcha"
5135 msgstr ""
5167 msgstr ""
5136
5168
5137 #: rhodecode/templates/password_reset.mako:73
5169 #: rhodecode/templates/password_reset.mako:75
5138 msgid "Send password reset email"
5170 msgid "Send password reset email"
5139 msgstr ""
5171 msgstr ""
5140
5172
@@ -5142,49 +5174,49 b' msgstr ""'
5142 msgid "Create an Account"
5174 msgid "Create an Account"
5143 msgstr ""
5175 msgstr ""
5144
5176
5145 #: rhodecode/templates/register.mako:36
5177 #: rhodecode/templates/register.mako:38
5146 msgid "Create an account linked with {}"
5178 msgid "Create an account linked with {}"
5147 msgstr ""
5179 msgstr ""
5148
5180
5149 #: rhodecode/templates/register.mako:38
5181 #: rhodecode/templates/register.mako:40
5150 msgid "Create an account"
5182 msgid "Create an account"
5151 msgstr ""
5183 msgstr ""
5152
5184
5153 #: rhodecode/templates/register.mako:41
5185 #: rhodecode/templates/register.mako:43
5154 msgid "Go to the login page to sign in with an existing account."
5186 msgid "Go to the login page to sign in with an existing account."
5155 msgstr ""
5187 msgstr ""
5156
5188
5157 #: rhodecode/templates/register.mako:67
5189 #: rhodecode/templates/register.mako:69
5158 msgid "Re-enter password"
5190 msgid "Re-enter password"
5159 msgstr ""
5191 msgstr ""
5160
5192
5161 #: rhodecode/templates/register.mako:79
5193 #: rhodecode/templates/register.mako:81
5162 #: rhodecode/templates/admin/my_account/my_account_profile.mako:32
5194 #: rhodecode/templates/admin/my_account/my_account_profile.mako:35
5163 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:32
5195 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:32
5164 #: rhodecode/templates/admin/users/user_add.mako:68
5196 #: rhodecode/templates/admin/users/user_add.mako:68
5165 #: rhodecode/templates/admin/users/user_edit_profile.mako:47
5197 #: rhodecode/templates/admin/users/user_edit_profile.mako:46
5166 #: rhodecode/templates/admin/users/users.mako:75
5198 #: rhodecode/templates/admin/users/users.mako:78
5167 msgid "First Name"
5199 msgid "First Name"
5168 msgstr ""
5200 msgstr ""
5169
5201
5170 #: rhodecode/templates/register.mako:86
5202 #: rhodecode/templates/register.mako:88
5171 #: rhodecode/templates/admin/my_account/my_account_profile.mako:40
5203 #: rhodecode/templates/admin/my_account/my_account_profile.mako:45
5172 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:41
5204 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:41
5173 #: rhodecode/templates/admin/users/user_add.mako:77
5205 #: rhodecode/templates/admin/users/user_add.mako:77
5174 #: rhodecode/templates/admin/users/user_edit_profile.mako:56
5206 #: rhodecode/templates/admin/users/user_edit_profile.mako:55
5175 #: rhodecode/templates/admin/users/users.mako:77
5207 #: rhodecode/templates/admin/users/users.mako:80
5176 msgid "Last Name"
5208 msgid "Last Name"
5177 msgstr ""
5209 msgstr ""
5178
5210
5179 #: rhodecode/templates/register.mako:114
5211 #: rhodecode/templates/register.mako:116
5180 msgid "Account activation requires admin approval."
5212 msgid "Account activation requires admin approval."
5181 msgstr ""
5213 msgstr ""
5182
5214
5183 #: rhodecode/templates/register.mako:121
5215 #: rhodecode/templates/register.mako:123
5184 msgid "Create Account"
5216 msgid "Create Account"
5185 msgstr ""
5217 msgstr ""
5186
5218
5187 #: rhodecode/templates/register.mako:121
5219 #: rhodecode/templates/register.mako:123
5188 msgid "Create Account in {}"
5220 msgid "Create Account in {}"
5189 msgstr ""
5221 msgstr ""
5190
5222
@@ -5192,93 +5224,92 b' msgstr ""'
5192 msgid "Admin audit log entry"
5224 msgid "Admin audit log entry"
5193 msgstr ""
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 msgid "Audit long entry"
5228 msgid "Audit long entry"
5197 msgstr ""
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 #: rhodecode/templates/users/user.mako:4 rhodecode/templates/users/user.mako:11
5232 #: rhodecode/templates/users/user.mako:4 rhodecode/templates/users/user.mako:11
5201 msgid "User"
5233 msgid "User"
5202 msgstr ""
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 #: rhodecode/templates/admin/admin_log_base.mako:11
5237 #: rhodecode/templates/admin/admin_log_base.mako:11
5206 #: rhodecode/templates/bookmarks/bookmarks.mako:61
5238 #: rhodecode/templates/bookmarks/bookmarks.mako:59
5207 #: rhodecode/templates/branches/branches.mako:60
5239 #: rhodecode/templates/branches/branches.mako:58
5208 #: rhodecode/templates/tags/tags.mako:61
5240 #: rhodecode/templates/tags/tags.mako:59
5209 msgid "Date"
5241 msgid "Date"
5210 msgstr ""
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 #: rhodecode/templates/admin/admin_log_base.mako:12
5245 #: rhodecode/templates/admin/admin_log_base.mako:12
5214 msgid "IP"
5246 msgid "IP"
5215 msgstr ""
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 #: rhodecode/templates/admin/admin_log_base.mako:8
5250 #: rhodecode/templates/admin/admin_log_base.mako:8
5219 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:19
5251 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:19
5220 #: rhodecode/templates/admin/my_account/my_account_repos.mako:37
5252 #: rhodecode/templates/admin/my_account/my_account_repos.mako:37
5221 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:13
5253 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:13
5222 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:55
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 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:13
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 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:71
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 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:19
5260 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:19
5229 #: rhodecode/templates/admin/users/user_edit_groups.mako:73
5261 #: rhodecode/templates/admin/users/user_edit_groups.mako:73
5230 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:13
5262 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:13
5231 #: rhodecode/templates/admin/users/users.mako:88
5263 #: rhodecode/templates/admin/users/users.mako:91
5232 #: rhodecode/templates/files/files_detail.mako:58
5264 #: rhodecode/templates/forks/forks.mako:69
5233 #: rhodecode/templates/forks/forks.mako:71
5234 msgid "Action"
5265 msgid "Action"
5235 msgstr ""
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 #: rhodecode/templates/admin/admin_log_base.mako:9
5269 #: rhodecode/templates/admin/admin_log_base.mako:9
5239 msgid "Action Data"
5270 msgid "Action Data"
5240 msgstr ""
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 #: rhodecode/templates/admin/admin_log_base.mako:47
5274 #: rhodecode/templates/admin/admin_log_base.mako:47
5244 msgid "data not available for v1 entries type"
5275 msgid "data not available for v1 entries type"
5245 msgstr ""
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 #: rhodecode/templates/admin/admin_log_base.mako:10
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 #: rhodecode/templates/admin/permissions/permissions_objects.mako:16
5281 #: rhodecode/templates/admin/permissions/permissions_objects.mako:16
5251 #: rhodecode/templates/base/base.mako:421
5282 #: rhodecode/templates/base/base.mako:486
5252 #: rhodecode/templates/base/base.mako:423
5283 #: rhodecode/templates/base/base.mako:488
5253 #: rhodecode/templates/base/base.mako:425
5284 #: rhodecode/templates/base/base.mako:490
5254 #: rhodecode/templates/search/search_commit.mako:8
5285 #: rhodecode/templates/search/search_commit.mako:8
5255 #: rhodecode/templates/search/search_path.mako:7
5286 #: rhodecode/templates/search/search_path.mako:7
5256 msgid "Repository"
5287 msgid "Repository"
5257 msgstr ""
5288 msgstr ""
5258
5289
5259 #: rhodecode/templates/admin/admin_audit_logs.mako:5
5290 #: rhodecode/templates/admin/admin_audit_logs.mako:5
5260 #: rhodecode/templates/base/base.mako:77
5291 #: rhodecode/templates/base/base.mako:102
5261 msgid "Admin audit logs"
5292 msgid "Admin audit logs"
5262 msgstr ""
5293 msgstr ""
5263
5294
5264 #: rhodecode/templates/admin/admin_audit_logs.mako:13
5295 #: rhodecode/templates/admin/admin_audit_logs.mako:25
5265 msgid "filter..."
5296 msgid "filter..."
5266 msgstr ""
5297 msgstr ""
5267
5298
5268 #: rhodecode/templates/admin/admin_audit_logs.mako:14
5299 #: rhodecode/templates/admin/admin_audit_logs.mako:26
5269 #: rhodecode/templates/admin/repos/repo_edit_audit.mako:15
5300 #: rhodecode/templates/admin/repos/repo_edit_audit.mako:15
5270 #: rhodecode/templates/admin/users/user_edit_audit.mako:15
5301 #: rhodecode/templates/admin/users/user_edit_audit.mako:15
5271 #: rhodecode/templates/journal/journal.mako:13
5302 #: rhodecode/templates/journal/journal.mako:13
5272 msgid "filter"
5303 msgid "filter"
5273 msgstr ""
5304 msgstr ""
5274
5305
5275 #: rhodecode/templates/admin/admin_audit_logs.mako:15
5306 #: rhodecode/templates/admin/admin_audit_logs.mako:27
5276 #: rhodecode/templates/admin/repos/repo_edit.mako:95
5307 #: rhodecode/templates/admin/repos/repo_edit.mako:91
5277 #: rhodecode/templates/admin/users/user_edit.mako:47
5308 #: rhodecode/templates/admin/users/user_edit.mako:48
5278 msgid "Audit logs"
5309 msgid "Audit logs"
5279 msgstr ""
5310 msgstr ""
5280
5311
5281 #: rhodecode/templates/admin/admin_audit_logs.mako:17
5312 #: rhodecode/templates/admin/admin_audit_logs.mako:29
5282 #: rhodecode/templates/admin/repos/repo_edit_audit.mako:18
5313 #: rhodecode/templates/admin/repos/repo_edit_audit.mako:18
5283 #: rhodecode/templates/admin/users/user_edit_audit.mako:18
5314 #: rhodecode/templates/admin/users/user_edit_audit.mako:18
5284 #: rhodecode/templates/journal/journal.mako:16
5315 #: rhodecode/templates/journal/journal.mako:16
@@ -5297,48 +5328,75 b' msgstr ""'
5297 msgid "No actions yet"
5328 msgid "No actions yet"
5298 msgstr ""
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 #: rhodecode/templates/admin/auth/auth_settings.mako:5
5358 #: rhodecode/templates/admin/auth/auth_settings.mako:5
5301 #: rhodecode/templates/admin/auth/plugin_settings.mako:5
5359 #: rhodecode/templates/admin/auth/plugin_settings.mako:5
5302 msgid "Authentication Settings"
5360 msgid "Authentication Settings"
5303 msgstr ""
5361 msgstr ""
5304
5362
5305 #: rhodecode/templates/admin/auth/auth_settings.mako:45
5363 #: rhodecode/templates/admin/auth/auth_settings.mako:42
5306 msgid "Enabled and Available Plugins"
5364 msgid "Enabled and Available Plugins"
5307 msgstr ""
5365 msgstr ""
5308
5366
5309 #: rhodecode/templates/admin/auth/auth_settings.mako:51
5367 #: rhodecode/templates/admin/auth/auth_settings.mako:48
5310 msgid "Ordered Activated Plugins"
5368 msgid "Ordered Activated Plugins"
5311 msgstr ""
5369 msgstr ""
5312
5370
5313 #: rhodecode/templates/admin/auth/auth_settings.mako:56
5371 #: rhodecode/templates/admin/auth/auth_settings.mako:53
5314 msgid ""
5372 msgid ""
5315 "List of plugins, separated by commas.\n"
5373 "List of plugins, separated by commas.\n"
5316 "The order of the plugins is also the order in which RhodeCode Enterprise will try to authenticate a user."
5374 "The order of the plugins is also the order in which RhodeCode Enterprise will try to authenticate a user."
5317 msgstr ""
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 #: rhodecode/templates/admin/auth/auth_settings.mako:63
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 msgid "Plugin ID"
5390 msgid "Plugin ID"
5333 msgstr ""
5391 msgstr ""
5334
5392
5335 #: rhodecode/templates/admin/auth/auth_settings.mako:88
5393 #: rhodecode/templates/admin/auth/auth_settings.mako:85
5336 #: rhodecode/templates/admin/auth/plugin_settings.mako:95
5394 #: rhodecode/templates/admin/auth/plugin_settings.mako:96
5337 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:63
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 #: rhodecode/templates/admin/permissions/permissions_application.mako:59
5397 #: rhodecode/templates/admin/permissions/permissions_application.mako:59
5340 #: rhodecode/templates/admin/permissions/permissions_objects.mako:59
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:205
5400 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:205
5343 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:83
5401 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:83
5344 #: rhodecode/templates/admin/repos/repo_add_base.mako:106
5402 #: rhodecode/templates/admin/repos/repo_add_base.mako:106
@@ -5347,17 +5405,17 b' msgstr ""'
5347 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:243
5405 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:243
5348 #: rhodecode/templates/admin/settings/settings_hooks.mako:63
5406 #: rhodecode/templates/admin/settings/settings_hooks.mako:63
5349 #: rhodecode/templates/admin/settings/settings_issuetracker.mako:15
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 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:192
5409 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:192
5352 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:102
5410 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:102
5353 #: rhodecode/templates/admin/users/user_add.mako:128
5411 #: rhodecode/templates/admin/users/user_add.mako:128
5354 #: rhodecode/templates/admin/users/user_edit_groups.mako:27
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 #: rhodecode/templates/base/default_perms_box.mako:88
5414 #: rhodecode/templates/base/default_perms_box.mako:88
5357 msgid "Save"
5415 msgid "Save"
5358 msgstr ""
5416 msgstr ""
5359
5417
5360 #: rhodecode/templates/admin/auth/plugin_settings.mako:45
5418 #: rhodecode/templates/admin/auth/plugin_settings.mako:46
5361 msgid "Plugin"
5419 msgid "Plugin"
5362 msgstr ""
5420 msgstr ""
5363
5421
@@ -5371,7 +5429,7 b' msgid "Default Settings For New Reposito'
5371 msgstr ""
5429 msgstr ""
5372
5430
5373 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:14
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 #: rhodecode/templates/admin/integrations/list.mako:73
5433 #: rhodecode/templates/admin/integrations/list.mako:73
5376 #: rhodecode/templates/admin/repos/repo_add_base.mako:43
5434 #: rhodecode/templates/admin/repos/repo_add_base.mako:43
5377 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:12
5435 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:12
@@ -5386,7 +5444,7 b' msgstr ""'
5386 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:27
5444 #: rhodecode/templates/admin/defaults/defaults_repositories.mako:27
5387 #: rhodecode/templates/admin/repos/repo_add_base.mako:102
5445 #: rhodecode/templates/admin/repos/repo_add_base.mako:102
5388 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:192
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 msgid "Private repositories are only visible to people explicitly added as collaborators."
5448 msgid "Private repositories are only visible to people explicitly added as collaborators."
5391 msgstr ""
5449 msgstr ""
5392
5450
@@ -5436,8 +5494,8 b' msgstr ""'
5436
5494
5437 #: rhodecode/templates/admin/gists/edit.mako:56
5495 #: rhodecode/templates/admin/gists/edit.mako:56
5438 #: rhodecode/templates/admin/gists/new.mako:50
5496 #: rhodecode/templates/admin/gists/new.mako:50
5439 #: rhodecode/templates/files/files_add.mako:80
5497 #: rhodecode/templates/files/files_add.mako:68
5440 #: rhodecode/templates/files/files_edit.mako:81
5498 #: rhodecode/templates/files/files_edit.mako:69
5441 msgid "plain"
5499 msgid "plain"
5442 msgstr ""
5500 msgstr ""
5443
5501
@@ -5449,10 +5507,7 b' msgstr ""'
5449 #: rhodecode/templates/base/issue_tracker_settings.mako:73
5507 #: rhodecode/templates/base/issue_tracker_settings.mako:73
5450 #: rhodecode/templates/changeset/changeset_file_comment.mako:392
5508 #: rhodecode/templates/changeset/changeset_file_comment.mako:392
5451 #: rhodecode/templates/codeblocks/diffs.mako:72
5509 #: rhodecode/templates/codeblocks/diffs.mako:72
5452 #: rhodecode/templates/files/files_add.mako:108
5510 #: rhodecode/templates/pullrequests/pullrequest_show.mako:61
5453 #: rhodecode/templates/files/files_delete.mako:69
5454 #: rhodecode/templates/files/files_edit.mako:108
5455 #: rhodecode/templates/pullrequests/pullrequest_show.mako:65
5456 msgid "Cancel"
5511 msgid "Cancel"
5457 msgstr ""
5512 msgstr ""
5458
5513
@@ -5462,90 +5517,77 b' msgid "Gist was updated since you starte'
5462 msgstr ""
5517 msgstr ""
5463
5518
5464 #: rhodecode/templates/admin/gists/index.mako:6
5519 #: rhodecode/templates/admin/gists/index.mako:6
5465 #: rhodecode/templates/admin/gists/index.mako:20
5520 msgid "Private Gists for user {}"
5466 #, python-format
5467 msgid "Private Gists for user %s"
5468 msgstr ""
5521 msgstr ""
5469
5522
5470 #: rhodecode/templates/admin/gists/index.mako:8
5523 #: rhodecode/templates/admin/gists/index.mako:8
5471 #: rhodecode/templates/admin/gists/index.mako:22
5524 msgid "Public Gists for user {}"
5472 #, python-format
5473 msgid "Public Gists for user %s"
5474 msgstr ""
5525 msgstr ""
5475
5526
5476 #: rhodecode/templates/admin/gists/index.mako:10
5527 #: rhodecode/templates/admin/gists/index.mako:10
5477 msgid "Public Gists"
5528 msgid "Public Gists"
5478 msgstr ""
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 #: rhodecode/templates/admin/my_account/my_account_repos.mako:7
5557 #: rhodecode/templates/admin/my_account/my_account_repos.mako:7
5482 #: rhodecode/templates/admin/my_account/my_account_watched.mako:7
5558 #: rhodecode/templates/admin/my_account/my_account_watched.mako:7
5483 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:11
5559 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:11
5484 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:12
5560 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:25
5485 #: rhodecode/templates/admin/repos/repos.mako:12
5561 #: rhodecode/templates/admin/repos/repos.mako:25
5486 #: rhodecode/templates/admin/user_groups/user_groups.mako:12
5562 #: rhodecode/templates/admin/user_groups/user_groups.mako:25
5487 #: rhodecode/templates/admin/users/users.mako:12
5563 #: rhodecode/templates/admin/users/users.mako:26
5488 #: rhodecode/templates/bookmarks/bookmarks.mako:12
5564 #: rhodecode/templates/bookmarks/bookmarks.mako:33
5489 #: rhodecode/templates/branches/branches.mako:12
5565 #: rhodecode/templates/branches/branches.mako:33
5490 #: rhodecode/templates/journal/journal.mako:12
5566 #: rhodecode/templates/journal/journal.mako:12
5491 #: rhodecode/templates/tags/tags.mako:12
5567 #: rhodecode/templates/tags/tags.mako:33
5492 msgid "quick filter..."
5568 msgid "quick filter..."
5493 msgstr ""
5569 msgstr ""
5494
5570
5495 #: rhodecode/templates/admin/gists/index.mako:24
5571 #: rhodecode/templates/admin/gists/index.mako:103
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
5530 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:57
5572 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:57
5531 #: rhodecode/templates/bookmarks/bookmarks.mako:63
5573 #: rhodecode/templates/bookmarks/bookmarks.mako:61
5532 #: rhodecode/templates/branches/branches.mako:62
5574 #: rhodecode/templates/branches/branches.mako:60
5533 #: rhodecode/templates/changelog/changelog.mako:124
5575 #: rhodecode/templates/changeset/changeset.mako:195
5534 #: rhodecode/templates/changeset/changeset.mako:199
5576 #: rhodecode/templates/commits/changelog.mako:119
5535 #: rhodecode/templates/compare/compare_commits.mako:18
5577 #: rhodecode/templates/compare/compare_commits.mako:18
5536 #: rhodecode/templates/files/files_browser_tree.mako:9
5578 #: rhodecode/templates/files/files_browser_tree.mako:15
5537 #: rhodecode/templates/pullrequests/pullrequest_show.mako:481
5579 #: rhodecode/templates/pullrequests/pullrequest_show.mako:477
5538 #: rhodecode/templates/pullrequests/pullrequests.mako:112
5580 #: rhodecode/templates/pullrequests/pullrequests.mako:83
5539 #: rhodecode/templates/search/search_commit.mako:19
5581 #: rhodecode/templates/search/search_commit.mako:19
5540 #: rhodecode/templates/summary/summary_commits.mako:11
5582 #: rhodecode/templates/summary/summary_commits.mako:11
5541 #: rhodecode/templates/tags/tags.mako:63
5583 #: rhodecode/templates/tags/tags.mako:61
5542 msgid "Author"
5584 msgid "Author"
5543 msgstr ""
5585 msgstr ""
5544
5586
5545 #: rhodecode/templates/admin/gists/index.mako:116
5587 #: rhodecode/templates/admin/gists/index.mako:111
5546 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:11
5588 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:11
5547 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:51
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 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:7
5591 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:7
5550 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:7
5592 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:7
5551 #: rhodecode/templates/admin/users/user_edit_advanced.mako:6
5593 #: rhodecode/templates/admin/users/user_edit_advanced.mako:6
@@ -5553,7 +5595,7 b' msgstr ""'
5553 msgid "Created on"
5595 msgid "Created on"
5554 msgstr ""
5596 msgstr ""
5555
5597
5556 #: rhodecode/templates/admin/gists/index.mako:118
5598 #: rhodecode/templates/admin/gists/index.mako:113
5557 #: rhodecode/templates/admin/gists/show.mako:72
5599 #: rhodecode/templates/admin/gists/show.mako:72
5558 msgid "Expires"
5600 msgid "Expires"
5559 msgstr ""
5601 msgstr ""
@@ -5613,8 +5655,8 b' msgid "created"'
5613 msgstr ""
5655 msgstr ""
5614
5656
5615 #: rhodecode/templates/admin/gists/show.mako:100
5657 #: rhodecode/templates/admin/gists/show.mako:100
5616 #: rhodecode/templates/files/files_delete.mako:50
5658 #: rhodecode/templates/files/files_delete.mako:58
5617 #: rhodecode/templates/files/files_source.mako:104
5659 #: rhodecode/templates/files/files_source.mako:133
5618 msgid "Show as raw"
5660 msgid "Show as raw"
5619 msgstr ""
5661 msgstr ""
5620
5662
@@ -5626,14 +5668,15 b' msgstr ""'
5626 #: rhodecode/templates/admin/integrations/form.mako:8
5668 #: rhodecode/templates/admin/integrations/form.mako:8
5627 #: rhodecode/templates/admin/integrations/form.mako:21
5669 #: rhodecode/templates/admin/integrations/form.mako:21
5628 #: rhodecode/templates/admin/integrations/form.mako:32
5670 #: rhodecode/templates/admin/integrations/form.mako:32
5671 #: rhodecode/templates/admin/integrations/global.mako:14
5629 #: rhodecode/templates/admin/integrations/list.mako:21
5672 #: rhodecode/templates/admin/integrations/list.mako:21
5630 #: rhodecode/templates/admin/integrations/list.mako:25
5673 #: rhodecode/templates/admin/integrations/list.mako:25
5631 #: rhodecode/templates/admin/integrations/list.mako:29
5674 #: rhodecode/templates/admin/integrations/list.mako:29
5632 #: rhodecode/templates/admin/integrations/list.mako:36
5675 #: rhodecode/templates/admin/integrations/list.mako:36
5633 #: rhodecode/templates/admin/integrations/new.mako:15
5676 #: rhodecode/templates/admin/integrations/new.mako:15
5634 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:37
5677 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:33
5635 #: rhodecode/templates/admin/repos/repo_edit.mako:78
5678 #: rhodecode/templates/admin/repos/repo_edit.mako:74
5636 #: rhodecode/templates/base/base.mako:84
5679 #: rhodecode/templates/base/base.mako:109
5637 msgid "Integrations"
5680 msgid "Integrations"
5638 msgstr ""
5681 msgstr ""
5639
5682
@@ -5642,12 +5685,12 b' msgstr ""'
5642 #: rhodecode/templates/admin/integrations/new.mako:7
5685 #: rhodecode/templates/admin/integrations/new.mako:7
5643 #: rhodecode/templates/admin/integrations/new.mako:9
5686 #: rhodecode/templates/admin/integrations/new.mako:9
5644 #: rhodecode/templates/admin/integrations/new.mako:13
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 #: rhodecode/templates/admin/repos/repo_edit.mako:15
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 #: rhodecode/templates/admin/settings/settings.mako:14
5691 #: rhodecode/templates/admin/settings/settings.mako:14
5649 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:33
5692 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:34
5650 #: rhodecode/templates/base/base.mako:86
5693 #: rhodecode/templates/base/base.mako:111
5651 msgid "Settings"
5694 msgid "Settings"
5652 msgstr ""
5695 msgstr ""
5653
5696
@@ -5656,12 +5699,16 b' msgstr ""'
5656 msgid "Create New %(integration_type)s Integration"
5699 msgid "Create New %(integration_type)s Integration"
5657 msgstr ""
5700 msgstr ""
5658
5701
5702 #: rhodecode/templates/admin/integrations/global.mako:5
5703 msgid "Integrations administration"
5704 msgstr ""
5705
5659 #: rhodecode/templates/admin/integrations/list.mako:44
5706 #: rhodecode/templates/admin/integrations/list.mako:44
5660 msgid "Current Integrations for Repository: {repo_name}"
5707 msgid "Current Integrations for Repository: {repo_name}"
5661 msgstr ""
5708 msgstr ""
5662
5709
5663 #: rhodecode/templates/admin/integrations/list.mako:46
5710 #: rhodecode/templates/admin/integrations/list.mako:46
5664 msgid "Current Integrations for repository group: {repo_group_name}"
5711 msgid "Repository Group Integrations: {}"
5665 msgstr ""
5712 msgstr ""
5666
5713
5667 #: rhodecode/templates/admin/integrations/list.mako:48
5714 #: rhodecode/templates/admin/integrations/list.mako:48
@@ -5678,7 +5725,7 b' msgid "Scope"'
5678 msgstr ""
5725 msgstr ""
5679
5726
5680 #: rhodecode/templates/admin/integrations/list.mako:75
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 msgid "Actions"
5729 msgid "Actions"
5683 msgstr ""
5730 msgstr ""
5684
5731
@@ -5698,31 +5745,31 b' msgstr ""'
5698 msgid "Create one"
5745 msgid "Create one"
5699 msgstr ""
5746 msgstr ""
5700
5747
5701 #: rhodecode/templates/admin/integrations/list.mako:134
5748 #: rhodecode/templates/admin/integrations/list.mako:132
5702 msgid "repo"
5749 msgid "repo"
5703 msgstr ""
5750 msgstr ""
5704
5751
5752 #: rhodecode/templates/admin/integrations/list.mako:136
5753 msgid "repogroup"
5754 msgstr ""
5755
5705 #: rhodecode/templates/admin/integrations/list.mako:138
5756 #: rhodecode/templates/admin/integrations/list.mako:138
5706 msgid "repogroup"
5757 msgid "child repos only"
5707 msgstr ""
5758 msgstr ""
5708
5759
5709 #: rhodecode/templates/admin/integrations/list.mako:140
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 msgid "cascade to all"
5761 msgid "cascade to all"
5715 msgstr ""
5762 msgstr ""
5716
5763
5764 #: rhodecode/templates/admin/integrations/list.mako:145
5765 msgid "top level repos only"
5766 msgstr ""
5767
5717 #: rhodecode/templates/admin/integrations/list.mako:147
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 msgid "global"
5769 msgid "global"
5723 msgstr ""
5770 msgstr ""
5724
5771
5725 #: rhodecode/templates/admin/integrations/list.mako:155
5772 #: rhodecode/templates/admin/integrations/list.mako:153
5726 msgid "unknown integration"
5773 msgid "unknown integration"
5727 msgstr ""
5774 msgstr ""
5728
5775
@@ -5743,7 +5790,7 b' msgid "No description available"'
5743 msgstr ""
5790 msgstr ""
5744
5791
5745 #: rhodecode/templates/admin/my_account/my_account.mako:5
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 msgid "My account"
5794 msgid "My account"
5748 msgstr ""
5795 msgstr ""
5749
5796
@@ -5765,7 +5812,7 b' msgstr ""'
5765 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:3
5812 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:3
5766 #: rhodecode/templates/admin/permissions/permissions.mako:51
5813 #: rhodecode/templates/admin/permissions/permissions.mako:51
5767 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:4
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 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:3
5816 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:3
5770 msgid "SSH Keys"
5817 msgid "SSH Keys"
5771 msgstr ""
5818 msgstr ""
@@ -5780,7 +5827,7 b' msgid "External Identities"'
5780 msgstr ""
5827 msgstr ""
5781
5828
5782 #: rhodecode/templates/admin/my_account/my_account.mako:41
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 msgid "Emails"
5831 msgid "Emails"
5785 msgstr ""
5832 msgstr ""
5786
5833
@@ -5789,18 +5836,18 b' msgid "Watched"'
5789 msgstr ""
5836 msgstr ""
5790
5837
5791 #: rhodecode/templates/admin/my_account/my_account.mako:44
5838 #: rhodecode/templates/admin/my_account/my_account.mako:44
5792 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:43
5839 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:42
5793 #: rhodecode/templates/base/base.mako:243
5840 #: rhodecode/templates/base/base.mako:303
5794 #: rhodecode/templates/base/base.mako:401
5841 #: rhodecode/templates/base/base.mako:466
5795 msgid "Pull Requests"
5842 msgid "Pull Requests"
5796 msgstr ""
5843 msgstr ""
5797
5844
5798 #: rhodecode/templates/admin/my_account/my_account.mako:45
5845 #: rhodecode/templates/admin/my_account/my_account.mako:45
5799 #: rhodecode/templates/admin/permissions/permissions.mako:14
5846 #: rhodecode/templates/admin/permissions/permissions.mako:14
5800 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:35
5847 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:31
5801 #: rhodecode/templates/admin/repos/repo_edit.mako:49
5848 #: rhodecode/templates/admin/repos/repo_edit.mako:45
5802 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:34
5849 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:35
5803 #: rhodecode/templates/base/base.mako:82
5850 #: rhodecode/templates/base/base.mako:107
5804 msgid "Permissions"
5851 msgid "Permissions"
5805 msgstr ""
5852 msgstr ""
5806
5853
@@ -5887,51 +5934,55 b' msgstr ""'
5887 msgid "Clear"
5934 msgid "Clear"
5888 msgstr ""
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 msgid "Redirect URL"
5942 msgid "Redirect URL"
5892 msgstr ""
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 msgid "Repository template"
5946 msgid "Repository template"
5896 msgstr ""
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 msgid "Repository group template"
5950 msgid "Repository group template"
5900 msgstr ""
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 msgid "Template Repository or Repository group"
5954 msgid "Template Repository or Repository group"
5904 msgstr ""
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 msgid "Available as ${repo_url} e.g. Redirect url: ${repo_url}/changelog"
5958 msgid "Available as ${repo_url} e.g. Redirect url: ${repo_url}/changelog"
5908 msgstr ""
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 msgid "Available as ${repo_group_url} e.g. Redirect url: ${repo_group_url}"
5962 msgid "Available as ${repo_group_url} e.g. Redirect url: ${repo_group_url}"
5912 msgstr ""
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 msgid "Available as full url variables in redirect url. i.e: ${repo_url}, ${repo_group_url}."
5966 msgid "Available as full url variables in redirect url. i.e: ${repo_url}, ${repo_group_url}."
5916 msgstr ""
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 msgid "Your Bookmarks"
5970 msgid "Your Bookmarks"
5920 msgstr ""
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 msgid "Store upto 10 bookmark links to favorite repositories, external issue tracker or CI server. "
5974 msgid "Store upto 10 bookmark links to favorite repositories, external issue tracker or CI server. "
5924 msgstr ""
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 msgid "Bookmarks are accessible from your username dropdown or by keyboard shortcut `g 0-9`"
5978 msgid "Bookmarks are accessible from your username dropdown or by keyboard shortcut `g 0-9`"
5928 msgstr ""
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 msgid "repository"
5982 msgid "repository"
5932 msgstr ""
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 msgid "repository group"
5986 msgid "repository group"
5936 msgstr ""
5987 msgstr ""
5937
5988
@@ -5993,15 +6044,8 b' msgstr ""'
5993 msgid "Photo"
6044 msgid "Photo"
5994 msgstr ""
6045 msgstr ""
5995
6046
5996 #: rhodecode/templates/admin/my_account/my_account_profile.mako:18
6047 #: rhodecode/templates/admin/my_account/my_account_profile.mako:59
5997 #: rhodecode/templates/admin/my_account/my_account_profile_edit.mako:62
6048 #: rhodecode/templates/users/user_profile.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
6005 msgid "Missing email, please update your user email address."
6049 msgid "Missing email, please update your user email address."
6006 msgstr ""
6050 msgstr ""
6007
6051
@@ -6026,13 +6070,13 b' msgstr ""'
6026 #: rhodecode/templates/admin/settings/settings_global.mako:9
6070 #: rhodecode/templates/admin/settings/settings_global.mako:9
6027 #: rhodecode/templates/email_templates/pull_request_review.mako:39
6071 #: rhodecode/templates/email_templates/pull_request_review.mako:39
6028 #: rhodecode/templates/email_templates/pull_request_review.mako:72
6072 #: rhodecode/templates/email_templates/pull_request_review.mako:72
6029 #: rhodecode/templates/pullrequests/pullrequest.mako:46
6073 #: rhodecode/templates/pullrequests/pullrequest.mako:40
6030 #: rhodecode/templates/pullrequests/pullrequests.mako:114
6074 #: rhodecode/templates/pullrequests/pullrequests.mako:85
6031 msgid "Title"
6075 msgid "Title"
6032 msgstr ""
6076 msgstr ""
6033
6077
6034 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:63
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 msgid "Last Update"
6080 msgid "Last Update"
6037 msgstr ""
6081 msgstr ""
6038
6082
@@ -6088,14 +6132,14 b' msgstr ""'
6088
6132
6089 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:49
6133 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:49
6090 #: rhodecode/templates/admin/repos/repo_edit_caches.mako:41
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 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:51
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 #: rhodecode/templates/admin/users/user_add.mako:97
6138 #: rhodecode/templates/admin/users/user_add.mako:97
6095 #: rhodecode/templates/admin/users/user_edit_groups.mako:64
6139 #: rhodecode/templates/admin/users/user_edit_groups.mako:64
6096 #: rhodecode/templates/admin/users/user_edit_profile.mako:90
6140 #: rhodecode/templates/admin/users/user_edit_profile.mako:89
6097 #: rhodecode/templates/admin/users/users.mako:82
6141 #: rhodecode/templates/admin/users/users.mako:85
6098 #: rhodecode/templates/user_group/profile.mako:33
6142 #: rhodecode/templates/user_group/profile.mako:34
6099 msgid "Active"
6143 msgid "Active"
6100 msgstr ""
6144 msgstr ""
6101
6145
@@ -6122,7 +6166,7 b' msgstr ""'
6122
6166
6123 #: rhodecode/templates/admin/notifications/notifications_show.mako:12
6167 #: rhodecode/templates/admin/notifications/notifications_show.mako:12
6124 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:5
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 msgid "My Notifications"
6170 msgid "My Notifications"
6127 msgstr ""
6171 msgstr ""
6128
6172
@@ -6130,21 +6174,21 b' msgstr ""'
6130 msgid "Subject"
6174 msgid "Subject"
6131 msgstr ""
6175 msgstr ""
6132
6176
6133 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:26
6177 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:25
6134 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:30
6178 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:29
6135 msgid "Mark all as read"
6179 msgid "Mark all as read"
6136 msgstr ""
6180 msgstr ""
6137
6181
6182 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:39
6183 msgid "Unread"
6184 msgstr ""
6185
6138 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:40
6186 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:40
6139 msgid "Unread"
6187 msgid "All"
6140 msgstr ""
6188 msgstr ""
6141
6189
6142 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:41
6190 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:41
6143 msgid "All"
6191 #: rhodecode/templates/changeset/changeset.mako:158
6144 msgstr ""
6145
6146 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:42
6147 #: rhodecode/templates/changeset/changeset.mako:159
6148 msgid "Comments"
6192 msgid "Comments"
6149 msgstr ""
6193 msgstr ""
6150
6194
@@ -6223,6 +6267,7 b' msgstr ""'
6223 #: rhodecode/templates/admin/repos/repo_edit_remote.mako:62
6267 #: rhodecode/templates/admin/repos/repo_edit_remote.mako:62
6224 #: rhodecode/templates/admin/repos/repo_edit_reviewers.mako:6
6268 #: rhodecode/templates/admin/repos/repo_edit_reviewers.mako:6
6225 #: rhodecode/templates/admin/settings/settings_automation.mako:6
6269 #: rhodecode/templates/admin/settings/settings_automation.mako:6
6270 #: rhodecode/templates/artifacts/artifact_list.mako:24
6226 msgid "This feature is available in RhodeCode EE edition only. Contact {sales_email} to obtain a trial license."
6271 msgid "This feature is available in RhodeCode EE edition only. Contact {sales_email} to obtain a trial license."
6227 msgstr ""
6272 msgstr ""
6228
6273
@@ -6312,38 +6357,39 b' msgstr ""'
6312
6357
6313 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:14
6358 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:14
6314 #: rhodecode/templates/admin/users/user_edit_advanced.mako:13
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 msgid "Repository groups"
6362 msgid "Repository groups"
6317 msgstr ""
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:15
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 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:15
6368 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:15
6323 msgid "Group name"
6369 msgid "Group name"
6324 msgstr ""
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:25
6373 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:25
6328 #: rhodecode/templates/admin/repos/repo_add_base.mako:52
6374 #: rhodecode/templates/admin/repos/repo_add_base.mako:52
6329 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:33
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 #: rhodecode/templates/data_table/_dt_elements.mako:208
6377 #: rhodecode/templates/data_table/_dt_elements.mako:208
6332 #: rhodecode/templates/forks/fork.mako:45
6378 #: rhodecode/templates/forks/fork.mako:41
6333 msgid "Repository group"
6379 msgid "Repository group"
6334 msgstr ""
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:62
6383 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:62
6338 msgid "Plain text format with support of {metatags}"
6384 msgid "Plain text format with support of {metatags}"
6339 msgstr ""
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 #: rhodecode/templates/admin/repos/repo_add_base.mako:89
6388 #: rhodecode/templates/admin/repos/repo_add_base.mako:89
6343 msgid "Copy Parent Group Permissions"
6389 msgid "Copy Parent Group Permissions"
6344 msgstr ""
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 #: rhodecode/templates/admin/repos/repo_add_base.mako:93
6393 #: rhodecode/templates/admin/repos/repo_add_base.mako:93
6348 msgid "Copy permissions from parent repository group."
6394 msgid "Copy permissions from parent repository group."
6349 msgstr ""
6395 msgstr ""
@@ -6353,53 +6399,66 b' msgstr ""'
6353 msgid "%s repository group settings"
6399 msgid "%s repository group settings"
6354 msgstr ""
6400 msgstr ""
6355
6401
6356 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:36
6402 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:32
6357 #: rhodecode/templates/admin/repos/repo_edit.mako:55
6403 #: rhodecode/templates/admin/repos/repo_edit.mako:51
6358 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:35
6404 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:36
6359 #: rhodecode/templates/admin/users/user_edit.mako:41
6405 #: rhodecode/templates/admin/users/user_edit.mako:42
6360 msgid "Advanced"
6406 msgid "Advanced"
6361 msgstr ""
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 msgid "Repository Group ID"
6410 msgid "Repository Group ID"
6365 msgstr ""
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 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:10
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 msgstr ""
6416 msgstr ""
6374
6417
6375 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:11
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 msgid "Top level repositories"
6436 msgid "Top level repositories"
6377 msgstr ""
6437 msgstr ""
6378
6438
6379 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:13
6380 msgid "Children groups"
6381 msgstr ""
6382
6383 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:19
6439 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:19
6384 #, python-format
6440 msgid "Children groups"
6385 msgid "Repository Group: %s"
6441 msgstr ""
6386 msgstr ""
6442
6387
6443 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:25
6388 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:29
6444 msgid "Repository Group Advanced: {}"
6445 msgstr ""
6446
6447 #: rhodecode/templates/admin/repo_groups/repo_group_edit_advanced.mako:35
6389 msgid "Delete repository group"
6448 msgid "Delete repository group"
6390 msgstr ""
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 #, python-format
6452 #, python-format
6394 msgid "Confirm to delete this group: %s"
6453 msgid "Confirm to delete this group: %s"
6395 msgstr ""
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 msgid "Delete this repository group"
6457 msgid "Delete this repository group"
6399 msgstr ""
6458 msgstr ""
6400
6459
6401 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:5
6460 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:5
6402 msgid "Repository Group Permissions"
6461 msgid "Repository Group Permissions: {}"
6403 msgstr ""
6462 msgstr ""
6404
6463
6405 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:15
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 msgstr ""
6535 msgstr ""
6477
6536
6478 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:6
6537 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:6
6479 #, python-format
6538 msgid "Repository Group Settings: {}"
6480 msgid "Settings for Repository Group: %s"
6481 msgstr ""
6539 msgstr ""
6482
6540
6483 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:31
6541 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:31
@@ -6500,11 +6558,11 b' msgstr ""'
6500 msgid "Repository groups administration"
6558 msgid "Repository groups administration"
6501 msgstr ""
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 msgid "repository groups"
6562 msgid "repository groups"
6505 msgstr ""
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 msgid "Number of top level repositories"
6566 msgid "Number of top level repositories"
6509 msgstr ""
6567 msgstr ""
6510
6568
@@ -6521,7 +6579,7 b' msgid "Import Existing Repository ?"'
6521 msgstr ""
6579 msgstr ""
6522
6580
6523 #: rhodecode/templates/admin/repos/repo_add_base.mako:23
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 msgid "Clone from"
6583 msgid "Clone from"
6526 msgstr ""
6584 msgstr ""
6527
6585
@@ -6530,31 +6588,31 b' msgid "Set the type of repository to cre'
6530 msgstr ""
6588 msgstr ""
6531
6589
6532 #: rhodecode/templates/admin/repos/repo_add_base.mako:58
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 #, python-format
6592 #, python-format
6535 msgid "Select my personal group (%(repo_group_name)s)"
6593 msgid "Select my personal group (%(repo_group_name)s)"
6536 msgstr ""
6594 msgstr ""
6537
6595
6538 #: rhodecode/templates/admin/repos/repo_add_base.mako:61
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 msgid "Optionally select a group to put this repository into."
6598 msgid "Optionally select a group to put this repository into."
6541 msgstr ""
6599 msgstr ""
6542
6600
6543 #: rhodecode/templates/admin/repos/repo_add_base.mako:71
6601 #: rhodecode/templates/admin/repos/repo_add_base.mako:71
6544 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:177
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 msgid "Plain text format with support of {metatags}. Add a README file for longer descriptions"
6604 msgid "Plain text format with support of {metatags}. Add a README file for longer descriptions"
6547 msgstr ""
6605 msgstr ""
6548
6606
6549 #: rhodecode/templates/admin/repos/repo_add_base.mako:80
6607 #: rhodecode/templates/admin/repos/repo_add_base.mako:80
6550 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:141
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 msgid "Landing commit"
6610 msgid "Landing commit"
6553 msgstr ""
6611 msgstr ""
6554
6612
6555 #: rhodecode/templates/admin/repos/repo_add_base.mako:84
6613 #: rhodecode/templates/admin/repos/repo_add_base.mako:84
6556 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:146
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 msgid "The default commit for file pages, downloads, full text search index, and README generation."
6616 msgid "The default commit for file pages, downloads, full text search index, and README generation."
6559 msgstr ""
6617 msgstr ""
6560
6618
@@ -6576,51 +6634,50 b' msgstr ""'
6576 msgid "%s repository settings"
6634 msgid "%s repository settings"
6577 msgstr ""
6635 msgstr ""
6578
6636
6579 #: rhodecode/templates/admin/repos/repo_edit.mako:52
6637 #: rhodecode/templates/admin/repos/repo_edit.mako:48
6580 msgid "Branch Permissions"
6638 msgid "Branch Permissions"
6581 msgstr ""
6639 msgstr ""
6582
6640
6583 #: rhodecode/templates/admin/repos/repo_edit.mako:58
6641 #: rhodecode/templates/admin/repos/repo_edit.mako:54
6584 msgid "VCS"
6642 msgid "VCS"
6585 msgstr ""
6643 msgstr ""
6586
6644
6587 #: rhodecode/templates/admin/repos/repo_edit.mako:61
6645 #: rhodecode/templates/admin/repos/repo_edit.mako:57
6588 msgid "Extra Fields"
6646 msgid "Extra Fields"
6589 msgstr ""
6647 msgstr ""
6590
6648
6591 #: rhodecode/templates/admin/repos/repo_edit.mako:64
6649 #: rhodecode/templates/admin/repos/repo_edit.mako:60
6592 msgid "Issue Tracker"
6650 msgid "Issue Tracker"
6593 msgstr ""
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 #: rhodecode/templates/admin/repos/repo_edit.mako:67
6659 #: rhodecode/templates/admin/repos/repo_edit.mako:67
6596 #: rhodecode/templates/admin/users/user_edit.mako:48
6660 msgid "Remote sync"
6597 #: rhodecode/templates/admin/users/user_edit_caches.mako:5
6598 msgid "Caches"
6599 msgstr ""
6661 msgstr ""
6600
6662
6601 #: rhodecode/templates/admin/repos/repo_edit.mako:71
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 msgid "Statistics"
6664 msgid "Statistics"
6608 msgstr ""
6665 msgstr ""
6609
6666
6667 #: rhodecode/templates/admin/repos/repo_edit.mako:78
6668 msgid "Reviewer Rules"
6669 msgstr ""
6670
6610 #: rhodecode/templates/admin/repos/repo_edit.mako:82
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 msgid "Automation"
6672 msgid "Automation"
6616 msgstr ""
6673 msgstr ""
6617
6674
6618 #: rhodecode/templates/admin/repos/repo_edit.mako:89
6675 #: rhodecode/templates/admin/repos/repo_edit.mako:85
6619 #: rhodecode/templates/admin/repos/repo_edit_maintenance.mako:3
6676 #: rhodecode/templates/admin/repos/repo_edit_maintenance.mako:3
6620 msgid "Maintenance"
6677 msgid "Maintenance"
6621 msgstr ""
6678 msgstr ""
6622
6679
6623 #: rhodecode/templates/admin/repos/repo_edit.mako:92
6680 #: rhodecode/templates/admin/repos/repo_edit.mako:88
6624 msgid "Strip"
6681 msgid "Strip"
6625 msgstr ""
6682 msgstr ""
6626
6683
@@ -6628,180 +6685,180 b' msgstr ""'
6628 msgid "Repository ID"
6685 msgid "Repository ID"
6629 msgstr ""
6686 msgstr ""
6630
6687
6631 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:8
6632 msgid "Updated on"
6633 msgstr ""
6634
6635 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:9
6688 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:9
6636 msgid "Cached Commit id"
6689 msgid "Cached Commit id"
6637 msgstr ""
6690 msgstr ""
6638
6691
6639 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:10
6640 msgid "Attached scoped tokens"
6641 msgstr ""
6642
6643 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:11
6692 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:11
6644 msgid "Pull requests source"
6693 msgid "Attached scoped tokens"
6645 msgstr ""
6694 msgstr ""
6646
6695
6647 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:12
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 msgid "Pull requests target"
6701 msgid "Pull requests target"
6649 msgstr ""
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 #, python-format
6709 #, python-format
6653 msgid "Repository: %s"
6710 msgid "Repository: %s"
6654 msgstr ""
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 msgid "Fork Reference"
6714 msgid "Fork Reference"
6658 msgstr ""
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 #, python-format
6718 #, python-format
6662 msgid "This repository is a fork of %(repo_link)s"
6719 msgid "This repository is a fork of %(repo_link)s"
6663 msgstr ""
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 msgid "Set"
6723 msgid "Set"
6667 msgstr ""
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 msgid "Manually set this repository as a fork of another from the list"
6727 msgid "Manually set this repository as a fork of another from the list"
6671 msgstr ""
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 msgid "Public Journal Visibility"
6731 msgid "Public Journal Visibility"
6675 msgstr ""
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 msgid "Remove from Public Journal"
6735 msgid "Remove from Public Journal"
6679 msgstr ""
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 msgid "Add to Public Journal"
6739 msgid "Add to Public Journal"
6683 msgstr ""
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 msgid "All actions made on this repository will be visible to everyone following the public journal."
6743 msgid "All actions made on this repository will be visible to everyone following the public journal."
6687 msgstr ""
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 msgid "Locking state"
6747 msgid "Locking state"
6691 msgstr ""
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 msgid "This Repository is not currently locked."
6751 msgid "This Repository is not currently locked."
6695 msgstr ""
6752 msgstr ""
6696
6753
6697 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:93
6698 msgid "Confirm to unlock repository."
6699 msgstr ""
6700
6701 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:95
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 msgid "Unlock repository"
6759 msgid "Unlock repository"
6703 msgstr ""
6760 msgstr ""
6704
6761
6705 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:100
6706 msgid "Confirm to lock repository."
6707 msgstr ""
6708
6709 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:102
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 msgid "Lock repository"
6767 msgid "Lock repository"
6711 msgstr ""
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 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."
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 msgstr ""
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 msgid "Hooks"
6775 msgid "Hooks"
6719 msgstr ""
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 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:124
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 msgid "Current version"
6787 msgid "Current version"
6731 msgstr ""
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 msgid "PRE HOOK"
6791 msgid "PRE HOOK"
6735 msgstr ""
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 msgid "POST HOOK"
6795 msgid "POST HOOK"
6739 msgstr ""
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 msgid "Unable to read hook information from VCS Server"
6799 msgid "Unable to read hook information from VCS Server"
6743 msgstr ""
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 msgid "Confirm to reinstall hooks for this repository."
6803 msgid "Confirm to reinstall hooks for this repository."
6747 msgstr ""
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 msgid "Update Hooks"
6807 msgid "Update Hooks"
6751 msgstr ""
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 msgid "Archive repository"
6811 msgid "Archive repository"
6755 msgstr ""
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 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:163
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 msgid "Archive this repository"
6820 msgid "Archive this repository"
6764 msgstr ""
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 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. "
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 msgstr ""
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 msgid "Delete repository"
6828 msgid "Delete repository"
6772 msgstr ""
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 msgid "Detach forks"
6832 msgid "Detach forks"
6776 msgstr ""
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 msgid "Delete forks"
6836 msgid "Delete forks"
6780 msgstr ""
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 msgid "Consider to archive this repository instead."
6840 msgid "Consider to archive this repository instead."
6784 msgstr ""
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 #: rhodecode/templates/data_table/_dt_elements.mako:173
6844 #: rhodecode/templates/data_table/_dt_elements.mako:173
6788 #, python-format
6845 #, python-format
6789 msgid "Confirm to delete this repository: %s"
6846 msgid "Confirm to delete this repository: %s"
6790 msgstr ""
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 msgid "Delete this repository"
6850 msgid "Delete this repository"
6794 msgstr ""
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 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."
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 msgstr ""
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 msgid "Change repository"
6858 msgid "Change repository"
6802 msgstr ""
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 msgid "Pick repository"
6862 msgid "Pick repository"
6806 msgstr ""
6863 msgstr ""
6807
6864
@@ -7133,7 +7190,7 b' msgid "Private repository"'
7133 msgstr ""
7190 msgstr ""
7134
7191
7135 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:197
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 msgid "Enable statistics"
7194 msgid "Enable statistics"
7138 msgstr ""
7195 msgstr ""
7139
7196
@@ -7142,7 +7199,7 b' msgid "Enable statistics window on summa'
7142 msgstr ""
7199 msgstr ""
7143
7200
7144 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:207
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 msgid "Enable downloads"
7203 msgid "Enable downloads"
7147 msgstr ""
7204 msgstr ""
7148
7205
@@ -7250,18 +7307,14 b' msgstr ""'
7250 msgid "Repositories administration"
7307 msgid "Repositories administration"
7251 msgstr ""
7308 msgstr ""
7252
7309
7253 #: rhodecode/templates/admin/repos/repos.mako:13
7310 #: rhodecode/templates/admin/repos/repos.mako:26
7254 msgid "repositories"
7311 msgid "repositories"
7255 msgstr ""
7312 msgstr ""
7256
7313
7257 #: rhodecode/templates/admin/repos/repos.mako:67
7314 #: rhodecode/templates/admin/repos/repos.mako:71
7258 msgid "State"
7315 msgid "State"
7259 msgstr ""
7316 msgstr ""
7260
7317
7261 #: rhodecode/templates/admin/settings/settings.mako:5
7262 msgid "Settings administration"
7263 msgstr ""
7264
7265 #: rhodecode/templates/admin/settings/settings_automation.mako:3
7318 #: rhodecode/templates/admin/settings/settings_automation.mako:3
7266 msgid "Admin Automation"
7319 msgid "Admin Automation"
7267 msgstr ""
7320 msgstr ""
@@ -7351,22 +7404,26 b' msgid "There is {} stored exception."'
7351 msgstr ""
7404 msgstr ""
7352
7405
7353 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:9
7406 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:9
7354 msgid "There are {} stored exceptions."
7407 msgid "There are total {} stored exceptions."
7355 msgstr ""
7408 msgstr ""
7356
7409
7357 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:11
7410 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:12
7358 msgid "Store directory"
7411 msgid "Store directory"
7359 msgstr ""
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 msgid "Confirm to delete all exceptions"
7415 msgid "Confirm to delete all exceptions"
7363 msgstr ""
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 msgid "Delete All"
7423 msgid "Delete All"
7367 msgstr ""
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 msgid "Exceptions Tracker - Showing the last {} Exceptions"
7427 msgid "Exceptions Tracker - Showing the last {} Exceptions"
7371 msgstr ""
7428 msgstr ""
7372
7429
@@ -7810,16 +7867,12 b' msgstr ""'
7810
7867
7811 #: rhodecode/templates/admin/user_groups/user_group_add.mako:13
7868 #: rhodecode/templates/admin/user_groups/user_group_add.mako:13
7812 #: rhodecode/templates/admin/users/user_edit_advanced.mako:14
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 msgid "User groups"
7872 msgid "User groups"
7815 msgstr ""
7873 msgstr ""
7816
7874
7817 #: rhodecode/templates/admin/user_groups/user_group_add.mako:15
7875 #: rhodecode/templates/admin/user_groups/user_group_add.mako:46
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
7823 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:46
7876 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:46
7824 msgid "Short, optional description for this user group."
7877 msgid "Short, optional description for this user group."
7825 msgstr ""
7878 msgstr ""
@@ -7829,13 +7882,13 b' msgstr ""'
7829 msgid "%s user group settings"
7882 msgid "%s user group settings"
7830 msgstr ""
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 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:37
7885 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:37
7838 #: rhodecode/templates/admin/users/user_edit.mako:43
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 msgid "Permissions summary"
7892 msgid "Permissions summary"
7840 msgstr ""
7893 msgstr ""
7841
7894
@@ -7844,9 +7897,9 b' msgid "User Group ID"'
7844 msgstr ""
7897 msgstr ""
7845
7898
7846 #: rhodecode/templates/admin/user_groups/user_group_edit_advanced.mako:9
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 #: rhodecode/templates/debug_style/form-elements.html:509
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 msgid "Members"
7903 msgid "Members"
7851 msgstr ""
7904 msgstr ""
7852
7905
@@ -7927,7 +7980,7 b' msgid "Add members"'
7927 msgstr ""
7980 msgstr ""
7928
7981
7929 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:96
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 msgid "No members yet"
7984 msgid "No members yet"
7932 msgstr ""
7985 msgstr ""
7933
7986
@@ -7936,7 +7989,7 b' msgstr ""'
7936 msgid "User groups administration"
7989 msgid "User groups administration"
7937 msgstr ""
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 msgid "Sync"
7993 msgid "Sync"
7941 msgstr ""
7994 msgstr ""
7942
7995
@@ -7946,12 +7999,12 b' msgstr ""'
7946
7999
7947 #: rhodecode/templates/admin/users/user_add.mako:13
8000 #: rhodecode/templates/admin/users/user_add.mako:13
7948 #: rhodecode/templates/admin/users/user_edit.mako:14
8001 #: rhodecode/templates/admin/users/user_edit.mako:14
7949 #: rhodecode/templates/base/base.mako:80
8002 #: rhodecode/templates/base/base.mako:105
7950 msgid "Users"
8003 msgid "Users"
7951 msgstr ""
8004 msgstr ""
7952
8005
7953 #: rhodecode/templates/admin/users/user_add.mako:15
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 msgid "Add User"
8008 msgid "Add User"
7956 msgstr ""
8009 msgstr ""
7957
8010
@@ -7994,25 +8047,25 b' msgstr ""'
7994 msgid "%s user settings"
8047 msgid "%s user settings"
7995 msgstr ""
8048 msgstr ""
7996
8049
7997 #: rhodecode/templates/admin/users/user_edit.mako:19
8050 #: rhodecode/templates/admin/users/user_edit.mako:31
7998 msgid "This user is set as disabled"
8051 msgid "This user is set as disabled"
7999 msgstr ""
8052 msgstr ""
8000
8053
8001 #: rhodecode/templates/admin/users/user_edit.mako:38
8054 #: rhodecode/templates/admin/users/user_edit.mako:39
8002 #: rhodecode/templates/admin/users/user_edit_profile.mako:5
8055 #: rhodecode/templates/admin/users/user_edit_profile.mako:5
8003 #: rhodecode/templates/users/user_profile.mako:5
8056 #: rhodecode/templates/users/user_profile.mako:5
8004 msgid "User Profile"
8057 msgid "User Profile"
8005 msgstr ""
8058 msgstr ""
8006
8059
8007 #: rhodecode/templates/admin/users/user_edit.mako:39
8060 #: rhodecode/templates/admin/users/user_edit.mako:40
8008 msgid "Auth tokens"
8061 msgid "Auth tokens"
8009 msgstr ""
8062 msgstr ""
8010
8063
8011 #: rhodecode/templates/admin/users/user_edit.mako:45
8012 msgid "Ip Whitelist"
8013 msgstr ""
8014
8015 #: rhodecode/templates/admin/users/user_edit.mako:46
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 msgid "User Groups Management"
8069 msgid "User Groups Management"
8017 msgstr ""
8070 msgstr ""
8018
8071
@@ -8029,8 +8082,8 b' msgid "Last login"'
8029 msgstr ""
8082 msgstr ""
8030
8083
8031 #: rhodecode/templates/admin/users/user_edit_advanced.mako:10
8084 #: rhodecode/templates/admin/users/user_edit_advanced.mako:10
8032 #: rhodecode/templates/admin/users/users.mako:80
8085 #: rhodecode/templates/admin/users/users.mako:83
8033 #: rhodecode/templates/forks/forks.mako:69
8086 #: rhodecode/templates/forks/forks.mako:67
8034 msgid "Last activity"
8087 msgid "Last activity"
8035 msgstr ""
8088 msgstr ""
8036
8089
@@ -8180,9 +8233,9 b' msgstr ""'
8180
8233
8181 #: rhodecode/templates/admin/users/user_edit_ips.mako:64
8234 #: rhodecode/templates/admin/users/user_edit_ips.mako:64
8182 msgid ""
8235 msgid ""
8183 "Enter comma separated list of ip addresses like 127.0.0.1,\n"
8236 "Enter comma separated list of ip addresses like 10.0.0.1,10.0.0.2.\n"
8184 "or use a ip address with a mask 127.0.0.1/24, to create a network range.\n"
8237 "Use a ip address with a mask 127.0.0.1/24, to create a network match pattern.\n"
8185 "To specify multiple address range use 127.0.0.1-127.0.0.10 syntax"
8238 "To specify multiple entries on an address range use 127.0.0.1-127.0.0.10 syntax"
8186 msgstr ""
8239 msgstr ""
8187
8240
8188 #: rhodecode/templates/admin/users/user_edit_profile.mako:17
8241 #: rhodecode/templates/admin/users/user_edit_profile.mako:17
@@ -8194,35 +8247,35 b' msgstr ""'
8194 msgid "Change the avatar at"
8247 msgid "Change the avatar at"
8195 msgstr ""
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 msgid "New Password"
8251 msgid "New Password"
8199 msgstr ""
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 msgid "New Password Confirmation"
8255 msgid "New Password Confirmation"
8203 msgstr ""
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 msgid "Super Admin"
8259 msgid "Super Admin"
8207 msgstr ""
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 msgid "Authentication type"
8263 msgid "Authentication type"
8211 msgstr ""
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 msgid "User was created using an external source. He is bound to authentication using this method."
8267 msgid "User was created using an external source. He is bound to authentication using this method."
8215 msgstr ""
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 msgid "Name in Source of Record"
8271 msgid "Name in Source of Record"
8219 msgstr ""
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 msgid "Language"
8275 msgid "Language"
8223 msgstr ""
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 #, python-format
8279 #, python-format
8227 msgid "User interface language. Help translate %(rc_link)s into your language."
8280 msgid "User interface language. Help translate %(rc_link)s into your language."
8228 msgstr ""
8281 msgstr ""
@@ -8268,203 +8321,212 b' msgstr ""'
8268 msgid "Users administration"
8321 msgid "Users administration"
8269 msgstr ""
8322 msgstr ""
8270
8323
8271 #: rhodecode/templates/admin/users/users.mako:84
8324 #: rhodecode/templates/admin/users/users.mako:87
8272 #: rhodecode/templates/base/perms_summary.mako:145
8325 #: rhodecode/templates/base/perms_summary.mako:145
8273 msgid "Super admin"
8326 msgid "Super admin"
8274 msgstr ""
8327 msgstr ""
8275
8328
8276 #: rhodecode/templates/admin/users/users.mako:86
8329 #: rhodecode/templates/admin/users/users.mako:89
8277 msgid "Auth type"
8330 msgid "Auth type"
8278 msgstr ""
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 msgid "RhodeCode instance id: {}"
8338 msgid "RhodeCode instance id: {}"
8282 msgstr ""
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 msgid "Authentication"
8350 msgid "Authentication"
8286 msgstr ""
8351 msgstr ""
8287
8352
8288 #: rhodecode/templates/base/base.mako:85
8353 #: rhodecode/templates/base/base.mako:110
8289 msgid "Defaults"
8354 msgid "Defaults"
8290 msgstr ""
8355 msgstr ""
8291
8356
8292 #: rhodecode/templates/base/base.mako:103
8357 #: rhodecode/templates/base/base.mako:150
8293 #: rhodecode/templates/files/files_pjax.mako:24
8358 #: rhodecode/templates/files/files_source_header.mako:53
8294 #: rhodecode/templates/summary/components.mako:42
8359 #: rhodecode/templates/files/files_tree_header.mako:40
8360 #: rhodecode/templates/summary/components.mako:250
8295 msgid "Show More"
8361 msgid "Show More"
8296 msgstr ""
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 msgid "Fork of"
8374 msgid "Fork of"
8300 msgstr ""
8375 msgstr ""
8301
8376
8302 #: rhodecode/templates/base/base.mako:207
8377 #: rhodecode/templates/base/base.mako:257
8303 #, python-format
8378 #, python-format
8304 msgid "Repository locked by %(user)s"
8379 msgid "Repository locked by %(user)s"
8305 msgstr ""
8380 msgstr ""
8306
8381
8307 #: rhodecode/templates/base/base.mako:212
8382 #: rhodecode/templates/base/base.mako:262
8308 msgid "Repository not locked. Pull repository to lock it."
8383 msgid "Repository not locked. Pull repository to lock it."
8309 msgstr ""
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 #: rhodecode/templates/data_table/_dt_elements.mako:46
8391 #: rhodecode/templates/data_table/_dt_elements.mako:46
8313 #: rhodecode/templates/data_table/_dt_elements.mako:47
8392 #: rhodecode/templates/data_table/_dt_elements.mako:47
8314 #: rhodecode/templates/data_table/_dt_elements.mako:198
8393 #: rhodecode/templates/data_table/_dt_elements.mako:198
8315 #: rhodecode/templates/pullrequests/pullrequest.mako:36
8394 #: rhodecode/templates/pullrequests/pullrequest.mako:30
8316 msgid "Summary"
8395 msgid "Summary"
8317 msgstr ""
8396 msgstr ""
8318
8397
8319 #: rhodecode/templates/base/base.mako:231
8398 #: rhodecode/templates/base/base.mako:291
8320 #: rhodecode/templates/data_table/_dt_elements.mako:51
8399 #: rhodecode/templates/data_table/_dt_elements.mako:51
8321 #: rhodecode/templates/data_table/_dt_elements.mako:52
8400 #: rhodecode/templates/data_table/_dt_elements.mako:52
8322 msgid "Changelog"
8401 #: rhodecode/templates/files/file_authors_box.mako:28
8323 msgstr ""
8402 #: rhodecode/templates/search/search.mako:85
8324
8403 #: rhodecode/templates/summary/components.mako:119
8325 #: rhodecode/templates/base/base.mako:232
8404 #: rhodecode/templates/summary/components.mako:127
8405 msgid "Commits"
8406 msgstr ""
8407
8408 #: rhodecode/templates/base/base.mako:292
8326 #: rhodecode/templates/data_table/_dt_elements.mako:56
8409 #: rhodecode/templates/data_table/_dt_elements.mako:56
8327 #: rhodecode/templates/data_table/_dt_elements.mako:57
8410 #: rhodecode/templates/data_table/_dt_elements.mako:57
8328 #: rhodecode/templates/files/files.mako:15
8411 #: rhodecode/templates/files/files.mako:15
8329 #: rhodecode/templates/search/search.mako:90
8412 #: rhodecode/templates/search/search.mako:85
8330 msgid "Files"
8413 msgid "Files"
8331 msgstr ""
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 #: rhodecode/templates/base/base.mako:293
8416 #: rhodecode/templates/base/base.mako:293
8386 msgid "This repository has been archived. It is now read-only."
8417 #: rhodecode/templates/bookmarks/bookmarks.mako:66
8387 msgstr ""
8418 #: rhodecode/templates/branches/branches.mako:65
8388
8419 #: rhodecode/templates/tags/tags.mako:66
8389 #: rhodecode/templates/base/base.mako:338
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 msgid "Group Home"
8464 msgid "Group Home"
8391 msgstr ""
8465 msgstr ""
8392
8466
8393 #: rhodecode/templates/base/base.mako:347
8467 #: rhodecode/templates/base/base.mako:395
8394 msgid "You have admin right to this group, and can edit it"
8468 msgid "You have admin right to this group, and can edit it"
8395 msgstr ""
8469 msgstr ""
8396
8470
8397 #: rhodecode/templates/base/base.mako:347
8471 #: rhodecode/templates/base/base.mako:395
8398 msgid "Group Settings"
8472 msgid "Group Settings"
8399 msgstr ""
8473 msgstr ""
8400
8474
8401 #: rhodecode/templates/base/base.mako:353
8475 #: rhodecode/templates/base/base.mako:439
8402 msgid "Add Parent Group"
8403 msgstr ""
8404
8405 #: rhodecode/templates/base/base.mako:374
8406 msgid "Sign in"
8476 msgid "Sign in"
8407 msgstr ""
8477 msgstr ""
8408
8478
8409 #: rhodecode/templates/base/base.mako:399
8479 #: rhodecode/templates/base/base.mako:464
8410 msgid "My personal group"
8480 msgid "My personal group"
8411 msgstr ""
8481 msgstr ""
8412
8482
8413 #: rhodecode/templates/base/base.mako:406
8483 #: rhodecode/templates/base/base.mako:471
8414 msgid "Manage"
8484 msgid "Manage"
8415 msgstr ""
8485 msgstr ""
8416
8486
8417 #: rhodecode/templates/base/base.mako:411
8487 #: rhodecode/templates/base/base.mako:476
8418 msgid "No Bookmarks yet."
8488 msgid "No Bookmarks yet."
8419 msgstr ""
8489 msgstr ""
8420
8490
8421 #: rhodecode/templates/base/base.mako:449
8491 #: rhodecode/templates/base/base.mako:514
8422 msgid "Sign Out"
8492 msgid "Sign Out"
8423 msgstr ""
8493 msgstr ""
8424
8494
8425 #: rhodecode/templates/base/base.mako:487
8495 #: rhodecode/templates/base/base.mako:575
8426 msgid "search / go to..."
8496 msgid "search / go to..."
8427 msgstr ""
8497 msgstr ""
8428
8498
8429 #: rhodecode/templates/base/base.mako:512
8499 #: rhodecode/templates/base/base.mako:618
8430 msgid "Show activity journal"
8500 msgid "Show activity journal"
8431 msgstr ""
8501 msgstr ""
8432
8502
8433 #: rhodecode/templates/base/base.mako:513
8503 #: rhodecode/templates/base/base.mako:619
8434 #: rhodecode/templates/journal/journal.mako:4
8504 #: rhodecode/templates/journal/journal.mako:4
8435 #: rhodecode/templates/journal/journal.mako:14
8505 #: rhodecode/templates/journal/journal.mako:14
8436 msgid "Journal"
8506 msgid "Journal"
8437 msgstr ""
8507 msgstr ""
8438
8508
8439 #: rhodecode/templates/base/base.mako:518
8509 #: rhodecode/templates/base/base.mako:624
8440 msgid "Show Public activity journal"
8510 msgid "Show Public activity journal"
8441 msgstr ""
8511 msgstr ""
8442
8512
8443 #: rhodecode/templates/base/base.mako:519
8513 #: rhodecode/templates/base/base.mako:625
8444 msgid "Public journal"
8514 msgid "Public journal"
8445 msgstr ""
8515 msgstr ""
8446
8516
8447 #: rhodecode/templates/base/base.mako:524
8517 #: rhodecode/templates/base/base.mako:631
8448 msgid "Show Gists"
8518 msgid "Show Gists"
8449 msgstr ""
8519 msgstr ""
8450
8520
8451 #: rhodecode/templates/base/base.mako:525
8521 #: rhodecode/templates/base/base.mako:632
8452 msgid "Gists"
8522 msgid "Gists"
8453 msgstr ""
8523 msgstr ""
8454
8524
8455 #: rhodecode/templates/base/base.mako:529
8525 #: rhodecode/templates/base/base.mako:638
8456 msgid "Search in repositories you have access to"
8457 msgstr ""
8458
8459 #: rhodecode/templates/base/base.mako:535
8460 msgid "Admin settings"
8526 msgid "Admin settings"
8461 msgstr ""
8527 msgstr ""
8462
8528
8463 #: rhodecode/templates/base/base.mako:542
8529 #: rhodecode/templates/base/base.mako:649
8464 msgid "Delegated Admin settings"
8465 msgstr ""
8466
8467 #: rhodecode/templates/base/base.mako:555
8468 #: rhodecode/templates/debug_style/alerts.html:5
8530 #: rhodecode/templates/debug_style/alerts.html:5
8469 #: rhodecode/templates/debug_style/buttons.html:5
8531 #: rhodecode/templates/debug_style/buttons.html:5
8470 #: rhodecode/templates/debug_style/code-block.html:6
8532 #: rhodecode/templates/debug_style/code-block.html:6
@@ -8486,15 +8548,15 b' msgstr ""'
8486 msgid "Style"
8548 msgid "Style"
8487 msgstr ""
8549 msgstr ""
8488
8550
8489 #: rhodecode/templates/base/base.mako:556
8551 #: rhodecode/templates/base/base.mako:650
8490 msgid "[Style]"
8552 msgid "[Style]"
8491 msgstr ""
8553 msgstr ""
8492
8554
8493 #: rhodecode/templates/base/base.mako:748
8555 #: rhodecode/templates/base/base.mako:907
8494 msgid "Keyboard shortcuts"
8556 msgid "Keyboard shortcuts"
8495 msgstr ""
8557 msgstr ""
8496
8558
8497 #: rhodecode/templates/base/base.mako:756
8559 #: rhodecode/templates/base/base.mako:915
8498 msgid "Site-wide shortcuts"
8560 msgid "Site-wide shortcuts"
8499 msgstr ""
8561 msgstr ""
8500
8562
@@ -8592,11 +8654,9 b' msgstr ""'
8592 #: rhodecode/templates/base/issue_tracker_settings.mako:191
8654 #: rhodecode/templates/base/issue_tracker_settings.mako:191
8593 #: rhodecode/templates/changeset/changeset_file_comment.mako:276
8655 #: rhodecode/templates/changeset/changeset_file_comment.mako:276
8594 #: rhodecode/templates/changeset/changeset_file_comment.mako:326
8656 #: rhodecode/templates/changeset/changeset_file_comment.mako:326
8595 #: rhodecode/templates/data_table/_dt_elements.mako:390
8657 #: rhodecode/templates/data_table/_dt_elements.mako:414
8596 #: rhodecode/templates/files/files_add.mako:84
8658 #: rhodecode/templates/files/files_add.mako:61
8597 #: rhodecode/templates/files/files_add.mako:230
8659 #: rhodecode/templates/files/files_edit.mako:62
8598 #: rhodecode/templates/files/files_edit.mako:85
8599 #: rhodecode/templates/files/files_edit.mako:189
8600 msgid "Preview"
8660 msgid "Preview"
8601 msgstr ""
8661 msgstr ""
8602
8662
@@ -8619,9 +8679,9 b' msgid "none"'
8619 msgstr ""
8679 msgstr ""
8620
8680
8621 #: rhodecode/templates/base/perms_summary.mako:37
8681 #: rhodecode/templates/base/perms_summary.mako:37
8622 #: rhodecode/templates/changelog/changelog_elements.mako:104
8682 #: rhodecode/templates/changeset/changeset.mako:107
8623 #: rhodecode/templates/changeset/changeset.mako:109
8683 #: rhodecode/templates/commits/changelog_elements.mako:102
8624 #: rhodecode/templates/files/base.mako:4
8684 #: rhodecode/templates/files/base.mako:11
8625 msgid "merge"
8685 msgid "merge"
8626 msgstr ""
8686 msgstr ""
8627
8687
@@ -8709,7 +8769,7 b' msgstr ""'
8709 msgid "No matching permission defined"
8769 msgid "No matching permission defined"
8710 msgstr ""
8770 msgstr ""
8711
8771
8712 #: rhodecode/templates/base/root.mako:148
8772 #: rhodecode/templates/base/root.mako:149
8713 msgid "Please enable JavaScript to use RhodeCode Enterprise"
8773 msgid "Please enable JavaScript to use RhodeCode Enterprise"
8714 msgstr ""
8774 msgstr ""
8715
8775
@@ -8806,15 +8866,15 b' msgid "Requires hgsubversion library to '
8806 msgstr ""
8866 msgstr ""
8807
8867
8808 #: rhodecode/templates/base/vcs_settings.mako:136
8868 #: rhodecode/templates/base/vcs_settings.mako:136
8809 msgid "Enable evolve extension"
8869 msgid "Enable Evolve and Topic extension"
8810 msgstr ""
8870 msgstr ""
8811
8871
8812 #: rhodecode/templates/base/vcs_settings.mako:140
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 msgstr ""
8874 msgstr ""
8815
8875
8816 #: rhodecode/templates/base/vcs_settings.mako:142
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 msgstr ""
8878 msgstr ""
8819
8879
8820 #: rhodecode/templates/base/vcs_settings.mako:153
8880 #: rhodecode/templates/base/vcs_settings.mako:153
@@ -8926,19 +8986,19 b' msgstr ""'
8926 msgid "%s Bookmarks"
8986 msgid "%s Bookmarks"
8927 msgstr ""
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 msgid "bookmarks"
8994 msgid "bookmarks"
8931 msgstr ""
8995 msgstr ""
8932
8996
8933 #: rhodecode/templates/bookmarks/bookmarks.mako:31
8934 msgid "Compare Selected Bookmarks"
8935 msgstr ""
8936
8937 #: rhodecode/templates/bookmarks/bookmarks_data.mako:13
8997 #: rhodecode/templates/bookmarks/bookmarks_data.mako:13
8938 #: rhodecode/templates/changelog/changelog_elements.mako:118
8998 #: rhodecode/templates/changeset/changeset.mako:113
8939 #: rhodecode/templates/changeset/changeset.mako:115
8999 #: rhodecode/templates/commits/changelog_elements.mako:116
8940 #: rhodecode/templates/files/base.mako:10
9000 #: rhodecode/templates/files/base.mako:17
8941 #: rhodecode/templates/summary/summary_commits.mako:71
9001 #: rhodecode/templates/summary/summary_commits.mako:64
8942 #, python-format
9002 #, python-format
8943 msgid "Bookmark %s"
9003 msgid "Bookmark %s"
8944 msgstr ""
9004 msgstr ""
@@ -8948,229 +9008,124 b' msgstr ""'
8948 msgid "%s Branches"
9008 msgid "%s Branches"
8949 msgstr ""
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 msgid "branches"
9016 msgid "branches"
8953 msgstr ""
9017 msgstr ""
8954
9018
8955 #: rhodecode/templates/branches/branches.mako:31
8956 msgid "Compare Selected Branches"
8957 msgstr ""
8958
8959 #: rhodecode/templates/branches/branches_data.mako:12
9019 #: rhodecode/templates/branches/branches_data.mako:12
8960 #: rhodecode/templates/changelog/changelog_elements.mako:110
9020 #: rhodecode/templates/changeset/changeset.mako:126
8961 #: rhodecode/templates/changeset/changeset.mako:128
9021 #: rhodecode/templates/commits/changelog_elements.mako:108
8962 #: rhodecode/templates/files/base.mako:23
9022 #: rhodecode/templates/files/base.mako:36
8963 #: rhodecode/templates/summary/summary_commits.mako:85
9023 #: rhodecode/templates/summary/summary_commits.mako:78
8964 #, python-format
9024 #, python-format
8965 msgid "Branch %s"
9025 msgid "Branch %s"
8966 msgstr ""
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 #: rhodecode/templates/changeset/changeset.mako:7
9028 #: rhodecode/templates/changeset/changeset.mako:7
9104 #, python-format
9029 #, python-format
9105 msgid "%s Commit"
9030 msgid "%s Commit"
9106 msgstr ""
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 msgid "Parent Commit"
9057 msgid "Parent Commit"
9110 msgstr ""
9058 msgstr ""
9111
9059
9112 #: rhodecode/templates/changeset/changeset.mako:65
9060 #: rhodecode/templates/changeset/changeset.mako:60
9113 msgid "parent"
9061 msgid "parent"
9114 msgstr ""
9062 msgstr ""
9115
9063
9116 #: rhodecode/templates/changeset/changeset.mako:69
9064 #: rhodecode/templates/changeset/changeset.mako:64
9117 msgid "Child Commit"
9065 msgid "Child Commit"
9118 msgstr ""
9066 msgstr ""
9119
9067
9120 #: rhodecode/templates/changeset/changeset.mako:69
9068 #: rhodecode/templates/changeset/changeset.mako:64
9121 msgid "child"
9069 msgid "child"
9122 msgstr ""
9070 msgstr ""
9123
9071
9124 #: rhodecode/templates/changeset/changeset.mako:81
9072 #: rhodecode/templates/changeset/changeset.mako:80
9125 msgid "Expand"
9073 msgid "Expand"
9126 msgstr ""
9074 msgstr ""
9127
9075
9128 #: rhodecode/templates/changeset/changeset.mako:89
9076 #: rhodecode/templates/changeset/changeset.mako:89
9129 #: rhodecode/templates/changeset/changeset.mako:95
9077 #: rhodecode/templates/changeset/changeset.mako:94
9130 #: rhodecode/templates/changeset/changeset_file_comment.mako:83
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 msgid "Commit status"
9080 msgid "Commit status"
9133 msgstr ""
9081 msgstr ""
9134
9082
9135 #: rhodecode/templates/changeset/changeset.mako:102
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 msgid "References"
9084 msgid "References"
9139 msgstr ""
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 msgid "Diff options"
9097 msgid "Diff options"
9143 msgstr ""
9098 msgstr ""
9144
9099
9145 #: rhodecode/templates/changeset/changeset.mako:142
9100 #: rhodecode/templates/changeset/changeset.mako:140
9146 msgid "Raw diff"
9101 msgid "Raw diff"
9147 msgstr ""
9102 msgstr ""
9148
9103
9149 #: rhodecode/templates/changeset/changeset.mako:143
9104 #: rhodecode/templates/changeset/changeset.mako:141
9150 msgid "Raw Diff"
9105 msgid "Raw Diff"
9151 msgstr ""
9106 msgstr ""
9152
9107
9153 #: rhodecode/templates/changeset/changeset.mako:146
9108 #: rhodecode/templates/changeset/changeset.mako:144
9154 msgid "Patch diff"
9109 msgid "Patch diff"
9155 msgstr ""
9110 msgstr ""
9156
9111
9157 #: rhodecode/templates/changeset/changeset.mako:147
9112 #: rhodecode/templates/changeset/changeset.mako:145
9158 msgid "Patch Diff"
9113 msgid "Patch Diff"
9159 msgstr ""
9114 msgstr ""
9160
9115
9161 #: rhodecode/templates/changeset/changeset.mako:150
9116 #: rhodecode/templates/changeset/changeset.mako:148
9162 msgid "Download diff"
9117 msgid "Download diff"
9163 msgstr ""
9118 msgstr ""
9164
9119
9165 #: rhodecode/templates/changeset/changeset.mako:151
9120 #: rhodecode/templates/changeset/changeset.mako:149
9166 msgid "Download Diff"
9121 msgid "Download Diff"
9167 msgstr ""
9122 msgstr ""
9168
9123
9169 #: rhodecode/templates/changeset/changeset.mako:179
9124 #: rhodecode/templates/changeset/changeset.mako:178
9170 msgid "Unresolved TODOs"
9125 msgid "Unresolved TODOs"
9171 msgstr ""
9126 msgstr ""
9172
9127
9173 #: rhodecode/templates/changeset/changeset.mako:188
9128 #: rhodecode/templates/changeset/changeset.mako:186
9174 msgid "There are no unresolved TODOs"
9129 msgid "There are no unresolved TODOs"
9175 msgstr ""
9130 msgstr ""
9176
9131
@@ -9269,16 +9224,16 b' msgstr ""'
9269
9224
9270 #: rhodecode/templates/changeset/changeset_file_comment.mako:370
9225 #: rhodecode/templates/changeset/changeset_file_comment.mako:370
9271 #: rhodecode/templates/pullrequests/pullrequest_show.mako:16
9226 #: rhodecode/templates/pullrequests/pullrequest_show.mako:16
9272 #: rhodecode/templates/pullrequests/pullrequest_show.mako:160
9227 #: rhodecode/templates/pullrequests/pullrequest_show.mako:156
9273 #: rhodecode/templates/pullrequests/pullrequests.mako:52
9228 #: rhodecode/templates/pullrequests/pullrequests.mako:31
9274 msgid "Closed"
9229 msgid "Closed"
9275 msgstr ""
9230 msgstr ""
9276
9231
9277 #: rhodecode/templates/changeset/changeset_file_comment.mako:400
9232 #: rhodecode/templates/changeset/changeset_file_comment.mako:400
9278 #: rhodecode/templates/compare/compare_diff.mako:104
9233 #: rhodecode/templates/compare/compare_diff.mako:108
9279 #: rhodecode/templates/compare/compare_diff.mako:112
9234 #: rhodecode/templates/compare/compare_diff.mako:116
9280 #: rhodecode/templates/compare/compare_diff.mako:120
9235 #: rhodecode/templates/compare/compare_diff.mako:124
9281 #: rhodecode/templates/compare/compare_diff.mako:122
9236 #: rhodecode/templates/compare/compare_diff.mako:126
9282 msgid "Comment"
9237 msgid "Comment"
9283 msgstr ""
9238 msgstr ""
9284
9239
@@ -9287,22 +9242,20 b' msgstr ""'
9287 msgid "%s Commits"
9242 msgid "%s Commits"
9288 msgstr ""
9243 msgstr ""
9289
9244
9290 #: rhodecode/templates/changeset/changeset_range.mako:16
9245 #: rhodecode/templates/changeset/changeset_range.mako:32
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
9297 msgid "Commit Range"
9246 msgid "Commit Range"
9298 msgstr ""
9247 msgstr ""
9299
9248
9300 #: rhodecode/templates/changeset/changeset_range.mako:54
9249 #: rhodecode/templates/changeset/changeset_range.mako:41
9301 msgid "Diff option"
9250 msgid "Range"
9302 msgstr ""
9251 msgstr ""
9303
9252
9304 #: rhodecode/templates/changeset/changeset_range.mako:65
9253 #: rhodecode/templates/changeset/changeset_range.mako:59
9305 msgid "Show combined compare"
9254 msgid "Diff Option"
9255 msgstr ""
9256
9257 #: rhodecode/templates/changeset/changeset_range.mako:71
9258 msgid "Show combined diff"
9306 msgstr ""
9259 msgstr ""
9307
9260
9308 #: rhodecode/templates/changeset/diff_block.mako:7
9261 #: rhodecode/templates/changeset/diff_block.mako:7
@@ -9391,8 +9344,6 b' msgid "File was deleted in this version.'
9391 msgstr ""
9344 msgstr ""
9392
9345
9393 #: rhodecode/templates/codeblocks/diffs.mako:387
9346 #: rhodecode/templates/codeblocks/diffs.mako:387
9394 #: rhodecode/templates/files/files_source.mako:12
9395 #: rhodecode/templates/search/search_content.mako:79
9396 msgid "Copy the full path"
9347 msgid "Copy the full path"
9397 msgstr ""
9348 msgstr ""
9398
9349
@@ -9479,7 +9430,7 b' msgstr ""'
9479 msgid "Disabled on range diff"
9430 msgid "Disabled on range diff"
9480 msgstr ""
9431 msgstr ""
9481
9432
9482 #: rhodecode/templates/codeblocks/diffs.mako:1011
9433 #: rhodecode/templates/codeblocks/diffs.mako:1017
9483 msgid "Diff Options"
9434 msgid "Diff Options"
9484 msgstr ""
9435 msgstr ""
9485
9436
@@ -9487,6 +9438,130 b' msgstr ""'
9487 msgid "view annotation from before this change"
9438 msgid "view annotation from before this change"
9488 msgstr ""
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 #: rhodecode/templates/compare/compare_commits.mako:5
9565 #: rhodecode/templates/compare/compare_commits.mako:5
9491 msgid "Common Ancestor Commit"
9566 msgid "Common Ancestor Commit"
9492 msgstr ""
9567 msgstr ""
@@ -9496,7 +9571,7 b' msgid "Compare was calculated based on t'
9496 msgstr ""
9571 msgstr ""
9497
9572
9498 #: rhodecode/templates/compare/compare_commits.mako:17
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 msgid "Time"
9575 msgid "Time"
9501 msgstr ""
9576 msgstr ""
9502
9577
@@ -9510,50 +9585,59 b' msgstr ""'
9510 msgid "%s Compare"
9585 msgid "%s Compare"
9511 msgstr ""
9586 msgstr ""
9512
9587
9513 #: rhodecode/templates/compare/compare_diff.mako:44
9588 #: rhodecode/templates/compare/compare_diff.mako:38
9514 #: rhodecode/templates/compare/compare_diff.mako:101
9589 #: rhodecode/templates/compare/compare_diff.mako:90
9515 #: rhodecode/templates/compare/compare_diff.mako:110
9590 #: rhodecode/templates/compare/compare_diff.mako:114
9516 #: rhodecode/templates/compare/compare_diff.mako:115
9591 #: rhodecode/templates/compare/compare_diff.mako:119
9517 msgid "Compare Commits"
9592 msgid "Compare Commits"
9518 msgstr ""
9593 msgstr ""
9519
9594
9520 #: rhodecode/templates/compare/compare_diff.mako:46
9595 #: rhodecode/templates/compare/compare_diff.mako:40
9521 msgid "for file"
9596 msgid "for file"
9522 msgstr ""
9597 msgstr ""
9523
9598
9524 #: rhodecode/templates/compare/compare_diff.mako:60
9599 #: rhodecode/templates/compare/compare_diff.mako:56
9525 #: rhodecode/templates/email_templates/pull_request_review.mako:74
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 msgid "Target"
9602 msgid "Target"
9528 msgstr ""
9603 msgstr ""
9529
9604
9530 #: rhodecode/templates/compare/compare_diff.mako:76
9605 #: rhodecode/templates/compare/compare_diff.mako:70
9531 #: rhodecode/templates/email_templates/pull_request_comment.mako:90
9606 #: rhodecode/templates/email_templates/pull_request_comment.mako:90
9532 #: rhodecode/templates/email_templates/pull_request_review.mako:73
9607 #: rhodecode/templates/email_templates/pull_request_review.mako:73
9533 #: rhodecode/templates/files/files_source.mako:33
9608 #: rhodecode/templates/files/files_source.mako:86
9534 #: rhodecode/templates/pullrequests/pullrequest_show.mako:72
9609 #: rhodecode/templates/pullrequests/pullrequest_show.mako:68
9535 msgid "Source"
9610 msgid "Source"
9536 msgstr ""
9611 msgstr ""
9537
9612
9538 #: rhodecode/templates/compare/compare_diff.mako:103
9613 #: rhodecode/templates/compare/compare_diff.mako:102
9539 #: rhodecode/templates/compare/compare_diff.mako:104
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 #: rhodecode/templates/compare/compare_diff.mako:110
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 msgid "Compare commits, branches, bookmarks or tags."
9633 msgid "Compare commits, branches, bookmarks or tags."
9555 msgstr ""
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 #: rhodecode/templates/data_table/_dt_elements.mako:83
9641 #: rhodecode/templates/data_table/_dt_elements.mako:83
9558 msgid "Mercurial repository"
9642 msgid "Mercurial repository"
9559 msgstr ""
9643 msgstr ""
@@ -9618,7 +9702,7 b' msgid "User group"'
9618 msgstr ""
9702 msgstr ""
9619
9703
9620 #: rhodecode/templates/data_table/_dt_elements.mako:333
9704 #: rhodecode/templates/data_table/_dt_elements.mako:333
9621 #: rhodecode/templates/forks/fork.mako:95
9705 #: rhodecode/templates/forks/fork.mako:91
9622 msgid "Private"
9706 msgid "Private"
9623 msgstr ""
9707 msgstr ""
9624
9708
@@ -9627,7 +9711,16 b' msgstr ""'
9627 msgid "Pull request #%(pr_number)s"
9711 msgid "Pull request #%(pr_number)s"
9628 msgstr ""
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 #, python-format
9724 #, python-format
9632 msgid "Parsed using %s syntax"
9725 msgid "Parsed using %s syntax"
9633 msgstr ""
9726 msgstr ""
@@ -9861,7 +9954,7 b' msgid "{user} left a {comment_type} on p'
9861 msgstr ""
9954 msgstr ""
9862
9955
9863 #: rhodecode/templates/email_templates/pull_request_comment.mako:49
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 msgid "Source repository"
9958 msgid "Source repository"
9866 msgstr ""
9959 msgstr ""
9867
9960
@@ -9945,93 +10038,46 b' msgstr ""'
9945 msgid "Commit was too big and was cut off..."
10038 msgid "Commit was too big and was cut off..."
9946 msgstr ""
10039 msgstr ""
9947
10040
9948 #: rhodecode/templates/files/file_authors_box.mako:6
10041 #: rhodecode/templates/files/file_authors_box.mako:16
9949 msgid "Last Author"
10042 msgid "Load All Authors"
9950 msgstr ""
10043 msgstr ""
9951
10044
9952 #: rhodecode/templates/files/file_authors_box.mako:11
10045 #: rhodecode/templates/files/file_authors_box.mako:18
9953 msgid "Show All"
9954 msgstr ""
9955
9956 #: rhodecode/templates/files/file_authors_box.mako:25
9957 msgid "last author"
10046 msgid "last author"
9958 msgstr ""
10047 msgstr ""
9959
10048
9960 #: rhodecode/templates/files/file_tree_author_box.mako:5
9961 msgid "Commit Author"
9962 msgstr ""
9963
9964 #: rhodecode/templates/files/files.mako:4
10049 #: rhodecode/templates/files/files.mako:4
9965 #: rhodecode/templates/files/files_pjax.mako:2
10050 #: rhodecode/templates/files/files_pjax.mako:2
9966 #, python-format
10051 msgid "{} Files"
9967 msgid "%s Files"
9968 msgstr ""
9969
9970 #: rhodecode/templates/files/files.mako:131
9971 msgid "Pick Commit"
9972 msgstr ""
10052 msgstr ""
9973
10053
9974 #: rhodecode/templates/files/files_add.mako:4
10054 #: rhodecode/templates/files/files_add.mako:4
9975 #, python-format
10055 msgid "{} Files Add"
9976 msgid "%s Files Add"
10056 msgstr ""
9977 msgstr ""
10057
9978
10058 #: rhodecode/templates/files/files_add.mako:25
9979 #: rhodecode/templates/files/files_add.mako:15
9980 msgid "Add new file"
10059 msgid "Add new file"
9981 msgstr ""
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 #: rhodecode/templates/files/files_add.mako:44
10062 #: rhodecode/templates/files/files_add.mako:44
9994 msgid "Remove Custom Path"
10063 #: rhodecode/templates/files/files_edit.mako:45
9995 msgstr ""
10064 msgid "Filename e.g example.py, or docs/readme.md"
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"
10008 msgstr ""
10065 msgstr ""
10009
10066
10010 #: rhodecode/templates/files/files_add.mako:65
10067 #: rhodecode/templates/files/files_add.mako:65
10011 msgid "Upload file"
10068 #: rhodecode/templates/files/files_edit.mako:66
10012 msgstr ""
10069 msgid "Line wraps on"
10013
10070 msgstr ""
10014 #: rhodecode/templates/files/files_add.mako:71
10071
10015 msgid "Create New File"
10072 #: rhodecode/templates/files/files_add.mako:65
10016 msgstr ""
10073 #: rhodecode/templates/files/files_edit.mako:66
10017
10074 msgid "line wraps off"
10018 #: rhodecode/templates/files/files_add.mako:81
10075 msgstr ""
10019 #: rhodecode/templates/files/files_edit.mako:82
10076
10020 msgid "line wraps"
10077 #: rhodecode/templates/files/files_add.mako:88
10021 msgstr ""
10078 #: rhodecode/templates/files/files_delete.mako:72
10022
10079 #: rhodecode/templates/files/files_edit.mako:89
10023 #: rhodecode/templates/files/files_add.mako:82
10080 #: rhodecode/templates/files/files_upload.mako:102
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
10035 msgid "Commit changes"
10081 msgid "Commit changes"
10036 msgstr ""
10082 msgstr ""
10037
10083
@@ -10039,182 +10085,144 b' msgstr ""'
10039 msgid "Previous commit"
10085 msgid "Previous commit"
10040 msgstr ""
10086 msgstr ""
10041
10087
10042 #: rhodecode/templates/files/files_browser.mako:13
10088 #: rhodecode/templates/files/files_browser.mako:15
10043 msgid "Next commit"
10089 msgid "Next commit"
10044 msgstr ""
10090 msgstr ""
10045
10091
10046 #: rhodecode/templates/files/files_browser.mako:19
10047 msgid "Search File List"
10048 msgstr ""
10049
10050 #: rhodecode/templates/files/files_browser.mako:22
10092 #: rhodecode/templates/files/files_browser.mako:22
10051 msgid "Close File List"
10093 msgid "Upload File"
10052 msgstr ""
10094 msgstr ""
10053
10095
10054 #: rhodecode/templates/files/files_browser.mako:25
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 msgid "Add File"
10097 msgid "Add File"
10061 msgstr ""
10098 msgstr ""
10062
10099
10063 #: rhodecode/templates/files/files_browser.mako:32
10100 #: rhodecode/templates/files/files_browser.mako:35
10064 #: rhodecode/templates/files/files_browser.mako:34
10101 msgid "Download full tree ZIP"
10065 msgid "Download tree at {}"
10102 msgstr ""
10066 msgstr ""
10103
10067
10104 #: rhodecode/templates/files/files_browser.mako:39
10068 #: rhodecode/templates/files/files_browser.mako:42
10105 msgid "Download this tree ZIP"
10069 msgid "Loading file list..."
10106 msgstr ""
10070 msgstr ""
10107
10071
10108 #: rhodecode/templates/files/files_browser_tree.mako:12
10072 #: rhodecode/templates/files/files_browser_tree.mako:6
10073 #: rhodecode/templates/search/search_path.mako:9
10109 #: rhodecode/templates/search/search_path.mako:9
10074 msgid "Size"
10110 msgid "Size"
10075 msgstr ""
10111 msgstr ""
10076
10112
10077 #: rhodecode/templates/files/files_browser_tree.mako:7
10113 #: rhodecode/templates/files/files_browser_tree.mako:13
10078 msgid "Modified"
10114 msgid "Modified"
10079 msgstr ""
10115 msgstr ""
10080
10116
10081 #: rhodecode/templates/files/files_browser_tree.mako:8
10117 #: rhodecode/templates/files/files_browser_tree.mako:14
10082 msgid "Last Commit"
10118 msgid "Last Commit"
10083 msgstr ""
10119 msgstr ""
10084
10120
10085 #: rhodecode/templates/files/files_delete.mako:4
10121 #: rhodecode/templates/files/files_delete.mako:4
10086 #, python-format
10122 msgid "{} Files Delete"
10087 msgid "%s Files Delete"
10123 msgstr ""
10088 msgstr ""
10124
10089
10125 #: rhodecode/templates/files/files_delete.mako:25
10090 #: rhodecode/templates/files/files_delete.mako:15
10091 msgid "Delete file"
10126 msgid "Delete file"
10092 msgstr ""
10127 msgstr ""
10093
10128
10094 #: rhodecode/templates/files/files_delete.mako:45
10129 #: rhodecode/templates/files/files_delete.mako:53
10095 #: rhodecode/templates/files/files_source.mako:75
10130 #: rhodecode/templates/files/files_source.mako:104
10096 #, python-format
10131 #, python-format
10097 msgid "Binary file (%s)"
10132 msgid "Binary file (%s)"
10098 msgstr ""
10133 msgstr ""
10099
10134
10100 #: rhodecode/templates/files/files_delete.mako:50
10135 #: rhodecode/templates/files/files_delete.mako:58
10101 #: rhodecode/templates/files/files_source.mako:104
10136 #: rhodecode/templates/files/files_source.mako:133
10102 msgid "File size {} is bigger then allowed limit {}. "
10137 msgid "File size {} is bigger then allowed limit {}. "
10103 msgstr ""
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 #: rhodecode/templates/files/files_edit.mako:4
10140 #: rhodecode/templates/files/files_edit.mako:4
10131 #, python-format
10141 msgid "{} Files Edit"
10132 msgid "%s File Edit"
10142 msgstr ""
10133 msgstr ""
10143
10134
10144 #: rhodecode/templates/files/files_edit.mako:25
10135 #: rhodecode/templates/files/files_edit.mako:15
10136 msgid "Edit file"
10145 msgid "Edit file"
10137 msgstr ""
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 #: rhodecode/templates/files/files_source.mako:16
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 msgid "LargeFile"
10177 msgid "LargeFile"
10174 msgstr ""
10178 msgstr ""
10175
10179
10176 #: rhodecode/templates/files/files_source.mako:27
10180 #: rhodecode/templates/files/files_source.mako:82
10177 msgid "History"
10181 msgid "History"
10178 msgstr ""
10182 msgstr ""
10179
10183
10180 #: rhodecode/templates/files/files_source.mako:30
10184 #: rhodecode/templates/files/files_source.mako:88
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
10187 msgid "Annotation"
10185 msgid "Annotation"
10188 msgstr ""
10186 msgstr ""
10189
10187
10190 #: rhodecode/templates/files/files_source.mako:37
10188 #: rhodecode/templates/files/files_source.mako:90
10191 #: rhodecode/templates/search/search_content.mako:89
10192 msgid "Raw"
10189 msgid "Raw"
10193 msgstr ""
10190 msgstr ""
10194
10191
10195 #: rhodecode/templates/files/files_source.mako:41
10192 #: rhodecode/templates/files/files_source_header.mako:31
10196 msgid "Download largefile"
10193 msgid "File last commit"
10197 msgstr ""
10194 msgstr ""
10198
10195
10199 #: rhodecode/templates/files/files_source.mako:45
10196 #: rhodecode/templates/files/files_upload.mako:4
10200 #: rhodecode/templates/search/search_content.mako:90
10197 msgid "{} Files Upload"
10201 msgid "Download"
10198 msgstr ""
10202 msgstr ""
10199
10203
10200 #: rhodecode/templates/files/files_upload.mako:36
10204 #: rhodecode/templates/files/files_source.mako:53
10201 msgid "Uploading..."
10205 msgid "Edit on Branch:{}"
10202 msgstr ""
10206 msgstr ""
10203
10207
10204 #: rhodecode/templates/files/files_upload.mako:38
10208 #: rhodecode/templates/files/files_source.mako:58
10205 msgid "Uploaded"
10209 msgid "Editing binary files not allowed"
10206 msgstr ""
10210 msgstr ""
10207
10211
10208 #: rhodecode/templates/files/files_upload.mako:52
10212 #: rhodecode/templates/files/files_source.mako:61
10209 msgid "Upload new file"
10213 msgid "Editing files allowed only when on branch head commit"
10210 msgstr ""
10214 msgstr ""
10211
10215
10212 #: rhodecode/templates/files/files_upload.mako:86
10216 #: rhodecode/templates/files/files_source.mako:62
10213 msgid "Drag'n Drop files here or"
10217 msgid "Deleting files allowed only when on branch head commit"
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 msgstr ""
10226 msgstr ""
10219
10227
10220 #: rhodecode/templates/forks/fork.mako:5
10228 #: rhodecode/templates/forks/fork.mako:5
@@ -10222,20 +10230,20 b' msgstr ""'
10222 msgid "Fork repository %s"
10230 msgid "Fork repository %s"
10223 msgstr ""
10231 msgstr ""
10224
10232
10225 #: rhodecode/templates/forks/fork.mako:34
10233 #: rhodecode/templates/forks/fork.mako:30
10226 #: rhodecode/templates/forks/forks.mako:62
10234 #: rhodecode/templates/forks/forks.mako:60
10227 msgid "Fork name"
10235 msgid "Fork name"
10228 msgstr ""
10236 msgstr ""
10229
10237
10238 #: rhodecode/templates/forks/fork.mako:81
10239 msgid "Copy permissions"
10240 msgstr ""
10241
10230 #: rhodecode/templates/forks/fork.mako:85
10242 #: rhodecode/templates/forks/fork.mako:85
10231 msgid "Copy permissions"
10232 msgstr ""
10233
10234 #: rhodecode/templates/forks/fork.mako:89
10235 msgid "Copy permissions from parent repository."
10243 msgid "Copy permissions from parent repository."
10236 msgstr ""
10244 msgstr ""
10237
10245
10238 #: rhodecode/templates/forks/fork.mako:104
10246 #: rhodecode/templates/forks/fork.mako:100
10239 msgid "Fork this Repository"
10247 msgid "Fork this Repository"
10240 msgstr ""
10248 msgstr ""
10241
10249
@@ -10244,15 +10252,11 b' msgstr ""'
10244 msgid "%s Forks"
10252 msgid "%s Forks"
10245 msgstr ""
10253 msgstr ""
10246
10254
10247 #: rhodecode/templates/forks/forks.mako:12
10255 #: rhodecode/templates/forks/forks.mako:28
10248 msgid "Forks"
10249 msgstr ""
10250
10251 #: rhodecode/templates/forks/forks.mako:30
10252 msgid "Create new fork"
10256 msgid "Create new fork"
10253 msgstr ""
10257 msgstr ""
10254
10258
10255 #: rhodecode/templates/forks/forks.mako:66
10259 #: rhodecode/templates/forks/forks.mako:64
10256 msgid "Forked"
10260 msgid "Forked"
10257 msgstr ""
10261 msgstr ""
10258
10262
@@ -10282,65 +10286,65 b' msgid "RSS public journal feed"'
10282 msgstr ""
10286 msgstr ""
10283
10287
10284 #: rhodecode/templates/pullrequests/pullrequest.mako:5
10288 #: rhodecode/templates/pullrequests/pullrequest.mako:5
10285 #: rhodecode/templates/pullrequests/pullrequest.mako:9
10289 #: rhodecode/templates/pullrequests/pullrequest.mako:22
10286 msgid "New pull request"
10290 msgid "New pull request"
10287 msgstr ""
10291 msgstr ""
10288
10292
10289 #: rhodecode/templates/pullrequests/pullrequest.mako:65
10293 #: rhodecode/templates/pullrequests/pullrequest.mako:59
10290 msgid "Commit flow"
10294 msgid "Commit flow"
10291 msgstr ""
10295 msgstr ""
10292
10296
10293 #: rhodecode/templates/pullrequests/pullrequest.mako:91
10297 #: rhodecode/templates/pullrequests/pullrequest.mako:85
10294 msgid "Loading refs..."
10298 msgid "Loading refs..."
10295 msgstr ""
10299 msgstr ""
10296
10300
10297 #: rhodecode/templates/pullrequests/pullrequest.mako:102
10301 #: rhodecode/templates/pullrequests/pullrequest.mako:96
10298 msgid "Submit Pull Request"
10302 msgid "Submit Pull Request"
10299 msgstr ""
10303 msgstr ""
10300
10304
10301 #: rhodecode/templates/pullrequests/pullrequest.mako:116
10305 #: rhodecode/templates/pullrequests/pullrequest.mako:110
10302 #: rhodecode/templates/pullrequests/pullrequest_show.mako:317
10306 #: rhodecode/templates/pullrequests/pullrequest_show.mako:313
10303 msgid "Author of this pull request"
10307 msgid "Author of this pull request"
10304 msgstr ""
10308 msgstr ""
10305
10309
10306 #: rhodecode/templates/pullrequests/pullrequest.mako:130
10310 #: rhodecode/templates/pullrequests/pullrequest.mako:124
10307 #: rhodecode/templates/pullrequests/pullrequest_show.mako:331
10311 #: rhodecode/templates/pullrequests/pullrequest_show.mako:327
10308 msgid "Reviewer rules"
10312 msgid "Reviewer rules"
10309 msgstr ""
10313 msgstr ""
10310
10314
10311 #: rhodecode/templates/pullrequests/pullrequest.mako:140
10315 #: rhodecode/templates/pullrequests/pullrequest.mako:134
10312 #: rhodecode/templates/pullrequests/pullrequest_show.mako:345
10316 #: rhodecode/templates/pullrequests/pullrequest_show.mako:341
10313 msgid "Pull request reviewers"
10317 msgid "Pull request reviewers"
10314 msgstr ""
10318 msgstr ""
10315
10319
10316 #: rhodecode/templates/pullrequests/pullrequest.mako:151
10320 #: rhodecode/templates/pullrequests/pullrequest.mako:145
10317 #: rhodecode/templates/pullrequests/pullrequest_show.mako:388
10321 #: rhodecode/templates/pullrequests/pullrequest_show.mako:384
10318 msgid "Add reviewer or reviewer group"
10322 msgid "Add reviewer or reviewer group"
10319 msgstr ""
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 #: rhodecode/templates/pullrequests/pullrequest.mako:307
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 msgid "Loading compare ..."
10331 msgid "Loading compare ..."
10328 msgstr ""
10332 msgstr ""
10329
10333
10330 #: rhodecode/templates/pullrequests/pullrequest.mako:372
10334 #: rhodecode/templates/pullrequests/pullrequest.mako:366
10331 msgid "Show detailed compare."
10335 msgid "Show detailed compare."
10332 msgstr ""
10336 msgstr ""
10333
10337
10334 #: rhodecode/templates/pullrequests/pullrequest.mako:379
10338 #: rhodecode/templates/pullrequests/pullrequest.mako:373
10335 msgid "There are no commits to merge."
10339 msgid "There are no commits to merge."
10336 msgstr ""
10340 msgstr ""
10337
10341
10338 #: rhodecode/templates/pullrequests/pullrequest.mako:429
10342 #: rhodecode/templates/pullrequests/pullrequest.mako:423
10339 #: rhodecode/templates/pullrequests/pullrequest.mako:455
10343 #: rhodecode/templates/pullrequests/pullrequest.mako:449
10340 msgid "Select commit reference"
10344 msgid "Select commit reference"
10341 msgstr ""
10345 msgstr ""
10342
10346
10343 #: rhodecode/templates/pullrequests/pullrequest.mako:445
10347 #: rhodecode/templates/pullrequests/pullrequest.mako:439
10344 msgid "Target repository"
10348 msgid "Target repository"
10345 msgstr ""
10349 msgstr ""
10346
10350
@@ -10352,26 +10356,26 b' msgstr ""'
10352 msgid "Merge is not currently possible because of below failed checks."
10356 msgid "Merge is not currently possible because of below failed checks."
10353 msgstr ""
10357 msgstr ""
10354
10358
10355 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:52
10359 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:55
10356 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:57
10360 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:60
10357 msgid "refresh checks"
10361 msgid "refresh checks"
10358 msgstr ""
10362 msgstr ""
10359
10363
10360 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:53
10364 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:56
10361 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:58
10365 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:61
10362 msgid "Merge Pull Request"
10366 msgid "Merge Pull Request"
10363 msgstr ""
10367 msgstr ""
10364
10368
10365 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:58
10369 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:61
10366 msgid "You are not allowed to merge this pull request."
10370 msgid "You are not allowed to merge this pull request."
10367 msgstr ""
10371 msgstr ""
10368
10372
10369 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:60
10373 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:63
10370 msgid "Login to Merge this Pull Request"
10374 msgid "Login to Merge this Pull Request"
10371 msgstr ""
10375 msgstr ""
10372
10376
10373 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:69
10377 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:72
10374 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:73
10378 #: rhodecode/templates/pullrequests/pullrequest_merge_checks.mako:76
10375 msgid "Close with status {}"
10379 msgid "Close with status {}"
10376 msgstr ""
10380 msgstr ""
10377
10381
@@ -10380,182 +10384,182 b' msgstr ""'
10380 msgid "%s Pull Request #%s"
10384 msgid "%s Pull Request #%s"
10381 msgstr ""
10385 msgstr ""
10382
10386
10383 #: rhodecode/templates/pullrequests/pullrequest_show.mako:52
10387 #: rhodecode/templates/pullrequests/pullrequest_show.mako:48
10384 msgid "From"
10388 msgid "From"
10385 msgstr ""
10389 msgstr ""
10386
10390
10387 #: rhodecode/templates/pullrequests/pullrequest_show.mako:58
10391 #: rhodecode/templates/pullrequests/pullrequest_show.mako:54
10388 msgid "Confirm to delete this pull request"
10392 msgid "Confirm to delete this pull request"
10389 msgstr ""
10393 msgstr ""
10390
10394
10391 #: rhodecode/templates/pullrequests/pullrequest_show.mako:89
10395 #: rhodecode/templates/pullrequests/pullrequest_show.mako:85
10392 msgid "Common ancestor"
10396 msgid "Common ancestor"
10393 msgstr ""
10397 msgstr ""
10394
10398
10395 #: rhodecode/templates/pullrequests/pullrequest_show.mako:101
10399 #: rhodecode/templates/pullrequests/pullrequest_show.mako:97
10396 msgid "Copy the pull url"
10400 msgid "Copy the pull url"
10397 msgstr ""
10401 msgstr ""
10398
10402
10399 #: rhodecode/templates/pullrequests/pullrequest_show.mako:130
10403 #: rhodecode/templates/pullrequests/pullrequest_show.mako:126
10400 msgid "Merge"
10404 msgid "Merge"
10401 msgstr ""
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 #: rhodecode/templates/pullrequests/pullrequest_show.mako:141
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 msgid "Shadow repository data not available"
10413 msgid "Shadow repository data not available"
10410 msgstr ""
10414 msgstr ""
10411
10415
10412 #: rhodecode/templates/pullrequests/pullrequest_show.mako:153
10416 #: rhodecode/templates/pullrequests/pullrequest_show.mako:149
10413 msgid "Review"
10417 msgid "Review"
10414 msgstr ""
10418 msgstr ""
10415
10419
10416 #: rhodecode/templates/pullrequests/pullrequest_show.mako:169
10420 #: rhodecode/templates/pullrequests/pullrequest_show.mako:165
10417 msgid "Rendered using {} renderer"
10421 msgid "Rendered using {} renderer"
10418 msgstr ""
10422 msgstr ""
10419
10423
10420 #: rhodecode/templates/pullrequests/pullrequest_show.mako:183
10424 #: rhodecode/templates/pullrequests/pullrequest_show.mako:179
10421 msgid "Versions"
10425 msgid "Versions"
10422 msgstr ""
10426 msgstr ""
10423
10427
10424 #: rhodecode/templates/pullrequests/pullrequest_show.mako:195
10428 #: rhodecode/templates/pullrequests/pullrequest_show.mako:191
10425 msgid "Hide all versions of this pull request"
10429 msgid "Hide all versions of this pull request"
10426 msgstr ""
10430 msgstr ""
10427
10431
10428 #: rhodecode/templates/pullrequests/pullrequest_show.mako:220
10432 #: rhodecode/templates/pullrequests/pullrequest_show.mako:216
10429 msgid "Your review status at this version"
10433 msgid "Your review status at this version"
10430 msgstr ""
10434 msgstr ""
10431
10435
10432 #: rhodecode/templates/pullrequests/pullrequest_show.mako:226
10436 #: rhodecode/templates/pullrequests/pullrequest_show.mako:222
10433 msgid "Comment from pull request version v{0}, general:{1} inline:{2}"
10437 msgid "Comment from pull request version v{0}, general:{1} inline:{2}"
10434 msgstr ""
10438 msgstr ""
10435
10439
10440 #: rhodecode/templates/pullrequests/pullrequest_show.mako:239
10436 #: rhodecode/templates/pullrequests/pullrequest_show.mako:243
10441 #: rhodecode/templates/pullrequests/pullrequest_show.mako:243
10437 #: rhodecode/templates/pullrequests/pullrequest_show.mako:247
10438 msgid "select versions to show changes"
10442 msgid "select versions to show changes"
10439 msgstr ""
10443 msgstr ""
10440
10444
10441 #: rhodecode/templates/pullrequests/pullrequest_show.mako:244
10445 #: rhodecode/templates/pullrequests/pullrequest_show.mako:240
10442 msgid "show changes between versions"
10446 msgid "show changes between versions"
10443 msgstr ""
10447 msgstr ""
10444
10448
10445 #: rhodecode/templates/pullrequests/pullrequest_show.mako:245
10449 #: rhodecode/templates/pullrequests/pullrequest_show.mako:241
10446 msgid "show pull request for this version"
10450 msgid "show pull request for this version"
10447 msgstr ""
10451 msgstr ""
10448
10452
10453 #: rhodecode/templates/pullrequests/pullrequest_show.mako:256
10454 msgid "Comments at this version"
10455 msgstr ""
10456
10449 #: rhodecode/templates/pullrequests/pullrequest_show.mako:260
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 msgid "Comments for this pull request"
10458 msgid "Comments for this pull request"
10455 msgstr ""
10459 msgstr ""
10456
10460
10457 #: rhodecode/templates/pullrequests/pullrequest_show.mako:269
10461 #: rhodecode/templates/pullrequests/pullrequest_show.mako:265
10458 #: rhodecode/templates/pullrequests/pullrequest_show.mako:271
10462 #: rhodecode/templates/pullrequests/pullrequest_show.mako:267
10459 #, python-format
10463 #, python-format
10460 msgid "%d General "
10464 msgid "%d General "
10461 msgstr ""
10465 msgstr ""
10462
10466
10463 #: rhodecode/templates/pullrequests/pullrequest_show.mako:275
10467 #: rhodecode/templates/pullrequests/pullrequest_show.mako:271
10464 #: rhodecode/templates/pullrequests/pullrequest_show.mako:277
10468 #: rhodecode/templates/pullrequests/pullrequest_show.mako:273
10465 #, python-format
10469 #, python-format
10466 msgid "%d Inline"
10470 msgid "%d Inline"
10467 msgstr ""
10471 msgstr ""
10468
10472
10473 #: rhodecode/templates/pullrequests/pullrequest_show.mako:277
10469 #: rhodecode/templates/pullrequests/pullrequest_show.mako:281
10474 #: rhodecode/templates/pullrequests/pullrequest_show.mako:281
10470 #: rhodecode/templates/pullrequests/pullrequest_show.mako:285
10471 #, python-format
10475 #, python-format
10472 msgid "%d Outdated"
10476 msgid "%d Outdated"
10473 msgstr ""
10477 msgstr ""
10474
10478
10475 #: rhodecode/templates/pullrequests/pullrequest_show.mako:282
10479 #: rhodecode/templates/pullrequests/pullrequest_show.mako:278
10476 msgid "show outdated comments"
10480 msgid "show outdated comments"
10477 msgstr ""
10481 msgstr ""
10478
10482
10479 #: rhodecode/templates/pullrequests/pullrequest_show.mako:283
10483 #: rhodecode/templates/pullrequests/pullrequest_show.mako:279
10480 msgid "hide outdated comments"
10484 msgid "hide outdated comments"
10481 msgstr ""
10485 msgstr ""
10482
10486
10483 #: rhodecode/templates/pullrequests/pullrequest_show.mako:294
10487 #: rhodecode/templates/pullrequests/pullrequest_show.mako:290
10484 msgid "Pull request versions not available"
10488 msgid "Pull request versions not available"
10485 msgstr ""
10489 msgstr ""
10486
10490
10487 #: rhodecode/templates/pullrequests/pullrequest_show.mako:308
10491 #: rhodecode/templates/pullrequests/pullrequest_show.mako:304
10488 #: rhodecode/templates/pullrequests/pullrequest_show.mako:393
10492 #: rhodecode/templates/pullrequests/pullrequest_show.mako:389
10489 msgid "Save Changes"
10493 msgid "Save Changes"
10490 msgstr ""
10494 msgstr ""
10491
10495
10492 #: rhodecode/templates/pullrequests/pullrequest_show.mako:410
10496 #: rhodecode/templates/pullrequests/pullrequest_show.mako:406
10493 msgid "Missing requirements:"
10497 msgid "Missing requirements:"
10494 msgstr ""
10498 msgstr ""
10495
10499
10496 #: rhodecode/templates/pullrequests/pullrequest_show.mako:411
10500 #: rhodecode/templates/pullrequests/pullrequest_show.mako:407
10497 msgid "These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled."
10501 msgid "These commits cannot be displayed, because this repository uses the Mercurial largefiles extension, which was not enabled."
10498 msgstr ""
10502 msgstr ""
10499
10503
10500 #: rhodecode/templates/pullrequests/pullrequest_show.mako:419
10504 #: rhodecode/templates/pullrequests/pullrequest_show.mako:415
10501 msgid "Missing commits"
10505 msgid "Missing commits"
10502 msgstr ""
10506 msgstr ""
10503
10507
10504 #: rhodecode/templates/pullrequests/pullrequest_show.mako:420
10508 #: rhodecode/templates/pullrequests/pullrequest_show.mako:416
10505 msgid "This pull request cannot be displayed, because one or more commits no longer exist in the source repository."
10509 msgid "This pull request cannot be displayed, because one or more commits no longer exist in the source repository."
10506 msgstr ""
10510 msgstr ""
10507
10511
10508 #: rhodecode/templates/pullrequests/pullrequest_show.mako:421
10512 #: rhodecode/templates/pullrequests/pullrequest_show.mako:417
10509 msgid "Please update this pull request, push the commits back into the source repository, or consider closing this pull request."
10513 msgid "Please update this pull request, push the commits back into the source repository, or consider closing this pull request."
10510 msgstr ""
10514 msgstr ""
10511
10515
10512 #: rhodecode/templates/pullrequests/pullrequest_show.mako:422
10516 #: rhodecode/templates/pullrequests/pullrequest_show.mako:418
10513 msgid "Consider doing a {force_refresh_url} in case you think this is an error."
10517 msgid "Consider doing a {force_refresh_url} in case you think this is an error."
10514 msgstr ""
10518 msgstr ""
10515
10519
10516 #: rhodecode/templates/pullrequests/pullrequest_show.mako:433
10520 #: rhodecode/templates/pullrequests/pullrequest_show.mako:429
10517 #, python-format
10521 #, python-format
10518 msgid "Showing changes at v%d, commenting is disabled."
10522 msgid "Showing changes at v%d, commenting is disabled."
10519 msgstr ""
10523 msgstr ""
10520
10524
10521 #: rhodecode/templates/pullrequests/pullrequest_show.mako:456
10525 #: rhodecode/templates/pullrequests/pullrequest_show.mako:452
10522 #: rhodecode/templates/pullrequests/pullrequest_show.mako:458
10526 #: rhodecode/templates/pullrequests/pullrequest_show.mako:454
10523 msgid "Update commits"
10527 msgid "Update commits"
10524 msgstr ""
10528 msgstr ""
10525
10529
10526 #: rhodecode/templates/pullrequests/pullrequest_show.mako:458
10530 #: rhodecode/templates/pullrequests/pullrequest_show.mako:454
10527 msgid "Update is disabled for current view"
10531 msgid "Update is disabled for current view"
10528 msgstr ""
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 #: rhodecode/templates/pullrequests/pullrequest_show.mako:469
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 msgid "commits added: {}, removed: {}"
10539 msgid "commits added: {}, removed: {}"
10536 msgstr ""
10540 msgstr ""
10537
10541
10538 #: rhodecode/templates/pullrequests/pullrequest_show.mako:491
10542 #: rhodecode/templates/pullrequests/pullrequest_show.mako:487
10539 msgid "Commit added in displayed changes"
10543 msgid "Commit added in displayed changes"
10540 msgstr ""
10544 msgstr ""
10541
10545
10542 #: rhodecode/templates/pullrequests/pullrequest_show.mako:493
10546 #: rhodecode/templates/pullrequests/pullrequest_show.mako:489
10543 msgid "Commit removed in displayed changes"
10547 msgid "Commit removed in displayed changes"
10544 msgstr ""
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 #: rhodecode/templates/pullrequests/pullrequest_show.mako:582
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 msgid "show them"
10563 msgid "show them"
10560 msgstr ""
10564 msgstr ""
10561
10565
@@ -10564,58 +10568,28 b' msgstr ""'
10564 msgid "%s Pull Requests"
10568 msgid "%s Pull Requests"
10565 msgstr ""
10569 msgstr ""
10566
10570
10567 #: rhodecode/templates/pullrequests/pullrequests.mako:34
10571 #: rhodecode/templates/pullrequests/pullrequests.mako:27
10568 msgid "Open new Pull Request"
10569 msgstr ""
10570
10571 #: rhodecode/templates/pullrequests/pullrequests.mako:48
10572 msgid "Opened"
10572 msgid "Opened"
10573 msgstr ""
10573 msgstr ""
10574
10574
10575 #: rhodecode/templates/pullrequests/pullrequests.mako:49
10575 #: rhodecode/templates/pullrequests/pullrequests.mako:28
10576 msgid "Opened by me"
10576 msgid "Opened by me"
10577 msgstr ""
10577 msgstr ""
10578
10578
10579 #: rhodecode/templates/pullrequests/pullrequests.mako:50
10579 #: rhodecode/templates/pullrequests/pullrequests.mako:29
10580 msgid "Awaiting review"
10580 msgid "Awaiting review"
10581 msgstr ""
10581 msgstr ""
10582
10582
10583 #: rhodecode/templates/pullrequests/pullrequests.mako:51
10583 #: rhodecode/templates/pullrequests/pullrequests.mako:30
10584 msgid "Awaiting my review"
10584 msgid "Awaiting my review"
10585 msgstr ""
10585 msgstr ""
10586
10586
10587 #: rhodecode/templates/pullrequests/pullrequests.mako:53
10587 #: rhodecode/templates/pullrequests/pullrequests.mako:32
10588 msgid "From this repo"
10588 msgid "From this repo"
10589 msgstr ""
10589 msgstr ""
10590
10590
10591 #: rhodecode/templates/pullrequests/pullrequests.mako:62
10591 #: rhodecode/templates/pullrequests/pullrequests.mako:40
10592 #, python-format
10592 msgid "Open new Pull Request"
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"
10619 msgstr ""
10593 msgstr ""
10620
10594
10621 #: rhodecode/templates/search/search.mako:6
10595 #: rhodecode/templates/search/search.mako:6
@@ -10633,17 +10607,21 b' msgstr ""'
10633 msgid "Search inside all accessible repositories"
10607 msgid "Search inside all accessible repositories"
10634 msgstr ""
10608 msgstr ""
10635
10609
10636 #: rhodecode/templates/search/search.mako:90
10610 #: rhodecode/templates/search/search.mako:85
10637 msgid "File path"
10611 msgid "File path"
10638 msgstr ""
10612 msgstr ""
10639
10613
10640 #: rhodecode/templates/search/search.mako:99
10614 #: rhodecode/templates/search/search.mako:88
10641 #: rhodecode/templates/search/search.mako:101
10615 msgid "Search"
10642 #: rhodecode/templates/search/search.mako:103
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 msgid "Global Search"
10621 msgid "Global Search"
10644 msgstr ""
10622 msgstr ""
10645
10623
10646 #: rhodecode/templates/search/search.mako:138
10624 #: rhodecode/templates/search/search.mako:133
10647 msgid "Query Langague examples"
10625 msgid "Query Langague examples"
10648 msgstr ""
10626 msgstr ""
10649
10627
@@ -10668,11 +10646,11 b' msgstr ""'
10668 msgid "more matches in this file"
10646 msgid "more matches in this file"
10669 msgstr ""
10647 msgstr ""
10670
10648
10671 #: rhodecode/templates/search/search_content.mako:127
10649 #: rhodecode/templates/search/search_content.mako:112
10672 msgid "Narrow to this repository group"
10650 msgid "Narrow to this repository group"
10673 msgstr ""
10651 msgstr ""
10674
10652
10675 #: rhodecode/templates/search/search_content.mako:134
10653 #: rhodecode/templates/search/search_content.mako:119
10676 msgid "Narrow to this repository"
10654 msgid "Narrow to this repository"
10677 msgstr ""
10655 msgstr ""
10678
10656
@@ -10684,64 +10662,63 b' msgstr ""'
10684 msgid "Lines"
10662 msgid "Lines"
10685 msgstr ""
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 msgid "Copy the clone by id url"
10670 msgid "Copy the clone by id url"
10689 msgstr ""
10671 msgstr ""
10690
10672
10691 #: rhodecode/templates/summary/components.mako:76
10673 #: rhodecode/templates/summary/components.mako:88
10692 msgid "Copy the clone by ssh url"
10674 msgid "Copy the clone by ssh url"
10693 msgstr ""
10675 msgstr ""
10694
10676
10695 #: rhodecode/templates/summary/components.mako:80
10677 #: rhodecode/templates/summary/components.mako:92
10696 msgid "SVN Protocol is disabled. To enable it, see the"
10678 msgid "SVN Protocol is disabled. To enable it, see the"
10697 msgstr ""
10679 msgstr ""
10698
10680
10699 #: rhodecode/templates/summary/components.mako:80
10681 #: rhodecode/templates/summary/components.mako:92
10700 msgid "documentation here"
10682 msgid "documentation here"
10701 msgstr ""
10683 msgstr ""
10702
10684
10703 #: rhodecode/templates/summary/components.mako:117
10685 #: rhodecode/templates/summary/components.mako:135
10704 msgid "Number of Repository Forks"
10686 msgid "Number of Repository Forks"
10705 msgstr ""
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 msgid "Repository size"
10702 msgid "Repository size"
10709 msgstr ""
10703 msgstr ""
10710
10704
10711 #: rhodecode/templates/summary/components.mako:141
10705 #: rhodecode/templates/summary/components.mako:215
10712 msgid "Calculating Repository Size..."
10706 msgid "Calculating Repository Size..."
10713 msgstr ""
10707 msgstr ""
10714
10708
10715 #: rhodecode/templates/summary/components.mako:164
10709 #: rhodecode/templates/summary/components.mako:226
10716 msgid "Downloads"
10710 msgid "Code Statistics"
10717 msgstr ""
10711 msgstr ""
10718
10712
10719 #: rhodecode/templates/summary/components.mako:170
10713 #: rhodecode/templates/summary/components.mako:235
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
10732 msgid "Statistics are disabled for this repository"
10714 msgid "Statistics are disabled for this repository"
10733 msgstr ""
10715 msgstr ""
10734
10716
10735 #: rhodecode/templates/summary/summary.mako:19
10736 #: rhodecode/templates/summary/summary.mako:21
10717 #: rhodecode/templates/summary/summary.mako:21
10737 msgid "RSS Feed"
10738 msgstr ""
10739
10740 #: rhodecode/templates/summary/summary.mako:37
10741 msgid "Quick start"
10718 msgid "Quick start"
10742 msgstr ""
10719 msgstr ""
10743
10720
10744 #: rhodecode/templates/summary/summary.mako:50
10721 #: rhodecode/templates/summary/summary.mako:36
10745 #, python-format
10722 #, python-format
10746 msgid "Readme file from commit %s:%s"
10723 msgid "Readme file from commit %s:%s"
10747 msgstr ""
10724 msgstr ""
@@ -10761,15 +10738,23 b' msgstr ""'
10761 msgid "%s RSS feed"
10738 msgid "%s RSS feed"
10762 msgstr ""
10739 msgstr ""
10763
10740
10764 #: rhodecode/templates/summary/summary_commits.mako:109
10741 #: rhodecode/templates/summary/summary_commits.mako:117
10765 msgid "Add or upload files directly via RhodeCode:"
10742 msgid "Add or upload files directly via RhodeCode:"
10766 msgstr ""
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 msgid "Push new repo:"
10754 msgid "Push new repo:"
10770 msgstr ""
10755 msgstr ""
10771
10756
10772 #: rhodecode/templates/summary/summary_commits.mako:131
10757 #: rhodecode/templates/summary/summary_commits.mako:151
10773 msgid "Existing repository?"
10758 msgid "Existing repository?"
10774 msgstr ""
10759 msgstr ""
10775
10760
@@ -10778,19 +10763,19 b' msgstr ""'
10778 msgid "%s Tags"
10763 msgid "%s Tags"
10779 msgstr ""
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 msgid "tags"
10771 msgid "tags"
10783 msgstr ""
10772 msgstr ""
10784
10773
10785 #: rhodecode/templates/tags/tags.mako:31
10786 msgid "Compare Selected Tags"
10787 msgstr ""
10788
10789 #: rhodecode/templates/user_group/profile.mako:5
10774 #: rhodecode/templates/user_group/profile.mako:5
10790 msgid "User group profile"
10775 msgid "User group profile"
10791 msgstr ""
10776 msgstr ""
10792
10777
10793 #: rhodecode/templates/user_group/profile.mako:15
10778 #: rhodecode/templates/user_group/profile.mako:14
10794 msgid "Group Name"
10779 msgid "Group Name"
10795 msgstr ""
10780 msgstr ""
10796
10781
@@ -10798,11 +10783,11 b' msgstr ""'
10798 msgid "User Group Profile"
10783 msgid "User Group Profile"
10799 msgstr ""
10784 msgstr ""
10800
10785
10801 #: rhodecode/templates/users/user_profile.mako:35
10786 #: rhodecode/templates/users/user_profile.mako:38
10802 msgid "First name"
10787 msgid "First name"
10803 msgstr ""
10788 msgstr ""
10804
10789
10805 #: rhodecode/templates/users/user_profile.mako:43
10790 #: rhodecode/templates/users/user_profile.mako:48
10806 msgid "Last name"
10791 msgid "Last name"
10807 msgstr ""
10792 msgstr ""
10808
10793
@@ -4,6 +4,7 b' import logging'
4
4
5 from alembic.migration import MigrationContext
5 from alembic.migration import MigrationContext
6 from alembic.operations import Operations
6 from alembic.operations import Operations
7 from sqlalchemy import String
7
8
8 from rhodecode.lib.dbmigrate.versions import _reset_base
9 from rhodecode.lib.dbmigrate.versions import _reset_base
9 from rhodecode.model import init_model_encryption
10 from rhodecode.model import init_model_encryption
@@ -28,7 +29,7 b' def upgrade(migrate_engine):'
28 repo_group = db_4_16_0_2.RepoGroup.__table__
29 repo_group = db_4_16_0_2.RepoGroup.__table__
29
30
30 with op.batch_alter_table(repo_group.name) as batch_op:
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 def downgrade(migrate_engine):
35 def downgrade(migrate_engine):
@@ -147,7 +147,7 b' class RemoteRepo(object):'
147
147
148 def _call_with_logging(self, name, *args, **kwargs):
148 def _call_with_logging(self, name, *args, **kwargs):
149 context_uid = self._wire.get('context')
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 self.url, name, args, context_uid)
151 self.url, name, args, context_uid)
152 return RemoteRepo._call(self, name, *args, **kwargs)
152 return RemoteRepo._call(self, name, *args, **kwargs)
153
153
@@ -1841,6 +1841,10 b' class Repository(Base, BaseModel):'
1841 return q.all()
1841 return q.all()
1842
1842
1843 @property
1843 @property
1844 def repo_uid(self):
1845 return '_{}'.format(self.repo_id)
1846
1847 @property
1844 def forks(self):
1848 def forks(self):
1845 """
1849 """
1846 Return forks of this repo
1850 Return forks of this repo
@@ -4111,7 +4115,7 b' class PullRequest(Base, _PullRequestBase'
4111 def pull_request_version_id(self):
4115 def pull_request_version_id(self):
4112 return getattr(pull_request_obj, 'pull_request_version_id', None)
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 attrs.author = StrictAttributeDict(
4120 attrs.author = StrictAttributeDict(
4117 pull_request_obj.author.get_api_data())
4121 pull_request_obj.author.get_api_data())
@@ -33,7 +33,7 b' from rhodecode import events'
33 from rhodecode.integrations.types.base import EEIntegration
33 from rhodecode.integrations.types.base import EEIntegration
34 from rhodecode.lib.caching_query import FromCache
34 from rhodecode.lib.caching_query import FromCache
35 from rhodecode.model import BaseModel
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 from rhodecode.integrations import integration_type_registry
37 from rhodecode.integrations import integration_type_registry
38
38
39 log = logging.getLogger(__name__)
39 log = logging.getLogger(__name__)
@@ -155,6 +155,7 b' class IntegrationModel(BaseModel):'
155 """
155 """
156 Get integrations that match an event
156 Get integrations that match an event
157 """
157 """
158 # base query
158 query = self.sa.query(
159 query = self.sa.query(
159 Integration
160 Integration
160 ).filter(
161 ).filter(
@@ -164,7 +165,7 b' class IntegrationModel(BaseModel):'
164 global_integrations_filter = and_(
165 global_integrations_filter = and_(
165 Integration.repo_id == None,
166 Integration.repo_id == None,
166 Integration.repo_group_id == None,
167 Integration.repo_group_id == None,
167 Integration.child_repos_only == False,
168 Integration.child_repos_only == false(),
168 )
169 )
169
170
170 if isinstance(event, events.RepoEvent):
171 if isinstance(event, events.RepoEvent):
@@ -177,42 +178,61 b' class IntegrationModel(BaseModel):'
177 clauses = [
178 clauses = [
178 global_integrations_filter,
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
186 # repo group integrations
182 if event.repo.repo_id: # pre create events dont have a repo_id yet
187 if event.repo.group:
183 clauses.append(
188 # repo group with only root level repos
184 Integration.repo_id == event.repo.repo_id
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:
194 clauses.append(group_child_repos_filter)
188 clauses.append(
195 cases.append(
189 and_(
196 (group_child_repos_filter, 3),
190 Integration.repo_group_id == event.repo.group.group_id,
191 Integration.child_repos_only == true()
192 )
193 )
197 )
198
194 # repo group cascade to kids
199 # repo group cascade to kids
195 clauses.append(
200 group_recursive_repos_filter = and_(
196 and_(
201 Integration.repo_group_id.in_(
197 Integration.repo_group_id.in_(
202 [group.group_id for group in event.repo.groups_with_parents]
198 [group.group_id for group in
203 ),
199 event.repo.groups_with_parents]
204 Integration.child_repos_only == false()
200 ),
205 )
201 Integration.child_repos_only == false()
206 clauses.append(group_recursive_repos_filter)
202 )
207 cases.append(
208 (group_recursive_repos_filter, 4),
203 )
209 )
204
210
205 if not event.repo.group: # root repo
211 if not event.repo.group: # root repo
206 clauses.append(root_repos_integrations_filter)
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 query = query.filter(or_(*clauses))
224 query = query.filter(or_(*clauses))
225 query = query.order_by(order_by_criterion)
209
226
210 if cache:
227 if cache:
211 cache_key = "get_enabled_repo_integrations_%i" % event.repo.repo_id
228 cache_key = "get_enabled_repo_integrations_%i" % event.repo.repo_id
212 query = query.options(
229 query = query.options(
213 FromCache("sql_cache_short", cache_key))
230 FromCache("sql_cache_short", cache_key))
214 else: # only global integrations
231 else: # only global integrations
232 order_by_criterion = Integration.integration_id
233
215 query = query.filter(global_integrations_filter)
234 query = query.filter(global_integrations_filter)
235 query = query.order_by(order_by_criterion)
216 if cache:
236 if cache:
217 query = query.options(
237 query = query.options(
218 FromCache("sql_cache_short", "get_enabled_global_integrations"))
238 FromCache("sql_cache_short", "get_enabled_global_integrations"))
@@ -374,8 +374,7 b' class RepoModel(BaseModel):'
374 )
374 )
375
375
376 # handle extra fields
376 # handle extra fields
377 for field in filter(lambda k: k.startswith(RepositoryField.PREFIX),
377 for field in filter(lambda k: k.startswith(RepositoryField.PREFIX), kwargs):
378 kwargs):
379 k = RepositoryField.un_prefix_key(field)
378 k = RepositoryField.un_prefix_key(field)
380 ex_field = RepositoryField.get_by_key_name(
379 ex_field = RepositoryField.get_by_key_name(
381 key=k, repo=cur_repo)
380 key=k, repo=cur_repo)
@@ -53,7 +53,7 b' input[type="button"] {'
53 .border ( @border-thickness, @grey4 );
53 .border ( @border-thickness, @grey4 );
54 }
54 }
55
55
56 .icon-remove-sign {
56 .icon-remove {
57 display: none;
57 display: none;
58 }
58 }
59
59
@@ -536,7 +536,7 b' th {'
536 .glyphicon-minus-sign:before {
536 .glyphicon-minus-sign:before {
537 content: "\e082";
537 content: "\e082";
538 }
538 }
539 .glyphicon-remove-sign:before {
539 .glyphicon-remove:before {
540 content: "\e083";
540 content: "\e083";
541 }
541 }
542 .glyphicon-ok-sign:before {
542 .glyphicon-ok-sign:before {
@@ -1622,8 +1622,14 b' table.integrations {'
1622 margin-left: 8px;
1622 margin-left: 8px;
1623 }
1623 }
1624
1624
1625 #pull_request_overview {
1626 div.ancestor {
1627 margin: -33px 0;
1628 }
1629 }
1630
1625 div.ancestor {
1631 div.ancestor {
1626 margin: -30px 0px;
1632 line-height: 33px;
1627 }
1633 }
1628
1634
1629 .cs_icon_td input[type="checkbox"] {
1635 .cs_icon_td input[type="checkbox"] {
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Add another comment',
9 'Add another comment': 'Add another comment',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Show more',
69 'Show more': 'Show more',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Start following this repository',
74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Stop following this repository',
77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Submitting...',
79 'Submitting...': 'Submitting...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Unfollow',
86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'files',
100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Add another comment',
9 'Add another comment': 'Add another comment',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Show more',
69 'Show more': 'Show more',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Start following this repository',
74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Stop following this repository',
77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Submitting...',
79 'Submitting...': 'Submitting...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Unfollow',
86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'files',
100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Add another comment',
9 'Add another comment': 'Add another comment',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Show more',
69 'Show more': 'Show more',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Start following this repository',
74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Stop following this repository',
77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Submitting...',
79 'Submitting...': 'Submitting...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Unfollow',
86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'files',
100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Add another comment',
9 'Add another comment': 'Add another comment',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Show more',
69 'Show more': 'Show more',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Start following this repository',
74 'Start following this repository': 'Start following this repository',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Stop following this repository',
77 'Stop following this repository': 'Stop following this repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Submitting...',
79 'Submitting...': 'Submitting...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Unfollow',
86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'files',
100 'files': 'files',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Add another comment',
9 'Add another comment': 'Add another comment',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Show more',
69 'Show more': 'Show more',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Suivre ce dépôt',
74 'Start following this repository': 'Suivre ce dépôt',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Arrêter de suivre ce dépôt',
77 'Stop following this repository': 'Arrêter de suivre ce dépôt',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Envoi…',
79 'Submitting...': 'Envoi…',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Unfollow',
86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'Activé',
98 'enabled': 'Activé',
93 'file': 'file',
99 'file': 'file',
94 'files': 'Fichiers',
100 'files': 'Fichiers',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} mois',
127 '{0} months': '{0} mois',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Aggiungi un altro commento',
9 'Add another comment': 'Aggiungi un altro commento',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Mostra ancora',
69 'Show more': 'Mostra ancora',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Inizia a seguire il repository',
74 'Start following this repository': 'Inizia a seguire il repository',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Smetti di seguire il repository',
77 'Stop following this repository': 'Smetti di seguire il repository',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Inoltro...',
79 'Submitting...': 'Inoltro...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'Al momento non ci sono richieste di PULL che richiedono il tuo intervento',
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 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Smetti di seguire',
86 'Unfollow': 'Smetti di seguire',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'abilitato',
98 'enabled': 'abilitato',
93 'file': 'file',
99 'file': 'file',
94 'files': 'i file',
100 'files': 'i file',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': '別のコメントを追加',
9 'Add another comment': '別のコメントを追加',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'ステータスを承認にする',
64 'Set status to Approved': 'ステータスを承認にする',
64 'Set status to Rejected': 'ステータスを拒否にする',
65 'Set status to Rejected': 'ステータスを拒否にする',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'もっと表示',
69 'Show more': 'もっと表示',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'このリポジトリのフォローする',
74 'Start following this repository': 'このリポジトリのフォローする',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'ステータスレビュー',
76 'Status Review': 'ステータスレビュー',
74 'Stop following this repository': 'このリポジトリのフォローをやめる',
77 'Stop following this repository': 'このリポジトリのフォローをやめる',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': '送信中...',
79 'Submitting...': '送信中...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'アンフォロー',
86 'Unfollow': 'アンフォロー',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': '{0} 件のみ選択できます',
92 'You can only select {0} item': '{0} 件のみ選択できます',
87 'You can only select {0} items': '{0} 件のみ選択できます',
93 'You can only select {0} items': '{0} 件のみ選択できます',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': '有効',
98 'enabled': '有効',
93 'file': 'ファイル',
99 'file': 'ファイル',
94 'files': 'ファイル',
100 'files': 'ファイル',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} 分',
125 '{0} min': '{0} 分',
119 '{0} month': '{0} ヶ月',
126 '{0} month': '{0} ヶ月',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} 件の結果があります。矢印キーの上下で選択できます。',
132 '{0} results are available, use up and down arrow keys to navigate.': '{0} 件の結果があります。矢印キーの上下で選択できます。',
124 '{0} sec': '{0} 秒',
133 '{0} sec': '{0} 秒',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -2,6 +2,7 b''
2 _gettext('(from usergroup {0})');
2 _gettext('(from usergroup {0})');
3 _gettext('Add another comment');
3 _gettext('Add another comment');
4 _gettext('Adding new reviewers is forbidden.');
4 _gettext('Adding new reviewers is forbidden.');
5 _gettext('All Authors');
5 _gettext('All individual reviewers must vote.');
6 _gettext('All individual reviewers must vote.');
6 _gettext('All reviewers must vote.');
7 _gettext('All reviewers must vote.');
7 _gettext('At least {0} reviewer must vote.');
8 _gettext('At least {0} reviewer must vote.');
@@ -57,6 +58,7 b''
57 _gettext('Set status to Approved');
58 _gettext('Set status to Approved');
58 _gettext('Set status to Rejected');
59 _gettext('Set status to Rejected');
59 _gettext('Show at Commit ');
60 _gettext('Show at Commit ');
61 _gettext('Show commit range {0} ... {1}');
60 _gettext('Show full context diff');
62 _gettext('Show full context diff');
61 _gettext('Show more');
63 _gettext('Show more');
62 _gettext('Show selected commit __S');
64 _gettext('Show selected commit __S');
@@ -64,8 +66,10 b''
64 _gettext('Show whitespace changes');
66 _gettext('Show whitespace changes');
65 _gettext('Specified expiration date');
67 _gettext('Specified expiration date');
66 _gettext('Start following this repository');
68 _gettext('Start following this repository');
69 _gettext('Started watching this repository');
67 _gettext('Status Review');
70 _gettext('Status Review');
68 _gettext('Stop following this repository');
71 _gettext('Stop following this repository');
72 _gettext('Stopped watching this repository');
69 _gettext('Submitting...');
73 _gettext('Submitting...');
70 _gettext('Switch to chat');
74 _gettext('Switch to chat');
71 _gettext('Switch to comment');
75 _gettext('Switch to comment');
@@ -74,9 +78,11 b''
74 _gettext('There are currently no open pull requests requiring your participation.');
78 _gettext('There are currently no open pull requests requiring your participation.');
75 _gettext('Toggle Wide Mode diff');
79 _gettext('Toggle Wide Mode diff');
76 _gettext('Unfollow');
80 _gettext('Unfollow');
81 _gettext('Unwatch');
77 _gettext('Updating...');
82 _gettext('Updating...');
78 _gettext('User `{0}` already in reviewers');
83 _gettext('User `{0}` already in reviewers');
79 _gettext('User `{0}` not allowed to be a reviewer');
84 _gettext('User `{0}` not allowed to be a reviewer');
85 _gettext('Watch');
80 _gettext('You can only select {0} item');
86 _gettext('You can only select {0} item');
81 _gettext('You can only select {0} items');
87 _gettext('You can only select {0} items');
82 _gettext('activated');
88 _gettext('activated');
@@ -86,6 +92,7 b''
86 _gettext('enabled');
92 _gettext('enabled');
87 _gettext('file');
93 _gettext('file');
88 _gettext('files');
94 _gettext('files');
95 _gettext('go to numeric commit');
89 _gettext('in {0}');
96 _gettext('in {0}');
90 _gettext('in {0} and {1}');
97 _gettext('in {0} and {1}');
91 _gettext('in {0}, {1}');
98 _gettext('in {0}, {1}');
@@ -112,8 +119,10 b''
112 _gettext('{0} min');
119 _gettext('{0} min');
113 _gettext('{0} month');
120 _gettext('{0} month');
114 _gettext('{0} months');
121 _gettext('{0} months');
122 _gettext('{0} of {1} repository groups');
115 _gettext('{0} out of {1} ssh keys');
123 _gettext('{0} out of {1} ssh keys');
116 _gettext('{0} out of {1} users');
124 _gettext('{0} out of {1} users');
125 _gettext('{0} repository groups');
117 _gettext('{0} results are available, use up and down arrow keys to navigate.');
126 _gettext('{0} results are available, use up and down arrow keys to navigate.');
118 _gettext('{0} sec');
127 _gettext('{0} sec');
119 _gettext('{0} user groups ({1} inactive)');
128 _gettext('{0} user groups ({1} inactive)');
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Dodaj kolejny komentarz',
9 'Add another comment': 'Dodaj kolejny komentarz',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Pokaż więcej',
69 'Show more': 'Pokaż więcej',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Zacznij obserwację tego repozytorium',
74 'Start following this repository': 'Zacznij obserwację tego repozytorium',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Zakończyć obserwację tego repozytorium',
77 'Stop following this repository': 'Zakończyć obserwację tego repozytorium',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Przesyłanie...',
79 'Submitting...': 'Przesyłanie...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Nie obserwuj',
86 'Unfollow': 'Nie obserwuj',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'pliki',
100 'files': 'pliki',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Adicionar outro comentário',
9 'Add another comment': 'Adicionar outro comentário',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Mostrar mais',
69 'Show more': 'Mostrar mais',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Passar a seguir este repositório',
74 'Start following this repository': 'Passar a seguir este repositório',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Parar de seguir este repositório',
77 'Stop following this repository': 'Parar de seguir este repositório',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Enviando...',
79 'Submitting...': 'Enviando...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Parar de seguir',
86 'Unfollow': 'Parar de seguir',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'arquivos',
100 'files': 'arquivos',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Добавить другой комментарий',
9 'Add another comment': 'Добавить другой комментарий',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Показать еще',
69 'Show more': 'Показать еще',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': 'Наблюдать за репозиторием',
74 'Start following this repository': 'Наблюдать за репозиторием',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': 'Отменить наблюдение за репозиторием',
77 'Stop following this repository': 'Отменить наблюдение за репозиторием',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': 'Применение...',
79 'Submitting...': 'Применение...',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Не наблюдать',
86 'Unfollow': 'Не наблюдать',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': 'файлы',
100 'files': 'файлы',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -8,6 +8,7 b' var _TM = {'
8 '(from usergroup {0})': '(from usergroup {0})',
8 '(from usergroup {0})': '(from usergroup {0})',
9 'Add another comment': 'Add another comment',
9 'Add another comment': 'Add another comment',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
10 'Adding new reviewers is forbidden.': 'Adding new reviewers is forbidden.',
11 'All Authors': 'All Authors',
11 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All individual reviewers must vote.': 'All individual reviewers must vote.',
12 'All reviewers must vote.': 'All reviewers must vote.',
13 'All reviewers must vote.': 'All reviewers must vote.',
13 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
14 'At least {0} reviewer must vote.': 'At least {0} reviewer must vote.',
@@ -63,6 +64,7 b' var _TM = {'
63 'Set status to Approved': 'Set status to Approved',
64 'Set status to Approved': 'Set status to Approved',
64 'Set status to Rejected': 'Set status to Rejected',
65 'Set status to Rejected': 'Set status to Rejected',
65 'Show at Commit ': 'Show at Commit ',
66 'Show at Commit ': 'Show at Commit ',
67 'Show commit range {0} ... {1}': 'Show commit range {0} ... {1}',
66 'Show full context diff': 'Show full context diff',
68 'Show full context diff': 'Show full context diff',
67 'Show more': 'Show more',
69 'Show more': 'Show more',
68 'Show selected commit __S': 'Show selected commit __S',
70 'Show selected commit __S': 'Show selected commit __S',
@@ -70,8 +72,10 b' var _TM = {'
70 'Show whitespace changes': 'Show whitespace changes',
72 'Show whitespace changes': 'Show whitespace changes',
71 'Specified expiration date': 'Specified expiration date',
73 'Specified expiration date': 'Specified expiration date',
72 'Start following this repository': '开始关注该版本库',
74 'Start following this repository': '开始关注该版本库',
75 'Started watching this repository': 'Started watching this repository',
73 'Status Review': 'Status Review',
76 'Status Review': 'Status Review',
74 'Stop following this repository': '停止关注该版本库',
77 'Stop following this repository': '停止关注该版本库',
78 'Stopped watching this repository': 'Stopped watching this repository',
75 'Submitting...': '提交中……',
79 'Submitting...': '提交中……',
76 'Switch to chat': 'Switch to chat',
80 'Switch to chat': 'Switch to chat',
77 'Switch to comment': 'Switch to comment',
81 'Switch to comment': 'Switch to comment',
@@ -80,9 +84,11 b' var _TM = {'
80 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
84 'There are currently no open pull requests requiring your participation.': 'There are currently no open pull requests requiring your participation.',
81 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
85 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
82 'Unfollow': 'Unfollow',
86 'Unfollow': 'Unfollow',
87 'Unwatch': 'Unwatch',
83 'Updating...': 'Updating...',
88 'Updating...': 'Updating...',
84 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
89 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
85 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
90 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
91 'Watch': 'Watch',
86 'You can only select {0} item': 'You can only select {0} item',
92 'You can only select {0} item': 'You can only select {0} item',
87 'You can only select {0} items': 'You can only select {0} items',
93 'You can only select {0} items': 'You can only select {0} items',
88 'activated': 'activated',
94 'activated': 'activated',
@@ -92,6 +98,7 b' var _TM = {'
92 'enabled': 'enabled',
98 'enabled': 'enabled',
93 'file': 'file',
99 'file': 'file',
94 'files': '文件',
100 'files': '文件',
101 'go to numeric commit': 'go to numeric commit',
95 'in {0}': 'in {0}',
102 'in {0}': 'in {0}',
96 'in {0} and {1}': 'in {0} and {1}',
103 'in {0} and {1}': 'in {0} and {1}',
97 'in {0}, {1}': 'in {0}, {1}',
104 'in {0}, {1}': 'in {0}, {1}',
@@ -118,8 +125,10 b' var _TM = {'
118 '{0} min': '{0} min',
125 '{0} min': '{0} min',
119 '{0} month': '{0} month',
126 '{0} month': '{0} month',
120 '{0} months': '{0} months',
127 '{0} months': '{0} months',
128 '{0} of {1} repository groups': '{0} of {1} repository groups',
121 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
129 '{0} out of {1} ssh keys': '{0} out of {1} ssh keys',
122 '{0} out of {1} users': '{0} out of {1} users',
130 '{0} out of {1} users': '{0} out of {1} users',
131 '{0} repository groups': '{0} repository groups',
123 '{0} results are available, use up and down arrow keys to navigate.': '{0} results are available, use up and down arrow keys to navigate.',
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 '{0} sec': '{0} sec',
133 '{0} sec': '{0} sec',
125 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
134 '{0} user groups ({1} inactive)': '{0} user groups ({1} inactive)',
@@ -239,6 +239,7 b' function registerRCRoutes() {'
239 pyroutes.register('edit_repo_advanced_hooks', '/%(repo_name)s/settings/advanced/hooks', ['repo_name']);
239 pyroutes.register('edit_repo_advanced_hooks', '/%(repo_name)s/settings/advanced/hooks', ['repo_name']);
240 pyroutes.register('edit_repo_caches', '/%(repo_name)s/settings/caches', ['repo_name']);
240 pyroutes.register('edit_repo_caches', '/%(repo_name)s/settings/caches', ['repo_name']);
241 pyroutes.register('edit_repo_perms', '/%(repo_name)s/settings/permissions', ['repo_name']);
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 pyroutes.register('edit_repo_maintenance', '/%(repo_name)s/settings/maintenance', ['repo_name']);
243 pyroutes.register('edit_repo_maintenance', '/%(repo_name)s/settings/maintenance', ['repo_name']);
243 pyroutes.register('edit_repo_maintenance_execute', '/%(repo_name)s/settings/maintenance/execute', ['repo_name']);
244 pyroutes.register('edit_repo_maintenance_execute', '/%(repo_name)s/settings/maintenance/execute', ['repo_name']);
244 pyroutes.register('edit_repo_fields', '/%(repo_name)s/settings/fields', ['repo_name']);
245 pyroutes.register('edit_repo_fields', '/%(repo_name)s/settings/fields', ['repo_name']);
@@ -262,8 +263,10 b' function registerRCRoutes() {'
262 pyroutes.register('strip_check', '/%(repo_name)s/settings/strip_check', ['repo_name']);
263 pyroutes.register('strip_check', '/%(repo_name)s/settings/strip_check', ['repo_name']);
263 pyroutes.register('strip_execute', '/%(repo_name)s/settings/strip_execute', ['repo_name']);
264 pyroutes.register('strip_execute', '/%(repo_name)s/settings/strip_execute', ['repo_name']);
264 pyroutes.register('edit_repo_audit_logs', '/%(repo_name)s/settings/audit_logs', ['repo_name']);
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('rss_feed_home', '/%(repo_name)s/feed-rss', ['repo_name']);
266 pyroutes.register('atom_feed_home', '/%(repo_name)s/feed/atom', ['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 pyroutes.register('repo_summary', '/%(repo_name)s', ['repo_name']);
270 pyroutes.register('repo_summary', '/%(repo_name)s', ['repo_name']);
268 pyroutes.register('repo_summary_slash', '/%(repo_name)s/', ['repo_name']);
271 pyroutes.register('repo_summary_slash', '/%(repo_name)s/', ['repo_name']);
269 pyroutes.register('edit_repo_group', '/%(repo_group_name)s/_edit', ['repo_group_name']);
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 $.each($('.message.truncate'), function(idx, value) {
108 $.each($('.message.truncate'), function(idx, value) {
109 if(!(value.offsetWidth < value.scrollWidth)){
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 <div class="input">
11 <div class="input">
12 ${h.text('repo_name', class_="medium")}
12 ${h.text('repo_name', class_="medium")}
13 <div class="info-block">
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 </div>
15 </div>
16 %if not c.rhodecode_user.is_admin:
16 %if not c.rhodecode_user.is_admin:
17 ${h.hidden('user_created',True)}
17 ${h.hidden('user_created',True)}
@@ -161,7 +161,7 b''
161 <div class="field">
161 <div class="field">
162 <button class="btn btn-small btn-danger" type="submit"
162 <button class="btn btn-small btn-danger" type="submit"
163 onclick="return confirm('${_('Confirm to archive this repository: %s') % c.repo_name}');">
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 ${_('Archive this repository')}
165 ${_('Archive this repository')}
166 </button>
166 </button>
167 </div>
167 </div>
@@ -217,7 +217,7 b''
217 <div class="field">
217 <div class="field">
218 <button class="btn btn-small btn-danger" type="submit"
218 <button class="btn btn-small btn-danger" type="submit"
219 onclick="return confirm('${_('Confirm to delete this repository: %s') % c.repo_name}');">
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 ${_('Delete this repository')}
221 ${_('Delete this repository')}
222 </button>
222 </button>
223 </div>
223 </div>
@@ -105,6 +105,10 b''
105 member="${_user.user_id}" member_type="user">
105 member="${_user.user_id}" member_type="user">
106 ${_('Remove')}
106 ${_('Remove')}
107 </span>
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 %endif
112 %endif
109 </td>
113 </td>
110 <td class="quick_repo_menu">
114 <td class="quick_repo_menu">
@@ -199,4 +203,20 b''
199 markRevokePermInput($(this), 'repository');
203 markRevokePermInput($(this), 'repository');
200 });
204 });
201 quick_repo_menu();
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 </script>
222 </script>
@@ -57,7 +57,7 b''
57 % if not c.form['repo_clone_uri'].error:
57 % if not c.form['repo_clone_uri'].error:
58 <div id="clone_uri_hidden" class='text-as-placeholder'>
58 <div id="clone_uri_hidden" class='text-as-placeholder'>
59 <span id="clone_uri_hidden_value">${c.rhodecode_db_repo.clone_uri_hidden}</span>
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 </div>
61 </div>
62 % endif
62 % endif
63
63
@@ -99,7 +99,7 b''
99 % if not c.form['repo_push_uri'].error:
99 % if not c.form['repo_push_uri'].error:
100 <div id="push_uri_hidden" class='text-as-placeholder'>
100 <div id="push_uri_hidden" class='text-as-placeholder'>
101 <span id="push_uri_hidden_value">${c.rhodecode_db_repo.push_uri_hidden}</span>
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 </div>
103 </div>
104 % endif
104 % endif
105
105
@@ -27,7 +27,7 b''
27 <div class="field">
27 <div class="field">
28 <button class="btn btn-small btn-danger" type="submit"
28 <button class="btn btn-small btn-danger" type="submit"
29 onclick="return confirm('${_('Confirm to delete this exception')}');">
29 onclick="return confirm('${_('Confirm to delete this exception')}');">
30 <i class="icon-remove-sign"></i>
30 <i class="icon-remove"></i>
31 ${_('Delete This Exception')}
31 ${_('Delete This Exception')}
32 </button>
32 </button>
33 </div>
33 </div>
@@ -17,7 +17,7 b''
17 <div class="field">
17 <div class="field">
18 <button class="btn btn-small btn-danger" type="submit"
18 <button class="btn btn-small btn-danger" type="submit"
19 onclick="return confirm('${_('Confirm to delete all exceptions')}');">
19 onclick="return confirm('${_('Confirm to delete all exceptions')}');">
20 <i class="icon-remove-sign"></i>
20 <i class="icon-remove"></i>
21 % if c.type_filter:
21 % if c.type_filter:
22 ${_('Delete All `{}`').format(c.type_filter)}
22 ${_('Delete All `{}`').format(c.type_filter)}
23 % else:
23 % else:
@@ -108,8 +108,8 b''
108 <div style="padding: 10px 0px"></div>
108 <div style="padding: 10px 0px"></div>
109 <div class="textarea text-area">
109 <div class="textarea text-area">
110 ${h.textarea('rhodecode_pre_code',cols=23,rows=5,class_="medium")}
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.')}
111 <span class="help-block">${_('Custom js/css code added at the end of the <head/> tag.')}
112 ${_('Use <script/> or <css/> tags to define custom styling or scripting')}</span>
112 ${_('Use <script/> or <style/> tags to define custom scripting or styling.')}</span>
113 </div>
113 </div>
114 </div>
114 </div>
115 </div>
115 </div>
@@ -131,7 +131,7 b''
131 <div class="textarea text-area">
131 <div class="textarea text-area">
132 ${h.textarea('rhodecode_post_code',cols=23,rows=5, class_="medium")}
132 ${h.textarea('rhodecode_post_code',cols=23,rows=5, class_="medium")}
133 <span class="help-block">${_('Custom js/css code added at the end of the <body> tag.')}
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 </div>
135 </div>
136 </div>
136 </div>
137 </div>
137 </div>
@@ -77,7 +77,7 b''
77 ${h.hidden('force', 1)}
77 ${h.hidden('force', 1)}
78 <button class="btn btn-small btn-danger" type="submit"
78 <button class="btn btn-small btn-danger" type="submit"
79 onclick="return confirm('${_('Confirm to delete user group `%(ugroup)s` with all permission assignments') % {'ugroup': c.user_group.users_group_name}}');">
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 ${_('Delete This User Group')}
81 ${_('Delete This User Group')}
82 </button>
82 </button>
83 ${h.end_form()}
83 ${h.end_form()}
@@ -86,7 +86,7 b''
86 </td>
86 </td>
87 <td class="">
87 <td class="">
88 <div class="usergroup_member_remove action_button" onclick="removeUserGroupMember(${user.user_id}, true)" style="visibility: visible;">
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 </div>
90 </div>
91 </td>
91 </td>
92 </tr>
92 </tr>
@@ -155,7 +155,7 b''
155 '</td>'+
155 '</td>'+
156 '<td class="td-author-new-entry">'+
156 '<td class="td-author-new-entry">'+
157 '<div class="usergroup_member_remove action_button" onclick="removeUserGroupMember({5}, true)" style="visibility: visible;">'+
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 '</div>'+
159 '</div>'+
160 '</td>'+
160 '</td>'+
161 '</tr>').format(gravatar, userLink, username,
161 '</tr>').format(gravatar, userLink, username,
@@ -217,7 +217,7 b''
217 ## Context Actions
217 ## Context Actions
218 <div class="pull-right">
218 <div class="pull-right">
219 %if c.rhodecode_user.username != h.DEFAULT_USER:
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 <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 '')}">
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 % if c.repository_is_user_following:
223 % if c.repository_is_user_following:
@@ -228,7 +228,7 b''
228
228
229 </a>
229 </a>
230 %else:
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 %endif
232 %endif
233 </div>
233 </div>
234
234
@@ -556,7 +556,7 b' def get_comments_for(diff_type, comments'
556 %if line_old_comments:
556 %if line_old_comments:
557 <% has_outdated = any([x.outdated for x in line_old_comments]) %>
557 <% has_outdated = any([x.outdated for x in line_old_comments]) %>
558 % if has_outdated:
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 % else:
560 % else:
561 <i title="${_('comments')}: ${len(line_old_comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
561 <i title="${_('comments')}: ${len(line_old_comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
562 % endif
562 % endif
@@ -599,7 +599,7 b' def get_comments_for(diff_type, comments'
599 %if line_new_comments:
599 %if line_new_comments:
600 <% has_outdated = any([x.outdated for x in line_new_comments]) %>
600 <% has_outdated = any([x.outdated for x in line_new_comments]) %>
601 % if has_outdated:
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 % else:
603 % else:
604 <i title="${_('comments')}: ${len(line_new_comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
604 <i title="${_('comments')}: ${len(line_new_comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
605 % endif
605 % endif
@@ -655,7 +655,7 b' def get_comments_for(diff_type, comments'
655 % if comments:
655 % if comments:
656 <% has_outdated = any([x.outdated for x in comments]) %>
656 <% has_outdated = any([x.outdated for x in comments]) %>
657 % if has_outdated:
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 % else:
659 % else:
660 <i title="${_('comments')}: ${len(comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
660 <i title="${_('comments')}: ${len(comments)}" class="icon-comment" onclick="return Rhodecode.comments.toggleLineComments(this)"></i>
661 % endif
661 % endif
@@ -165,7 +165,8 b''
165 <div>
165 <div>
166 <div class="grid_edit">
166 <div class="grid_edit">
167 <a href="${h.route_path('edit_repo',repo_name=repo_name)}" title="${_('Edit')}">
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 </div>
170 </div>
170 <div class="grid_delete">
171 <div class="grid_delete">
171 ${h.secure_form(h.route_path('edit_repo_advanced_delete', repo_name=repo_name), request=request)}
172 ${h.secure_form(h.route_path('edit_repo_advanced_delete', repo_name=repo_name), request=request)}
@@ -252,7 +253,8 b''
252 <%def name="user_actions(user_id, username)">
253 <%def name="user_actions(user_id, username)">
253 <div class="grid_edit">
254 <div class="grid_edit">
254 <a href="${h.route_path('user_edit',user_id=user_id)}" title="${_('Edit')}">
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 </div>
258 </div>
257 <div class="grid_delete">
259 <div class="grid_delete">
258 ${h.secure_form(h.route_path('user_delete', user_id=user_id), request=request)}
260 ${h.secure_form(h.route_path('user_delete', user_id=user_id), request=request)}
@@ -470,7 +470,7 b''
470 <a class="btn btn-mini" href="/example/annotate/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">annotation</a>
470 <a class="btn btn-mini" href="/example/annotate/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">annotation</a>
471 <a class="btn btn-mini" href="/example/raw/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">raw</a>
471 <a class="btn btn-mini" href="/example/raw/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">raw</a>
472 <a class="btn btn-mini" href="/example/rawfile/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">
472 <a class="btn btn-mini" href="/example/rawfile/fc252256eb0fcb4f2613e66f0126ea27967ae28c/rhodecode/websetup.py">
473 <i class="icon-archive"></i> download
473 download
474 </a>
474 </a>
475
475
476 <a class="btn btn-mini disabled tooltip" href="#" title="Editing files allowed only when on branch head commit">edit</a>
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 <a class="btn btn-mini" href="/example/files/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">source</a>
648 <a class="btn btn-mini" href="/example/files/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">source</a>
649 <a class="btn btn-mini" href="/example/raw/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">raw</a>
649 <a class="btn btn-mini" href="/example/raw/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">raw</a>
650 <a class="btn btn-mini" href="/example/rawfile/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">
650 <a class="btn btn-mini" href="/example/rawfile/80ead1899f50a894889e19ffeb49c9cebf5bf045/rhodecode/websetup.py">
651 <i class="icon-archive"></i> download
651 download
652 </a>
652 </a>
653 </div>
653 </div>
654 </div>
654 </div>
@@ -150,7 +150,7 b''
150 </div>
150 </div>
151 <input id="reviewer_70_input" type="hidden" value="70" name="review_members">
151 <input id="reviewer_70_input" type="hidden" value="70" name="review_members">
152 <div class="reviewer_member_remove action_button" onclick="removeReviewMember(70, true)" style="visibility: hidden;">
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 </div>
154 </div>
155 </li>
155 </li>
156 <li id="reviewer_33" class="collapsable-content" data-toggle="reviewers">
156 <li id="reviewer_33" class="collapsable-content" data-toggle="reviewers">
@@ -250,7 +250,7 b''
250 <div class='input'>
250 <div class='input'>
251 <input id="05_example_input" type="text" readonly="readonly" placeholder="Example input">
251 <input id="05_example_input" type="text" readonly="readonly" placeholder="Example input">
252 <span class="btn action_button btn-x">
252 <span class="btn action_button btn-x">
253 <i class="icon-remove-sign"></i>
253 <i class="icon-remove"></i>
254 delete
254 delete
255 </span>
255 </span>
256 <span class="help-block">
256 <span class="help-block">
@@ -42,7 +42,7 b''
42 <div class='input'>
42 <div class='input'>
43 <div class='text-as-placeholder'>
43 <div class='text-as-placeholder'>
44 http://something.example.com
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 </div>
46 </div>
47 <p class='help-block'>Help text in a paragraph.</p>
47 <p class='help-block'>Help text in a paragraph.</p>
48 </div>
48 </div>
@@ -339,7 +339,7 b''
339 <div class='input'>
339 <div class='input'>
340 <input id="05_example_input" type="text" readonly="readonly" placeholder="Example input">
340 <input id="05_example_input" type="text" readonly="readonly" placeholder="Example input">
341 <span class="btn btn-x">
341 <span class="btn btn-x">
342 <i class="icon-remove-sign"></i>
342 <i class="icon-remove"></i>
343 delete
343 delete
344 </span>
344 </span>
345 <button class='btn btn-primary'>Action</button>
345 <button class='btn btn-primary'>Action</button>
@@ -47,7 +47,6 b''
47 <td>
47 <td>
48 <div class="grid_edit">
48 <div class="grid_edit">
49 <a class="edit_issuetracker_entry" uid="4980baa2985b361e6e91b932f4a897d5" title="edit" href="#">
49 <a class="edit_issuetracker_entry" uid="4980baa2985b361e6e91b932f4a897d5" title="edit" href="#">
50 <i class="icon-pencil"></i>
51 <input type="submit" value="edit" class="btn btn-link">
50 <input type="submit" value="edit" class="btn btn-link">
52 </a>
51 </a>
53 </div>
52 </div>
@@ -59,7 +58,7 b''
59
58
60 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
59 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
61 <input type="hidden" value="4980baa2985b361e6e91b932f4a897d5" name="del_uid" id="del_uid">
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 <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">
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 </form>
63 </form>
65 </div>
64 </div>
@@ -74,7 +73,6 b''
74 <td>
73 <td>
75 <div class="grid_edit">
74 <div class="grid_edit">
76 <a class="edit_issuetracker_entry" uid="98ac51a4ab43bb36a4feceed15ac5b21" title="edit" href="#">
75 <a class="edit_issuetracker_entry" uid="98ac51a4ab43bb36a4feceed15ac5b21" title="edit" href="#">
77 <i class="icon-pencil"></i>
78 <input type="submit" value="edit" class="btn btn-link">
76 <input type="submit" value="edit" class="btn btn-link">
79 </a>
77 </a>
80 </div>
78 </div>
@@ -86,7 +84,7 b''
86
84
87 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
85 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
88 <input type="hidden" value="98ac51a4ab43bb36a4feceed15ac5b21" name="del_uid" id="del_uid">
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 <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">
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 </form>
89 </form>
92 </div>
90 </div>
@@ -101,7 +99,6 b''
101 <td>
99 <td>
102 <div class="grid_edit">
100 <div class="grid_edit">
103 <a class="edit_issuetracker_entry" uid="098f6bcd4621d373cade4e832627b4f6" title="edit" href="#">
101 <a class="edit_issuetracker_entry" uid="098f6bcd4621d373cade4e832627b4f6" title="edit" href="#">
104 <i class="icon-pencil"></i>
105 <input type="submit" value="edit" class="btn btn-link">
102 <input type="submit" value="edit" class="btn btn-link">
106 </a>
103 </a>
107 </div>
104 </div>
@@ -113,7 +110,7 b''
113
110
114 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
111 <div style="display: none;"><input type="hidden" value="05adf5bfb9be3766186f25db19b545134c6b0077" name="csrf_token" id="csrf_token"></div>
115 <input type="hidden" value="098f6bcd4621d373cade4e832627b4f6" name="del_uid" id="del_uid">
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 <input type="submit" value="delete" onclick="return confirm('Confirm to remove this pattern: test');" id="remove_user_3" class="btn btn-link btn-danger">
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 </form>
115 </form>
119 </div>
116 </div>
@@ -236,11 +236,12 b''
236 <td class="td-action">
236 <td class="td-action">
237 <div class="grid_edit">
237 <div class="grid_edit">
238 <a href="/_admin/users/2/edit" title="edit">
238 <a href="/_admin/users/2/edit" title="edit">
239 <i class="icon-pencil"></i>Edit</a>
239 Edit
240 </a>
240 </div>
241 </div>
241 <div class="grid_delete">
242 <div class="grid_delete">
242 <form action="/_admin/users/2" method="post">
243 <form action="/_admin/users/2" method="post">
243 <i class="icon-remove-sign"></i>
244 <i class="icon-remove"></i>
244 <input class="btn btn-danger btn-link" id="remove_user_2" name="remove_" type="submit" value="delete">
245 <input class="btn btn-danger btn-link" id="remove_user_2" name="remove_" type="submit" value="delete">
245 </form>
246 </form>
246 </div>
247 </div>
@@ -104,12 +104,12 b' var CG = new ColorGenerator();'
104
104
105 <% if (mandatory) { %>
105 <% if (mandatory) { %>
106 <div class="reviewer_member_mandatory_remove" style="visibility: <%= edit_visibility %>;">
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 </div>
108 </div>
109 <% } else { %>
109 <% } else { %>
110 <% if (allowed_to_update) { %>
110 <% if (allowed_to_update) { %>
111 <div class="reviewer_member_remove action_button" onclick="reviewersController.removeReviewMember(<%= member.user_id %>, true)" style="visibility: <%= edit_visibility %>;">
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 </div>
113 </div>
114 <% } %>
114 <% } %>
115 <% } %>
115 <% } %>
@@ -186,7 +186,7 b''
186 % else:
186 % else:
187 <span class="enabled">
187 <span class="enabled">
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')}">
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 ## replaced by some JS on select
190 ## replaced by some JS on select
191 </a>
191 </a>
192 </span>
192 </span>
@@ -90,7 +90,7 b''
90 var fname = e.added.raw_id + ext;
90 var fname = e.added.raw_id + ext;
91 var href = pyroutes.url('repo_archivefile', {'repo_name': templateContext.repo_name, 'fname':fname});
91 var href = pyroutes.url('repo_archivefile', {'repo_name': templateContext.repo_name, 'fname':fname});
92 // set new label
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 // set new url to button,
95 // set new url to button,
96 $('#archive_link').attr('href', href)
96 $('#archive_link').attr('href', href)
@@ -2,7 +2,7 b''
2
2
3 <%def name="title()">
3 <%def name="title()">
4 ## represents page title
4 ## represents page title
5 ${_('%s Summary') % c.repo_name}
5 ${_('{} Summary').format(c.repo_name)}
6 %if c.rhodecode_name:
6 %if c.rhodecode_name:
7 &middot; ${h.branding(c.rhodecode_name)}
7 &middot; ${h.branding(c.rhodecode_name)}
8 %endif
8 %endif
@@ -10,8 +10,8 b''
10
10
11
11
12 <%def name="head_extra()">
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" />
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_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" />
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 </%def>
15 </%def>
16
16
17
17
@@ -128,7 +128,7 b' def integration_repos(request, StubInteg'
128 'root_repo': root_repo,
128 'root_repo': root_repo,
129 'other_repo': other_repo,
129 'other_repo': other_repo,
130 'parent_repo': parent_repo,
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 assert triggered_integrations == [
152 assert triggered_integrations == [
153 integrations['global'],
153 integrations['global'],
154 integrations['other_repo'],
155 integrations['other_group'],
154 integrations['other_group'],
156 integrations['other_group_recursive'],
155 integrations['other_group_recursive'],
156 integrations['other_repo'],
157 ]
157 ]
158
158
159 triggered_integrations = IntegrationModel().get_for_event(
159 triggered_integrations = IntegrationModel().get_for_event(
@@ -161,9 +161,9 b' def test_enabled_integration_repo_scopes'
161
161
162 assert triggered_integrations == [
162 assert triggered_integrations == [
163 integrations['global'],
163 integrations['global'],
164 integrations['parent_repo'],
165 integrations['parent_group'],
164 integrations['parent_group'],
166 integrations['parent_group_recursive'],
165 integrations['parent_group_recursive'],
166 integrations['parent_repo'],
167 ]
167 ]
168
168
169 triggered_integrations = IntegrationModel().get_for_event(
169 triggered_integrations = IntegrationModel().get_for_event(
@@ -171,10 +171,10 b' def test_enabled_integration_repo_scopes'
171
171
172 assert triggered_integrations == [
172 assert triggered_integrations == [
173 integrations['global'],
173 integrations['global'],
174 integrations['child_repo'],
174 integrations['child_group'],
175 integrations['parent_group_recursive'],
175 integrations['parent_group_recursive'],
176 integrations['child_group'],
177 integrations['child_group_recursive'],
176 integrations['child_group_recursive'],
177 integrations['child_repo'],
178 ]
178 ]
179
179
180
180
@@ -19,51 +19,55 b''
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import timeit
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 = [
28 @click.command()
26 "cpython",
29 @click.option('--server', help='Server url to connect to. e.g http://rc.local.com', required=True)
27 "cpython/annotate/74236c8bf064188516b32bf95016971227ec72a9/Makefile.pre.in",
30 @click.option('--pages', help='load pages to visit from a file', required=True, type=click.File())
28 "cpython/changelog",
31 @click.option('--repeat', help='number of times to repeat', default=10, type=int)
29 "cpython/changeset/e0f681f4ade3af52915d5f32daac97ada580d71a",
32 def main(server, repeat, pages):
30 "cpython/compare/tag@v3.4.1rc1...tag@v3.4.1?target_repo=cpython",
33
31 "cpython/files/tip/",
34 print("Repeating each URL %d times\n" % repeat)
32 "cpython/files/74236c8bf064188516b32bf95016971227ec72a9/Grammar",
35 pages = pages.readlines()
33 "",
36
34 "git",
37 for page_url in pages:
35 "git/annotate/6c4ab27f2378ce67940b4496365043119d7ffff2/gitk-git/.gitignore",
38
36 "git/changelog",
39 url = "%s/%s" % (server, page_url.strip())
37 "git/changeset/d299e9e550c1bf8640907fdba1f03cc585ee71df",
40 print(url)
38 "git/compare/rev@1200...rev@1300?target_repo=git",
41
39 "git/files/tip/",
42 stmt = "requests.get('%s', timeout=120)" % url
40 "git/files/6c4ab27f2378ce67940b4496365043119d7ffff2/.gitignore"
43 t = timeit.Timer(stmt=stmt, setup="import requests")
41 ]
42
44
43 svn_pages = [
45 result = t.repeat(repeat=repeat, number=1)
44 "svn-apache",
46 print(" %.3f (min) - %.3f (max) - %.3f (avg)\n" %
45 "svn-apache/annotate/672129/cocoon/trunk/README.txt",
47 (min(result), max(result), sum(result) / len(result)))
46 "svn-apache/changelog",
48
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 ]
53
49
54 # Uncomment to check also svn performance
50 if __name__ == '__main__':
55 # pages = pages + svn_pages
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)
63
60 for page in pages:
64
61 url = "http://%s/%s" % (server, page)
65
62 print(url)
63
66
64 stmt = "urllib2.urlopen('%s', timeout=120)" % url
67
65 t = timeit.Timer(stmt=stmt, setup="import urllib2")
68
69
66
70
67 result = t.repeat(repeat=repeat, number=1)
71
68 print("\t%.3f (min) - %.3f (max) - %.3f (avg)\n" %
72
69 (min(result), max(result), sum(result)/len(result)))
73
@@ -108,12 +108,12 b' class Repository(object):'
108 self.name = name
108 self.name = name
109 self.path = os.path.join(base_path, name)
109 self.path = os.path.join(base_path, name)
110 self.api = api
110 self.api = api
111 self.url = None
111
112
112 def create(self):
113 def create(self):
113 self._create_filesystem_repo(self.path)
114 self._create_filesystem_repo(self.path)
114 try:
115 try:
115 self.url = self.api.create_repo(
116 self.url = self.api.create_repo(self.name, self.TYPE, 'Performance tests')
116 self.name, self.TYPE, 'Performance tests')
117 except ApiError as e:
117 except ApiError as e:
118 log.error('api: {}'.format(e))
118 log.error('api: {}'.format(e))
119
119
@@ -127,7 +127,7 b' class Repository(object):'
127 def create_commits(self, number, file_size):
127 def create_commits(self, number, file_size):
128 for i in xrange(number):
128 for i in xrange(number):
129 file_name = self.FILE_NAME_TEMPLATE.format(i)
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 self._create_file(file_name, file_size)
131 self._create_file(file_name, file_size)
132 self._create_commit(file_name)
132 self._create_commit(file_name)
133
133
@@ -258,8 +258,8 b' class Benchmark(object):'
258 for operation in operations:
258 for operation in operations:
259 for type_ in repos:
259 for type_ in repos:
260 times = self._measure(repos[type_], *operation)
260 times = self._measure(repos[type_], *operation)
261 print("Mean {} {} time: {:.3f} sec.".format(
261 print("Mean[of {}] {:5s} {:5s} time: {:.3f} sec.".format(
262 type_, operation[0], mean(times)))
262 len(times), type_, operation[0], mean(times)))
263
263
264 def cleanup(self):
264 def cleanup(self):
265 log.info("Cleaning up...")
265 log.info("Cleaning up...")
@@ -296,6 +296,7 b' class Benchmark(object):'
296 log.addHandler(handler)
296 log.addHandler(handler)
297 log.setLevel(log_level)
297 log.setLevel(log_level)
298
298
299
299 if __name__ == '__main__':
300 if __name__ == '__main__':
300 config = Config()
301 config = Config()
301 benchmark = Benchmark(config)
302 benchmark = Benchmark(config)
@@ -392,7 +392,7 b' def is_url_reachable(url):'
392 try:
392 try:
393 urllib2.urlopen(url)
393 urllib2.urlopen(url)
394 except urllib2.URLError:
394 except urllib2.URLError:
395 log.exception('URL Reach error')
395 log.exception('URL `{}` reach error'.format(url))
396 return False
396 return False
397 return True
397 return True
398
398
General Comments 0
You need to be logged in to leave comments. Login now