##// END OF EJS Templates
release: merge back stable branch into default
marcink -
r4469:9d632087 merge default
parent child Browse files
Show More
@@ -0,0 +1,42 b''
1 |RCE| 4.20.1 |RNS|
2 ------------------
3
4 Release Date
5 ^^^^^^^^^^^^
6
7 - 2020-07-27
8
9
10 New Features
11 ^^^^^^^^^^^^
12
13
14
15 General
16 ^^^^^^^
17
18 - Permissions: rename write+ to write or higher for more explicit meaning.
19
20
21 Security
22 ^^^^^^^^
23
24
25
26 Performance
27 ^^^^^^^^^^^
28
29
30
31 Fixes
32 ^^^^^
33
34 - Files: fixed creation of new files for empty repos.
35 - Notifications: properly inject the custom email headers into templates.
36 - Store file integration: fixed support for nested subdirs.
37
38
39 Upgrade notes
40 ^^^^^^^^^^^^^
41
42 - Un-scheduled release addressing problems in 4.20.X releases.
@@ -66,3 +66,5 b' ddef396a6567117de531d67d44c739cbbfc3eebb'
66 c0c65acd73914bf4368222d510afe1161ab8c07c v4.19.1
66 c0c65acd73914bf4368222d510afe1161ab8c07c v4.19.1
67 7ac623a4a2405917e2af660d645ded662011e40d v4.19.2
67 7ac623a4a2405917e2af660d645ded662011e40d v4.19.2
68 ef7ffda65eeb90c3ba88590a6cb816ef9b0bc232 v4.19.3
68 ef7ffda65eeb90c3ba88590a6cb816ef9b0bc232 v4.19.3
69 3e635489bb7961df93b01e42454ad1a8730ae968 v4.20.0
70 7e2eb896a02ca7cd2cd9f0f853ef3dac3f0039e3 v4.20.1
@@ -9,6 +9,7 b' Release Notes'
9 .. toctree::
9 .. toctree::
10 :maxdepth: 1
10 :maxdepth: 1
11
11
12 release-notes-4.20.1.rst
12 release-notes-4.20.0.rst
13 release-notes-4.20.0.rst
13 release-notes-4.19.3.rst
14 release-notes-4.19.3.rst
14 release-notes-4.19.2.rst
15 release-notes-4.19.2.rst
@@ -211,7 +211,7 b' class RepoFilesView(RepoAppView):'
211
211
212 return file_node
212 return file_node
213
213
214 def _is_valid_head(self, commit_id, repo):
214 def _is_valid_head(self, commit_id, repo, landing_ref):
215 branch_name = sha_commit_id = ''
215 branch_name = sha_commit_id = ''
216 is_head = False
216 is_head = False
217 log.debug('Checking if commit_id `%s` is a head for %s.', commit_id, repo)
217 log.debug('Checking if commit_id `%s` is a head for %s.', commit_id, repo)
@@ -237,7 +237,11 b' class RepoFilesView(RepoAppView):'
237 return branch_name, sha_commit_id, is_head
237 return branch_name, sha_commit_id, is_head
238
238
239 # checked branches, means we only need to try to get the branch/commit_sha
239 # checked branches, means we only need to try to get the branch/commit_sha
240 if not repo.is_empty():
240 if repo.is_empty():
241 is_head = True
242 branch_name = landing_ref
243 sha_commit_id = EmptyCommit().raw_id
244 else:
241 commit = repo.get_commit(commit_id=commit_id)
245 commit = repo.get_commit(commit_id=commit_id)
242 if commit:
246 if commit:
243 branch_name = commit.branch
247 branch_name = commit.branch
@@ -696,8 +700,9 b' class RepoFilesView(RepoAppView):'
696 if not c.renderer:
700 if not c.renderer:
697 c.lines = filenode_as_lines_tokens(c.file)
701 c.lines = filenode_as_lines_tokens(c.file)
698
702
699 _branch_name, _sha_commit_id, is_head = self._is_valid_head(
703 _branch_name, _sha_commit_id, is_head = \
700 commit_id, self.rhodecode_vcs_repo)
704 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
705 landing_ref=self.db_repo.landing_ref_name)
701 c.on_branch_head = is_head
706 c.on_branch_head = is_head
702
707
703 branch = c.commit.branch if (
708 branch = c.commit.branch if (
@@ -1135,7 +1140,8 b' class RepoFilesView(RepoAppView):'
1135
1140
1136 commit_id, f_path = self._get_commit_and_path()
1141 commit_id, f_path = self._get_commit_and_path()
1137 _branch_name, _sha_commit_id, is_head = \
1142 _branch_name, _sha_commit_id, is_head = \
1138 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1143 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1144 landing_ref=self.db_repo.landing_ref_name)
1139
1145
1140 new_path = self.request.POST.get('path')
1146 new_path = self.request.POST.get('path')
1141 operation = self.request.POST.get('operation')
1147 operation = self.request.POST.get('operation')
@@ -1173,7 +1179,8 b' class RepoFilesView(RepoAppView):'
1173
1179
1174 self._ensure_not_locked()
1180 self._ensure_not_locked()
1175 _branch_name, _sha_commit_id, is_head = \
1181 _branch_name, _sha_commit_id, is_head = \
1176 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1182 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1183 landing_ref=self.db_repo.landing_ref_name)
1177
1184
1178 self.forbid_non_head(is_head, f_path)
1185 self.forbid_non_head(is_head, f_path)
1179 self.check_branch_permission(_branch_name)
1186 self.check_branch_permission(_branch_name)
@@ -1201,7 +1208,8 b' class RepoFilesView(RepoAppView):'
1201
1208
1202 self._ensure_not_locked()
1209 self._ensure_not_locked()
1203 _branch_name, _sha_commit_id, is_head = \
1210 _branch_name, _sha_commit_id, is_head = \
1204 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1211 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1212 landing_ref=self.db_repo.landing_ref_name)
1205
1213
1206 self.forbid_non_head(is_head, f_path)
1214 self.forbid_non_head(is_head, f_path)
1207 self.check_branch_permission(_branch_name)
1215 self.check_branch_permission(_branch_name)
@@ -1251,7 +1259,8 b' class RepoFilesView(RepoAppView):'
1251
1259
1252 self._ensure_not_locked()
1260 self._ensure_not_locked()
1253 _branch_name, _sha_commit_id, is_head = \
1261 _branch_name, _sha_commit_id, is_head = \
1254 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1262 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1263 landing_ref=self.db_repo.landing_ref_name)
1255
1264
1256 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1265 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1257 self.check_branch_permission(_branch_name, commit_id=commit_id)
1266 self.check_branch_permission(_branch_name, commit_id=commit_id)
@@ -1292,7 +1301,8 b' class RepoFilesView(RepoAppView):'
1292 commit_id=c.commit.raw_id, f_path=f_path))
1301 commit_id=c.commit.raw_id, f_path=f_path))
1293
1302
1294 _branch_name, _sha_commit_id, is_head = \
1303 _branch_name, _sha_commit_id, is_head = \
1295 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1304 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1305 landing_ref=self.db_repo.landing_ref_name)
1296
1306
1297 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1307 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1298 self.check_branch_permission(_branch_name, commit_id=commit_id)
1308 self.check_branch_permission(_branch_name, commit_id=commit_id)
@@ -1380,7 +1390,8 b' class RepoFilesView(RepoAppView):'
1380 _branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
1390 _branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
1381 else:
1391 else:
1382 _branch_name, _sha_commit_id, is_head = \
1392 _branch_name, _sha_commit_id, is_head = \
1383 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1393 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1394 landing_ref=self.db_repo.landing_ref_name)
1384
1395
1385 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1396 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1386 self.check_branch_permission(_branch_name, commit_id=commit_id)
1397 self.check_branch_permission(_branch_name, commit_id=commit_id)
@@ -1421,7 +1432,8 b' class RepoFilesView(RepoAppView):'
1421 _branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
1432 _branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
1422 else:
1433 else:
1423 _branch_name, _sha_commit_id, is_head = \
1434 _branch_name, _sha_commit_id, is_head = \
1424 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1435 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1436 landing_ref=self.db_repo.landing_ref_name)
1425
1437
1426 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1438 self.forbid_non_head(is_head, f_path, commit_id=commit_id)
1427 self.check_branch_permission(_branch_name, commit_id=commit_id)
1439 self.check_branch_permission(_branch_name, commit_id=commit_id)
@@ -1517,7 +1529,8 b' class RepoFilesView(RepoAppView):'
1517 _branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
1529 _branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
1518 else:
1530 else:
1519 _branch_name, _sha_commit_id, is_head = \
1531 _branch_name, _sha_commit_id, is_head = \
1520 self._is_valid_head(commit_id, self.rhodecode_vcs_repo)
1532 self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
1533 landing_ref=self.db_repo.landing_ref_name)
1521
1534
1522 error = self.forbid_non_head(is_head, f_path, json_mode=True)
1535 error = self.forbid_non_head(is_head, f_path, json_mode=True)
1523 if error:
1536 if error:
@@ -54,7 +54,7 b' class RepoSettingsPermissionsView(RepoAp'
54 c = self.load_default_context()
54 c = self.load_default_context()
55 c.active = 'permissions'
55 c.active = 'permissions'
56 if self.request.GET.get('branch_permissions'):
56 if self.request.GET.get('branch_permissions'):
57 h.flash(_('Explicitly add user or user group with write+ '
57 h.flash(_('Explicitly add user or user group with write or higher '
58 'permission to modify their branch permissions.'),
58 'permission to modify their branch permissions.'),
59 category='notice')
59 category='notice')
60 return self._get_template_context(c)
60 return self._get_template_context(c)
@@ -604,68 +604,74 b' class RepoPullRequestsView(RepoAppView, '
604 if not force_recache and has_proper_diff_cache:
604 if not force_recache and has_proper_diff_cache:
605 c.diffset = cached_diff['diff']
605 c.diffset = cached_diff['diff']
606 else:
606 else:
607 c.diffset = self._get_diffset(
607 try:
608 c.source_repo.repo_name, commits_source_repo,
608 c.diffset = self._get_diffset(
609 c.ancestor_commit,
609 c.source_repo.repo_name, commits_source_repo,
610 source_ref_id, target_ref_id,
610 c.ancestor_commit,
611 target_commit, source_commit,
611 source_ref_id, target_ref_id,
612 diff_limit, file_limit, c.fulldiff,
612 target_commit, source_commit,
613 hide_whitespace_changes, diff_context,
613 diff_limit, file_limit, c.fulldiff,
614 use_ancestor=use_ancestor
614 hide_whitespace_changes, diff_context,
615 )
615 use_ancestor=use_ancestor
616
616 )
617 # save cached diff
618 if caching_enabled:
619 cache_diff(cache_file_path, c.diffset, diff_commit_cache)
620
621 c.limited_diff = c.diffset.limited_diff
622
623 # calculate removed files that are bound to comments
624 comment_deleted_files = [
625 fname for fname in display_inline_comments
626 if fname not in c.diffset.file_stats]
627
628 c.deleted_files_comments = collections.defaultdict(dict)
629 for fname, per_line_comments in display_inline_comments.items():
630 if fname in comment_deleted_files:
631 c.deleted_files_comments[fname]['stats'] = 0
632 c.deleted_files_comments[fname]['comments'] = list()
633 for lno, comments in per_line_comments.items():
634 c.deleted_files_comments[fname]['comments'].extend(comments)
635
636 # maybe calculate the range diff
637 if c.range_diff_on:
638 # TODO(marcink): set whitespace/context
639 context_lcl = 3
640 ign_whitespace_lcl = False
641
642 for commit in c.commit_ranges:
643 commit2 = commit
644 commit1 = commit.first_parent
645
646 range_diff_cache_file_path = diff_cache_exist(
647 cache_path, 'diff', commit.raw_id,
648 ign_whitespace_lcl, context_lcl, c.fulldiff)
649
650 cached_diff = None
651 if caching_enabled:
652 cached_diff = load_cached_diff(range_diff_cache_file_path)
653
654 has_proper_diff_cache = cached_diff and cached_diff.get('diff')
655 if not force_recache and has_proper_diff_cache:
656 diffset = cached_diff['diff']
657 else:
658 diffset = self._get_range_diffset(
659 commits_source_repo, source_repo,
660 commit1, commit2, diff_limit, file_limit,
661 c.fulldiff, ign_whitespace_lcl, context_lcl
662 )
663
617
664 # save cached diff
618 # save cached diff
665 if caching_enabled:
619 if caching_enabled:
666 cache_diff(range_diff_cache_file_path, diffset, None)
620 cache_diff(cache_file_path, c.diffset, diff_commit_cache)
621 except CommitDoesNotExistError:
622 log.exception('Failed to generate diffset')
623 c.missing_commits = True
624
625 if not c.missing_commits:
626
627 c.limited_diff = c.diffset.limited_diff
628
629 # calculate removed files that are bound to comments
630 comment_deleted_files = [
631 fname for fname in display_inline_comments
632 if fname not in c.diffset.file_stats]
633
634 c.deleted_files_comments = collections.defaultdict(dict)
635 for fname, per_line_comments in display_inline_comments.items():
636 if fname in comment_deleted_files:
637 c.deleted_files_comments[fname]['stats'] = 0
638 c.deleted_files_comments[fname]['comments'] = list()
639 for lno, comments in per_line_comments.items():
640 c.deleted_files_comments[fname]['comments'].extend(comments)
641
642 # maybe calculate the range diff
643 if c.range_diff_on:
644 # TODO(marcink): set whitespace/context
645 context_lcl = 3
646 ign_whitespace_lcl = False
667
647
668 c.changes[commit.raw_id] = diffset
648 for commit in c.commit_ranges:
649 commit2 = commit
650 commit1 = commit.first_parent
651
652 range_diff_cache_file_path = diff_cache_exist(
653 cache_path, 'diff', commit.raw_id,
654 ign_whitespace_lcl, context_lcl, c.fulldiff)
655
656 cached_diff = None
657 if caching_enabled:
658 cached_diff = load_cached_diff(range_diff_cache_file_path)
659
660 has_proper_diff_cache = cached_diff and cached_diff.get('diff')
661 if not force_recache and has_proper_diff_cache:
662 diffset = cached_diff['diff']
663 else:
664 diffset = self._get_range_diffset(
665 commits_source_repo, source_repo,
666 commit1, commit2, diff_limit, file_limit,
667 c.fulldiff, ign_whitespace_lcl, context_lcl
668 )
669
670 # save cached diff
671 if caching_enabled:
672 cache_diff(range_diff_cache_file_path, diffset, None)
673
674 c.changes[commit.raw_id] = diffset
669
675
670 # this is a hack to properly display links, when creating PR, the
676 # this is a hack to properly display links, when creating PR, the
671 # compare view and others uses different notation, and
677 # compare view and others uses different notation, and
@@ -83,7 +83,7 b' class VcsServer(object):'
83 else:
83 else:
84 if permission in self.write_perms:
84 if permission in self.write_perms:
85 log.info(
85 log.info(
86 'WRITE+ Permissions for User "%s" detected to repo "%s"!',
86 'WRITE, or Higher Permissions for User "%s" detected to repo "%s"!',
87 self.user, self.repo_name)
87 self.user, self.repo_name)
88 return 0
88 return 0
89
89
This diff has been collapsed as it changes many lines, (2485 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.19.0\n"
9 "Project-Id-Version: rhodecode-enterprise-ce 4.20.0\n"
10 "Report-Msgid-Bugs-To: marcin@rhodecode.com\n"
10 "Report-Msgid-Bugs-To: marcin@rhodecode.com\n"
11 "POT-Creation-Date: 2020-05-22 09:45+0000\n"
11 "POT-Creation-Date: 2020-07-20 11:46+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"
@@ -56,16 +56,19 b' msgstr ""'
56 #: rhodecode/templates/admin/integrations/list.mako:172
56 #: rhodecode/templates/admin/integrations/list.mako:172
57 #: rhodecode/templates/admin/my_account/my_account_profile.mako:7
57 #: rhodecode/templates/admin/my_account/my_account_profile.mako:7
58 #: rhodecode/templates/base/issue_tracker_settings.mako:137
58 #: rhodecode/templates/base/issue_tracker_settings.mako:137
59 #: rhodecode/templates/changeset/changeset_file_comment.mako:201
60 #: rhodecode/templates/changeset/changeset_file_comment.mako:205
61 #: rhodecode/templates/changeset/changeset_file_comment.mako:209
59 #: rhodecode/templates/data_table/_dt_elements.mako:173
62 #: rhodecode/templates/data_table/_dt_elements.mako:173
60 #: rhodecode/templates/data_table/_dt_elements.mako:251
63 #: rhodecode/templates/data_table/_dt_elements.mako:251
61 #: rhodecode/templates/data_table/_dt_elements.mako:266
64 #: rhodecode/templates/data_table/_dt_elements.mako:266
62 #: rhodecode/templates/data_table/_dt_elements.mako:267
65 #: rhodecode/templates/data_table/_dt_elements.mako:267
63 #: rhodecode/templates/data_table/_dt_elements.mako:282
66 #: rhodecode/templates/data_table/_dt_elements.mako:282
64 #: rhodecode/templates/debug_style/buttons.html:128
67 #: rhodecode/templates/debug_style/buttons.html:128
65 #: rhodecode/templates/files/files_add.mako:56
68 #: rhodecode/templates/files/files_add.mako:55
66 #: rhodecode/templates/files/files_edit.mako:58
69 #: rhodecode/templates/files/files_edit.mako:57
67 #: rhodecode/templates/files/files_source.mako:29
70 #: rhodecode/templates/files/files_source.mako:39
68 #: rhodecode/templates/files/files_source.mako:42
71 #: rhodecode/templates/files/files_source.mako:52
69 #: rhodecode/templates/pullrequests/pullrequest_show.mako:74
72 #: rhodecode/templates/pullrequests/pullrequest_show.mako:74
70 #: rhodecode/templates/pullrequests/pullrequest_show.mako:302
73 #: rhodecode/templates/pullrequests/pullrequest_show.mako:302
71 #: rhodecode/templates/user_group/profile.mako:8
74 #: rhodecode/templates/user_group/profile.mako:8
@@ -81,12 +84,12 b' msgstr ""'
81 msgid "SSH key support is disabled in .ini file"
84 msgid "SSH key support is disabled in .ini file"
82 msgstr ""
85 msgstr ""
83
86
84 #: rhodecode/apps/admin/views/repo_groups.py:328
87 #: rhodecode/apps/admin/views/repo_groups.py:342
85 #, python-format
88 #, python-format
86 msgid "Created repository group %s"
89 msgid "Created repository group %s"
87 msgstr ""
90 msgstr ""
88
91
89 #: rhodecode/apps/admin/views/repo_groups.py:346
92 #: rhodecode/apps/admin/views/repo_groups.py:360
90 #, python-format
93 #, python-format
91 msgid "Error occurred during creation of repository group %s"
94 msgid "Error occurred during creation of repository group %s"
92 msgstr ""
95 msgstr ""
@@ -99,81 +102,81 b' msgstr ""'
99 msgid "Failed to cleanup up old sessions"
102 msgid "Failed to cleanup up old sessions"
100 msgstr ""
103 msgstr ""
101
104
102 #: rhodecode/apps/admin/views/settings.py:162
105 #: rhodecode/apps/admin/views/settings.py:163
103 #: rhodecode/apps/admin/views/settings.py:317
106 #: rhodecode/apps/admin/views/settings.py:319
104 #: rhodecode/apps/admin/views/settings.py:392
107 #: rhodecode/apps/admin/views/settings.py:394
105 #: rhodecode/apps/admin/views/settings.py:726
108 #: rhodecode/apps/admin/views/settings.py:727
106 #: rhodecode/apps/repository/views/repo_settings_vcs.py:124
109 #: rhodecode/apps/repository/views/repo_settings_vcs.py:124
107 msgid "Some form inputs contain invalid data."
110 msgid "Some form inputs contain invalid data."
108 msgstr ""
111 msgstr ""
109
112
110 #: rhodecode/apps/admin/views/settings.py:189
113 #: rhodecode/apps/admin/views/settings.py:190
111 #: rhodecode/apps/admin/views/settings.py:353
114 #: rhodecode/apps/admin/views/settings.py:355
112 msgid "Error occurred during updating application settings"
115 msgid "Error occurred during updating application settings"
113 msgstr ""
116 msgstr ""
114
117
115 #: rhodecode/apps/admin/views/settings.py:193
118 #: rhodecode/apps/admin/views/settings.py:194
116 #: rhodecode/apps/repository/views/repo_settings_vcs.py:143
119 #: rhodecode/apps/repository/views/repo_settings_vcs.py:143
117 msgid "Updated VCS settings"
120 msgid "Updated VCS settings"
118 msgstr ""
121 msgstr ""
119
122
120 #: rhodecode/apps/admin/views/settings.py:267
123 #: rhodecode/apps/admin/views/settings.py:269
121 #, python-format
124 #, python-format
122 msgid "Repositories successfully rescanned added: %s ; removed: %s"
125 msgid "Repositories successfully rescanned added: %s ; removed: %s"
123 msgstr ""
126 msgstr ""
124
127
125 #: rhodecode/apps/admin/views/settings.py:349
128 #: rhodecode/apps/admin/views/settings.py:351
126 msgid "Updated application settings"
129 msgid "Updated application settings"
127 msgstr ""
130 msgstr ""
128
131
129 #: rhodecode/apps/admin/views/settings.py:431
132 #: rhodecode/apps/admin/views/settings.py:433
130 msgid "Updated visualisation settings"
133 msgid "Updated visualisation settings"
131 msgstr ""
134 msgstr ""
132
135
133 #: rhodecode/apps/admin/views/settings.py:434
136 #: rhodecode/apps/admin/views/settings.py:436
134 msgid "Error occurred during updating visualisation settings"
137 msgid "Error occurred during updating visualisation settings"
135 msgstr ""
138 msgstr ""
136
139
137 #: rhodecode/apps/admin/views/settings.py:496
140 #: rhodecode/apps/admin/views/settings.py:498
138 #: rhodecode/apps/repository/views/repo_settings_issue_trackers.py:127
141 #: rhodecode/apps/repository/views/repo_settings_issue_trackers.py:127
139 msgid "Invalid issue tracker pattern: {}"
142 msgid "Invalid issue tracker pattern: {}"
140 msgstr ""
143 msgstr ""
141
144
142 #: rhodecode/apps/admin/views/settings.py:513
145 #: rhodecode/apps/admin/views/settings.py:515
143 #: rhodecode/apps/repository/views/repo_settings_issue_trackers.py:136
146 #: rhodecode/apps/repository/views/repo_settings_issue_trackers.py:136
144 msgid "Updated issue tracker entries"
147 msgid "Updated issue tracker entries"
145 msgstr ""
148 msgstr ""
146
149
147 #: rhodecode/apps/admin/views/settings.py:533
150 #: rhodecode/apps/admin/views/settings.py:535
148 #: rhodecode/apps/repository/views/repo_settings_issue_trackers.py:91
151 #: rhodecode/apps/repository/views/repo_settings_issue_trackers.py:91
149 msgid "Removed issue tracker entry."
152 msgid "Removed issue tracker entry."
150 msgstr ""
153 msgstr ""
151
154
152 #: rhodecode/apps/admin/views/settings.py:571
155 #: rhodecode/apps/admin/views/settings.py:573
153 msgid "Please enter email address"
156 msgid "Please enter email address"
154 msgstr ""
157 msgstr ""
155
158
156 #: rhodecode/apps/admin/views/settings.py:588
159 #: rhodecode/apps/admin/views/settings.py:589
157 msgid "Send email task created"
160 msgid "Send email task created"
158 msgstr ""
161 msgstr ""
159
162
160 #: rhodecode/apps/admin/views/settings.py:638
163 #: rhodecode/apps/admin/views/settings.py:639
161 msgid "Added new hook"
164 msgid "Added new hook"
162 msgstr ""
165 msgstr ""
163
166
164 #: rhodecode/apps/admin/views/settings.py:653
167 #: rhodecode/apps/admin/views/settings.py:654
165 msgid "Updated hooks"
168 msgid "Updated hooks"
166 msgstr ""
169 msgstr ""
167
170
168 #: rhodecode/apps/admin/views/settings.py:657
171 #: rhodecode/apps/admin/views/settings.py:658
169 msgid "Error occurred during hook creation"
172 msgid "Error occurred during hook creation"
170 msgstr ""
173 msgstr ""
171
174
172 #: rhodecode/apps/admin/views/settings.py:750
175 #: rhodecode/apps/admin/views/settings.py:751
173 msgid "Error occurred during updating labs settings"
176 msgid "Error occurred during updating labs settings"
174 msgstr ""
177 msgstr ""
175
178
176 #: rhodecode/apps/admin/views/settings.py:755
179 #: rhodecode/apps/admin/views/settings.py:756
177 msgid "Updated Labs settings"
180 msgid "Updated Labs settings"
178 msgstr ""
181 msgstr ""
179
182
@@ -488,8 +491,8 b' msgstr ""'
488
491
489 #: rhodecode/apps/admin/views/users.py:834
492 #: rhodecode/apps/admin/views/users.py:834
490 #: rhodecode/apps/my_account/views/my_account.py:161
493 #: rhodecode/apps/my_account/views/my_account.py:161
491 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:22
494 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:28
492 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:27
495 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:33
493 msgid "Role"
496 msgid "Role"
494 msgstr ""
497 msgstr ""
495
498
@@ -583,9 +586,9 b' msgstr ""'
583 msgid "1 month"
586 msgid "1 month"
584 msgstr ""
587 msgstr ""
585
588
586 #: rhodecode/apps/gist/views.py:64 rhodecode/public/js/scripts.js:46848
589 #: rhodecode/apps/gist/views.py:64 rhodecode/public/js/scripts.js:47676
587 #: rhodecode/public/js/scripts.min.js:1
590 #: rhodecode/public/js/scripts.min.js:1
588 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:35
591 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:42
589 #: rhodecode/public/js/src/rhodecode.js:625
592 #: rhodecode/public/js/src/rhodecode.js:625
590 msgid "Lifetime"
593 msgid "Lifetime"
591 msgstr ""
594 msgstr ""
@@ -609,8 +612,8 b' msgstr ""'
609
612
610 #: rhodecode/apps/gist/views.py:330
613 #: rhodecode/apps/gist/views.py:330
611 #: rhodecode/templates/admin/gists/gist_show.mako:76
614 #: rhodecode/templates/admin/gists/gist_show.mako:76
612 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:44
615 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:50
613 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:49
616 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:55
614 #: rhodecode/templates/data_table/_dt_elements.mako:341
617 #: rhodecode/templates/data_table/_dt_elements.mako:341
615 msgid "never"
618 msgid "never"
616 msgstr ""
619 msgstr ""
@@ -638,14 +641,14 b' msgid "Error occurred during update of g'
638 msgstr ""
641 msgstr ""
639
642
640 #: rhodecode/apps/home/views.py:452
643 #: rhodecode/apps/home/views.py:452
641 #: rhodecode/apps/repository/views/repo_pull_requests.py:914
644 #: rhodecode/apps/repository/views/repo_pull_requests.py:930
642 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:209
645 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:219
643 #: rhodecode/templates/admin/repos/repo_add.mako:15
646 #: rhodecode/templates/admin/repos/repo_add.mako:15
644 #: rhodecode/templates/admin/repos/repo_add.mako:19
647 #: rhodecode/templates/admin/repos/repo_add.mako:19
645 #: rhodecode/templates/admin/users/user_edit_advanced.mako:12
648 #: rhodecode/templates/admin/users/user_edit_advanced.mako:12
646 #: rhodecode/templates/base/base.mako:107
649 #: rhodecode/templates/base/base.mako:112
647 #: rhodecode/templates/base/base.mako:126
650 #: rhodecode/templates/base/base.mako:131
648 #: rhodecode/templates/base/base.mako:1172
651 #: rhodecode/templates/base/base.mako:1192
649 msgid "Repositories"
652 msgid "Repositories"
650 msgstr ""
653 msgstr ""
651
654
@@ -653,7 +656,7 b' msgstr ""'
653 #: rhodecode/templates/admin/integrations/form.mako:17
656 #: rhodecode/templates/admin/integrations/form.mako:17
654 #: rhodecode/templates/admin/integrations/list.mako:10
657 #: rhodecode/templates/admin/integrations/list.mako:10
655 #: rhodecode/templates/admin/permissions/permissions_objects.mako:31
658 #: rhodecode/templates/admin/permissions/permissions_objects.mako:31
656 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:208
659 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:218
657 msgid "Repository Groups"
660 msgid "Repository Groups"
658 msgstr ""
661 msgstr ""
659
662
@@ -776,12 +779,11 b' msgstr ""'
776
779
777 #: rhodecode/apps/repository/views/repo_changelog.py:66
780 #: rhodecode/apps/repository/views/repo_changelog.py:66
778 #: rhodecode/apps/repository/views/repo_compare.py:64
781 #: rhodecode/apps/repository/views/repo_compare.py:64
779 #: rhodecode/apps/repository/views/repo_pull_requests.py:763
782 #: rhodecode/apps/repository/views/repo_pull_requests.py:779
780 msgid "There are no commits yet"
783 msgid "There are no commits yet"
781 msgstr ""
784 msgstr ""
782
785
783 #: rhodecode/apps/repository/views/repo_changelog.py:71
786 #: rhodecode/apps/repository/views/repo_changelog.py:71
784 #: rhodecode/apps/repository/views/repo_files.py:185
785 #: rhodecode/apps/repository/views/repo_files.py:205
787 #: rhodecode/apps/repository/views/repo_files.py:205
786 msgid "No such commit exists for this repository"
788 msgid "No such commit exists for this repository"
787 msgstr ""
789 msgstr ""
@@ -801,17 +803,17 b' msgstr ""'
801 msgid "Created repository %s"
803 msgid "Created repository %s"
802 msgstr ""
804 msgstr ""
803
805
804 #: rhodecode/apps/repository/views/repo_commits.py:111
806 #: rhodecode/apps/repository/views/repo_commits.py:112
805 msgid "No such commit exists. Org exception: `{}`"
807 msgid "No such commit exists. Org exception: `{}`"
806 msgstr ""
808 msgstr ""
807
809
808 #: rhodecode/apps/repository/views/repo_commits.py:330
810 #: rhodecode/apps/repository/views/repo_commits.py:331
809 #: rhodecode/apps/repository/views/repo_pull_requests.py:1399
811 #: rhodecode/apps/repository/views/repo_pull_requests.py:1415
810 #, python-format
812 #, python-format
811 msgid "Status change %(transition_icon)s %(status)s"
813 msgid "Status change %(transition_icon)s %(status)s"
812 msgstr ""
814 msgstr ""
813
815
814 #: rhodecode/apps/repository/views/repo_commits.py:375
816 #: rhodecode/apps/repository/views/repo_commits.py:376
815 msgid "Changing the status of a commit associated with a closed pull request is not allowed"
817 msgid "Changing the status of a commit associated with a closed pull request is not allowed"
816 msgstr ""
818 msgstr ""
817
819
@@ -872,6 +874,10 b' msgstr ""'
872 msgid "There are no files yet. %s"
874 msgid "There are no files yet. %s"
873 msgstr ""
875 msgstr ""
874
876
877 #: rhodecode/apps/repository/views/repo_files.py:185
878 msgid "No such commit exists for this repository. Commit: {}"
879 msgstr ""
880
875 #: rhodecode/apps/repository/views/repo_files.py:341
881 #: rhodecode/apps/repository/views/repo_files.py:341
876 msgid "Downloads disabled"
882 msgid "Downloads disabled"
877 msgstr ""
883 msgstr ""
@@ -896,11 +902,11 b' msgstr ""'
896 msgid "Unknown archive type"
902 msgid "Unknown archive type"
897 msgstr ""
903 msgstr ""
898
904
899 #: rhodecode/apps/repository/views/repo_files.py:990
905 #: rhodecode/apps/repository/views/repo_files.py:1005
900 msgid "Changesets"
906 msgid "Changesets"
901 msgstr ""
907 msgstr ""
902
908
903 #: rhodecode/apps/repository/views/repo_files.py:1011
909 #: rhodecode/apps/repository/views/repo_files.py:1026
904 #: rhodecode/apps/repository/views/repo_summary.py:264
910 #: rhodecode/apps/repository/views/repo_summary.py:264
905 #: rhodecode/model/pull_request.py:1740 rhodecode/model/scm.py:995
911 #: rhodecode/model/pull_request.py:1740 rhodecode/model/scm.py:995
906 #: rhodecode/templates/base/vcs_settings.mako:235
912 #: rhodecode/templates/base/vcs_settings.mako:235
@@ -908,68 +914,68 b' msgstr ""'
908 msgid "Branches"
914 msgid "Branches"
909 msgstr ""
915 msgstr ""
910
916
911 #: rhodecode/apps/repository/views/repo_files.py:1015
917 #: rhodecode/apps/repository/views/repo_files.py:1030
912 #: rhodecode/model/scm.py:1012 rhodecode/templates/base/vcs_settings.mako:260
918 #: rhodecode/model/scm.py:1012 rhodecode/templates/base/vcs_settings.mako:260
913 #: rhodecode/templates/summary/components.mako:34
919 #: rhodecode/templates/summary/components.mako:34
914 msgid "Tags"
920 msgid "Tags"
915 msgstr ""
921 msgstr ""
916
922
917 #: rhodecode/apps/repository/views/repo_files.py:1169
923 #: rhodecode/apps/repository/views/repo_files.py:1184
918 #: rhodecode/apps/repository/views/repo_files.py:1197
924 #: rhodecode/apps/repository/views/repo_files.py:1212
919 msgid "Deleted file {} via RhodeCode Enterprise"
925 msgid "Deleted file {} via RhodeCode Enterprise"
920 msgstr ""
926 msgstr ""
921
927
922 #: rhodecode/apps/repository/views/repo_files.py:1218
928 #: rhodecode/apps/repository/views/repo_files.py:1233
923 msgid "Successfully deleted file `{}`"
929 msgid "Successfully deleted file `{}`"
924 msgstr ""
930 msgstr ""
925
931
926 #: rhodecode/apps/repository/views/repo_files.py:1222
932 #: rhodecode/apps/repository/views/repo_files.py:1237
927 #: rhodecode/apps/repository/views/repo_files.py:1339
933 #: rhodecode/apps/repository/views/repo_files.py:1354
928 #: rhodecode/apps/repository/views/repo_files.py:1470
934 #: rhodecode/apps/repository/views/repo_files.py:1485
929 #: rhodecode/apps/repository/views/repo_files.py:1593
935 #: rhodecode/apps/repository/views/repo_files.py:1608
930 msgid "Error occurred during commit"
936 msgid "Error occurred during commit"
931 msgstr ""
937 msgstr ""
932
938
933 #: rhodecode/apps/repository/views/repo_files.py:1254
939 #: rhodecode/apps/repository/views/repo_files.py:1269
934 #: rhodecode/apps/repository/views/repo_files.py:1285
940 #: rhodecode/apps/repository/views/repo_files.py:1300
935 msgid "Edited file {} via RhodeCode Enterprise"
941 msgid "Edited file {} via RhodeCode Enterprise"
936 msgstr ""
942 msgstr ""
937
943
938 #: rhodecode/apps/repository/views/repo_files.py:1308
944 #: rhodecode/apps/repository/views/repo_files.py:1323
939 msgid "No changes detected on {}"
945 msgid "No changes detected on {}"
940 msgstr ""
946 msgstr ""
941
947
942 #: rhodecode/apps/repository/views/repo_files.py:1332
948 #: rhodecode/apps/repository/views/repo_files.py:1347
943 msgid "Successfully committed changes to file `{}`"
949 msgid "Successfully committed changes to file `{}`"
944 msgstr ""
950 msgstr ""
945
951
946 #: rhodecode/apps/repository/views/repo_files.py:1373
952 #: rhodecode/apps/repository/views/repo_files.py:1388
947 #: rhodecode/apps/repository/views/repo_files.py:1414
953 #: rhodecode/apps/repository/views/repo_files.py:1429
948 msgid "Added file via RhodeCode Enterprise"
954 msgid "Added file via RhodeCode Enterprise"
949 msgstr ""
955 msgstr ""
950
956
951 #: rhodecode/apps/repository/views/repo_files.py:1430
957 #: rhodecode/apps/repository/views/repo_files.py:1445
952 msgid "No filename specified"
958 msgid "No filename specified"
953 msgstr ""
959 msgstr ""
954
960
955 #: rhodecode/apps/repository/views/repo_files.py:1455
961 #: rhodecode/apps/repository/views/repo_files.py:1470
956 msgid "Successfully committed new file `{}`"
962 msgid "Successfully committed new file `{}`"
957 msgstr ""
963 msgstr ""
958
964
959 #: rhodecode/apps/repository/views/repo_files.py:1463
965 #: rhodecode/apps/repository/views/repo_files.py:1478
960 #: rhodecode/apps/repository/views/repo_files.py:1575
966 #: rhodecode/apps/repository/views/repo_files.py:1590
961 msgid "The location specified must be a relative path and must not contain .. in the path"
967 msgid "The location specified must be a relative path and must not contain .. in the path"
962 msgstr ""
968 msgstr ""
963
969
964 #: rhodecode/apps/repository/views/repo_files.py:1520
970 #: rhodecode/apps/repository/views/repo_files.py:1535
965 msgid "Uploaded file via RhodeCode Enterprise"
971 msgid "Uploaded file via RhodeCode Enterprise"
966 msgstr ""
972 msgstr ""
967
973
968 #: rhodecode/apps/repository/views/repo_files.py:1564
974 #: rhodecode/apps/repository/views/repo_files.py:1579
969 msgid "Successfully committed {} new files"
975 msgid "Successfully committed {} new files"
970 msgstr ""
976 msgstr ""
971
977
972 #: rhodecode/apps/repository/views/repo_files.py:1566
978 #: rhodecode/apps/repository/views/repo_files.py:1581
973 msgid "Successfully committed 1 new file"
979 msgid "Successfully committed 1 new file"
974 msgstr ""
980 msgstr ""
975
981
@@ -999,72 +1005,72 b' msgstr ""'
999 msgid "Error occurred during update of repository {}"
1005 msgid "Error occurred during update of repository {}"
1000 msgstr ""
1006 msgstr ""
1001
1007
1002 #: rhodecode/apps/repository/views/repo_pull_requests.py:287
1008 #: rhodecode/apps/repository/views/repo_pull_requests.py:291
1003 msgid "Pull Request state was force changed to `{}`"
1009 msgid "Pull Request state was force changed to `{}`"
1004 msgstr ""
1010 msgstr ""
1005
1011
1006 #: rhodecode/apps/repository/views/repo_pull_requests.py:793
1012 #: rhodecode/apps/repository/views/repo_pull_requests.py:809
1007 msgid "Commit does not exist"
1013 msgid "Commit does not exist"
1008 msgstr ""
1014 msgstr ""
1009
1015
1010 #: rhodecode/apps/repository/views/repo_pull_requests.py:945
1016 #: rhodecode/apps/repository/views/repo_pull_requests.py:961
1011 msgid "Error creating pull request: {}"
1017 msgid "Error creating pull request: {}"
1012 msgstr ""
1018 msgstr ""
1013
1019
1014 #: rhodecode/apps/repository/views/repo_pull_requests.py:965
1020 #: rhodecode/apps/repository/views/repo_pull_requests.py:981
1015 msgid "source_repo or target repo not found"
1021 msgid "source_repo or target repo not found"
1016 msgstr ""
1022 msgstr ""
1017
1023
1018 #: rhodecode/apps/repository/views/repo_pull_requests.py:976
1024 #: rhodecode/apps/repository/views/repo_pull_requests.py:992
1019 msgid "Not Enough permissions to source repo `{}`."
1025 msgid "Not Enough permissions to source repo `{}`."
1020 msgstr ""
1026 msgstr ""
1021
1027
1022 #: rhodecode/apps/repository/views/repo_pull_requests.py:991
1028 #: rhodecode/apps/repository/views/repo_pull_requests.py:1007
1023 msgid "Not Enough permissions to target repo `{}`."
1029 msgid "Not Enough permissions to target repo `{}`."
1024 msgstr ""
1030 msgstr ""
1025
1031
1026 #: rhodecode/apps/repository/views/repo_pull_requests.py:1055
1032 #: rhodecode/apps/repository/views/repo_pull_requests.py:1071
1027 msgid "Successfully opened new pull request"
1033 msgid "Successfully opened new pull request"
1028 msgstr ""
1034 msgstr ""
1029
1035
1030 #: rhodecode/apps/repository/views/repo_pull_requests.py:1058
1036 #: rhodecode/apps/repository/views/repo_pull_requests.py:1074
1031 msgid "Error occurred during creation of this pull request."
1037 msgid "Error occurred during creation of this pull request."
1032 msgstr ""
1038 msgstr ""
1033
1039
1034 #: rhodecode/apps/repository/views/repo_pull_requests.py:1090
1040 #: rhodecode/apps/repository/views/repo_pull_requests.py:1106
1035 #: rhodecode/apps/repository/views/repo_pull_requests.py:1145
1041 #: rhodecode/apps/repository/views/repo_pull_requests.py:1161
1036 msgid "Cannot update closed pull requests."
1042 msgid "Cannot update closed pull requests."
1037 msgstr ""
1043 msgstr ""
1038
1044
1039 #: rhodecode/apps/repository/views/repo_pull_requests.py:1112
1045 #: rhodecode/apps/repository/views/repo_pull_requests.py:1128
1040 msgid "Cannot update pull requests commits in state other than `{}`. Current state is: `{}`"
1046 msgid "Cannot update pull requests commits in state other than `{}`. Current state is: `{}`"
1041 msgstr ""
1047 msgstr ""
1042
1048
1043 #: rhodecode/apps/repository/views/repo_pull_requests.py:1151
1049 #: rhodecode/apps/repository/views/repo_pull_requests.py:1167
1044 msgid "Pull request title & description updated."
1050 msgid "Pull request title & description updated."
1045 msgstr ""
1051 msgstr ""
1046
1052
1047 #: rhodecode/apps/repository/views/repo_pull_requests.py:1173
1053 #: rhodecode/apps/repository/views/repo_pull_requests.py:1189
1048 msgid "Pull request updated to \"{source_commit_id}\" with {count_added} added, {count_removed} removed commits. Source of changes: {change_source}"
1054 msgid "Pull request updated to \"{source_commit_id}\" with {count_added} added, {count_removed} removed commits. Source of changes: {change_source}"
1049 msgstr ""
1055 msgstr ""
1050
1056
1051 #: rhodecode/apps/repository/views/repo_pull_requests.py:1187
1057 #: rhodecode/apps/repository/views/repo_pull_requests.py:1203
1052 msgid "Reload page"
1058 msgid "Reload page"
1053 msgstr ""
1059 msgstr ""
1054
1060
1055 #: rhodecode/apps/repository/views/repo_pull_requests.py:1222
1061 #: rhodecode/apps/repository/views/repo_pull_requests.py:1238
1056 msgid "Cannot merge pull requests in state other than `{}`. Current state is: `{}`"
1062 msgid "Cannot merge pull requests in state other than `{}`. Current state is: `{}`"
1057 msgstr ""
1063 msgstr ""
1058
1064
1059 #: rhodecode/apps/repository/views/repo_pull_requests.py:1268
1065 #: rhodecode/apps/repository/views/repo_pull_requests.py:1284
1060 msgid "Pull request was successfully merged and closed."
1066 msgid "Pull request was successfully merged and closed."
1061 msgstr ""
1067 msgstr ""
1062
1068
1063 #: rhodecode/apps/repository/views/repo_pull_requests.py:1292
1069 #: rhodecode/apps/repository/views/repo_pull_requests.py:1308
1064 msgid "Pull request reviewers updated."
1070 msgid "Pull request reviewers updated."
1065 msgstr ""
1071 msgstr ""
1066
1072
1067 #: rhodecode/apps/repository/views/repo_pull_requests.py:1325
1073 #: rhodecode/apps/repository/views/repo_pull_requests.py:1341
1068 msgid "Successfully deleted pull request"
1074 msgid "Successfully deleted pull request"
1069 msgstr ""
1075 msgstr ""
1070
1076
@@ -1588,54 +1594,62 b' msgstr ""'
1588 msgid "Choose operation scope restriction when authenticating."
1594 msgid "Choose operation scope restriction when authenticating."
1589 msgstr ""
1595 msgstr ""
1590
1596
1591 #: rhodecode/events/pullrequest.py:79
1597 #: rhodecode/events/pullrequest.py:78
1592 msgid "pullrequest created"
1598 msgid "pullrequest created"
1593 msgstr ""
1599 msgstr ""
1594
1600
1595 #: rhodecode/events/pullrequest.py:80
1601 #: rhodecode/events/pullrequest.py:79
1596 msgid "Event triggered after pull request was created"
1602 msgid "Event triggered after pull request was created"
1597 msgstr ""
1603 msgstr ""
1598
1604
1605 #: rhodecode/events/pullrequest.py:88
1606 msgid "pullrequest closed"
1607 msgstr ""
1608
1599 #: rhodecode/events/pullrequest.py:89
1609 #: rhodecode/events/pullrequest.py:89
1600 msgid "pullrequest closed"
1601 msgstr ""
1602
1603 #: rhodecode/events/pullrequest.py:90
1604 msgid "Event triggered after pull request was closed"
1610 msgid "Event triggered after pull request was closed"
1605 msgstr ""
1611 msgstr ""
1606
1612
1613 #: rhodecode/events/pullrequest.py:98
1614 msgid "pullrequest commits updated"
1615 msgstr ""
1616
1607 #: rhodecode/events/pullrequest.py:99
1617 #: rhodecode/events/pullrequest.py:99
1608 msgid "pullrequest commits updated"
1609 msgstr ""
1610
1611 #: rhodecode/events/pullrequest.py:100
1612 msgid "Event triggered after pull requests was updated"
1618 msgid "Event triggered after pull requests was updated"
1613 msgstr ""
1619 msgstr ""
1614
1620
1621 #: rhodecode/events/pullrequest.py:108
1622 msgid "pullrequest review changed"
1623 msgstr ""
1624
1615 #: rhodecode/events/pullrequest.py:109
1625 #: rhodecode/events/pullrequest.py:109
1616 msgid "pullrequest review changed"
1617 msgstr ""
1618
1619 #: rhodecode/events/pullrequest.py:110
1620 msgid "Event triggered after a review status of a pull requests has changed to other."
1626 msgid "Event triggered after a review status of a pull requests has changed to other."
1621 msgstr ""
1627 msgstr ""
1622
1628
1629 #: rhodecode/events/pullrequest.py:123
1630 msgid "pullrequest merged"
1631 msgstr ""
1632
1623 #: rhodecode/events/pullrequest.py:124
1633 #: rhodecode/events/pullrequest.py:124
1624 msgid "pullrequest merged"
1625 msgstr ""
1626
1627 #: rhodecode/events/pullrequest.py:125
1628 msgid "Event triggered after a successful merge operation was executed on a pull request"
1634 msgid "Event triggered after a successful merge operation was executed on a pull request"
1629 msgstr ""
1635 msgstr ""
1630
1636
1637 #: rhodecode/events/pullrequest.py:134
1638 msgid "pullrequest commented"
1639 msgstr ""
1640
1631 #: rhodecode/events/pullrequest.py:135
1641 #: rhodecode/events/pullrequest.py:135
1632 msgid "pullrequest commented"
1633 msgstr ""
1634
1635 #: rhodecode/events/pullrequest.py:136
1636 msgid "Event triggered after a comment was made on a code in the pull request"
1642 msgid "Event triggered after a comment was made on a code in the pull request"
1637 msgstr ""
1643 msgstr ""
1638
1644
1645 #: rhodecode/events/pullrequest.py:173
1646 msgid "pullrequest comment edited"
1647 msgstr ""
1648
1649 #: rhodecode/events/pullrequest.py:174
1650 msgid "Event triggered after a comment was edited on a code in the pull request"
1651 msgstr ""
1652
1639 #: rhodecode/events/repo.py:191
1653 #: rhodecode/events/repo.py:191
1640 msgid "repository commit comment"
1654 msgid "repository commit comment"
1641 msgstr ""
1655 msgstr ""
@@ -1644,67 +1658,75 b' msgstr ""'
1644 msgid "Event triggered after a comment was made on commit inside a repository"
1658 msgid "Event triggered after a comment was made on commit inside a repository"
1645 msgstr ""
1659 msgstr ""
1646
1660
1647 #: rhodecode/events/repo.py:224
1661 #: rhodecode/events/repo.py:226
1662 msgid "repository commit edit comment"
1663 msgstr ""
1664
1665 #: rhodecode/events/repo.py:227
1666 msgid "Event triggered after a comment was edited on commit inside a repository"
1667 msgstr ""
1668
1669 #: rhodecode/events/repo.py:260
1648 msgid "repository pre create"
1670 msgid "repository pre create"
1649 msgstr ""
1671 msgstr ""
1650
1672
1651 #: rhodecode/events/repo.py:225
1673 #: rhodecode/events/repo.py:261
1652 msgid "Event triggered before repository is created"
1674 msgid "Event triggered before repository is created"
1653 msgstr ""
1675 msgstr ""
1654
1676
1655 #: rhodecode/events/repo.py:234
1677 #: rhodecode/events/repo.py:270
1656 msgid "repository created"
1678 msgid "repository created"
1657 msgstr ""
1679 msgstr ""
1658
1680
1659 #: rhodecode/events/repo.py:235
1681 #: rhodecode/events/repo.py:271
1660 msgid "Event triggered after repository was created"
1682 msgid "Event triggered after repository was created"
1661 msgstr ""
1683 msgstr ""
1662
1684
1663 #: rhodecode/events/repo.py:244
1685 #: rhodecode/events/repo.py:280
1664 msgid "repository pre delete"
1686 msgid "repository pre delete"
1665 msgstr ""
1687 msgstr ""
1666
1688
1667 #: rhodecode/events/repo.py:245
1689 #: rhodecode/events/repo.py:281
1668 msgid "Event triggered before a repository is deleted"
1690 msgid "Event triggered before a repository is deleted"
1669 msgstr ""
1691 msgstr ""
1670
1692
1671 #: rhodecode/events/repo.py:254
1693 #: rhodecode/events/repo.py:290
1672 msgid "repository deleted"
1694 msgid "repository deleted"
1673 msgstr ""
1695 msgstr ""
1674
1696
1675 #: rhodecode/events/repo.py:255
1697 #: rhodecode/events/repo.py:291
1676 msgid "Event triggered after repository was deleted"
1698 msgid "Event triggered after repository was deleted"
1677 msgstr ""
1699 msgstr ""
1678
1700
1679 #: rhodecode/events/repo.py:295
1701 #: rhodecode/events/repo.py:331
1680 msgid "repository pre pull"
1702 msgid "repository pre pull"
1681 msgstr ""
1703 msgstr ""
1682
1704
1683 #: rhodecode/events/repo.py:296
1705 #: rhodecode/events/repo.py:332
1684 msgid "Event triggered before repository code is pulled"
1706 msgid "Event triggered before repository code is pulled"
1685 msgstr ""
1707 msgstr ""
1686
1708
1687 #: rhodecode/events/repo.py:305
1709 #: rhodecode/events/repo.py:341
1688 msgid "repository pull"
1710 msgid "repository pull"
1689 msgstr ""
1711 msgstr ""
1690
1712
1691 #: rhodecode/events/repo.py:306
1713 #: rhodecode/events/repo.py:342
1692 msgid "Event triggered after repository code was pulled"
1714 msgid "Event triggered after repository code was pulled"
1693 msgstr ""
1715 msgstr ""
1694
1716
1695 #: rhodecode/events/repo.py:315
1717 #: rhodecode/events/repo.py:351
1696 msgid "repository pre push"
1718 msgid "repository pre push"
1697 msgstr ""
1719 msgstr ""
1698
1720
1699 #: rhodecode/events/repo.py:316
1721 #: rhodecode/events/repo.py:352
1700 msgid "Event triggered before the code is pushed to a repository"
1722 msgid "Event triggered before the code is pushed to a repository"
1701 msgstr ""
1723 msgstr ""
1702
1724
1703 #: rhodecode/events/repo.py:328
1725 #: rhodecode/events/repo.py:364
1704 msgid "repository push"
1726 msgid "repository push"
1705 msgstr ""
1727 msgstr ""
1706
1728
1707 #: rhodecode/events/repo.py:329
1729 #: rhodecode/events/repo.py:365
1708 msgid "Event triggered after the code was pushed to a repository"
1730 msgid "Event triggered after the code was pushed to a repository"
1709 msgstr ""
1731 msgstr ""
1710
1732
@@ -1753,15 +1775,15 b' msgid "user permissions change"'
1753 msgstr ""
1775 msgstr ""
1754
1776
1755 #: rhodecode/forms/__init__.py:35
1777 #: rhodecode/forms/__init__.py:35
1756 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:97
1778 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:103
1757 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:73
1779 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:73
1758 #: rhodecode/templates/admin/permissions/permissions_application.mako:60
1780 #: rhodecode/templates/admin/permissions/permissions_application.mako:60
1759 #: rhodecode/templates/admin/permissions/permissions_ips.mako:64
1781 #: rhodecode/templates/admin/permissions/permissions_ips.mako:64
1760 #: rhodecode/templates/admin/permissions/permissions_objects.mako:60
1782 #: rhodecode/templates/admin/permissions/permissions_objects.mako:60
1761 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:217
1783 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:227
1762 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:78
1784 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:78
1763 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:66
1785 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:66
1764 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:201
1786 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:207
1765 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:251
1787 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:251
1766 #: rhodecode/templates/admin/repos/repo_edit_vcs.mako:44
1788 #: rhodecode/templates/admin/repos/repo_edit_vcs.mako:44
1767 #: rhodecode/templates/admin/settings/settings_global.mako:141
1789 #: rhodecode/templates/admin/settings/settings_global.mako:141
@@ -1769,22 +1791,23 b' msgstr ""'
1769 #: rhodecode/templates/admin/settings/settings_labs.mako:49
1791 #: rhodecode/templates/admin/settings/settings_labs.mako:49
1770 #: rhodecode/templates/admin/settings/settings_vcs.mako:14
1792 #: rhodecode/templates/admin/settings/settings_vcs.mako:14
1771 #: rhodecode/templates/admin/settings/settings_visual.mako:215
1793 #: rhodecode/templates/admin/settings/settings_visual.mako:215
1772 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:207
1794 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:217
1773 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:101
1795 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:107
1774 #: rhodecode/templates/admin/users/user_edit_emails.mako:66
1796 #: rhodecode/templates/admin/users/user_edit_emails.mako:66
1775 #: rhodecode/templates/admin/users/user_edit_ips.mako:76
1797 #: rhodecode/templates/admin/users/user_edit_ips.mako:76
1776 #: rhodecode/templates/admin/users/user_edit_profile.mako:155
1798 #: rhodecode/templates/admin/users/user_edit_profile.mako:155
1777 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:72
1799 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:72
1778 #: rhodecode/templates/base/default_perms_box.mako:89
1800 #: rhodecode/templates/base/default_perms_box.mako:102
1779 msgid "Reset"
1801 msgid "Reset"
1780 msgstr ""
1802 msgstr ""
1781
1803
1782 #: rhodecode/forms/__init__.py:36 rhodecode/public/js/scripts.js:37802
1804 #: rhodecode/forms/__init__.py:36 rhodecode/public/js/scripts.js:38311
1783 #: rhodecode/public/js/scripts.min.js:1
1805 #: rhodecode/public/js/scripts.min.js:1
1784 #: rhodecode/public/js/src/rhodecode/utils/ajax.js:158
1806 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:24
1807 #: rhodecode/public/js/src/rhodecode/utils/ajax.js:161
1785 #: rhodecode/templates/admin/gists/gist_show.mako:59
1808 #: rhodecode/templates/admin/gists/gist_show.mako:59
1786 #: rhodecode/templates/admin/integrations/list.mako:179
1809 #: rhodecode/templates/admin/integrations/list.mako:179
1787 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:59
1810 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:65
1788 #: rhodecode/templates/admin/my_account/my_account_emails.mako:33
1811 #: rhodecode/templates/admin/my_account/my_account_emails.mako:33
1789 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:34
1812 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:34
1790 #: rhodecode/templates/admin/notifications/notifications_data.mako:22
1813 #: rhodecode/templates/admin/notifications/notifications_data.mako:22
@@ -1792,21 +1815,21 b' msgstr ""'
1792 #: rhodecode/templates/admin/permissions/permissions_ips.mako:29
1815 #: rhodecode/templates/admin/permissions/permissions_ips.mako:29
1793 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:25
1816 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:25
1794 #: rhodecode/templates/admin/settings/settings_hooks.mako:46
1817 #: rhodecode/templates/admin/settings/settings_hooks.mako:46
1795 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:63
1818 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:69
1796 #: rhodecode/templates/admin/users/user_edit_emails.mako:34
1819 #: rhodecode/templates/admin/users/user_edit_emails.mako:34
1797 #: rhodecode/templates/admin/users/user_edit_ips.mako:40
1820 #: rhodecode/templates/admin/users/user_edit_ips.mako:40
1798 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:35
1821 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:35
1799 #: rhodecode/templates/base/issue_tracker_settings.mako:146
1822 #: rhodecode/templates/base/issue_tracker_settings.mako:146
1800 #: rhodecode/templates/base/vcs_settings.mako:244
1823 #: rhodecode/templates/base/vcs_settings.mako:244
1801 #: rhodecode/templates/base/vcs_settings.mako:269
1824 #: rhodecode/templates/base/vcs_settings.mako:269
1802 #: rhodecode/templates/changeset/changeset_file_comment.mako:140
1825 #: rhodecode/templates/changeset/changeset_file_comment.mako:203
1803 #: rhodecode/templates/changeset/changeset_file_comment.mako:142
1826 #: rhodecode/templates/changeset/changeset_file_comment.mako:206
1804 #: rhodecode/templates/changeset/changeset_file_comment.mako:145
1827 #: rhodecode/templates/changeset/changeset_file_comment.mako:210
1805 #: rhodecode/templates/data_table/_dt_elements.mako:436
1828 #: rhodecode/templates/data_table/_dt_elements.mako:436
1806 #: rhodecode/templates/debug_style/buttons.html:132
1829 #: rhodecode/templates/debug_style/buttons.html:132
1807 #: rhodecode/templates/files/files_source.mako:30
1830 #: rhodecode/templates/files/files_source.mako:40
1808 #: rhodecode/templates/files/files_source.mako:37
1831 #: rhodecode/templates/files/files_source.mako:47
1809 #: rhodecode/templates/files/files_source.mako:43
1832 #: rhodecode/templates/files/files_source.mako:53
1810 msgid "Delete"
1833 msgid "Delete"
1811 msgstr ""
1834 msgstr ""
1812
1835
@@ -1889,7 +1912,7 b' msgstr ""'
1889 #: rhodecode/templates/admin/users/user_add.mako:86
1912 #: rhodecode/templates/admin/users/user_add.mako:86
1890 #: rhodecode/templates/admin/users/user_edit_profile.mako:65
1913 #: rhodecode/templates/admin/users/user_edit_profile.mako:65
1891 #: rhodecode/templates/admin/users/users.mako:76
1914 #: rhodecode/templates/admin/users/users.mako:76
1892 #: rhodecode/templates/email_templates/user_registration.mako:50
1915 #: rhodecode/templates/email_templates/user_registration.mako:51
1893 #: rhodecode/templates/users/user_profile.mako:69
1916 #: rhodecode/templates/users/user_profile.mako:69
1894 msgid "Email"
1917 msgid "Email"
1895 msgstr ""
1918 msgstr ""
@@ -1970,7 +1993,7 b' msgstr ""'
1970 #: rhodecode/templates/admin/users/user_edit_profile.mako:39
1993 #: rhodecode/templates/admin/users/user_edit_profile.mako:39
1971 #: rhodecode/templates/admin/users/users.mako:74
1994 #: rhodecode/templates/admin/users/users.mako:74
1972 #: rhodecode/templates/debug_style/login.html:36
1995 #: rhodecode/templates/debug_style/login.html:36
1973 #: rhodecode/templates/email_templates/user_registration.mako:42
1996 #: rhodecode/templates/email_templates/user_registration.mako:43
1974 #: rhodecode/templates/user_group/profile.mako:61
1997 #: rhodecode/templates/user_group/profile.mako:61
1975 #: rhodecode/templates/users/user_profile.mako:29
1998 #: rhodecode/templates/users/user_profile.mako:29
1976 msgid "Username"
1999 msgid "Username"
@@ -2190,15 +2213,15 b' msgstr ""'
2190 msgid "Commit not found"
2213 msgid "Commit not found"
2191 msgstr ""
2214 msgstr ""
2192
2215
2193 #: rhodecode/lib/auth.py:1760
2216 #: rhodecode/lib/auth.py:1769
2194 msgid "IP {} not allowed"
2217 msgid "IP {} not allowed"
2195 msgstr ""
2218 msgstr ""
2196
2219
2197 #: rhodecode/lib/auth.py:1852
2220 #: rhodecode/lib/auth.py:1861
2198 msgid "You need to be a registered user to perform this action"
2221 msgid "You need to be a registered user to perform this action"
2199 msgstr ""
2222 msgstr ""
2200
2223
2201 #: rhodecode/lib/auth.py:1896
2224 #: rhodecode/lib/auth.py:1905
2202 msgid "You need to be signed in to view this page"
2225 msgid "You need to be signed in to view this page"
2203 msgstr ""
2226 msgstr ""
2204
2227
@@ -2206,7 +2229,7 b' msgstr ""'
2206 msgid "Click to select line"
2229 msgid "Click to select line"
2207 msgstr ""
2230 msgstr ""
2208
2231
2209 #: rhodecode/lib/helpers.py:1721
2232 #: rhodecode/lib/helpers.py:1803
2210 msgid ""
2233 msgid ""
2211 "Example filter terms:\n"
2234 "Example filter terms:\n"
2212 " repository:vcs\n"
2235 " repository:vcs\n"
@@ -2228,7 +2251,7 b' msgid ""'
2228 " \"username:test AND repository:test*\"\n"
2251 " \"username:test AND repository:test*\"\n"
2229 msgstr ""
2252 msgstr ""
2230
2253
2231 #: rhodecode/lib/helpers.py:1745
2254 #: rhodecode/lib/helpers.py:1827
2232 #, python-format
2255 #, python-format
2233 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"
2256 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"
2234 msgstr ""
2257 msgstr ""
@@ -2265,9 +2288,9 b' msgstr ""'
2265 msgid "in ${val} and ${detail}"
2288 msgid "in ${val} and ${detail}"
2266 msgstr ""
2289 msgstr ""
2267
2290
2268 #: rhodecode/lib/utils2.py:571 rhodecode/public/js/scripts.js:22115
2291 #: rhodecode/lib/utils2.py:571 rhodecode/public/js/scripts.js:22612
2269 #: rhodecode/public/js/scripts.min.js:1
2292 #: rhodecode/public/js/scripts.min.js:1
2270 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:111
2293 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:127
2271 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:174
2294 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:174
2272 msgid "just now"
2295 msgid "just now"
2273 msgstr ""
2296 msgstr ""
@@ -2302,6 +2325,7 b' msgstr ""'
2302 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2772
2325 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2772
2303 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2987
2326 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2987
2304 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3073
2327 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3073
2328 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3079
2305 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2275
2329 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2275
2306 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2267
2330 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2267
2307 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2266
2331 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2266
@@ -2309,7 +2333,7 b' msgstr ""'
2309 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2270
2333 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2270
2310 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2321
2334 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2321
2311 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2322
2335 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2322
2312 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2522 rhodecode/model/db.py:3079
2336 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2522 rhodecode/model/db.py:3110
2313 msgid "Repository no access"
2337 msgid "Repository no access"
2314 msgstr ""
2338 msgstr ""
2315
2339
@@ -2343,6 +2367,7 b' msgstr ""'
2343 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2773
2367 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2773
2344 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2988
2368 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2988
2345 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3074
2369 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3074
2370 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3080
2346 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2276
2371 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2276
2347 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2268
2372 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2268
2348 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2267
2373 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2267
@@ -2350,7 +2375,7 b' msgstr ""'
2350 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2271
2375 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2271
2351 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2322
2376 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2322
2352 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2323
2377 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2323
2353 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2523 rhodecode/model/db.py:3080
2378 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2523 rhodecode/model/db.py:3111
2354 msgid "Repository read access"
2379 msgid "Repository read access"
2355 msgstr ""
2380 msgstr ""
2356
2381
@@ -2384,6 +2409,7 b' msgstr ""'
2384 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2774
2409 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2774
2385 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2989
2410 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2989
2386 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3075
2411 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3075
2412 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3081
2387 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2277
2413 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2277
2388 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2269
2414 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2269
2389 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2268
2415 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2268
@@ -2391,7 +2417,7 b' msgstr ""'
2391 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2272
2417 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2272
2392 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2323
2418 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2323
2393 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2324
2419 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2324
2394 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2524 rhodecode/model/db.py:3081
2420 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2524 rhodecode/model/db.py:3112
2395 msgid "Repository write access"
2421 msgid "Repository write access"
2396 msgstr ""
2422 msgstr ""
2397
2423
@@ -2425,6 +2451,7 b' msgstr ""'
2425 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2775
2451 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2775
2426 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2990
2452 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2990
2427 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3076
2453 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3076
2454 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3082
2428 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2278
2455 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2278
2429 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2270
2456 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2270
2430 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2269
2457 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2269
@@ -2432,7 +2459,7 b' msgstr ""'
2432 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2273
2459 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2273
2433 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2324
2460 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2324
2434 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2325
2461 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2325
2435 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2525 rhodecode/model/db.py:3082
2462 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2525 rhodecode/model/db.py:3113
2436 msgid "Repository admin access"
2463 msgid "Repository admin access"
2437 msgstr ""
2464 msgstr ""
2438
2465
@@ -2506,6 +2533,7 b' msgstr ""'
2506 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2798
2533 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2798
2507 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3013
2534 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3013
2508 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3099
2535 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3099
2536 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3105
2509 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2296
2537 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2296
2510 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2288
2538 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2288
2511 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2287
2539 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2287
@@ -2513,7 +2541,7 b' msgstr ""'
2513 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2291
2541 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2291
2514 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2342
2542 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2342
2515 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2343
2543 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2343
2516 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2543 rhodecode/model/db.py:3105
2544 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2543 rhodecode/model/db.py:3136
2517 msgid "Repository creation disabled"
2545 msgid "Repository creation disabled"
2518 msgstr ""
2546 msgstr ""
2519
2547
@@ -2547,6 +2575,7 b' msgstr ""'
2547 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2799
2575 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2799
2548 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3014
2576 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3014
2549 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3100
2577 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3100
2578 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3106
2550 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2297
2579 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2297
2551 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2289
2580 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2289
2552 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2288
2581 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2288
@@ -2554,7 +2583,7 b' msgstr ""'
2554 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2292
2583 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2292
2555 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2343
2584 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2343
2556 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2344
2585 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2344
2557 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2544 rhodecode/model/db.py:3106
2586 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2544 rhodecode/model/db.py:3137
2558 msgid "Repository creation enabled"
2587 msgid "Repository creation enabled"
2559 msgstr ""
2588 msgstr ""
2560
2589
@@ -2588,6 +2617,7 b' msgstr ""'
2588 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2803
2617 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2803
2589 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3018
2618 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3018
2590 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3104
2619 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3104
2620 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3110
2591 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2301
2621 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2301
2592 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2293
2622 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2293
2593 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2292
2623 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2292
@@ -2595,7 +2625,7 b' msgstr ""'
2595 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2296
2625 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2296
2596 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2347
2626 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2347
2597 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2348
2627 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2348
2598 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2548 rhodecode/model/db.py:3110
2628 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2548 rhodecode/model/db.py:3141
2599 msgid "Repository forking disabled"
2629 msgid "Repository forking disabled"
2600 msgstr ""
2630 msgstr ""
2601
2631
@@ -2629,6 +2659,7 b' msgstr ""'
2629 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2804
2659 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2804
2630 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3019
2660 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3019
2631 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3105
2661 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3105
2662 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3111
2632 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2302
2663 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2302
2633 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2294
2664 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2294
2634 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2293
2665 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2293
@@ -2636,7 +2667,7 b' msgstr ""'
2636 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2297
2667 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2297
2637 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2348
2668 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2348
2638 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2349
2669 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2349
2639 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2549 rhodecode/model/db.py:3111
2670 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2549 rhodecode/model/db.py:3142
2640 msgid "Repository forking enabled"
2671 msgid "Repository forking enabled"
2641 msgstr ""
2672 msgstr ""
2642
2673
@@ -2691,6 +2722,7 b' msgstr ""'
2691 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3525
2722 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3525
2692 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3757
2723 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3757
2693 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3843
2724 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3843
2725 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3890
2694 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2915
2726 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2915
2695 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2907
2727 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2907
2696 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2907
2728 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2907
@@ -2698,10 +2730,10 b' msgstr ""'
2698 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2910
2730 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2910
2699 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3011
2731 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3011
2700 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3012
2732 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3012
2701 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3230 rhodecode/model/db.py:3859
2733 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3230 rhodecode/model/db.py:3935
2702 #: rhodecode/public/js/scripts.js:41391 rhodecode/public/js/scripts.min.js:1
2734 #: rhodecode/public/js/scripts.js:42219 rhodecode/public/js/scripts.min.js:1
2703 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:56
2735 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:64
2704 #: rhodecode/public/js/src/rhodecode/pullrequests.js:350
2736 #: rhodecode/public/js/src/rhodecode/pullrequests.js:352
2705 msgid "Not Reviewed"
2737 msgid "Not Reviewed"
2706 msgstr ""
2738 msgstr ""
2707
2739
@@ -2735,6 +2767,7 b' msgstr ""'
2735 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3526
2767 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3526
2736 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3758
2768 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3758
2737 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3844
2769 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3844
2770 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3891
2738 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2916
2771 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2916
2739 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2908
2772 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2908
2740 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2908
2773 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2908
@@ -2742,7 +2775,7 b' msgstr ""'
2742 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2911
2775 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2911
2743 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3012
2776 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3012
2744 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3013
2777 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3013
2745 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3231 rhodecode/model/db.py:3860
2778 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3231 rhodecode/model/db.py:3936
2746 msgid "Approved"
2779 msgid "Approved"
2747 msgstr ""
2780 msgstr ""
2748
2781
@@ -2776,6 +2809,7 b' msgstr ""'
2776 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3527
2809 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3527
2777 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3759
2810 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3759
2778 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3845
2811 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3845
2812 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3892
2779 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2917
2813 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2917
2780 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2909
2814 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2909
2781 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2909
2815 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2909
@@ -2783,7 +2817,7 b' msgstr ""'
2783 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2912
2817 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2912
2784 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3013
2818 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3013
2785 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3014
2819 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3014
2786 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3232 rhodecode/model/db.py:3861
2820 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3232 rhodecode/model/db.py:3937
2787 msgid "Rejected"
2821 msgid "Rejected"
2788 msgstr ""
2822 msgstr ""
2789
2823
@@ -2817,6 +2851,7 b' msgstr ""'
2817 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3528
2851 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:3528
2818 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3760
2852 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3760
2819 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3846
2853 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3846
2854 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3893
2820 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2918
2855 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2918
2821 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2910
2856 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2910
2822 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2910
2857 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2910
@@ -2824,7 +2859,7 b' msgstr ""'
2824 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2913
2859 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2913
2825 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3014
2860 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:3014
2826 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3015
2861 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:3015
2827 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3233 rhodecode/model/db.py:3862
2862 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:3233 rhodecode/model/db.py:3938
2828 msgid "Under Review"
2863 msgid "Under Review"
2829 msgstr ""
2864 msgstr ""
2830
2865
@@ -2855,6 +2890,7 b' msgstr ""'
2855 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2777
2890 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2777
2856 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2992
2891 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2992
2857 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3078
2892 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3078
2893 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3084
2858 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2280
2894 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2280
2859 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2272
2895 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2272
2860 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2271
2896 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2271
@@ -2862,7 +2898,7 b' msgstr ""'
2862 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2275
2898 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2275
2863 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2326
2899 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2326
2864 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2327
2900 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2327
2865 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2527 rhodecode/model/db.py:3084
2901 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2527 rhodecode/model/db.py:3115
2866 msgid "Repository group no access"
2902 msgid "Repository group no access"
2867 msgstr ""
2903 msgstr ""
2868
2904
@@ -2893,6 +2929,7 b' msgstr ""'
2893 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2778
2929 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2778
2894 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2993
2930 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2993
2895 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3079
2931 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3079
2932 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3085
2896 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2281
2933 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2281
2897 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2273
2934 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2273
2898 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2272
2935 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2272
@@ -2900,7 +2937,7 b' msgstr ""'
2900 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2276
2937 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2276
2901 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2327
2938 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2327
2902 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2328
2939 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2328
2903 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2528 rhodecode/model/db.py:3085
2940 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2528 rhodecode/model/db.py:3116
2904 msgid "Repository group read access"
2941 msgid "Repository group read access"
2905 msgstr ""
2942 msgstr ""
2906
2943
@@ -2931,6 +2968,7 b' msgstr ""'
2931 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2779
2968 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2779
2932 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2994
2969 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2994
2933 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3080
2970 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3080
2971 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3086
2934 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2282
2972 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2282
2935 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2274
2973 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2274
2936 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2273
2974 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2273
@@ -2938,7 +2976,7 b' msgstr ""'
2938 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2277
2976 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2277
2939 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2328
2977 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2328
2940 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2329
2978 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2329
2941 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2529 rhodecode/model/db.py:3086
2979 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2529 rhodecode/model/db.py:3117
2942 msgid "Repository group write access"
2980 msgid "Repository group write access"
2943 msgstr ""
2981 msgstr ""
2944
2982
@@ -2969,6 +3007,7 b' msgstr ""'
2969 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2780
3007 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2780
2970 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2995
3008 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2995
2971 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3081
3009 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3081
3010 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3087
2972 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2283
3011 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2283
2973 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2275
3012 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2275
2974 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2274
3013 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2274
@@ -2976,7 +3015,7 b' msgstr ""'
2976 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2278
3015 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2278
2977 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2329
3016 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2329
2978 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2330
3017 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2330
2979 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2530 rhodecode/model/db.py:3087
3018 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2530 rhodecode/model/db.py:3118
2980 msgid "Repository group admin access"
3019 msgid "Repository group admin access"
2981 msgstr ""
3020 msgstr ""
2982
3021
@@ -3006,6 +3045,7 b' msgstr ""'
3006 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2782
3045 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2782
3007 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2997
3046 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2997
3008 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3083
3047 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3083
3048 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3089
3009 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2285
3049 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2285
3010 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2277
3050 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2277
3011 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2276
3051 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2276
@@ -3013,7 +3053,7 b' msgstr ""'
3013 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2280
3053 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2280
3014 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2331
3054 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2331
3015 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2332
3055 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2332
3016 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2532 rhodecode/model/db.py:3089
3056 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2532 rhodecode/model/db.py:3120
3017 msgid "User group no access"
3057 msgid "User group no access"
3018 msgstr ""
3058 msgstr ""
3019
3059
@@ -3043,6 +3083,7 b' msgstr ""'
3043 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2783
3083 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2783
3044 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2998
3084 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2998
3045 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3084
3085 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3084
3086 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3090
3046 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2286
3087 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2286
3047 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2278
3088 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2278
3048 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2277
3089 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2277
@@ -3050,7 +3091,7 b' msgstr ""'
3050 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2281
3091 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2281
3051 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2332
3092 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2332
3052 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2333
3093 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2333
3053 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2533 rhodecode/model/db.py:3090
3094 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2533 rhodecode/model/db.py:3121
3054 msgid "User group read access"
3095 msgid "User group read access"
3055 msgstr ""
3096 msgstr ""
3056
3097
@@ -3080,6 +3121,7 b' msgstr ""'
3080 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2784
3121 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2784
3081 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2999
3122 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2999
3082 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3085
3123 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3085
3124 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3091
3083 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2287
3125 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2287
3084 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2279
3126 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2279
3085 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2278
3127 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2278
@@ -3087,7 +3129,7 b' msgstr ""'
3087 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2282
3129 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2282
3088 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2333
3130 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2333
3089 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2334
3131 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2334
3090 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2534 rhodecode/model/db.py:3091
3132 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2534 rhodecode/model/db.py:3122
3091 msgid "User group write access"
3133 msgid "User group write access"
3092 msgstr ""
3134 msgstr ""
3093
3135
@@ -3117,6 +3159,7 b' msgstr ""'
3117 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2785
3159 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2785
3118 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3000
3160 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3000
3119 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3086
3161 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3086
3162 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3092
3120 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2288
3163 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2288
3121 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2280
3164 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2280
3122 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2279
3165 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2279
@@ -3124,7 +3167,7 b' msgstr ""'
3124 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2283
3167 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2283
3125 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2334
3168 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2334
3126 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2335
3169 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2335
3127 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2535 rhodecode/model/db.py:3092
3170 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2535 rhodecode/model/db.py:3123
3128 msgid "User group admin access"
3171 msgid "User group admin access"
3129 msgstr ""
3172 msgstr ""
3130
3173
@@ -3154,6 +3197,7 b' msgstr ""'
3154 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2792
3197 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2792
3155 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3007
3198 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3007
3156 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3093
3199 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3093
3200 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3099
3157 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2290
3201 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2290
3158 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2282
3202 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2282
3159 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2281
3203 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2281
@@ -3161,7 +3205,7 b' msgstr ""'
3161 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2285
3205 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2285
3162 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2336
3206 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2336
3163 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2337
3207 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2337
3164 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2537 rhodecode/model/db.py:3099
3208 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2537 rhodecode/model/db.py:3130
3165 msgid "Repository Group creation disabled"
3209 msgid "Repository Group creation disabled"
3166 msgstr ""
3210 msgstr ""
3167
3211
@@ -3191,6 +3235,7 b' msgstr ""'
3191 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2793
3235 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2793
3192 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3008
3236 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3008
3193 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3094
3237 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3094
3238 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3100
3194 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2291
3239 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2291
3195 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2283
3240 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2283
3196 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2282
3241 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2282
@@ -3198,7 +3243,7 b' msgstr ""'
3198 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2286
3243 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2286
3199 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2337
3244 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2337
3200 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2338
3245 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2338
3201 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2538 rhodecode/model/db.py:3100
3246 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2538 rhodecode/model/db.py:3131
3202 msgid "Repository Group creation enabled"
3247 msgid "Repository Group creation enabled"
3203 msgstr ""
3248 msgstr ""
3204
3249
@@ -3228,6 +3273,7 b' msgstr ""'
3228 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2795
3273 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2795
3229 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3010
3274 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3010
3230 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3096
3275 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3096
3276 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3102
3231 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2293
3277 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2293
3232 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2285
3278 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2285
3233 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2284
3279 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2284
@@ -3235,7 +3281,7 b' msgstr ""'
3235 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2288
3281 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2288
3236 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2339
3282 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2339
3237 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2340
3283 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2340
3238 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2540 rhodecode/model/db.py:3102
3284 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2540 rhodecode/model/db.py:3133
3239 msgid "User Group creation disabled"
3285 msgid "User Group creation disabled"
3240 msgstr ""
3286 msgstr ""
3241
3287
@@ -3265,6 +3311,7 b' msgstr ""'
3265 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2796
3311 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2796
3266 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3011
3312 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3011
3267 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3097
3313 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3097
3314 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3103
3268 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2294
3315 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2294
3269 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2286
3316 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2286
3270 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2285
3317 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2285
@@ -3272,7 +3319,7 b' msgstr ""'
3272 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2289
3319 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2289
3273 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2340
3320 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2340
3274 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2341
3321 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2341
3275 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2541 rhodecode/model/db.py:3103
3322 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2541 rhodecode/model/db.py:3134
3276 msgid "User Group creation enabled"
3323 msgid "User Group creation enabled"
3277 msgstr ""
3324 msgstr ""
3278
3325
@@ -3302,6 +3349,7 b' msgstr ""'
3302 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2806
3349 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2806
3303 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3021
3350 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3021
3304 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3107
3351 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3107
3352 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3113
3305 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2304
3353 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2304
3306 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2296
3354 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2296
3307 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2295
3355 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2295
@@ -3309,7 +3357,7 b' msgstr ""'
3309 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2299
3357 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2299
3310 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2350
3358 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2350
3311 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2351
3359 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2351
3312 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2551 rhodecode/model/db.py:3113
3360 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2551 rhodecode/model/db.py:3144
3313 msgid "Registration disabled"
3361 msgid "Registration disabled"
3314 msgstr ""
3362 msgstr ""
3315
3363
@@ -3339,6 +3387,7 b' msgstr ""'
3339 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2807
3387 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2807
3340 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3022
3388 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3022
3341 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3108
3389 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3108
3390 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3114
3342 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2305
3391 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2305
3343 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2297
3392 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2297
3344 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2296
3393 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2296
@@ -3346,7 +3395,7 b' msgstr ""'
3346 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2300
3395 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2300
3347 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2351
3396 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2351
3348 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2352
3397 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2352
3349 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2552 rhodecode/model/db.py:3114
3398 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2552 rhodecode/model/db.py:3145
3350 msgid "User Registration with manual account activation"
3399 msgid "User Registration with manual account activation"
3351 msgstr ""
3400 msgstr ""
3352
3401
@@ -3376,6 +3425,7 b' msgstr ""'
3376 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2808
3425 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2808
3377 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3023
3426 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3023
3378 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3109
3427 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3109
3428 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3115
3379 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2306
3429 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2306
3380 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2298
3430 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2298
3381 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2297
3431 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2297
@@ -3383,7 +3433,7 b' msgstr ""'
3383 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2301
3433 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2301
3384 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2352
3434 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2352
3385 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2353
3435 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2353
3386 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2553 rhodecode/model/db.py:3115
3436 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2553 rhodecode/model/db.py:3146
3387 msgid "User Registration with automatic account activation"
3437 msgid "User Registration with automatic account activation"
3388 msgstr ""
3438 msgstr ""
3389
3439
@@ -3413,6 +3463,7 b' msgstr ""'
3413 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2814
3463 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2814
3414 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3029
3464 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3029
3415 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3115
3465 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3115
3466 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3121
3416 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2308
3467 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2308
3417 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2300
3468 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2300
3418 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2299
3469 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2299
@@ -3420,7 +3471,7 b' msgstr ""'
3420 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2303
3471 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2303
3421 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2358
3472 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2358
3422 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2359
3473 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2359
3423 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2559 rhodecode/model/db.py:3121
3474 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2559 rhodecode/model/db.py:3152
3424 #: rhodecode/model/permission.py:105
3475 #: rhodecode/model/permission.py:105
3425 msgid "Manual activation of external account"
3476 msgid "Manual activation of external account"
3426 msgstr ""
3477 msgstr ""
@@ -3451,6 +3502,7 b' msgstr ""'
3451 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2815
3502 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2815
3452 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3030
3503 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3030
3453 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3116
3504 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3116
3505 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3122
3454 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2309
3506 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2309
3455 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2301
3507 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2301
3456 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2300
3508 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2300
@@ -3458,7 +3510,7 b' msgstr ""'
3458 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2304
3510 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2304
3459 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2359
3511 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2359
3460 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2360
3512 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2360
3461 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2560 rhodecode/model/db.py:3122
3513 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2560 rhodecode/model/db.py:3153
3462 #: rhodecode/model/permission.py:106
3514 #: rhodecode/model/permission.py:106
3463 msgid "Automatic activation of external account"
3515 msgid "Automatic activation of external account"
3464 msgstr ""
3516 msgstr ""
@@ -3483,6 +3535,7 b' msgstr ""'
3483 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2800
3535 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2800
3484 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3015
3536 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3015
3485 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3101
3537 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3101
3538 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3107
3486 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2298
3539 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2298
3487 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2290
3540 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2290
3488 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2289
3541 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2289
@@ -3490,7 +3543,7 b' msgstr ""'
3490 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2293
3543 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2293
3491 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2344
3544 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2344
3492 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2345
3545 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2345
3493 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2545 rhodecode/model/db.py:3107
3546 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2545 rhodecode/model/db.py:3138
3494 msgid "Repository creation enabled with write permission to a repository group"
3547 msgid "Repository creation enabled with write permission to a repository group"
3495 msgstr ""
3548 msgstr ""
3496
3549
@@ -3514,6 +3567,7 b' msgstr ""'
3514 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2801
3567 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2801
3515 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3016
3568 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3016
3516 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3102
3569 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3102
3570 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3108
3517 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2299
3571 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2299
3518 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2291
3572 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2291
3519 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2290
3573 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2290
@@ -3521,7 +3575,7 b' msgstr ""'
3521 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2294
3575 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2294
3522 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2345
3576 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2345
3523 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2346
3577 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2346
3524 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2546 rhodecode/model/db.py:3108
3578 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2546 rhodecode/model/db.py:3139
3525 msgid "Repository creation disabled with write permission to a repository group"
3579 msgid "Repository creation disabled with write permission to a repository group"
3526 msgstr ""
3580 msgstr ""
3527
3581
@@ -3542,6 +3596,7 b' msgstr ""'
3542 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2770
3596 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2770
3543 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2985
3597 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2985
3544 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3071
3598 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3071
3599 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3077
3545 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2273
3600 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2273
3546 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2265
3601 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2265
3547 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2264
3602 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2264
@@ -3549,7 +3604,7 b' msgstr ""'
3549 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2268
3604 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2268
3550 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2319
3605 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2319
3551 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2320
3606 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2320
3552 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2520 rhodecode/model/db.py:3077
3607 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2520 rhodecode/model/db.py:3108
3553 msgid "RhodeCode Super Administrator"
3608 msgid "RhodeCode Super Administrator"
3554 msgstr ""
3609 msgstr ""
3555
3610
@@ -3568,6 +3623,7 b' msgstr ""'
3568 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2817
3623 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2817
3569 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3032
3624 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3032
3570 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3118
3625 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3118
3626 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3124
3571 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2311
3627 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2311
3572 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2303
3628 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2303
3573 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2302
3629 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2302
@@ -3575,7 +3631,7 b' msgstr ""'
3575 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2306
3631 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2306
3576 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2361
3632 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2361
3577 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2362
3633 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2362
3578 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2562 rhodecode/model/db.py:3124
3634 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2562 rhodecode/model/db.py:3155
3579 msgid "Inherit object permissions from default user disabled"
3635 msgid "Inherit object permissions from default user disabled"
3580 msgstr ""
3636 msgstr ""
3581
3637
@@ -3594,6 +3650,7 b' msgstr ""'
3594 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2818
3650 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2818
3595 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3033
3651 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3033
3596 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3119
3652 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3119
3653 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3125
3597 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2312
3654 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2312
3598 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2304
3655 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2304
3599 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2303
3656 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2303
@@ -3601,7 +3658,7 b' msgstr ""'
3601 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2307
3658 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2307
3602 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2362
3659 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2362
3603 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2363
3660 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2363
3604 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2563 rhodecode/model/db.py:3125
3661 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2563 rhodecode/model/db.py:3156
3605 msgid "Inherit object permissions from default user enabled"
3662 msgid "Inherit object permissions from default user enabled"
3606 msgstr ""
3663 msgstr ""
3607
3664
@@ -3612,6 +3669,7 b' msgstr ""'
3612 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1120
3669 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1120
3613 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1137
3670 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1137
3614 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1189
3671 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1189
3672 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:1195
3615 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:910
3673 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:910
3616 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:911
3674 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:911
3617 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:910
3675 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:910
@@ -3619,7 +3677,7 b' msgstr ""'
3619 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:912
3677 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:912
3620 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:955
3678 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:955
3621 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:956
3679 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:956
3622 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1050 rhodecode/model/db.py:1195
3680 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1050 rhodecode/model/db.py:1202
3623 msgid "all"
3681 msgid "all"
3624 msgstr ""
3682 msgstr ""
3625
3683
@@ -3630,6 +3688,7 b' msgstr ""'
3630 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1121
3688 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1121
3631 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1138
3689 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1138
3632 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1190
3690 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1190
3691 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:1196
3633 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:911
3692 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:911
3634 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:912
3693 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:912
3635 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:911
3694 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:911
@@ -3637,7 +3696,7 b' msgstr ""'
3637 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:913
3696 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:913
3638 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:956
3697 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:956
3639 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:957
3698 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:957
3640 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1051 rhodecode/model/db.py:1196
3699 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1051 rhodecode/model/db.py:1203
3641 msgid "http/web interface"
3700 msgid "http/web interface"
3642 msgstr ""
3701 msgstr ""
3643
3702
@@ -3648,6 +3707,7 b' msgstr ""'
3648 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1122
3707 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1122
3649 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1139
3708 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1139
3650 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1191
3709 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1191
3710 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:1197
3651 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:912
3711 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:912
3652 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:913
3712 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:913
3653 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:912
3713 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:912
@@ -3655,7 +3715,7 b' msgstr ""'
3655 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:914
3715 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:914
3656 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:957
3716 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:957
3657 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:958
3717 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:958
3658 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1052 rhodecode/model/db.py:1197
3718 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1052 rhodecode/model/db.py:1204
3659 msgid "vcs (git/hg/svn protocol)"
3719 msgid "vcs (git/hg/svn protocol)"
3660 msgstr ""
3720 msgstr ""
3661
3721
@@ -3666,6 +3726,7 b' msgstr ""'
3666 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1123
3726 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1123
3667 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1140
3727 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1140
3668 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1192
3728 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1192
3729 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:1198
3669 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:913
3730 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:913
3670 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:914
3731 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:914
3671 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:913
3732 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:913
@@ -3673,7 +3734,7 b' msgstr ""'
3673 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:915
3734 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:915
3674 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:958
3735 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:958
3675 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:959
3736 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:959
3676 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1053 rhodecode/model/db.py:1198
3737 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1053 rhodecode/model/db.py:1205
3677 msgid "api calls"
3738 msgid "api calls"
3678 msgstr ""
3739 msgstr ""
3679
3740
@@ -3684,6 +3745,7 b' msgstr ""'
3684 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1124
3745 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:1124
3685 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1141
3746 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:1141
3686 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1193
3747 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1193
3748 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:1199
3687 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:914
3749 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:914
3688 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:915
3750 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:915
3689 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:914
3751 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:914
@@ -3691,7 +3753,7 b' msgstr ""'
3691 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:916
3753 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:916
3692 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:959
3754 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:959
3693 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:960
3755 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:960
3694 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1054 rhodecode/model/db.py:1199
3756 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:1054 rhodecode/model/db.py:1206
3695 msgid "feed access"
3757 msgid "feed access"
3696 msgstr ""
3758 msgstr ""
3697
3759
@@ -3702,6 +3764,7 b' msgstr ""'
3702 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2511
3764 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2511
3703 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2638
3765 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:2638
3704 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:2729
3766 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:2729
3767 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:2735
3705 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2051
3768 #: rhodecode/lib/dbmigrate/schema/db_4_3_0_0.py:2051
3706 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2043
3769 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_0.py:2043
3707 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2042
3770 #: rhodecode/lib/dbmigrate/schema/db_4_4_0_1.py:2042
@@ -3709,7 +3772,7 b' msgstr ""'
3709 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2046
3772 #: rhodecode/lib/dbmigrate/schema/db_4_5_0_0.py:2046
3710 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2090
3773 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2090
3711 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2091
3774 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2091
3712 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2284 rhodecode/model/db.py:2735
3775 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2284 rhodecode/model/db.py:2766
3713 msgid "No parent"
3776 msgid "No parent"
3714 msgstr ""
3777 msgstr ""
3715
3778
@@ -3720,9 +3783,10 b' msgstr ""'
3720 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2810
3783 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2810
3721 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3025
3784 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3025
3722 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3111
3785 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3111
3786 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3117
3723 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2354
3787 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2354
3724 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2355
3788 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2355
3725 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2555 rhodecode/model/db.py:3117
3789 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2555 rhodecode/model/db.py:3148
3726 msgid "Password reset enabled"
3790 msgid "Password reset enabled"
3727 msgstr ""
3791 msgstr ""
3728
3792
@@ -3733,9 +3797,10 b' msgstr ""'
3733 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2811
3797 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2811
3734 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3026
3798 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3026
3735 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3112
3799 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3112
3800 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3118
3736 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2355
3801 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2355
3737 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2356
3802 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2356
3738 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2556 rhodecode/model/db.py:3118
3803 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2556 rhodecode/model/db.py:3149
3739 msgid "Password reset hidden"
3804 msgid "Password reset hidden"
3740 msgstr ""
3805 msgstr ""
3741
3806
@@ -3746,9 +3811,10 b' msgstr ""'
3746 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2812
3811 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2812
3747 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3027
3812 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3027
3748 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3113
3813 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3113
3814 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3119
3749 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2356
3815 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_0.py:2356
3750 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2357
3816 #: rhodecode/lib/dbmigrate/schema/db_4_7_0_1.py:2357
3751 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2557 rhodecode/model/db.py:3119
3817 #: rhodecode/lib/dbmigrate/schema/db_4_9_0_0.py:2557 rhodecode/model/db.py:3150
3752 msgid "Password reset disabled"
3818 msgid "Password reset disabled"
3753 msgstr ""
3819 msgstr ""
3754
3820
@@ -3758,7 +3824,8 b' msgstr ""'
3758 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2787
3824 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2787
3759 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3002
3825 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3002
3760 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3088
3826 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3088
3761 #: rhodecode/model/db.py:3094
3827 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3094
3828 #: rhodecode/model/db.py:3125
3762 msgid "Branch no permissions"
3829 msgid "Branch no permissions"
3763 msgstr ""
3830 msgstr ""
3764
3831
@@ -3768,7 +3835,8 b' msgstr ""'
3768 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2788
3835 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2788
3769 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3003
3836 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3003
3770 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3089
3837 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3089
3771 #: rhodecode/model/db.py:3095
3838 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3095
3839 #: rhodecode/model/db.py:3126
3772 msgid "Branch access by web merge"
3840 msgid "Branch access by web merge"
3773 msgstr ""
3841 msgstr ""
3774
3842
@@ -3778,7 +3846,8 b' msgstr ""'
3778 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2789
3846 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2789
3779 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3004
3847 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3004
3780 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3090
3848 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3090
3781 #: rhodecode/model/db.py:3096
3849 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3096
3850 #: rhodecode/model/db.py:3127
3782 msgid "Branch access by push"
3851 msgid "Branch access by push"
3783 msgstr ""
3852 msgstr ""
3784
3853
@@ -3788,12 +3857,14 b' msgstr ""'
3788 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2790
3857 #: rhodecode/lib/dbmigrate/schema/db_4_16_0_2.py:2790
3789 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3005
3858 #: rhodecode/lib/dbmigrate/schema/db_4_18_0_1.py:3005
3790 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3091
3859 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:3091
3791 #: rhodecode/model/db.py:3097
3860 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:3097
3861 #: rhodecode/model/db.py:3128
3792 msgid "Branch access by push with force"
3862 msgid "Branch access by push with force"
3793 msgstr ""
3863 msgstr ""
3794
3864
3795 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1194
3865 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_0.py:1194
3796 #: rhodecode/model/db.py:1200
3866 #: rhodecode/lib/dbmigrate/schema/db_4_19_0_2.py:1200
3867 #: rhodecode/model/db.py:1207
3797 msgid "artifacts downloads"
3868 msgid "artifacts downloads"
3798 msgstr ""
3869 msgstr ""
3799
3870
@@ -3881,14 +3952,38 b' msgstr ""'
3881 msgid "1 month {end_date}"
3952 msgid "1 month {end_date}"
3882 msgstr ""
3953 msgstr ""
3883
3954
3884 #: rhodecode/model/comment.py:473
3955 #: rhodecode/model/comment.py:485
3885 msgid "made a comment"
3956 msgid "made a comment"
3886 msgstr ""
3957 msgstr ""
3887
3958
3888 #: rhodecode/model/comment.py:474
3959 #: rhodecode/model/comment.py:486
3889 msgid "Show it now"
3960 msgid "Show it now"
3890 msgstr ""
3961 msgstr ""
3891
3962
3963 #: rhodecode/model/db.py:1213
3964 msgid "Token for all actions."
3965 msgstr ""
3966
3967 #: rhodecode/model/db.py:1214
3968 msgid "Token to access RhodeCode pages via web interface without login using `api_access_controllers_whitelist` functionality."
3969 msgstr ""
3970
3971 #: rhodecode/model/db.py:1216
3972 msgid "Token to interact over git/hg/svn protocols. Requires auth_token authentication plugin to be active. <br/>Such Token should be used then instead of a password to interact with a repository, and additionally can be limited to single repository using repo scope."
3973 msgstr ""
3974
3975 #: rhodecode/model/db.py:1221
3976 msgid "Token limited to api calls."
3977 msgstr ""
3978
3979 #: rhodecode/model/db.py:1222
3980 msgid "Token to read RSS/ATOM feed."
3981 msgstr ""
3982
3983 #: rhodecode/model/db.py:1223
3984 msgid "Token for artifacts downloads."
3985 msgstr ""
3986
3892 #: rhodecode/model/forms.py:88
3987 #: rhodecode/model/forms.py:88
3893 msgid "Please enter a login"
3988 msgid "Please enter a login"
3894 msgstr ""
3989 msgstr ""
@@ -3907,72 +4002,72 b' msgstr ""'
3907 msgid "Enter %(min)i characters or more"
4002 msgid "Enter %(min)i characters or more"
3908 msgstr ""
4003 msgstr ""
3909
4004
3910 #: rhodecode/model/notification.py:246
4005 #: rhodecode/model/notification.py:248
3911 #, python-format
4006 #, python-format
3912 msgid "%(user)s commented on commit %(date_or_age)s"
4007 msgid "%(user)s commented on commit %(date_or_age)s"
3913 msgstr ""
4008 msgstr ""
3914
4009
3915 #: rhodecode/model/notification.py:247
4010 #: rhodecode/model/notification.py:249
3916 #, python-format
4011 #, python-format
3917 msgid "%(user)s commented on commit at %(date_or_age)s"
4012 msgid "%(user)s commented on commit at %(date_or_age)s"
3918 msgstr ""
4013 msgstr ""
3919
4014
3920 #: rhodecode/model/notification.py:250
4015 #: rhodecode/model/notification.py:252
3921 #, python-format
4016 #, python-format
3922 msgid "%(user)s sent message %(date_or_age)s"
4017 msgid "%(user)s sent message %(date_or_age)s"
3923 msgstr ""
4018 msgstr ""
3924
4019
3925 #: rhodecode/model/notification.py:251
4020 #: rhodecode/model/notification.py:253
3926 #, python-format
4021 #, python-format
3927 msgid "%(user)s sent message at %(date_or_age)s"
4022 msgid "%(user)s sent message at %(date_or_age)s"
3928 msgstr ""
4023 msgstr ""
3929
4024
3930 #: rhodecode/model/notification.py:254
4025 #: rhodecode/model/notification.py:256
3931 #, python-format
4026 #, python-format
3932 msgid "%(user)s mentioned you %(date_or_age)s"
4027 msgid "%(user)s mentioned you %(date_or_age)s"
3933 msgstr ""
4028 msgstr ""
3934
4029
3935 #: rhodecode/model/notification.py:255
4030 #: rhodecode/model/notification.py:257
3936 #, python-format
4031 #, python-format
3937 msgid "%(user)s mentioned you at %(date_or_age)s"
4032 msgid "%(user)s mentioned you at %(date_or_age)s"
3938 msgstr ""
4033 msgstr ""
3939
4034
3940 #: rhodecode/model/notification.py:258
4035 #: rhodecode/model/notification.py:260
3941 #, python-format
4036 #, python-format
3942 msgid "%(user)s registered in RhodeCode %(date_or_age)s"
4037 msgid "%(user)s registered in RhodeCode %(date_or_age)s"
3943 msgstr ""
4038 msgstr ""
3944
4039
3945 #: rhodecode/model/notification.py:259
4040 #: rhodecode/model/notification.py:261
3946 #, python-format
4041 #, python-format
3947 msgid "%(user)s registered in RhodeCode at %(date_or_age)s"
4042 msgid "%(user)s registered in RhodeCode at %(date_or_age)s"
3948 msgstr ""
4043 msgstr ""
3949
4044
3950 #: rhodecode/model/notification.py:262
4045 #: rhodecode/model/notification.py:264
3951 #, python-format
4046 #, python-format
3952 msgid "%(user)s opened new pull request %(date_or_age)s"
4047 msgid "%(user)s opened new pull request %(date_or_age)s"
3953 msgstr ""
4048 msgstr ""
3954
4049
3955 #: rhodecode/model/notification.py:263
4050 #: rhodecode/model/notification.py:265
3956 #, python-format
4051 #, python-format
3957 msgid "%(user)s opened new pull request at %(date_or_age)s"
4052 msgid "%(user)s opened new pull request at %(date_or_age)s"
3958 msgstr ""
4053 msgstr ""
3959
4054
3960 #: rhodecode/model/notification.py:266
4055 #: rhodecode/model/notification.py:268
3961 #, python-format
4056 #, python-format
3962 msgid "%(user)s updated pull request %(date_or_age)s"
4057 msgid "%(user)s updated pull request %(date_or_age)s"
3963 msgstr ""
4058 msgstr ""
3964
4059
3965 #: rhodecode/model/notification.py:267
4060 #: rhodecode/model/notification.py:269
3966 #, python-format
4061 #, python-format
3967 msgid "%(user)s updated pull request at %(date_or_age)s"
4062 msgid "%(user)s updated pull request at %(date_or_age)s"
3968 msgstr ""
4063 msgstr ""
3969
4064
3970 #: rhodecode/model/notification.py:270
4065 #: rhodecode/model/notification.py:272
3971 #, python-format
4066 #, python-format
3972 msgid "%(user)s commented on pull request %(date_or_age)s"
4067 msgid "%(user)s commented on pull request %(date_or_age)s"
3973 msgstr ""
4068 msgstr ""
3974
4069
3975 #: rhodecode/model/notification.py:271
4070 #: rhodecode/model/notification.py:273
3976 #, python-format
4071 #, python-format
3977 msgid "%(user)s commented on pull request at %(date_or_age)s"
4072 msgid "%(user)s commented on pull request at %(date_or_age)s"
3978 msgstr ""
4073 msgstr ""
@@ -3980,7 +4075,7 b' msgstr ""'
3980 #: rhodecode/model/permission.py:71 rhodecode/model/permission.py:77
4075 #: rhodecode/model/permission.py:71 rhodecode/model/permission.py:77
3981 #: rhodecode/model/permission.py:83
4076 #: rhodecode/model/permission.py:83
3982 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:11
4077 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:11
3983 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:207
4078 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:217
3984 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:11
4079 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:11
3985 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:15
4080 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:15
3986 msgid "None"
4081 msgid "None"
@@ -3999,8 +4094,8 b' msgstr ""'
3999 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:13
4094 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:13
4000 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:13
4095 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:13
4001 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:17
4096 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:17
4002 #: rhodecode/templates/changeset/changeset_file_comment.mako:272
4097 #: rhodecode/templates/changeset/changeset_file_comment.mako:337
4003 #: rhodecode/templates/changeset/changeset_file_comment.mako:323
4098 #: rhodecode/templates/changeset/changeset_file_comment.mako:388
4004 #: rhodecode/templates/data_table/_dt_elements.mako:450
4099 #: rhodecode/templates/data_table/_dt_elements.mako:450
4005 msgid "Write"
4100 msgid "Write"
4006 msgstr ""
4101 msgstr ""
@@ -4028,7 +4123,7 b' msgstr ""'
4028 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:18
4123 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:18
4029 #: rhodecode/templates/admin/users/user_add.mako:11
4124 #: rhodecode/templates/admin/users/user_add.mako:11
4030 #: rhodecode/templates/admin/users/user_edit.mako:12
4125 #: rhodecode/templates/admin/users/user_edit.mako:12
4031 #: rhodecode/templates/base/base.mako:832
4126 #: rhodecode/templates/base/base.mako:839
4032 msgid "Admin"
4127 msgid "Admin"
4033 msgstr ""
4128 msgstr ""
4034
4129
@@ -4122,7 +4217,7 b' msgstr ""'
4122
4217
4123 #: rhodecode/model/pull_request.py:1739 rhodecode/model/scm.py:1004
4218 #: rhodecode/model/pull_request.py:1739 rhodecode/model/scm.py:1004
4124 #: rhodecode/templates/admin/my_account/my_account.mako:32
4219 #: rhodecode/templates/admin/my_account/my_account.mako:32
4125 #: rhodecode/templates/base/base.mako:629
4220 #: rhodecode/templates/base/base.mako:636
4126 #: rhodecode/templates/summary/components.mako:46
4221 #: rhodecode/templates/summary/components.mako:46
4127 msgid "Bookmarks"
4222 msgid "Bookmarks"
4128 msgstr ""
4223 msgstr ""
@@ -4169,11 +4264,11 b' msgid "Merge strategy: explicit merge co'
4169 msgstr ""
4264 msgstr ""
4170
4265
4171 #: rhodecode/model/pull_request.py:2056
4266 #: rhodecode/model/pull_request.py:2056
4172 msgid "Source branch will be closed after merge."
4267 msgid "Source branch will be closed before the merge."
4173 msgstr ""
4268 msgstr ""
4174
4269
4175 #: rhodecode/model/pull_request.py:2058
4270 #: rhodecode/model/pull_request.py:2058
4176 msgid "Source branch will be deleted after merge."
4271 msgid "Source branch will be deleted after the merge."
4177 msgstr ""
4272 msgstr ""
4178
4273
4179 #: rhodecode/model/validators.py:93 rhodecode/model/validators.py:94
4274 #: rhodecode/model/validators.py:93 rhodecode/model/validators.py:94
@@ -4290,7 +4385,7 b' msgid "Repository group with name \\"%(re'
4290 msgstr ""
4385 msgstr ""
4291
4386
4292 #: rhodecode/model/validators.py:567
4387 #: rhodecode/model/validators.py:567
4293 #: rhodecode/model/validation_schema/schemas/repo_schema.py:230
4388 #: rhodecode/model/validation_schema/schemas/repo_schema.py:236
4294 msgid "Repository name cannot end with .git"
4389 msgid "Repository name cannot end with .git"
4295 msgstr ""
4390 msgstr ""
4296
4391
@@ -4451,25 +4546,28 b' msgid "{integration_type} settings"'
4451 msgstr ""
4546 msgstr ""
4452
4547
4453 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:52
4548 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:52
4549 msgid "Parent repository group `{}` does not exist"
4550 msgstr ""
4551
4454 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:56
4552 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:56
4455 msgid "Parent repository group `{}` does not exist"
4553 msgid "You do not have the permissions to store repository groups inside repository group `{}`"
4456 msgstr ""
4554 msgstr ""
4457
4555
4458 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:58
4556 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:59
4459 msgid "You do not have the permission to store repository groups in the root location."
4557 msgid "You do not have the permission to store repository groups in the root location."
4460 msgstr ""
4558 msgstr ""
4461
4559
4462 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:118
4560 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:125
4463 msgid "Repo group owner with id `{}` does not exists"
4561 msgid "Repo group owner with id `{}` does not exists"
4464 msgstr ""
4562 msgstr ""
4465
4563
4466 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:136
4564 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:143
4467 #: rhodecode/model/validation_schema/schemas/repo_schema.py:215
4565 #: rhodecode/model/validation_schema/schemas/repo_schema.py:221
4468 msgid "Repository with name `{}` already exists"
4566 msgid "Repository with name `{}` already exists"
4469 msgstr ""
4567 msgstr ""
4470
4568
4471 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:141
4569 #: rhodecode/model/validation_schema/schemas/repo_group_schema.py:148
4472 #: rhodecode/model/validation_schema/schemas/repo_schema.py:220
4570 #: rhodecode/model/validation_schema/schemas/repo_schema.py:226
4473 msgid "Repository group with name `{}` already exists"
4571 msgid "Repository group with name `{}` already exists"
4474 msgstr ""
4572 msgstr ""
4475
4573
@@ -4510,466 +4608,490 b' msgstr ""'
4510 msgid "Additional emails can be specified at <a href=\"{}\">extra emails</a> page."
4608 msgid "Additional emails can be specified at <a href=\"{}\">extra emails</a> page."
4511 msgstr ""
4609 msgstr ""
4512
4610
4513 #: rhodecode/public/js/scripts.js:20588 rhodecode/public/js/scripts.min.js:1
4611 #: rhodecode/public/js/scripts.js:19
4514 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:51
4612 msgid ": , "
4613 msgstr ""
4614
4615 #: rhodecode/public/js/scripts.js:20822 rhodecode/public/js/scripts.min.js:1
4616 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:59
4515 #: rhodecode/public/js/src/plugins/jquery.autocomplete.js:87
4617 #: rhodecode/public/js/src/plugins/jquery.autocomplete.js:87
4516 msgid "No results"
4618 msgid "No results"
4517 msgstr ""
4619 msgstr ""
4518
4620
4519 #: rhodecode/public/js/scripts.js:22050 rhodecode/public/js/scripts.min.js:1
4621 #: rhodecode/public/js/scripts.js:22547 rhodecode/public/js/scripts.min.js:1
4520 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:144
4622 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:161
4521 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:109
4623 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:109
4522 msgid "{0} year"
4624 msgid "{0} year"
4523 msgstr ""
4625 msgstr ""
4524
4626
4525 #: rhodecode/public/js/scripts.js:22051 rhodecode/public/js/scripts.min.js:1
4627 #: rhodecode/public/js/scripts.js:22548 rhodecode/public/js/scripts.min.js:1
4526 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:132
4628 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:149
4527 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:110
4629 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:110
4528 msgid "{0} month"
4630 msgid "{0} month"
4529 msgstr ""
4631 msgstr ""
4530
4632
4531 #: rhodecode/public/js/scripts.js:22052 rhodecode/public/js/scripts.min.js:1
4633 #: rhodecode/public/js/scripts.js:22549 rhodecode/public/js/scripts.min.js:1
4532 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:127
4634 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:144
4533 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:111
4635 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:111
4534 msgid "{0} day"
4636 msgid "{0} day"
4535 msgstr ""
4637 msgstr ""
4536
4638
4537 #: rhodecode/public/js/scripts.js:22053 rhodecode/public/js/scripts.min.js:1
4639 #: rhodecode/public/js/scripts.js:22550 rhodecode/public/js/scripts.min.js:1
4538 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:129
4640 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:146
4539 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:112
4641 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:112
4540 msgid "{0} hour"
4642 msgid "{0} hour"
4541 msgstr ""
4643 msgstr ""
4542
4644
4543 #: rhodecode/public/js/scripts.js:22054 rhodecode/public/js/scripts.min.js:1
4645 #: rhodecode/public/js/scripts.js:22551 rhodecode/public/js/scripts.min.js:1
4544 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:131
4646 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:148
4545 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:113
4647 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:113
4546 msgid "{0} min"
4648 msgid "{0} min"
4547 msgstr ""
4649 msgstr ""
4548
4650
4549 #: rhodecode/public/js/scripts.js:22055 rhodecode/public/js/scripts.min.js:1
4651 #: rhodecode/public/js/scripts.js:22552 rhodecode/public/js/scripts.min.js:1
4550 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:141
4652 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:158
4551 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:114
4653 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:114
4552 msgid "{0} sec"
4654 msgid "{0} sec"
4553 msgstr ""
4655 msgstr ""
4554
4656
4555 #: rhodecode/public/js/scripts.js:22075 rhodecode/public/js/scripts.min.js:1
4657 #: rhodecode/public/js/scripts.js:22572 rhodecode/public/js/scripts.min.js:1
4556 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:108
4658 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:124
4557 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:134
4659 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:134
4558 msgid "in {0}"
4660 msgid "in {0}"
4559 msgstr ""
4661 msgstr ""
4560
4662
4561 #: rhodecode/public/js/scripts.js:22083 rhodecode/public/js/scripts.min.js:1
4663 #: rhodecode/public/js/scripts.js:22580 rhodecode/public/js/scripts.min.js:1
4562 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:124
4664 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:141
4563 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:142
4665 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:142
4564 msgid "{0} ago"
4666 msgid "{0} ago"
4565 msgstr ""
4667 msgstr ""
4566
4668
4567 #: rhodecode/public/js/scripts.js:22095 rhodecode/public/js/scripts.min.js:1
4669 #: rhodecode/public/js/scripts.js:22592 rhodecode/public/js/scripts.min.js:1
4568 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:146
4670 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:163
4569 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:154
4671 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:154
4570 msgid "{0}, {1} ago"
4672 msgid "{0}, {1} ago"
4571 msgstr ""
4673 msgstr ""
4572
4674
4573 #: rhodecode/public/js/scripts.js:22097 rhodecode/public/js/scripts.min.js:1
4675 #: rhodecode/public/js/scripts.js:22594 rhodecode/public/js/scripts.min.js:1
4574 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:110
4676 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:126
4575 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:156
4677 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:156
4576 msgid "in {0}, {1}"
4678 msgid "in {0}, {1}"
4577 msgstr ""
4679 msgstr ""
4578
4680
4579 #: rhodecode/public/js/scripts.js:22101 rhodecode/public/js/scripts.min.js:1
4681 #: rhodecode/public/js/scripts.js:22598 rhodecode/public/js/scripts.min.js:1
4580 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:125
4682 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:142
4581 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:160
4683 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:160
4582 msgid "{0} and {1}"
4684 msgid "{0} and {1}"
4583 msgstr ""
4685 msgstr ""
4584
4686
4585 #: rhodecode/public/js/scripts.js:22103 rhodecode/public/js/scripts.min.js:1
4687 #: rhodecode/public/js/scripts.js:22600 rhodecode/public/js/scripts.min.js:1
4586 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:126
4688 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:143
4587 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:162
4689 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:162
4588 msgid "{0} and {1} ago"
4690 msgid "{0} and {1} ago"
4589 msgstr ""
4691 msgstr ""
4590
4692
4591 #: rhodecode/public/js/scripts.js:22105 rhodecode/public/js/scripts.min.js:1
4693 #: rhodecode/public/js/scripts.js:22602 rhodecode/public/js/scripts.min.js:1
4592 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:109
4694 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:125
4593 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:164
4695 #: rhodecode/public/js/src/plugins/jquery.timeago-extension.js:164
4594 msgid "in {0} and {1}"
4696 msgid "in {0} and {1}"
4595 msgstr ""
4697 msgstr ""
4596
4698
4597 #: rhodecode/public/js/scripts.js:37103 rhodecode/public/js/scripts.min.js:1
4699 #: rhodecode/public/js/scripts.js:37600 rhodecode/public/js/scripts.min.js:1
4598 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:38
4700 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:46
4599 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:4
4701 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:4
4600 msgid "Loading more results..."
4702 msgid "Loading more results..."
4601 msgstr ""
4703 msgstr ""
4602
4704
4603 #: rhodecode/public/js/scripts.js:37106 rhodecode/public/js/scripts.min.js:1
4705 #: rhodecode/public/js/scripts.js:37603 rhodecode/public/js/scripts.min.js:1
4604 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:67
4706 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:76
4605 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:7
4707 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:7
4606 msgid "Searching..."
4708 msgid "Searching..."
4607 msgstr ""
4709 msgstr ""
4608
4710
4609 #: rhodecode/public/js/scripts.js:37109 rhodecode/public/js/scripts.min.js:1
4711 #: rhodecode/public/js/scripts.js:37606 rhodecode/public/js/scripts.min.js:1
4610 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:44
4712 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:52
4611 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:10
4713 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:10
4612 msgid "No matches found"
4714 msgid "No matches found"
4613 msgstr ""
4715 msgstr ""
4614
4716
4615 #: rhodecode/public/js/scripts.js:37112 rhodecode/public/js/scripts.min.js:1
4717 #: rhodecode/public/js/scripts.js:37609 rhodecode/public/js/scripts.min.js:1
4616 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:37
4718 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:45
4617 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:13
4719 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:13
4618 msgid "Loading failed"
4720 msgid "Loading failed"
4619 msgstr ""
4721 msgstr ""
4620
4722
4621 #: rhodecode/public/js/scripts.js:37116 rhodecode/public/js/scripts.min.js:1
4723 #: rhodecode/public/js/scripts.js:37613 rhodecode/public/js/scripts.min.js:1
4622 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:58
4724 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:66
4623 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:17
4725 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:17
4624 msgid "One result is available, press enter to select it."
4726 msgid "One result is available, press enter to select it."
4625 msgstr ""
4727 msgstr ""
4626
4728
4627 #: rhodecode/public/js/scripts.js:37118 rhodecode/public/js/scripts.min.js:1
4729 #: rhodecode/public/js/scripts.js:37615 rhodecode/public/js/scripts.min.js:1
4628 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:140
4730 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:157
4629 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:19
4731 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:19
4630 msgid "{0} results are available, use up and down arrow keys to navigate."
4732 msgid "{0} results are available, use up and down arrow keys to navigate."
4631 msgstr ""
4733 msgstr ""
4632
4734
4633 #: rhodecode/public/js/scripts.js:37123 rhodecode/public/js/scripts.min.js:1
4735 #: rhodecode/public/js/scripts.js:37620 rhodecode/public/js/scripts.min.js:1
4634 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:63
4736 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:71
4635 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:24
4737 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:24
4636 msgid "Please enter {0} or more character"
4738 msgid "Please enter {0} or more character"
4637 msgstr ""
4739 msgstr ""
4638
4740
4639 #: rhodecode/public/js/scripts.js:37125 rhodecode/public/js/scripts.min.js:1
4741 #: rhodecode/public/js/scripts.js:37622 rhodecode/public/js/scripts.min.js:1
4640 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:64
4742 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:72
4641 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:26
4743 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:26
4642 msgid "Please enter {0} or more characters"
4744 msgid "Please enter {0} or more characters"
4643 msgstr ""
4745 msgstr ""
4644
4746
4645 #: rhodecode/public/js/scripts.js:37130 rhodecode/public/js/scripts.min.js:1
4747 #: rhodecode/public/js/scripts.js:37627 rhodecode/public/js/scripts.min.js:1
4646 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:61
4748 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:69
4647 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:31
4749 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:31
4648 msgid "Please delete {0} character"
4750 msgid "Please delete {0} character"
4649 msgstr ""
4751 msgstr ""
4650
4752
4651 #: rhodecode/public/js/scripts.js:37132 rhodecode/public/js/scripts.min.js:1
4753 #: rhodecode/public/js/scripts.js:37629 rhodecode/public/js/scripts.min.js:1
4652 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:62
4754 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:70
4653 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:33
4755 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:33
4654 msgid "Please delete {0} characters"
4756 msgid "Please delete {0} characters"
4655 msgstr ""
4757 msgstr ""
4656
4758
4657 #: rhodecode/public/js/scripts.js:37136 rhodecode/public/js/scripts.min.js:1
4759 #: rhodecode/public/js/scripts.js:37633 rhodecode/public/js/scripts.min.js:1
4658 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:98
4760 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:114
4659 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:37
4761 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:37
4660 msgid "You can only select {0} item"
4762 msgid "You can only select {0} item"
4661 msgstr ""
4763 msgstr ""
4662
4764
4663 #: rhodecode/public/js/scripts.js:37138 rhodecode/public/js/scripts.min.js:1
4765 #: rhodecode/public/js/scripts.js:37635 rhodecode/public/js/scripts.min.js:1
4664 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:99
4766 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:115
4665 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:39
4767 #: rhodecode/public/js/rhodecode/i18n/select2/translations.js:39
4666 msgid "You can only select {0} items"
4768 msgid "You can only select {0} items"
4667 msgstr ""
4769 msgstr ""
4668
4770
4669 #: rhodecode/public/js/scripts.js:37780 rhodecode/public/js/scripts.min.js:1
4771 #: rhodecode/public/js/scripts.js:38285 rhodecode/public/js/scripts.min.js:1
4670 #: rhodecode/public/js/src/rhodecode/utils/ajax.js:136
4772 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:7
4773 #: rhodecode/public/js/src/rhodecode/utils/ajax.js:135
4671 msgid "Ajax Request Error"
4774 msgid "Ajax Request Error"
4672 msgstr ""
4775 msgstr ""
4673
4776
4674 #: rhodecode/public/js/scripts.js:38178 rhodecode/public/js/scripts.min.js:1
4777 #: rhodecode/public/js/scripts.js:38687 rhodecode/public/js/scripts.min.js:1
4675 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:116
4778 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:133
4676 #: rhodecode/public/js/src/rhodecode/changelog.js:35
4779 #: rhodecode/public/js/src/rhodecode/changelog.js:35
4677 msgid "showing {0} out of {1} commit"
4780 msgid "showing {0} out of {1} commit"
4678 msgstr ""
4781 msgstr ""
4679
4782
4680 #: rhodecode/public/js/scripts.js:38180 rhodecode/public/js/scripts.min.js:1
4783 #: rhodecode/public/js/scripts.js:38689 rhodecode/public/js/scripts.min.js:1
4681 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:117
4784 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:134
4682 #: rhodecode/public/js/src/rhodecode/changelog.js:37
4785 #: rhodecode/public/js/src/rhodecode/changelog.js:37
4683 msgid "showing {0} out of {1} commits"
4786 msgid "showing {0} out of {1} commits"
4684 msgstr ""
4787 msgstr ""
4685
4788
4686 #: rhodecode/public/js/scripts.js:38718 rhodecode/public/js/scripts.min.js:1
4789 #: rhodecode/public/js/scripts.js:39227 rhodecode/public/js/scripts.min.js:1
4687 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:70
4790 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:79
4688 #: rhodecode/public/js/src/rhodecode/codemirror.js:363
4791 #: rhodecode/public/js/src/rhodecode/codemirror.js:363
4689 msgid "Set status to Approved"
4792 msgid "Set status to Approved"
4690 msgstr ""
4793 msgstr ""
4691
4794
4692 #: rhodecode/public/js/scripts.js:38738 rhodecode/public/js/scripts.min.js:1
4795 #: rhodecode/public/js/scripts.js:39247 rhodecode/public/js/scripts.min.js:1
4693 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:71
4796 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:80
4694 #: rhodecode/public/js/src/rhodecode/codemirror.js:383
4797 #: rhodecode/public/js/src/rhodecode/codemirror.js:383
4695 msgid "Set status to Rejected"
4798 msgid "Set status to Rejected"
4696 msgstr ""
4799 msgstr ""
4697
4800
4698 #: rhodecode/public/js/scripts.js:38757 rhodecode/public/js/scripts.min.js:1
4801 #: rhodecode/public/js/scripts.js:39266 rhodecode/public/js/scripts.min.js:1
4699 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:88
4802 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:99
4700 #: rhodecode/public/js/src/rhodecode/codemirror.js:402
4803 #: rhodecode/public/js/src/rhodecode/codemirror.js:402
4701 msgid "TODO comment"
4804 msgid "TODO comment"
4702 msgstr ""
4805 msgstr ""
4703
4806
4704 #: rhodecode/public/js/scripts.js:38777 rhodecode/public/js/scripts.min.js:1
4807 #: rhodecode/public/js/scripts.js:39286 rhodecode/public/js/scripts.min.js:1
4705 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:57
4808 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:65
4706 #: rhodecode/public/js/src/rhodecode/codemirror.js:422
4809 #: rhodecode/public/js/src/rhodecode/codemirror.js:422
4707 msgid "Note Comment"
4810 msgid "Note Comment"
4708 msgstr ""
4811 msgstr ""
4709
4812
4710 #: rhodecode/public/js/scripts.js:39078 rhodecode/public/js/scripts.js:39432
4813 #: rhodecode/public/js/scripts.js:39587 rhodecode/public/js/scripts.js:39962
4711 #: rhodecode/public/js/scripts.min.js:1
4814 #: rhodecode/public/js/scripts.min.js:1
4712 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:82
4815 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:93
4713 #: rhodecode/public/js/src/rhodecode/codemirror.js:723
4816 #: rhodecode/public/js/src/rhodecode/codemirror.js:723
4714 #: rhodecode/public/js/src/rhodecode/comments.js:233
4817 #: rhodecode/public/js/src/rhodecode/comments.js:254
4715 msgid "Status Review"
4818 msgid "Status Review"
4716 msgstr ""
4819 msgstr ""
4717
4820
4718 #: rhodecode/public/js/scripts.js:39093 rhodecode/public/js/scripts.js:39447
4821 #: rhodecode/public/js/scripts.js:39602 rhodecode/public/js/scripts.js:39977
4719 #: rhodecode/public/js/scripts.min.js:1
4822 #: rhodecode/public/js/scripts.min.js:1
4720 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:17
4823 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:21
4721 #: rhodecode/public/js/src/rhodecode/codemirror.js:738
4824 #: rhodecode/public/js/src/rhodecode/codemirror.js:738
4722 #: rhodecode/public/js/src/rhodecode/comments.js:248
4825 #: rhodecode/public/js/src/rhodecode/comments.js:269
4723 msgid "Comment text will be set automatically based on currently selected status ({0}) ..."
4826 msgid "Comment text will be set automatically based on currently selected status ({0}) ..."
4724 msgstr ""
4827 msgstr ""
4725
4828
4726 #: rhodecode/public/js/scripts.js:39174 rhodecode/public/js/scripts.js:39642
4829 #: rhodecode/public/js/scripts.js:39683 rhodecode/public/js/scripts.js:40172
4727 #: rhodecode/public/js/scripts.js:40669 rhodecode/public/js/scripts.min.js:1
4830 #: rhodecode/public/js/scripts.js:41495 rhodecode/public/js/scripts.min.js:1
4728 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:36
4831 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:43
4729 #: rhodecode/public/js/src/rhodecode/codemirror.js:819
4832 #: rhodecode/public/js/src/rhodecode/codemirror.js:819
4730 #: rhodecode/public/js/src/rhodecode/comments.js:443
4833 #: rhodecode/public/js/src/rhodecode/comments.js:464
4731 #: rhodecode/public/js/src/rhodecode/files.js:499
4834 #: rhodecode/public/js/src/rhodecode/files.js:499
4732 #: rhodecode/templates/files/files_browser_tree.mako:54
4835 #: rhodecode/templates/files/files_browser_tree.mako:57
4733 msgid "Loading ..."
4836 msgid "Loading ..."
4734 msgstr ""
4837 msgstr ""
4735
4838
4736 #: rhodecode/public/js/scripts.js:39348 rhodecode/public/js/scripts.min.js:1
4839 #: rhodecode/public/js/scripts.js:39844 rhodecode/public/js/scripts.min.js:1
4737 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:115
4840 #: rhodecode/public/js/src/rhodecode/comments.js:136
4738 #: rhodecode/public/js/src/rhodecode/comments.js:149
4841 msgid "Updated Comment"
4842 msgstr ""
4843
4844 #: rhodecode/public/js/scripts.js:39868 rhodecode/public/js/scripts.min.js:1
4845 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:132
4846 #: rhodecode/public/js/src/rhodecode/comments.js:160
4739 msgid "resolve comment"
4847 msgid "resolve comment"
4740 msgstr ""
4848 msgstr ""
4741
4849
4742 #: rhodecode/public/js/scripts.js:39591 rhodecode/public/js/scripts.min.js:1
4850 #: rhodecode/public/js/scripts.js:40121 rhodecode/public/js/scripts.min.js:1
4743 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:85
4851 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:96
4744 #: rhodecode/public/js/src/rhodecode/comments.js:392
4852 #: rhodecode/public/js/src/rhodecode/comments.js:413
4745 msgid "Submitting..."
4853 msgid "Submitting..."
4746 msgstr ""
4854 msgstr ""
4747
4855
4748 #: rhodecode/public/js/scripts.js:39794 rhodecode/public/js/scripts.min.js:1
4856 #: rhodecode/public/js/scripts.js:40403 rhodecode/public/js/scripts.min.js:1
4749 #: rhodecode/public/js/src/rhodecode/comments.js:595
4857 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:113
4858 #: rhodecode/public/js/src/rhodecode/comments.js:695
4750 msgid "Yes, delete comment #{0}!"
4859 msgid "Yes, delete comment #{0}!"
4751 msgstr ""
4860 msgstr ""
4752
4861
4753 #: rhodecode/public/js/scripts.js:39849 rhodecode/public/js/scripts.min.js:1
4862 #: rhodecode/public/js/scripts.js:40458 rhodecode/public/js/scripts.min.js:1
4754 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:34
4863 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:41
4755 #: rhodecode/public/js/src/rhodecode/comments.js:650
4864 #: rhodecode/public/js/src/rhodecode/comments.js:750
4756 msgid "Leave a resolution comment, or click resolve button to resolve TODO comment #{0}"
4865 msgid "Leave a resolution comment, or click resolve button to resolve TODO comment #{0}"
4757 msgstr ""
4866 msgstr ""
4758
4867
4759 #: rhodecode/public/js/scripts.js:40015 rhodecode/public/js/scripts.min.js:1
4868 #: rhodecode/public/js/scripts.js:40667 rhodecode/public/js/scripts.min.js:1
4760 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:32
4869 #: rhodecode/public/js/src/rhodecode/comments.js:959
4761 #: rhodecode/public/js/src/rhodecode/comments.js:816
4870 msgid "Comment body was not changed."
4871 msgstr ""
4872
4873 #: rhodecode/public/js/scripts.js:40840 rhodecode/public/js/scripts.min.js:1
4874 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:39
4875 #: rhodecode/public/js/src/rhodecode/comments.js:1132
4762 msgid "Leave a comment on line {0}."
4876 msgid "Leave a comment on line {0}."
4763 msgstr ""
4877 msgstr ""
4764
4878
4765 #: rhodecode/public/js/scripts.js:40140 rhodecode/public/js/scripts.min.js:1
4879 #: rhodecode/public/js/scripts.js:40966 rhodecode/public/js/scripts.min.js:1
4766 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:89
4880 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:100
4767 #: rhodecode/public/js/src/rhodecode/comments.js:941
4881 #: rhodecode/public/js/src/rhodecode/comments.js:1258
4768 msgid "TODO from comment {0} was fixed."
4882 msgid "TODO from comment {0} was fixed."
4769 msgstr ""
4883 msgstr ""
4770
4884
4771 #: rhodecode/public/js/scripts.js:40418 rhodecode/public/js/scripts.min.js:1
4885 #: rhodecode/public/js/scripts.js:41244 rhodecode/public/js/scripts.min.js:1
4772 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:119
4886 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:136
4773 #: rhodecode/public/js/src/rhodecode/files.js:248
4887 #: rhodecode/public/js/src/rhodecode/files.js:248
4774 msgid "truncated result"
4888 msgid "truncated result"
4775 msgstr ""
4889 msgstr ""
4776
4890
4777 #: rhodecode/public/js/scripts.js:40420 rhodecode/public/js/scripts.min.js:1
4891 #: rhodecode/public/js/scripts.js:41246 rhodecode/public/js/scripts.min.js:1
4778 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:120
4892 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:137
4779 #: rhodecode/public/js/src/rhodecode/files.js:250
4893 #: rhodecode/public/js/src/rhodecode/files.js:250
4780 msgid "truncated results"
4894 msgid "truncated results"
4781 msgstr ""
4895 msgstr ""
4782
4896
4783 #: rhodecode/public/js/scripts.js:40429 rhodecode/public/js/scripts.min.js:1
4897 #: rhodecode/public/js/scripts.js:41255 rhodecode/public/js/scripts.min.js:1
4784 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:45
4898 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:53
4785 #: rhodecode/public/js/src/rhodecode/files.js:259
4899 #: rhodecode/public/js/src/rhodecode/files.js:259
4786 msgid "No matching files"
4900 msgid "No matching files"
4787 msgstr ""
4901 msgstr ""
4788
4902
4789 #: rhodecode/public/js/scripts.js:40487 rhodecode/public/js/scripts.min.js:1
4903 #: rhodecode/public/js/scripts.js:41313 rhodecode/public/js/scripts.min.js:1
4790 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:68
4904 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:77
4791 #: rhodecode/public/js/src/rhodecode/files.js:317
4905 #: rhodecode/public/js/src/rhodecode/files.js:317
4792 msgid "Selection link"
4906 msgid "Selection link"
4793 msgstr ""
4907 msgstr ""
4794
4908
4795 #: rhodecode/public/js/scripts.js:40584 rhodecode/public/js/scripts.min.js:1
4909 #: rhodecode/public/js/scripts.js:41410 rhodecode/public/js/scripts.min.js:1
4796 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:5
4910 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:8
4797 #: rhodecode/public/js/src/rhodecode/files.js:414
4911 #: rhodecode/public/js/src/rhodecode/files.js:414
4798 msgid "All Authors"
4912 msgid "All Authors"
4799 msgstr ""
4913 msgstr ""
4800
4914
4801 #: rhodecode/public/js/scripts.js:40734 rhodecode/public/js/scripts.js:40737
4915 #: rhodecode/public/js/scripts.js:41560 rhodecode/public/js/scripts.js:41563
4802 #: rhodecode/public/js/scripts.min.js:1
4916 #: rhodecode/public/js/scripts.min.js:1
4917 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:33
4803 #: rhodecode/public/js/src/rhodecode/files.js:564
4918 #: rhodecode/public/js/src/rhodecode/files.js:564
4804 #: rhodecode/public/js/src/rhodecode/files.js:567
4919 #: rhodecode/public/js/src/rhodecode/files.js:567
4805 msgid "File `{0}` has a newer version available, or has been removed. Click {1} to see the latest version."
4920 msgid "File `{0}` has a newer version available, or has been removed. Click {1} to see the latest version."
4806 msgstr ""
4921 msgstr ""
4807
4922
4808 #: rhodecode/public/js/scripts.js:40740 rhodecode/public/js/scripts.min.js:1
4923 #: rhodecode/public/js/scripts.js:41566 rhodecode/public/js/scripts.min.js:1
4924 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:103
4809 #: rhodecode/public/js/src/rhodecode/files.js:570
4925 #: rhodecode/public/js/src/rhodecode/files.js:570
4810 msgid "There is an existing path `{0}` at this commit."
4926 msgid "There is an existing path `{0}` at this commit."
4811 msgstr ""
4927 msgstr ""
4812
4928
4813 #: rhodecode/public/js/scripts.js:40743 rhodecode/public/js/scripts.min.js:1
4929 #: rhodecode/public/js/scripts.js:41569 rhodecode/public/js/scripts.min.js:1
4930 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:102
4814 #: rhodecode/public/js/src/rhodecode/files.js:573
4931 #: rhodecode/public/js/src/rhodecode/files.js:573
4815 msgid "There is a later version of file tree available. Click {0} to create a file at the latest tree."
4932 msgid "There is a later version of file tree available. Click {0} to create a file at the latest tree."
4816 msgstr ""
4933 msgstr ""
4817
4934
4818 #: rhodecode/public/js/scripts.js:40797 rhodecode/public/js/scripts.min.js:1
4935 #: rhodecode/public/js/scripts.js:41623 rhodecode/public/js/scripts.min.js:1
4819 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:84
4936 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:95
4820 #: rhodecode/public/js/src/rhodecode/followers.js:26
4937 #: rhodecode/public/js/src/rhodecode/followers.js:26
4821 msgid "Stopped watching this repository"
4938 msgid "Stopped watching this repository"
4822 msgstr ""
4939 msgstr ""
4823
4940
4824 #: rhodecode/public/js/scripts.js:40798 rhodecode/public/js/scripts.min.js:1
4941 #: rhodecode/public/js/scripts.js:41624 rhodecode/public/js/scripts.min.js:1
4825 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:97
4942 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:112
4826 #: rhodecode/public/js/src/rhodecode/followers.js:27
4943 #: rhodecode/public/js/src/rhodecode/followers.js:27
4827 #: rhodecode/templates/base/base.mako:301
4944 #: rhodecode/templates/base/base.mako:308
4828 msgid "Watch"
4945 msgid "Watch"
4829 msgstr ""
4946 msgstr ""
4830
4947
4831 #: rhodecode/public/js/scripts.js:40801 rhodecode/public/js/scripts.min.js:1
4948 #: rhodecode/public/js/scripts.js:41627 rhodecode/public/js/scripts.min.js:1
4832 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:81
4949 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:92
4833 #: rhodecode/public/js/src/rhodecode/followers.js:30
4950 #: rhodecode/public/js/src/rhodecode/followers.js:30
4834 msgid "Started watching this repository"
4951 msgid "Started watching this repository"
4835 msgstr ""
4952 msgstr ""
4836
4953
4837 #: rhodecode/public/js/scripts.js:40802 rhodecode/public/js/scripts.min.js:1
4954 #: rhodecode/public/js/scripts.js:41628 rhodecode/public/js/scripts.min.js:1
4838 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:93
4955 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:108
4839 #: rhodecode/public/js/src/rhodecode/followers.js:31
4956 #: rhodecode/public/js/src/rhodecode/followers.js:31
4840 #: rhodecode/templates/base/base.mako:299
4957 #: rhodecode/templates/base/base.mako:306
4841 msgid "Unwatch"
4958 msgid "Unwatch"
4842 msgstr ""
4959 msgstr ""
4843
4960
4844 #: rhodecode/public/js/scripts.js:41182 rhodecode/public/js/scripts.min.js:1
4961 #: rhodecode/public/js/scripts.js:42010 rhodecode/public/js/scripts.min.js:1
4845 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:7
4962 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:10
4846 #: rhodecode/public/js/src/rhodecode/pullrequests.js:141
4963 #: rhodecode/public/js/src/rhodecode/pullrequests.js:143
4847 msgid "All reviewers must vote."
4964 msgid "All reviewers must vote."
4848 msgstr ""
4965 msgstr ""
4849
4966
4850 #: rhodecode/public/js/scripts.js:41191 rhodecode/public/js/scripts.min.js:1
4967 #: rhodecode/public/js/scripts.js:42019 rhodecode/public/js/scripts.min.js:1
4851 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:6
4968 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:9
4852 #: rhodecode/public/js/src/rhodecode/pullrequests.js:150
4969 #: rhodecode/public/js/src/rhodecode/pullrequests.js:152
4853 msgid "All individual reviewers must vote."
4970 msgid "All individual reviewers must vote."
4854 msgstr ""
4971 msgstr ""
4855
4972
4856 #: rhodecode/public/js/scripts.js:41196 rhodecode/public/js/scripts.min.js:1
4973 #: rhodecode/public/js/scripts.js:42024 rhodecode/public/js/scripts.min.js:1
4857 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:9
4974 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:12
4858 #: rhodecode/public/js/src/rhodecode/pullrequests.js:155
4975 #: rhodecode/public/js/src/rhodecode/pullrequests.js:157
4859 msgid "At least {0} reviewer must vote."
4976 msgid "At least {0} reviewer must vote."
4860 msgstr ""
4977 msgstr ""
4861
4978
4862 #: rhodecode/public/js/scripts.js:41202 rhodecode/public/js/scripts.min.js:1
4979 #: rhodecode/public/js/scripts.js:42030 rhodecode/public/js/scripts.min.js:1
4863 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:10
4980 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:13
4864 #: rhodecode/public/js/src/rhodecode/pullrequests.js:161
4981 #: rhodecode/public/js/src/rhodecode/pullrequests.js:163
4865 msgid "At least {0} reviewers must vote."
4982 msgid "At least {0} reviewers must vote."
4866 msgstr ""
4983 msgstr ""
4867
4984
4868 #: rhodecode/public/js/scripts.js:41218 rhodecode/public/js/scripts.min.js:1
4985 #: rhodecode/public/js/scripts.js:42046 rhodecode/public/js/scripts.min.js:1
4869 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:65
4986 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:74
4870 #: rhodecode/public/js/src/rhodecode/pullrequests.js:177
4987 #: rhodecode/public/js/src/rhodecode/pullrequests.js:179
4871 msgid "Reviewers picked from source code changes."
4988 msgid "Reviewers picked from source code changes."
4872 msgstr ""
4989 msgstr ""
4873
4990
4874 #: rhodecode/public/js/scripts.js:41225 rhodecode/public/js/scripts.min.js:1
4991 #: rhodecode/public/js/scripts.js:42053 rhodecode/public/js/scripts.min.js:1
4875 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:4
4992 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:6
4876 #: rhodecode/public/js/src/rhodecode/pullrequests.js:184
4993 #: rhodecode/public/js/src/rhodecode/pullrequests.js:186
4877 msgid "Adding new reviewers is forbidden."
4994 msgid "Adding new reviewers is forbidden."
4878 msgstr ""
4995 msgstr ""
4879
4996
4880 #: rhodecode/public/js/scripts.js:41232 rhodecode/public/js/scripts.min.js:1
4997 #: rhodecode/public/js/scripts.js:42060 rhodecode/public/js/scripts.min.js:1
4881 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:11
4998 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:15
4882 #: rhodecode/public/js/src/rhodecode/pullrequests.js:191
4999 #: rhodecode/public/js/src/rhodecode/pullrequests.js:193
4883 msgid "Author is not allowed to be a reviewer."
5000 msgid "Author is not allowed to be a reviewer."
4884 msgstr ""
5001 msgstr ""
4885
5002
4886 #: rhodecode/public/js/scripts.js:41246 rhodecode/public/js/scripts.min.js:1
5003 #: rhodecode/public/js/scripts.js:42074 rhodecode/public/js/scripts.min.js:1
4887 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:18
5004 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:22
4888 #: rhodecode/public/js/src/rhodecode/pullrequests.js:205
5005 #: rhodecode/public/js/src/rhodecode/pullrequests.js:207
4889 msgid "Commit Authors are not allowed to be a reviewer."
5006 msgid "Commit Authors are not allowed to be a reviewer."
4890 msgstr ""
5007 msgstr ""
4891
5008
4892 #: rhodecode/public/js/scripts.js:41268 rhodecode/public/js/scripts.min.js:1
5009 #: rhodecode/public/js/scripts.js:42096 rhodecode/public/js/scripts.min.js:1
4893 #: rhodecode/public/js/src/rhodecode/pullrequests.js:227
5010 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:44
5011 #: rhodecode/public/js/src/rhodecode/pullrequests.js:229
4894 msgid "Loading diff ..."
5012 msgid "Loading diff ..."
4895 msgstr ""
5013 msgstr ""
4896
5014
4897 #: rhodecode/public/js/scripts.js:41307 rhodecode/public/js/scripts.min.js:1
5015 #: rhodecode/public/js/scripts.js:42135 rhodecode/public/js/scripts.min.js:1
4898 #: rhodecode/public/js/src/rhodecode/pullrequests.js:266
5016 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:130
5017 #: rhodecode/public/js/src/rhodecode/pullrequests.js:268
4899 msgid "no commits"
5018 msgid "no commits"
4900 msgstr ""
5019 msgstr ""
4901
5020
4902 #: rhodecode/public/js/scripts.js:41378 rhodecode/public/js/scripts.min.js:1
5021 #: rhodecode/public/js/scripts.js:42206 rhodecode/public/js/scripts.min.js:1
4903 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:96
5022 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:111
4904 #: rhodecode/public/js/src/rhodecode/pullrequests.js:337
5023 #: rhodecode/public/js/src/rhodecode/pullrequests.js:339
4905 msgid "User `{0}` not allowed to be a reviewer"
5024 msgid "User `{0}` not allowed to be a reviewer"
4906 msgstr ""
5025 msgstr ""
4907
5026
4908 #: rhodecode/public/js/scripts.js:41384 rhodecode/public/js/scripts.min.js:1
5027 #: rhodecode/public/js/scripts.js:42212 rhodecode/public/js/scripts.min.js:1
4909 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:95
5028 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:110
4910 #: rhodecode/public/js/src/rhodecode/pullrequests.js:343
5029 #: rhodecode/public/js/src/rhodecode/pullrequests.js:345
4911 msgid "User `{0}` already in reviewers"
5030 msgid "User `{0}` already in reviewers"
4912 msgstr ""
5031 msgstr ""
4913
5032
4914 #: rhodecode/public/js/scripts.js:41487 rhodecode/public/js/scripts.min.js:1
5033 #: rhodecode/public/js/scripts.js:42315 rhodecode/public/js/scripts.min.js:1
4915 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:101
5034 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:117
4916 #: rhodecode/public/js/src/rhodecode/pullrequests.js:446
5035 #: rhodecode/public/js/src/rhodecode/pullrequests.js:448
4917 msgid "added manually by \"{0}\""
5036 msgid "added manually by \"{0}\""
4918 msgstr ""
5037 msgstr ""
4919
5038
4920 #: rhodecode/public/js/scripts.js:41491 rhodecode/public/js/scripts.min.js:1
5039 #: rhodecode/public/js/scripts.js:42319 rhodecode/public/js/scripts.min.js:1
4921 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:113
5040 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:129
4922 #: rhodecode/public/js/src/rhodecode/pullrequests.js:450
5041 #: rhodecode/public/js/src/rhodecode/pullrequests.js:452
4923 msgid "member of \"{0}\""
5042 msgid "member of \"{0}\""
4924 msgstr ""
5043 msgstr ""
4925
5044
4926 #: rhodecode/public/js/scripts.js:41682 rhodecode/public/js/scripts.min.js:1
5045 #: rhodecode/public/js/scripts.js:42510 rhodecode/public/js/scripts.min.js:1
4927 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:94
5046 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:109
4928 #: rhodecode/public/js/src/rhodecode/pullrequests.js:641
5047 #: rhodecode/public/js/src/rhodecode/pullrequests.js:643
4929 msgid "Updating..."
5048 msgid "Updating..."
4930 msgstr ""
5049 msgstr ""
4931
5050
4932 #: rhodecode/public/js/scripts.js:41692 rhodecode/public/js/scripts.min.js:1
5051 #: rhodecode/public/js/scripts.js:42520 rhodecode/public/js/scripts.min.js:1
4933 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:28
5052 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:35
4934 #: rhodecode/public/js/src/rhodecode/pullrequests.js:651
5053 #: rhodecode/public/js/src/rhodecode/pullrequests.js:653
4935 msgid "Force updating..."
5054 msgid "Force updating..."
4936 msgstr ""
5055 msgstr ""
4937
5056
4938 #: rhodecode/public/js/scripts.js:46140 rhodecode/public/js/scripts.min.js:1
5057 #: rhodecode/public/js/scripts.js:46968 rhodecode/public/js/scripts.min.js:1
5058 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:88
4939 #: rhodecode/public/js/src/rhodecode/users.js:54
5059 #: rhodecode/public/js/src/rhodecode/users.js:54
4940 msgid "Show this authentication token?"
5060 msgid "Show this authentication token?"
4941 msgstr ""
5061 msgstr ""
4942
5062
4943 #: rhodecode/public/js/scripts.js:46142 rhodecode/public/js/scripts.min.js:1
5063 #: rhodecode/public/js/scripts.js:46970 rhodecode/public/js/scripts.min.js:1
5064 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:81
4944 #: rhodecode/public/js/src/rhodecode/users.js:56
5065 #: rhodecode/public/js/src/rhodecode/users.js:56
4945 msgid "Show"
5066 msgid "Show"
4946 msgstr ""
5067 msgstr ""
4947
5068
4948 #: rhodecode/public/js/scripts.js:46178 rhodecode/public/js/scripts.min.js:1
5069 #: rhodecode/public/js/scripts.js:47006 rhodecode/public/js/scripts.min.js:1
5070 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:14
4949 #: rhodecode/public/js/src/rhodecode/users.js:92
5071 #: rhodecode/public/js/src/rhodecode/users.js:92
4950 msgid "Authentication Token"
5072 msgid "Authentication Token"
4951 msgstr ""
5073 msgstr ""
4952
5074
4953 #: rhodecode/public/js/scripts.js:46367 rhodecode/public/js/scripts.min.js:1
5075 #: rhodecode/public/js/scripts.js:47195 rhodecode/public/js/scripts.min.js:1
4954 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:105
5076 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:121
4955 #: rhodecode/public/js/src/rhodecode.js:144
5077 #: rhodecode/public/js/src/rhodecode.js:144
4956 msgid "file"
5078 msgid "file"
4957 msgstr ""
5079 msgstr ""
4958
5080
4959 #: rhodecode/public/js/scripts.js:46511 rhodecode/public/js/scripts.min.js:1
5081 #: rhodecode/public/js/scripts.js:47339 rhodecode/public/js/scripts.min.js:1
4960 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:39
5082 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:47
4961 #: rhodecode/public/js/src/rhodecode.js:288
5083 #: rhodecode/public/js/src/rhodecode.js:288
4962 msgid "Loading..."
5084 msgid "Loading..."
4963 msgstr ""
5085 msgstr ""
4964
5086
4965 #: rhodecode/public/js/scripts.js:46884 rhodecode/public/js/scripts.min.js:1
5087 #: rhodecode/public/js/scripts.js:47712 rhodecode/public/js/scripts.min.js:1
4966 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:102
5088 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:118
4967 #: rhodecode/public/js/src/rhodecode.js:661
5089 #: rhodecode/public/js/src/rhodecode.js:661
4968 msgid "date not in future"
5090 msgid "date not in future"
4969 msgstr ""
5091 msgstr ""
4970
5092
4971 #: rhodecode/public/js/scripts.js:46892 rhodecode/public/js/scripts.min.js:1
5093 #: rhodecode/public/js/scripts.js:47720 rhodecode/public/js/scripts.min.js:1
4972 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:79
5094 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:90
4973 #: rhodecode/public/js/src/rhodecode.js:669
5095 #: rhodecode/public/js/src/rhodecode.js:669
4974 msgid "Specified expiration date"
5096 msgid "Specified expiration date"
4975 msgstr ""
5097 msgstr ""
@@ -4991,315 +5113,339 b' msgid "(from usergroup {0})"'
4991 msgstr ""
5113 msgstr ""
4992
5114
4993 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:3
5115 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:3
4994 #: rhodecode/templates/codeblocks/diffs.mako:606
5116 msgid "<strong>{0} file</strong> changed, "
4995 #: rhodecode/templates/codeblocks/diffs.mako:610
5117 msgstr ""
5118
5119 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:4
5120 msgid "<strong>{0} files</strong> changed, "
5121 msgstr ""
5122
5123 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:5
5124 #: rhodecode/templates/codeblocks/diffs.mako:618
5125 #: rhodecode/templates/codeblocks/diffs.mako:622
4996 msgid "Add another comment"
5126 msgid "Add another comment"
4997 msgstr ""
5127 msgstr ""
4998
5128
4999 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:8
5129 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:11
5000 msgid "Are you sure to close this pull request without merging?"
5130 msgid "Are you sure to close this pull request without merging?"
5001 msgstr ""
5131 msgstr ""
5002
5132
5003 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:12
5133 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:16
5004 msgid "Changed files"
5134 msgid "Changed files"
5005 msgstr ""
5135 msgstr ""
5006
5136
5007 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:13
5137 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:17
5008 #: rhodecode/public/js/src/i18n_messages.js:5
5138 #: rhodecode/public/js/src/i18n_messages.js:5
5009 #: rhodecode/templates/pullrequests/pullrequest_show.mako:288
5139 #: rhodecode/templates/pullrequests/pullrequest_show.mako:288
5010 msgid "Close"
5140 msgid "Close"
5011 msgstr ""
5141 msgstr ""
5012
5142
5013 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:14
5143 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:18
5014 #: rhodecode/templates/codeblocks/diffs.mako:131
5144 #: rhodecode/templates/codeblocks/diffs.mako:131
5015 msgid "Collapse all files"
5145 msgid "Collapse all files"
5016 msgstr ""
5146 msgstr ""
5017
5147
5018 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:15
5019 msgid "Collapse {0} commit"
5020 msgstr ""
5021
5022 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:16
5023 msgid "Collapse {0} commits"
5024 msgstr ""
5025
5026 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:19
5148 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:19
5027 msgid "Context file: "
5149 msgid "Collapse {0} commit"
5028 msgstr ""
5150 msgstr ""
5029
5151
5030 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:20
5152 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:20
5031 msgid "Delete this comment?"
5153 msgid "Collapse {0} commits"
5032 msgstr ""
5033
5034 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:21
5035 msgid "Diff to Commit "
5036 msgstr ""
5037
5038 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:22
5039 #: rhodecode/templates/codeblocks/diffs.mako:129
5040 msgid "Expand all files"
5041 msgstr ""
5154 msgstr ""
5042
5155
5043 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:23
5156 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:23
5044 msgid "Expand {0} commit"
5157 msgid "Context file: "
5045 msgstr ""
5046
5047 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:24
5048 msgid "Expand {0} commits"
5049 msgstr ""
5158 msgstr ""
5050
5159
5051 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:25
5160 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:25
5052 msgid "Fetching repository state failed. Error code: {0} {1}. Try <a href=\"{2}\">refreshing</a> this page."
5161 msgid "Delete this comment?"
5053 msgstr ""
5162 msgstr ""
5054
5163
5055 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:26
5164 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:26
5056 msgid "Fetching repository state failed. Error code: {0} {1}. Try refreshing this page."
5165 msgid "Diff to Commit "
5057 msgstr ""
5166 msgstr ""
5058
5167
5059 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:27
5168 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:27
5060 msgid "Follow"
5169 msgid "Error during search operation"
5170 msgstr ""
5171
5172 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:28
5173 #: rhodecode/templates/codeblocks/diffs.mako:129
5174 msgid "Expand all files"
5061 msgstr ""
5175 msgstr ""
5062
5176
5063 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:29
5177 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:29
5064 msgid "Hide full context diff"
5178 msgid "Expand {0} commit"
5065 msgstr ""
5179 msgstr ""
5066
5180
5067 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:30
5181 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:30
5068 msgid "Hide whitespace changes"
5182 msgid "Expand {0} commits"
5069 msgstr ""
5183 msgstr ""
5070
5184
5071 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:31
5185 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:31
5186 msgid "Fetching repository state failed. Error code: {0} {1}. Try <a href=\"{2}\">refreshing</a> this page."
5187 msgstr ""
5188
5189 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:32
5190 msgid "Fetching repository state failed. Error code: {0} {1}. Try refreshing this page."
5191 msgstr ""
5192
5193 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:34
5194 msgid "Follow"
5195 msgstr ""
5196
5197 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:36
5198 msgid "Hide full context diff"
5199 msgstr ""
5200
5201 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:37
5202 msgid "Hide whitespace changes"
5203 msgstr ""
5204
5205 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:38
5072 #: rhodecode/public/js/src/i18n_messages.js:4
5206 #: rhodecode/public/js/src/i18n_messages.js:4
5073 msgid "Invite reviewers to this discussion"
5207 msgid "Invite reviewers to this discussion"
5074 msgstr ""
5208 msgstr ""
5075
5209
5076 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:33
5077 msgid "Leave a comment, or click resolve button to resolve TODO comment #{0}"
5078 msgstr ""
5079
5080 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:40
5210 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:40
5081 msgid "No bookmarks available yet."
5211 msgid "Leave a comment, or click resolve button to resolve TODO comment #{0}"
5082 msgstr ""
5083
5084 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:41
5085 msgid "No branches available yet."
5086 msgstr ""
5087
5088 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:42
5089 msgid "No forks available yet."
5090 msgstr ""
5091
5092 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:43
5093 msgid "No gists available yet."
5094 msgstr ""
5095
5096 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:46
5097 msgid "No pull requests available yet."
5098 msgstr ""
5099
5100 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:47
5101 msgid "No repositories available yet."
5102 msgstr ""
5212 msgstr ""
5103
5213
5104 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:48
5214 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:48
5105 msgid "No repositories present."
5215 msgid "No bookmarks available yet."
5106 msgstr ""
5216 msgstr ""
5107
5217
5108 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:49
5218 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:49
5109 msgid "No repository groups available yet."
5219 msgid "No branches available yet."
5110 msgstr ""
5220 msgstr ""
5111
5221
5112 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:50
5222 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:50
5113 msgid "No repository groups present."
5223 msgid "No forks available yet."
5114 msgstr ""
5224 msgstr ""
5115
5225
5116 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:52
5226 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:51
5117 msgid "No ssh keys available yet."
5227 msgid "No gists available yet."
5118 msgstr ""
5119
5120 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:53
5121 msgid "No tags available yet."
5122 msgstr ""
5228 msgstr ""
5123
5229
5124 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:54
5230 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:54
5125 msgid "No user groups available yet."
5231 msgid "No pull requests available yet."
5126 msgstr ""
5232 msgstr ""
5127
5233
5128 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:55
5234 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:55
5129 msgid "No users available yet."
5235 msgid "No repositories available yet."
5130 msgstr ""
5236 msgstr ""
5131
5237
5132 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:59
5238 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:56
5133 #: rhodecode/templates/commits/changelog.mako:78
5239 msgid "No repositories present."
5134 msgid "Open new pull request"
5240 msgstr ""
5241
5242 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:57
5243 msgid "No repository groups available yet."
5244 msgstr ""
5245
5246 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:58
5247 msgid "No repository groups present."
5135 msgstr ""
5248 msgstr ""
5136
5249
5137 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:60
5250 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:60
5251 msgid "No ssh keys available yet."
5252 msgstr ""
5253
5254 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:61
5255 msgid "No tags available yet."
5256 msgstr ""
5257
5258 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:62
5259 msgid "No user groups available yet."
5260 msgstr ""
5261
5262 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:63
5263 msgid "No users available yet."
5264 msgstr ""
5265
5266 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:67
5267 #: rhodecode/templates/commits/changelog.mako:78
5268 msgid "Open new pull request"
5269 msgstr ""
5270
5271 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:68
5138 msgid "Open new pull request for selected commit"
5272 msgid "Open new pull request for selected commit"
5139 msgstr ""
5273 msgstr ""
5140
5274
5141 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:66
5275 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:73
5276 msgid "Please wait creating pull request..."
5277 msgstr ""
5278
5279 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:75
5142 msgid "Saving..."
5280 msgid "Saving..."
5143 msgstr ""
5281 msgstr ""
5144
5282
5145 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:69
5283 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:78
5146 #: rhodecode/public/js/src/i18n_messages.js:6
5284 #: rhodecode/public/js/src/i18n_messages.js:6
5147 #: rhodecode/templates/admin/settings/settings_email.mako:50
5285 #: rhodecode/templates/admin/settings/settings_email.mako:50
5148 msgid "Send"
5286 msgid "Send"
5149 msgstr ""
5287 msgstr ""
5150
5288
5151 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:72
5289 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:82
5152 msgid "Show at Commit "
5290 msgid "Show at Commit "
5153 msgstr ""
5291 msgstr ""
5154
5292
5155 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:73
5156 msgid "Show commit range {0} ... {1}"
5157 msgstr ""
5158
5159 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:74
5160 msgid "Show full context diff"
5161 msgstr ""
5162
5163 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:75
5164 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:40
5165 msgid "Show more"
5166 msgstr ""
5167
5168 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:76
5169 msgid "Show selected commit __S"
5170 msgstr ""
5171
5172 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:77
5173 msgid "Show selected commits __S ... __E"
5174 msgstr ""
5175
5176 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:78
5177 msgid "Show whitespace changes"
5178 msgstr ""
5179
5180 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:80
5181 msgid "Start following this repository"
5182 msgstr ""
5183
5184 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:83
5293 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:83
5185 msgid "Stop following this repository"
5294 msgid "Show commit range {0} ... {1}"
5295 msgstr ""
5296
5297 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:84
5298 msgid "Show full context diff"
5299 msgstr ""
5300
5301 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:85
5302 #: rhodecode/templates/admin/settings/settings_exceptions_browse.mako:40
5303 msgid "Show more"
5186 msgstr ""
5304 msgstr ""
5187
5305
5188 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:86
5306 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:86
5189 #: rhodecode/public/js/src/i18n_messages.js:7
5307 msgid "Show selected commit __S"
5190 msgid "Switch to chat"
5191 msgstr ""
5308 msgstr ""
5192
5309
5193 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:87
5310 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:87
5194 #: rhodecode/public/js/src/i18n_messages.js:8
5311 msgid "Show selected commits __S ... __E"
5195 msgid "Switch to comment"
5312 msgstr ""
5196 msgstr ""
5313
5197
5314 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:89
5198 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:90
5315 msgid "Show whitespace changes"
5199 msgid "There are currently no open pull requests requiring your participation."
5200 msgstr ""
5316 msgstr ""
5201
5317
5202 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:91
5318 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:91
5203 msgid "Toggle Wide Mode diff"
5319 msgid "Start following this repository"
5204 msgstr ""
5320 msgstr ""
5205
5321
5206 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:92
5322 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:94
5207 msgid "Unfollow"
5323 msgid "Stop following this repository"
5208 msgstr ""
5324 msgstr ""
5209
5325
5210 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:100
5326 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:97
5211 #: rhodecode/templates/admin/auth/auth_settings.mako:69
5327 #: rhodecode/public/js/src/i18n_messages.js:7
5212 msgid "activated"
5328 msgid "Switch to chat"
5213 msgstr ""
5329 msgstr ""
5214
5330
5215 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:103
5331 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:98
5216 msgid "disabled"
5332 #: rhodecode/public/js/src/i18n_messages.js:8
5333 msgid "Switch to comment"
5334 msgstr ""
5335
5336 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:101
5337 msgid "There are currently no open pull requests requiring your participation."
5217 msgstr ""
5338 msgstr ""
5218
5339
5219 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:104
5340 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:104
5220 msgid "enabled"
5341 msgid "This pull requests will consist of <strong>{0} commit</strong>."
5342 msgstr ""
5343
5344 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:105
5345 msgid "This pull requests will consist of <strong>{0} commits</strong>."
5221 msgstr ""
5346 msgstr ""
5222
5347
5223 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:106
5348 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:106
5224 msgid "files"
5349 msgid "Toggle Wide Mode diff"
5225 msgstr ""
5350 msgstr ""
5226
5351
5227 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:107
5352 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:107
5228 msgid "go to numeric commit"
5353 msgid "Unfollow"
5229 msgstr ""
5354 msgstr ""
5230
5355
5231 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:112
5356 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:116
5232 #: rhodecode/templates/index_base.mako:27
5233 #: rhodecode/templates/pullrequests/pullrequest.mako:136
5234 msgid "loading..."
5235 msgstr ""
5236
5237 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:114
5238 #: rhodecode/templates/admin/auth/auth_settings.mako:69
5357 #: rhodecode/templates/admin/auth/auth_settings.mako:69
5239 msgid "not active"
5358 msgid "activated"
5240 msgstr ""
5359 msgstr ""
5241
5360
5242 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:118
5361 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:119
5243 msgid "specify commit"
5362 msgid "disabled"
5244 msgstr ""
5363 msgstr ""
5245
5364
5246 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:121
5365 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:120
5247 msgid "{0} ({1} inactive) of {2} user groups ({3} inactive)"
5366 msgid "enabled"
5248 msgstr ""
5367 msgstr ""
5249
5368
5250 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:122
5369 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:122
5251 msgid "{0} ({1} inactive) of {2} users ({3} inactive)"
5370 msgid "files"
5252 msgstr ""
5371 msgstr ""
5253
5372
5254 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:123
5373 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:123
5255 msgid "{0} active out of {1} users"
5374 msgid "go to numeric commit"
5256 msgstr ""
5375 msgstr ""
5257
5376
5258 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:128
5377 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:128
5259 msgid "{0} days"
5378 #: rhodecode/templates/index_base.mako:27
5260 msgstr ""
5379 #: rhodecode/templates/pullrequests/pullrequest.mako:136
5261
5380 msgid "loading..."
5262 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:130
5381 msgstr ""
5263 msgid "{0} hours"
5382
5264 msgstr ""
5383 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:131
5265
5384 #: rhodecode/templates/admin/auth/auth_settings.mako:69
5266 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:133
5385 msgid "not active"
5267 msgid "{0} months"
5268 msgstr ""
5269
5270 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:134
5271 msgid "{0} of {1} repositories"
5272 msgstr ""
5386 msgstr ""
5273
5387
5274 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:135
5388 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:135
5275 msgid "{0} of {1} repository groups"
5389 msgid "specify commit"
5276 msgstr ""
5277
5278 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:136
5279 msgid "{0} out of {1} ssh keys"
5280 msgstr ""
5281
5282 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:137
5283 msgid "{0} out of {1} users"
5284 msgstr ""
5390 msgstr ""
5285
5391
5286 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:138
5392 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:138
5287 msgid "{0} repositories"
5393 msgid "{0} ({1} inactive) of {2} user groups ({3} inactive)"
5288 msgstr ""
5394 msgstr ""
5289
5395
5290 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:139
5396 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:139
5291 msgid "{0} repository groups"
5397 msgid "{0} ({1} inactive) of {2} users ({3} inactive)"
5292 msgstr ""
5398 msgstr ""
5293
5399
5294 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:142
5400 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:140
5295 msgid "{0} user groups ({1} inactive)"
5401 msgid "{0} active out of {1} users"
5296 msgstr ""
5297
5298 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:143
5299 msgid "{0} users ({1} inactive)"
5300 msgstr ""
5402 msgstr ""
5301
5403
5302 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:145
5404 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:145
5405 msgid "{0} days"
5406 msgstr ""
5407
5408 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:147
5409 msgid "{0} hours"
5410 msgstr ""
5411
5412 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:150
5413 msgid "{0} months"
5414 msgstr ""
5415
5416 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:151
5417 msgid "{0} of {1} repositories"
5418 msgstr ""
5419
5420 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:152
5421 msgid "{0} of {1} repository groups"
5422 msgstr ""
5423
5424 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:153
5425 msgid "{0} out of {1} ssh keys"
5426 msgstr ""
5427
5428 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:154
5429 msgid "{0} out of {1} users"
5430 msgstr ""
5431
5432 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:155
5433 msgid "{0} repositories"
5434 msgstr ""
5435
5436 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:156
5437 msgid "{0} repository groups"
5438 msgstr ""
5439
5440 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:159
5441 msgid "{0} user groups ({1} inactive)"
5442 msgstr ""
5443
5444 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:160
5445 msgid "{0} users ({1} inactive)"
5446 msgstr ""
5447
5448 #: rhodecode/public/js/rhodecode/i18n/js_translations.js:162
5303 msgid "{0} years"
5449 msgid "{0} years"
5304 msgstr ""
5450 msgstr ""
5305
5451
@@ -5331,11 +5477,11 b' msgstr ""'
5331 #: rhodecode/templates/admin/repos/repos.mako:76
5477 #: rhodecode/templates/admin/repos/repos.mako:76
5332 #: rhodecode/templates/admin/user_groups/user_groups.mako:76
5478 #: rhodecode/templates/admin/user_groups/user_groups.mako:76
5333 #: rhodecode/templates/admin/users/user_edit_groups.mako:57
5479 #: rhodecode/templates/admin/users/user_edit_groups.mako:57
5334 #: rhodecode/templates/base/perms_summary.mako:168
5480 #: rhodecode/templates/base/perms_summary.mako:173
5335 #: rhodecode/templates/base/perms_summary.mako:242
5481 #: rhodecode/templates/base/perms_summary.mako:247
5336 #: rhodecode/templates/bookmarks/bookmarks.mako:57
5482 #: rhodecode/templates/bookmarks/bookmarks.mako:57
5337 #: rhodecode/templates/branches/branches.mako:56
5483 #: rhodecode/templates/branches/branches.mako:56
5338 #: rhodecode/templates/files/files_browser_tree.mako:13
5484 #: rhodecode/templates/files/files_browser_tree.mako:16
5339 #: rhodecode/templates/tags/tags.mako:57
5485 #: rhodecode/templates/tags/tags.mako:57
5340 msgid "Name"
5486 msgid "Name"
5341 msgstr ""
5487 msgstr ""
@@ -5343,14 +5489,14 b' msgstr ""'
5343 #: rhodecode/templates/index_base.mako:89
5489 #: rhodecode/templates/index_base.mako:89
5344 #: rhodecode/templates/index_base.mako:176
5490 #: rhodecode/templates/index_base.mako:176
5345 #: rhodecode/templates/admin/gists/gist_index.mako:109
5491 #: rhodecode/templates/admin/gists/gist_index.mako:109
5346 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:21
5492 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:27
5347 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:81
5493 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:87
5348 #: rhodecode/templates/admin/my_account/my_account_profile.mako:68
5494 #: rhodecode/templates/admin/my_account/my_account_profile.mako:68
5349 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:10
5495 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:10
5350 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:58
5496 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:58
5351 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:44
5497 #: rhodecode/templates/admin/my_account/my_account_user_group_membership.mako:44
5352 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:49
5498 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:49
5353 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:53
5499 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:58
5354 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:55
5500 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:55
5355 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:77
5501 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:77
5356 #: rhodecode/templates/admin/repos/repo_add_base.mako:83
5502 #: rhodecode/templates/admin/repos/repo_add_base.mako:83
@@ -5360,8 +5506,8 b' msgstr ""'
5360 #: rhodecode/templates/admin/user_groups/user_group_add.mako:42
5506 #: rhodecode/templates/admin/user_groups/user_group_add.mako:42
5361 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:46
5507 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:46
5362 #: rhodecode/templates/admin/user_groups/user_groups.mako:78
5508 #: rhodecode/templates/admin/user_groups/user_groups.mako:78
5363 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:26
5509 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:32
5364 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:85
5510 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:91
5365 #: rhodecode/templates/admin/users/user_edit_groups.mako:62
5511 #: rhodecode/templates/admin/users/user_edit_groups.mako:62
5366 #: rhodecode/templates/admin/users/user_edit_ips.mako:17
5512 #: rhodecode/templates/admin/users/user_edit_ips.mako:17
5367 #: rhodecode/templates/admin/users/user_edit_profile.mako:74
5513 #: rhodecode/templates/admin/users/user_edit_profile.mako:74
@@ -5369,14 +5515,14 b' msgstr ""'
5369 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:57
5515 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:57
5370 #: rhodecode/templates/base/issue_tracker_settings.mako:78
5516 #: rhodecode/templates/base/issue_tracker_settings.mako:78
5371 #: rhodecode/templates/compare/compare_commits.mako:19
5517 #: rhodecode/templates/compare/compare_commits.mako:19
5372 #: rhodecode/templates/email_templates/pull_request_review.mako:43
5518 #: rhodecode/templates/email_templates/pull_request_review.mako:45
5373 #: rhodecode/templates/email_templates/pull_request_review.mako:123
5519 #: rhodecode/templates/email_templates/pull_request_review.mako:126
5374 #: rhodecode/templates/email_templates/pull_request_update.mako:43
5520 #: rhodecode/templates/email_templates/pull_request_update.mako:45
5375 #: rhodecode/templates/email_templates/pull_request_update.mako:135
5521 #: rhodecode/templates/email_templates/pull_request_update.mako:139
5376 #: rhodecode/templates/forks/fork.mako:56
5522 #: rhodecode/templates/forks/fork.mako:56
5377 #: rhodecode/templates/forks/forks.mako:62
5523 #: rhodecode/templates/forks/forks.mako:62
5378 #: rhodecode/templates/pullrequests/pullrequest.mako:50
5524 #: rhodecode/templates/pullrequests/pullrequest.mako:50
5379 #: rhodecode/templates/pullrequests/pullrequest_show.mako:562
5525 #: rhodecode/templates/pullrequests/pullrequest_show.mako:560
5380 #: rhodecode/templates/summary/components.mako:159
5526 #: rhodecode/templates/summary/components.mako:159
5381 #: rhodecode/templates/user_group/profile.mako:25
5527 #: rhodecode/templates/user_group/profile.mako:25
5382 #: rhodecode/templates/users/user_profile.mako:59
5528 #: rhodecode/templates/users/user_profile.mako:59
@@ -5414,11 +5560,11 b' msgstr ""'
5414 #: rhodecode/templates/bookmarks/bookmarks.mako:64
5560 #: rhodecode/templates/bookmarks/bookmarks.mako:64
5415 #: rhodecode/templates/branches/branches.mako:63
5561 #: rhodecode/templates/branches/branches.mako:63
5416 #: rhodecode/templates/compare/compare_commits.mako:17
5562 #: rhodecode/templates/compare/compare_commits.mako:17
5417 #: rhodecode/templates/email_templates/commit_comment.mako:56
5563 #: rhodecode/templates/email_templates/commit_comment.mako:60
5418 #: rhodecode/templates/email_templates/commit_comment.mako:109
5564 #: rhodecode/templates/email_templates/commit_comment.mako:114
5419 #: rhodecode/templates/email_templates/commit_comment.mako:135
5565 #: rhodecode/templates/email_templates/commit_comment.mako:141
5420 #: rhodecode/templates/files/file_authors_box.mako:28
5566 #: rhodecode/templates/files/file_authors_box.mako:28
5421 #: rhodecode/templates/pullrequests/pullrequest_show.mako:560
5567 #: rhodecode/templates/pullrequests/pullrequest_show.mako:558
5422 #: rhodecode/templates/search/search_commit.mako:9
5568 #: rhodecode/templates/search/search_commit.mako:9
5423 #: rhodecode/templates/summary/components.mako:117
5569 #: rhodecode/templates/summary/components.mako:117
5424 #: rhodecode/templates/summary/components.mako:125
5570 #: rhodecode/templates/summary/components.mako:125
@@ -5433,8 +5579,8 b' msgid "%s Repository group dashboard"'
5433 msgstr ""
5579 msgstr ""
5434
5580
5435 #: rhodecode/templates/index_repo_group.mako:13
5581 #: rhodecode/templates/index_repo_group.mako:13
5436 #: rhodecode/templates/base/base.mako:804
5582 #: rhodecode/templates/base/base.mako:811
5437 #: rhodecode/templates/base/base.mako:805
5583 #: rhodecode/templates/base/base.mako:812
5438 msgid "Home"
5584 msgid "Home"
5439 msgstr ""
5585 msgstr ""
5440
5586
@@ -5472,7 +5618,7 b' msgid "Please contact "'
5472 msgstr ""
5618 msgstr ""
5473
5619
5474 #: rhodecode/templates/login.mako:84 rhodecode/templates/password_reset.mako:39
5620 #: rhodecode/templates/login.mako:84 rhodecode/templates/password_reset.mako:39
5475 #: rhodecode/templates/base/base.mako:59
5621 #: rhodecode/templates/base/base.mako:61
5476 msgid "Support"
5622 msgid "Support"
5477 msgstr ""
5623 msgstr ""
5478
5624
@@ -5599,7 +5745,7 b' msgstr ""'
5599
5745
5600 #: rhodecode/templates/admin/admin_audit_log_entry.mako:63
5746 #: rhodecode/templates/admin/admin_audit_log_entry.mako:63
5601 #: rhodecode/templates/admin/admin_log_base.mako:8
5747 #: rhodecode/templates/admin/admin_log_base.mako:8
5602 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:25
5748 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:31
5603 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:13
5749 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:13
5604 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:55
5750 #: rhodecode/templates/admin/permissions/permissions_ssh_keys.mako:55
5605 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:86
5751 #: rhodecode/templates/admin/repo_groups/repo_groups.mako:86
@@ -5607,7 +5753,7 b' msgstr ""'
5607 #: rhodecode/templates/admin/repos/repos.mako:116
5753 #: rhodecode/templates/admin/repos/repos.mako:116
5608 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:75
5754 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:75
5609 #: rhodecode/templates/admin/user_groups/user_groups.mako:88
5755 #: rhodecode/templates/admin/user_groups/user_groups.mako:88
5610 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:30
5756 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:36
5611 #: rhodecode/templates/admin/users/user_edit_groups.mako:76
5757 #: rhodecode/templates/admin/users/user_edit_groups.mako:76
5612 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:18
5758 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:18
5613 #: rhodecode/templates/admin/users/users.mako:91
5759 #: rhodecode/templates/admin/users/users.mako:91
@@ -5629,16 +5775,16 b' msgstr ""'
5629 #: rhodecode/templates/admin/admin_log_base.mako:10
5775 #: rhodecode/templates/admin/admin_log_base.mako:10
5630 #: rhodecode/templates/admin/defaults/defaults.mako:32
5776 #: rhodecode/templates/admin/defaults/defaults.mako:32
5631 #: rhodecode/templates/admin/permissions/permissions_objects.mako:16
5777 #: rhodecode/templates/admin/permissions/permissions_objects.mako:16
5632 #: rhodecode/templates/base/base.mako:649
5778 #: rhodecode/templates/base/base.mako:656
5633 #: rhodecode/templates/base/base.mako:651
5779 #: rhodecode/templates/base/base.mako:658
5634 #: rhodecode/templates/base/base.mako:653
5780 #: rhodecode/templates/base/base.mako:660
5635 #: rhodecode/templates/search/search_commit.mako:8
5781 #: rhodecode/templates/search/search_commit.mako:8
5636 #: rhodecode/templates/search/search_path.mako:7
5782 #: rhodecode/templates/search/search_path.mako:7
5637 msgid "Repository"
5783 msgid "Repository"
5638 msgstr ""
5784 msgstr ""
5639
5785
5640 #: rhodecode/templates/admin/admin_audit_logs.mako:5
5786 #: rhodecode/templates/admin/admin_audit_logs.mako:5
5641 #: rhodecode/templates/base/base.mako:106
5787 #: rhodecode/templates/base/base.mako:111
5642 msgid "Admin audit logs"
5788 msgid "Admin audit logs"
5643 msgstr ""
5789 msgstr ""
5644
5790
@@ -5745,6 +5891,7 b' msgid "Plugin Name"'
5745 msgstr ""
5891 msgstr ""
5746
5892
5747 #: rhodecode/templates/admin/auth/auth_settings.mako:62
5893 #: rhodecode/templates/admin/auth/auth_settings.mako:62
5894 #: rhodecode/templates/base/base.mako:62
5748 msgid "Documentation"
5895 msgid "Documentation"
5749 msgstr ""
5896 msgstr ""
5750
5897
@@ -5758,19 +5905,19 b' msgstr ""'
5758 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:109
5905 #: rhodecode/templates/admin/my_account/my_account_bookmarks.mako:109
5759 #: rhodecode/templates/admin/permissions/permissions_application.mako:59
5906 #: rhodecode/templates/admin/permissions/permissions_application.mako:59
5760 #: rhodecode/templates/admin/permissions/permissions_objects.mako:59
5907 #: rhodecode/templates/admin/permissions/permissions_objects.mako:59
5761 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:216
5908 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:226
5762 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:77
5909 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:77
5763 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:66
5910 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:66
5764 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:84
5911 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:84
5765 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:200
5912 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:206
5766 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:250
5913 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:250
5767 #: rhodecode/templates/admin/settings/settings_hooks.mako:63
5914 #: rhodecode/templates/admin/settings/settings_hooks.mako:63
5768 #: rhodecode/templates/admin/settings/settings_issuetracker.mako:15
5915 #: rhodecode/templates/admin/settings/settings_issuetracker.mako:15
5769 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:206
5916 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:216
5770 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:106
5917 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:106
5771 #: rhodecode/templates/admin/users/user_edit_groups.mako:30
5918 #: rhodecode/templates/admin/users/user_edit_groups.mako:30
5772 #: rhodecode/templates/admin/users/user_edit_profile.mako:154
5919 #: rhodecode/templates/admin/users/user_edit_profile.mako:154
5773 #: rhodecode/templates/base/default_perms_box.mako:88
5920 #: rhodecode/templates/base/default_perms_box.mako:101
5774 msgid "Save"
5921 msgid "Save"
5775 msgstr ""
5922 msgstr ""
5776
5923
@@ -5851,8 +5998,8 b' msgstr ""'
5851
5998
5852 #: rhodecode/templates/admin/gists/gist_edit.mako:54
5999 #: rhodecode/templates/admin/gists/gist_edit.mako:54
5853 #: rhodecode/templates/admin/gists/gist_new.mako:48
6000 #: rhodecode/templates/admin/gists/gist_new.mako:48
5854 #: rhodecode/templates/files/files_add.mako:67
6001 #: rhodecode/templates/files/files_add.mako:66
5855 #: rhodecode/templates/files/files_edit.mako:69
6002 #: rhodecode/templates/files/files_edit.mako:68
5856 msgid "plain"
6003 msgid "plain"
5857 msgstr ""
6004 msgstr ""
5858
6005
@@ -5862,7 +6009,7 b' msgstr ""'
5862
6009
5863 #: rhodecode/templates/admin/gists/gist_edit.mako:100
6010 #: rhodecode/templates/admin/gists/gist_edit.mako:100
5864 #: rhodecode/templates/base/issue_tracker_settings.mako:150
6011 #: rhodecode/templates/base/issue_tracker_settings.mako:150
5865 #: rhodecode/templates/changeset/changeset_file_comment.mako:395
6012 #: rhodecode/templates/changeset/changeset_file_comment.mako:460
5866 #: rhodecode/templates/codeblocks/diffs.mako:88
6013 #: rhodecode/templates/codeblocks/diffs.mako:88
5867 #: rhodecode/templates/pullrequests/pullrequest_show.mako:75
6014 #: rhodecode/templates/pullrequests/pullrequest_show.mako:75
5868 msgid "Cancel"
6015 msgid "Cancel"
@@ -5932,8 +6079,8 b' msgstr ""'
5932 #: rhodecode/templates/branches/branches.mako:60
6079 #: rhodecode/templates/branches/branches.mako:60
5933 #: rhodecode/templates/commits/changelog.mako:119
6080 #: rhodecode/templates/commits/changelog.mako:119
5934 #: rhodecode/templates/compare/compare_commits.mako:16
6081 #: rhodecode/templates/compare/compare_commits.mako:16
5935 #: rhodecode/templates/files/files_browser_tree.mako:17
6082 #: rhodecode/templates/files/files_browser_tree.mako:20
5936 #: rhodecode/templates/pullrequests/pullrequest_show.mako:559
6083 #: rhodecode/templates/pullrequests/pullrequest_show.mako:557
5937 #: rhodecode/templates/pullrequests/pullrequests.mako:98
6084 #: rhodecode/templates/pullrequests/pullrequests.mako:98
5938 #: rhodecode/templates/search/search_commit.mako:18
6085 #: rhodecode/templates/search/search_commit.mako:18
5939 #: rhodecode/templates/summary/summary_commits.mako:11
6086 #: rhodecode/templates/summary/summary_commits.mako:11
@@ -5958,7 +6105,7 b' msgid "Expires"'
5958 msgstr ""
6105 msgstr ""
5959
6106
5960 #: rhodecode/templates/admin/gists/gist_new.mako:5
6107 #: rhodecode/templates/admin/gists/gist_new.mako:5
5961 #: rhodecode/templates/base/base.mako:568
6108 #: rhodecode/templates/base/base.mako:575
5962 msgid "New Gist"
6109 msgid "New Gist"
5963 msgstr ""
6110 msgstr ""
5964
6111
@@ -6012,7 +6159,7 b' msgid "Copy the url"'
6012 msgstr ""
6159 msgstr ""
6013
6160
6014 #: rhodecode/templates/admin/gists/gist_show.mako:47
6161 #: rhodecode/templates/admin/gists/gist_show.mako:47
6015 #: rhodecode/templates/files/files_source.mako:106
6162 #: rhodecode/templates/files/files_source.mako:116
6016 msgid "Copy content"
6163 msgid "Copy content"
6017 msgstr ""
6164 msgstr ""
6018
6165
@@ -6029,8 +6176,8 b' msgid "expires"'
6029 msgstr ""
6176 msgstr ""
6030
6177
6031 #: rhodecode/templates/admin/gists/gist_show.mako:95
6178 #: rhodecode/templates/admin/gists/gist_show.mako:95
6032 #: rhodecode/templates/files/files_delete.mako:58
6179 #: rhodecode/templates/files/files_delete.mako:57
6033 #: rhodecode/templates/files/files_source.mako:128
6180 #: rhodecode/templates/files/files_source.mako:138
6034 msgid "Show as raw"
6181 msgid "Show as raw"
6035 msgstr ""
6182 msgstr ""
6036
6183
@@ -6050,7 +6197,7 b' msgstr ""'
6050 #: rhodecode/templates/admin/integrations/new.mako:15
6197 #: rhodecode/templates/admin/integrations/new.mako:15
6051 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:33
6198 #: rhodecode/templates/admin/repo_groups/repo_group_edit.mako:33
6052 #: rhodecode/templates/admin/repos/repo_edit.mako:74
6199 #: rhodecode/templates/admin/repos/repo_edit.mako:74
6053 #: rhodecode/templates/base/base.mako:113
6200 #: rhodecode/templates/base/base.mako:118
6054 msgid "Integrations"
6201 msgid "Integrations"
6055 msgstr ""
6202 msgstr ""
6056
6203
@@ -6065,7 +6212,7 b' msgstr ""'
6065 #: rhodecode/templates/admin/settings/settings.mako:14
6212 #: rhodecode/templates/admin/settings/settings.mako:14
6066 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:34
6213 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:34
6067 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:9
6214 #: rhodecode/templates/admin/user_groups/user_group_edit_settings.mako:9
6068 #: rhodecode/templates/base/base.mako:115
6215 #: rhodecode/templates/base/base.mako:120
6069 msgid "Settings"
6216 msgid "Settings"
6070 msgstr ""
6217 msgstr ""
6071
6218
@@ -6166,7 +6313,7 b' msgid "No description available"'
6166 msgstr ""
6313 msgstr ""
6167
6314
6168 #: rhodecode/templates/admin/my_account/my_account.mako:5
6315 #: rhodecode/templates/admin/my_account/my_account.mako:5
6169 #: rhodecode/templates/base/base.mako:613
6316 #: rhodecode/templates/base/base.mako:620
6170 msgid "My account"
6317 msgid "My account"
6171 msgstr ""
6318 msgstr ""
6172
6319
@@ -6175,7 +6322,7 b' msgid "My Account"'
6175 msgstr ""
6322 msgstr ""
6176
6323
6177 #: rhodecode/templates/admin/my_account/my_account.mako:29
6324 #: rhodecode/templates/admin/my_account/my_account.mako:29
6178 #: rhodecode/templates/email_templates/user_registration.mako:54
6325 #: rhodecode/templates/email_templates/user_registration.mako:55
6179 msgid "Profile"
6326 msgid "Profile"
6180 msgstr ""
6327 msgstr ""
6181
6328
@@ -6217,15 +6364,15 b' msgstr ""'
6217
6364
6218 #: rhodecode/templates/admin/my_account/my_account.mako:45
6365 #: rhodecode/templates/admin/my_account/my_account.mako:45
6219 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:42
6366 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:42
6220 #: rhodecode/templates/base/base.mako:376
6367 #: rhodecode/templates/base/base.mako:383
6221 #: rhodecode/templates/base/base.mako:617
6368 #: rhodecode/templates/base/base.mako:624
6222 msgid "Pull Requests"
6369 msgid "Pull Requests"
6223 msgstr ""
6370 msgstr ""
6224
6371
6225 #: rhodecode/templates/admin/my_account/my_account.mako:46
6372 #: rhodecode/templates/admin/my_account/my_account.mako:46
6226 #: rhodecode/templates/admin/permissions/permissions.mako:14
6373 #: rhodecode/templates/admin/permissions/permissions.mako:14
6227 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:35
6374 #: rhodecode/templates/admin/user_groups/user_group_edit.mako:35
6228 #: rhodecode/templates/base/base.mako:111
6375 #: rhodecode/templates/base/base.mako:116
6229 msgid "Permissions"
6376 msgid "Permissions"
6230 msgstr ""
6377 msgstr ""
6231
6378
@@ -6240,57 +6387,57 b' msgstr ""'
6240
6387
6241 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:14
6388 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:14
6242 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:19
6389 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:19
6243 msgid "Authentication tokens can be used to interact with the API, or VCS-over-http. Each token can have a role. Token with a role can be used only in given context, e.g. VCS tokens can be used together with the authtoken auth plugin for git/hg/svn operations only."
6390 msgid "Available roles"
6244 msgstr ""
6391 msgstr ""
6245
6392
6246 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:20
6393 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:26
6247 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:25
6394 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:31
6248 msgid "Token"
6395 msgid "Token"
6249 msgstr ""
6396 msgstr ""
6250
6397
6251 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:23
6398 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:29
6252 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:28
6399 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:34
6253 msgid "Repository Scope"
6400 msgid "Repository Scope"
6254 msgstr ""
6401 msgstr ""
6255
6402
6256 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:24
6403 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:30
6257 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:29
6404 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:35
6258 msgid "Expiration"
6405 msgid "Expiration"
6259 msgstr ""
6406 msgstr ""
6260
6407
6261 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:66
6408 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:72
6262 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:70
6409 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:76
6263 msgid "No additional auth tokens specified"
6410 msgid "No additional auth tokens specified"
6264 msgstr ""
6411 msgstr ""
6265
6412
6266 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:78
6413 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:84
6267 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:82
6414 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:88
6268 msgid "New authentication token"
6415 msgid "New authentication token"
6269 msgstr ""
6416 msgstr ""
6270
6417
6271 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:92
6418 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:98
6272 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:96
6419 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:102
6273 msgid "Repository scope works only with tokens with VCS type."
6420 msgid "Repository scope works only with tokens with VCS type."
6274 msgstr ""
6421 msgstr ""
6275
6422
6276 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:96
6423 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:102
6277 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:72
6424 #: rhodecode/templates/admin/my_account/my_account_ssh_keys.mako:72
6278 #: rhodecode/templates/admin/permissions/permissions_ips.mako:63
6425 #: rhodecode/templates/admin/permissions/permissions_ips.mako:63
6279 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:65
6426 #: rhodecode/templates/admin/repos/repo_edit_fields.mako:65
6280 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:100
6427 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:106
6281 #: rhodecode/templates/admin/users/user_edit_emails.mako:65
6428 #: rhodecode/templates/admin/users/user_edit_emails.mako:65
6282 #: rhodecode/templates/admin/users/user_edit_ips.mako:75
6429 #: rhodecode/templates/admin/users/user_edit_ips.mako:75
6283 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:71
6430 #: rhodecode/templates/admin/users/user_edit_ssh_keys.mako:71
6284 msgid "Add"
6431 msgid "Add"
6285 msgstr ""
6432 msgstr ""
6286
6433
6287 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:129
6434 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:135
6288 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:134
6435 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:140
6289 msgid "Select or enter expiration date"
6436 msgid "Select or enter expiration date"
6290 msgstr ""
6437 msgstr ""
6291
6438
6292 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:164
6439 #: rhodecode/templates/admin/my_account/my_account_auth_tokens.mako:170
6293 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:169
6440 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:175
6294 msgid "repository scope"
6441 msgid "repository scope"
6295 msgstr ""
6442 msgstr ""
6296
6443
@@ -6456,8 +6603,8 b' msgstr ""'
6456
6603
6457 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:85
6604 #: rhodecode/templates/admin/my_account/my_account_pullrequests.mako:85
6458 #: rhodecode/templates/admin/settings/settings_global.mako:9
6605 #: rhodecode/templates/admin/settings/settings_global.mako:9
6459 #: rhodecode/templates/email_templates/pull_request_review.mako:41
6606 #: rhodecode/templates/email_templates/pull_request_review.mako:43
6460 #: rhodecode/templates/email_templates/pull_request_update.mako:41
6607 #: rhodecode/templates/email_templates/pull_request_update.mako:43
6461 #: rhodecode/templates/pullrequests/pullrequest.mako:38
6608 #: rhodecode/templates/pullrequests/pullrequest.mako:38
6462 #: rhodecode/templates/pullrequests/pullrequests.mako:96
6609 #: rhodecode/templates/pullrequests/pullrequests.mako:96
6463 msgid "Title"
6610 msgid "Title"
@@ -6571,7 +6718,7 b' msgstr ""'
6571
6718
6572 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:41
6719 #: rhodecode/templates/admin/notifications/notifications_show_all.mako:41
6573 #: rhodecode/templates/changeset/changeset.mako:172
6720 #: rhodecode/templates/changeset/changeset.mako:172
6574 #: rhodecode/templates/pullrequests/pullrequest_show.mako:671
6721 #: rhodecode/templates/pullrequests/pullrequest_show.mako:670
6575 msgid "Comments"
6722 msgid "Comments"
6576 msgstr ""
6723 msgstr ""
6577
6724
@@ -6740,8 +6887,8 b' msgstr ""'
6740
6887
6741 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:14
6888 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:14
6742 #: rhodecode/templates/admin/users/user_edit_advanced.mako:13
6889 #: rhodecode/templates/admin/users/user_edit_advanced.mako:13
6743 #: rhodecode/templates/base/base.mako:108
6890 #: rhodecode/templates/base/base.mako:113
6744 #: rhodecode/templates/base/base.mako:129
6891 #: rhodecode/templates/base/base.mako:134
6745 msgid "Repository groups"
6892 msgid "Repository groups"
6746 msgstr ""
6893 msgstr ""
6747
6894
@@ -6756,13 +6903,18 b' msgstr ""'
6756 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:25
6903 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:25
6757 #: rhodecode/templates/admin/repos/repo_add_base.mako:43
6904 #: rhodecode/templates/admin/repos/repo_add_base.mako:43
6758 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:33
6905 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:33
6759 #: rhodecode/templates/base/base.mako:662
6906 #: rhodecode/templates/base/base.mako:669
6760 #: rhodecode/templates/data_table/_dt_elements.mako:217
6907 #: rhodecode/templates/data_table/_dt_elements.mako:217
6761 #: rhodecode/templates/forks/fork.mako:41
6908 #: rhodecode/templates/forks/fork.mako:41
6762 msgid "Repository group"
6909 msgid "Repository group"
6763 msgstr ""
6910 msgstr ""
6764
6911
6765 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:60
6912 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:50
6913 #: rhodecode/templates/admin/repos/repo_add_base.mako:49
6914 msgid "Select my personal group ({})"
6915 msgstr ""
6916
6917 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:65
6766 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:64
6918 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:64
6767 #: rhodecode/templates/admin/repos/repo_add_base.mako:90
6919 #: rhodecode/templates/admin/repos/repo_add_base.mako:90
6768 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:179
6920 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:179
@@ -6771,7 +6923,7 b' msgstr ""'
6771 msgid "Plain text format with {metatags} support."
6923 msgid "Plain text format with {metatags} support."
6772 msgstr ""
6924 msgstr ""
6773
6925
6774 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:62
6926 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:67
6775 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:66
6927 #: rhodecode/templates/admin/repo_groups/repo_group_edit_settings.mako:66
6776 #: rhodecode/templates/admin/repos/repo_add_base.mako:92
6928 #: rhodecode/templates/admin/repos/repo_add_base.mako:92
6777 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:181
6929 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:181
@@ -6780,17 +6932,17 b' msgstr ""'
6780 msgid "Plain text format."
6932 msgid "Plain text format."
6781 msgstr ""
6933 msgstr ""
6782
6934
6783 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:74
6935 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:79
6784 #: rhodecode/templates/admin/repos/repo_add_base.mako:104
6936 #: rhodecode/templates/admin/repos/repo_add_base.mako:104
6785 msgid "Copy Parent Group Permissions"
6937 msgid "Copy Parent Group Permissions"
6786 msgstr ""
6938 msgstr ""
6787
6939
6788 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:78
6789 #: rhodecode/templates/admin/repos/repo_add_base.mako:108
6790 msgid "Copy permissions from parent repository group."
6791 msgstr ""
6792
6793 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:83
6940 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:83
6941 #: rhodecode/templates/admin/repos/repo_add_base.mako:108
6942 msgid "Copy permissions from parent repository group."
6943 msgstr ""
6944
6945 #: rhodecode/templates/admin/repo_groups/repo_group_add.mako:88
6794 msgid "Create Repository Group"
6946 msgid "Create Repository Group"
6795 msgstr ""
6947 msgstr ""
6796
6948
@@ -6898,65 +7050,73 b' msgid "owner"'
6898 msgstr ""
7050 msgstr ""
6899
7051
6900 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:66
7052 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:66
6901 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:114
7053 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:119
6902 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:92
7054 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:92
6903 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:72
7055 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:72
6904 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:120
7056 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:125
6905 msgid "permission for other logged in and anonymous users"
7057 msgid "permission for other logged in and anonymous users"
6906 msgstr ""
7058 msgstr ""
6907
7059
6908 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:68
7060 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:68
6909 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:116
7061 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:121
6910 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:94
7062 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:94
6911 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:74
7063 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:74
6912 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:122
7064 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:127
6913 msgid "permission for other logged in users"
7065 msgid "permission for other logged in users"
6914 msgstr ""
7066 msgstr ""
6915
7067
6916 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:73
7068 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:74
6917 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:121
7069 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:127
6918 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:99
7070 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:100
6919 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:79
7071 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:80
6920 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:127
7072 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:133
7073 msgid "This entry is a duplicate, most probably left-over from previously set permission. This user has a higher permission set, so this entry is inactive. Please revoke this permission manually."
7074 msgstr ""
7075
7076 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:74
7077 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:127
7078 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:100
7079 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:80
7080 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:133
6921 msgid "inactive duplicate"
7081 msgid "inactive duplicate"
6922 msgstr ""
7082 msgstr ""
6923
7083
6924 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:82
7084 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:87
6925 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:167
7085 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:177
6926 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:115
7086 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:121
6927 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:164
7087 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:170
6928 #: rhodecode/templates/admin/repos/repo_edit_strip.mako:46
7088 #: rhodecode/templates/admin/repos/repo_edit_strip.mako:46
6929 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:88
7089 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:93
6930 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:172
7090 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:182
6931 msgid "Remove"
7091 msgid "Remove"
6932 msgstr ""
7092 msgstr ""
6933
7093
6934 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:124
7094 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:134
6935 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:130
7095 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:140
6936 msgid "delegated admin"
7096 msgid "delegated admin"
6937 msgstr ""
7097 msgstr ""
6938
7098
6939 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:162
7099 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:172
6940 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:159
7100 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:165
6941 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:167
7101 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:177
6942 msgid "members"
7102 msgid "members"
6943 msgstr ""
7103 msgstr ""
6944
7104
6945 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:194
6946 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:191
6947 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:198
6948 msgid "Add user/user group"
6949 msgstr ""
6950
6951 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:204
7105 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:204
7106 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:197
7107 #: rhodecode/templates/admin/user_groups/user_group_edit_perms.mako:208
7108 msgid "Add user/user group"
7109 msgstr ""
7110
7111 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:214
6952 msgid "Apply to children"
7112 msgid "Apply to children"
6953 msgstr ""
7113 msgstr ""
6954
7114
6955 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:210
7115 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:220
6956 msgid "Both"
7116 msgid "Both"
6957 msgstr ""
7117 msgstr ""
6958
7118
6959 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:211
7119 #: rhodecode/templates/admin/repo_groups/repo_group_edit_permissions.mako:221
6960 msgid "Set or revoke permissions to selected types of children of this group, including non-private repositories and other groups if chosen."
7120 msgid "Set or revoke permissions to selected types of children of this group, including non-private repositories and other groups if chosen."
6961 msgstr ""
7121 msgstr ""
6962
7122
@@ -6993,16 +7153,10 b' msgid "Import Existing Repository ?"'
6993 msgstr ""
7153 msgstr ""
6994
7154
6995 #: rhodecode/templates/admin/repos/repo_add_base.mako:23
7155 #: rhodecode/templates/admin/repos/repo_add_base.mako:23
6996 #: rhodecode/templates/base/base.mako:323
7156 #: rhodecode/templates/base/base.mako:330
6997 msgid "Clone from"
7157 msgid "Clone from"
6998 msgstr ""
7158 msgstr ""
6999
7159
7000 #: rhodecode/templates/admin/repos/repo_add_base.mako:49
7001 #: rhodecode/templates/forks/fork.mako:47
7002 #, python-format
7003 msgid "Select my personal group (%(repo_group_name)s)"
7004 msgstr ""
7005
7006 #: rhodecode/templates/admin/repos/repo_add_base.mako:52
7160 #: rhodecode/templates/admin/repos/repo_add_base.mako:52
7007 #: rhodecode/templates/forks/fork.mako:50
7161 #: rhodecode/templates/forks/fork.mako:50
7008 msgid "Optionally select a group to put this repository into."
7162 msgid "Optionally select a group to put this repository into."
@@ -7208,43 +7362,43 b' msgstr ""'
7208 msgid "Archive repository"
7362 msgid "Archive repository"
7209 msgstr ""
7363 msgstr ""
7210
7364
7211 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:173
7365 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:176
7212 msgid "Archive this repository"
7366 msgid "Archive this repository"
7213 msgstr ""
7367 msgstr ""
7214
7368
7215 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:178
7369 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:183
7216 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. "
7370 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. "
7217 msgstr ""
7371 msgstr ""
7218
7372
7219 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:190
7373 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:195
7220 msgid "Delete repository"
7374 msgid "Delete repository"
7221 msgstr ""
7375 msgstr ""
7222
7376
7223 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:201
7224 msgid "Detach forks"
7225 msgstr ""
7226
7227 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:206
7377 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:206
7378 msgid "Detach forks"
7379 msgstr ""
7380
7381 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:211
7228 msgid "Delete forks"
7382 msgid "Delete forks"
7229 msgstr ""
7383 msgstr ""
7230
7384
7231 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:216
7385 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:221
7232 msgid "Consider to archive this repository instead."
7386 msgid "Consider to archive this repository instead."
7233 msgstr ""
7387 msgstr ""
7234
7388
7235 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:229
7236 msgid "Delete this repository"
7237 msgstr ""
7238
7239 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:234
7389 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:234
7390 msgid "Delete this repository"
7391 msgstr ""
7392
7393 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:239
7240 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."
7394 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."
7241 msgstr ""
7395 msgstr ""
7242
7396
7243 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:268
7397 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:273
7244 msgid "Change repository"
7398 msgid "Change repository"
7245 msgstr ""
7399 msgstr ""
7246
7400
7247 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:268
7401 #: rhodecode/templates/admin/repos/repo_edit_advanced.mako:273
7248 msgid "Pick repository"
7402 msgid "Pick repository"
7249 msgstr ""
7403 msgstr ""
7250
7404
@@ -7385,7 +7539,7 b' msgstr ""'
7385
7539
7386 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:31
7540 #: rhodecode/templates/admin/repos/repo_edit_issuetracker.mako:31
7387 #: rhodecode/templates/base/issue_tracker_settings.mako:79
7541 #: rhodecode/templates/base/issue_tracker_settings.mako:79
7388 #: rhodecode/templates/base/perms_summary.mako:169
7542 #: rhodecode/templates/base/perms_summary.mako:174
7389 msgid "Pattern"
7543 msgid "Pattern"
7390 msgstr ""
7544 msgstr ""
7391
7545
@@ -7445,7 +7599,7 b' msgid "only users/user groups explicitly'
7445 msgstr ""
7599 msgstr ""
7446
7600
7447 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:62
7601 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:62
7448 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:118
7602 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:124
7449 msgid "Private repositories are only visible to people explicitly added as collaborators. Default permissions wont apply"
7603 msgid "Private repositories are only visible to people explicitly added as collaborators. Default permissions wont apply"
7450 msgstr ""
7604 msgstr ""
7451
7605
@@ -7453,15 +7607,15 b' msgstr ""'
7453 msgid "un-set private mode"
7607 msgid "un-set private mode"
7454 msgstr ""
7608 msgstr ""
7455
7609
7456 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:103
7610 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:109
7457 msgid "used by {} branch rule, requires write+ permissions"
7611 msgid "used by {} branch rule, requires write+ permissions"
7458 msgstr ""
7612 msgstr ""
7459
7613
7460 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:105
7614 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:111
7461 msgid "used by {} branch rules, requires write+ permissions"
7615 msgid "used by {} branch rules, requires write+ permissions"
7462 msgstr ""
7616 msgstr ""
7463
7617
7464 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:119
7618 #: rhodecode/templates/admin/repos/repo_edit_permissions.mako:125
7465 msgid "set private mode"
7619 msgid "set private mode"
7466 msgstr ""
7620 msgstr ""
7467
7621
@@ -7549,10 +7703,10 b' msgstr ""'
7549
7703
7550 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:60
7704 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:60
7551 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:102
7705 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:102
7552 #: rhodecode/templates/base/perms_summary.mako:111
7706 #: rhodecode/templates/base/perms_summary.mako:116
7553 #: rhodecode/templates/base/perms_summary.mako:228
7707 #: rhodecode/templates/base/perms_summary.mako:233
7554 #: rhodecode/templates/base/perms_summary.mako:306
7708 #: rhodecode/templates/base/perms_summary.mako:311
7555 #: rhodecode/templates/base/perms_summary.mako:308
7709 #: rhodecode/templates/base/perms_summary.mako:313
7556 #: rhodecode/templates/debug_style/form-elements.html:45
7710 #: rhodecode/templates/debug_style/form-elements.html:45
7557 msgid "edit"
7711 msgid "edit"
7558 msgstr ""
7712 msgstr ""
@@ -7602,7 +7756,7 b' msgid "Private repository"'
7602 msgstr ""
7756 msgstr ""
7603
7757
7604 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:204
7758 #: rhodecode/templates/admin/repos/repo_edit_settings.mako:204
7605 #: rhodecode/templates/summary/components.mako:238
7759 #: rhodecode/templates/summary/components.mako:263
7606 msgid "Enable statistics"
7760 msgid "Enable statistics"
7607 msgstr ""
7761 msgstr ""
7608
7762
@@ -8268,8 +8422,8 b' msgstr ""'
8268
8422
8269 #: rhodecode/templates/admin/user_groups/user_group_add.mako:13
8423 #: rhodecode/templates/admin/user_groups/user_group_add.mako:13
8270 #: rhodecode/templates/admin/users/user_edit_advanced.mako:14
8424 #: rhodecode/templates/admin/users/user_edit_advanced.mako:14
8271 #: rhodecode/templates/base/base.mako:110
8425 #: rhodecode/templates/base/base.mako:115
8272 #: rhodecode/templates/base/base.mako:132
8426 #: rhodecode/templates/base/base.mako:137
8273 msgid "User groups"
8427 msgid "User groups"
8274 msgstr ""
8428 msgstr ""
8275
8429
@@ -8401,7 +8555,7 b' msgstr ""'
8401
8555
8402 #: rhodecode/templates/admin/users/user_add.mako:13
8556 #: rhodecode/templates/admin/users/user_add.mako:13
8403 #: rhodecode/templates/admin/users/user_edit.mako:14
8557 #: rhodecode/templates/admin/users/user_edit.mako:14
8404 #: rhodecode/templates/base/base.mako:109
8558 #: rhodecode/templates/base/base.mako:114
8405 msgid "Users"
8559 msgid "Users"
8406 msgstr ""
8560 msgstr ""
8407
8561
@@ -8451,7 +8605,7 b' msgid "{} user settings"'
8451 msgstr ""
8605 msgstr ""
8452
8606
8453 #: rhodecode/templates/admin/users/user_edit.mako:31
8607 #: rhodecode/templates/admin/users/user_edit.mako:31
8454 msgid "This user is set as disabled"
8608 msgid "This user is set as non-active and disabled."
8455 msgstr ""
8609 msgstr ""
8456
8610
8457 #: rhodecode/templates/admin/users/user_edit.mako:39
8611 #: rhodecode/templates/admin/users/user_edit.mako:39
@@ -8609,7 +8763,7 b' msgstr ""'
8609 msgid "Download as JSON"
8763 msgid "Download as JSON"
8610 msgstr ""
8764 msgstr ""
8611
8765
8612 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:62
8766 #: rhodecode/templates/admin/users/user_edit_auth_tokens.mako:68
8613 #, python-format
8767 #, python-format
8614 msgid "Confirm to remove this auth token: %s"
8768 msgid "Confirm to remove this auth token: %s"
8615 msgstr ""
8769 msgstr ""
@@ -8678,7 +8832,7 b' msgstr ""'
8678
8832
8679 #: rhodecode/templates/admin/users/user_edit_profile.mako:118
8833 #: rhodecode/templates/admin/users/user_edit_profile.mako:118
8680 #: rhodecode/templates/admin/users/users.mako:87
8834 #: rhodecode/templates/admin/users/users.mako:87
8681 #: rhodecode/templates/base/perms_summary.mako:145
8835 #: rhodecode/templates/base/perms_summary.mako:150
8682 msgid "Super-admin"
8836 msgid "Super-admin"
8683 msgstr ""
8837 msgstr ""
8684
8838
@@ -8765,69 +8919,69 b' msgstr ""'
8765 msgid "{} Artifacts"
8919 msgid "{} Artifacts"
8766 msgstr ""
8920 msgstr ""
8767
8921
8768 #: rhodecode/templates/base/base.mako:66
8922 #: rhodecode/templates/base/base.mako:71
8769 msgid "RhodeCode instance id: {}"
8923 msgid "RhodeCode instance id: {}"
8770 msgstr ""
8924 msgstr ""
8771
8925
8772 #: rhodecode/templates/base/base.mako:94
8926 #: rhodecode/templates/base/base.mako:99
8773 msgid "Super-admin Panel"
8927 msgid "Super-admin Panel"
8774 msgstr ""
8928 msgstr ""
8775
8929
8776 #: rhodecode/templates/base/base.mako:96
8930 #: rhodecode/templates/base/base.mako:101
8777 msgid "Delegated Admin Panel"
8931 msgid "Delegated Admin Panel"
8778 msgstr ""
8932 msgstr ""
8779
8933
8780 #: rhodecode/templates/base/base.mako:112
8934 #: rhodecode/templates/base/base.mako:117
8781 msgid "Authentication"
8935 msgid "Authentication"
8782 msgstr ""
8936 msgstr ""
8783
8937
8784 #: rhodecode/templates/base/base.mako:114
8938 #: rhodecode/templates/base/base.mako:119
8785 msgid "Defaults"
8939 msgid "Defaults"
8786 msgstr ""
8940 msgstr ""
8787
8941
8788 #: rhodecode/templates/base/base.mako:154
8942 #: rhodecode/templates/base/base.mako:159
8789 #: rhodecode/templates/base/base.mako:194
8943 #: rhodecode/templates/base/base.mako:199
8790 #: rhodecode/templates/changeset/changeset.mako:154
8944 #: rhodecode/templates/changeset/changeset.mako:154
8791 #: rhodecode/templates/files/files_source_header.mako:57
8945 #: rhodecode/templates/files/files_source_header.mako:57
8792 #: rhodecode/templates/files/files_tree_header.mako:44
8946 #: rhodecode/templates/files/files_tree_header.mako:44
8793 #: rhodecode/templates/summary/components.mako:250
8947 #: rhodecode/templates/summary/components.mako:275
8794 msgid "Show More"
8948 msgid "Show More"
8795 msgstr ""
8949 msgstr ""
8796
8950
8797 #: rhodecode/templates/base/base.mako:295
8951 #: rhodecode/templates/base/base.mako:302
8798 #: rhodecode/templates/base/base.mako:306
8952 #: rhodecode/templates/base/base.mako:313
8799 msgid "RSS Feed"
8953 msgid "RSS Feed"
8800 msgstr ""
8954 msgstr ""
8801
8955
8802 #: rhodecode/templates/base/base.mako:297
8956 #: rhodecode/templates/base/base.mako:304
8803 msgid "Watch this Repository and actions on it in your personalized journal"
8957 msgid "Watch this Repository and actions on it in your personalized journal"
8804 msgstr ""
8958 msgstr ""
8805
8959
8806 #: rhodecode/templates/base/base.mako:315
8960 #: rhodecode/templates/base/base.mako:322
8807 msgid "Fork of"
8961 msgid "Fork of"
8808 msgstr ""
8962 msgstr ""
8809
8963
8810 #: rhodecode/templates/base/base.mako:332
8964 #: rhodecode/templates/base/base.mako:339
8811 #, python-format
8965 #, python-format
8812 msgid "Repository locked by %(user)s"
8966 msgid "Repository locked by %(user)s"
8813 msgstr ""
8967 msgstr ""
8814
8968
8815 #: rhodecode/templates/base/base.mako:337
8969 #: rhodecode/templates/base/base.mako:344
8816 msgid "Repository not locked. Pull repository to lock it."
8970 msgid "Repository not locked. Pull repository to lock it."
8817 msgstr ""
8971 msgstr ""
8818
8972
8819 #: rhodecode/templates/base/base.mako:353
8973 #: rhodecode/templates/base/base.mako:360
8820 msgid "This repository has been archived. It is now read-only."
8974 msgid "This repository has been archived. It is now read-only."
8821 msgstr ""
8975 msgstr ""
8822
8976
8823 #: rhodecode/templates/base/base.mako:366
8977 #: rhodecode/templates/base/base.mako:373
8824 #: rhodecode/templates/data_table/_dt_elements.mako:58
8978 #: rhodecode/templates/data_table/_dt_elements.mako:58
8825 #: rhodecode/templates/data_table/_dt_elements.mako:59
8979 #: rhodecode/templates/data_table/_dt_elements.mako:59
8826 #: rhodecode/templates/data_table/_dt_elements.mako:207
8980 #: rhodecode/templates/data_table/_dt_elements.mako:207
8827 msgid "Summary"
8981 msgid "Summary"
8828 msgstr ""
8982 msgstr ""
8829
8983
8830 #: rhodecode/templates/base/base.mako:367
8984 #: rhodecode/templates/base/base.mako:374
8831 #: rhodecode/templates/data_table/_dt_elements.mako:63
8985 #: rhodecode/templates/data_table/_dt_elements.mako:63
8832 #: rhodecode/templates/data_table/_dt_elements.mako:64
8986 #: rhodecode/templates/data_table/_dt_elements.mako:64
8833 #: rhodecode/templates/files/file_authors_box.mako:30
8987 #: rhodecode/templates/files/file_authors_box.mako:30
@@ -8837,7 +8991,7 b' msgstr ""'
8837 msgid "Commits"
8991 msgid "Commits"
8838 msgstr ""
8992 msgstr ""
8839
8993
8840 #: rhodecode/templates/base/base.mako:368
8994 #: rhodecode/templates/base/base.mako:375
8841 #: rhodecode/templates/data_table/_dt_elements.mako:68
8995 #: rhodecode/templates/data_table/_dt_elements.mako:68
8842 #: rhodecode/templates/data_table/_dt_elements.mako:69
8996 #: rhodecode/templates/data_table/_dt_elements.mako:69
8843 #: rhodecode/templates/files/files.mako:15
8997 #: rhodecode/templates/files/files.mako:15
@@ -8845,91 +8999,87 b' msgstr ""'
8845 msgid "Files"
8999 msgid "Files"
8846 msgstr ""
9000 msgstr ""
8847
9001
8848 #: rhodecode/templates/base/base.mako:369
9002 #: rhodecode/templates/base/base.mako:376
8849 #: rhodecode/templates/bookmarks/bookmarks.mako:66
9003 #: rhodecode/templates/bookmarks/bookmarks.mako:66
8850 #: rhodecode/templates/branches/branches.mako:65
9004 #: rhodecode/templates/branches/branches.mako:65
8851 #: rhodecode/templates/tags/tags.mako:66
9005 #: rhodecode/templates/tags/tags.mako:66
8852 msgid "Compare"
9006 msgid "Compare"
8853 msgstr ""
9007 msgstr ""
8854
9008
8855 #: rhodecode/templates/base/base.mako:374
9009 #: rhodecode/templates/base/base.mako:381
8856 #, python-format
9010 #, python-format
8857 msgid "Show Pull Requests for %s"
9011 msgid "Show Pull Requests for %s"
8858 msgstr ""
9012 msgstr ""
8859
9013
8860 #: rhodecode/templates/base/base.mako:385
9014 #: rhodecode/templates/base/base.mako:392
8861 msgid "Artifacts"
9015 msgid "Artifacts"
8862 msgstr ""
9016 msgstr ""
8863
9017
8864 #: rhodecode/templates/base/base.mako:391
9018 #: rhodecode/templates/base/base.mako:398
8865 msgid "Repository Settings"
9019 msgid "Repository Settings"
8866 msgstr ""
9020 msgstr ""
8867
9021
8868 #: rhodecode/templates/base/base.mako:397
8869 msgid "Options"
8870 msgstr ""
8871
8872 #: rhodecode/templates/base/base.mako:402
8873 msgid "Unlock Repository"
8874 msgstr ""
8875
8876 #: rhodecode/templates/base/base.mako:404
9022 #: rhodecode/templates/base/base.mako:404
9023 msgid "Options"
9024 msgstr ""
9025
9026 #: rhodecode/templates/base/base.mako:409
9027 msgid "Unlock Repository"
9028 msgstr ""
9029
9030 #: rhodecode/templates/base/base.mako:411
8877 msgid "Lock Repository"
9031 msgid "Lock Repository"
8878 msgstr ""
9032 msgstr ""
8879
9033
8880 #: rhodecode/templates/base/base.mako:457
9034 #: rhodecode/templates/base/base.mako:464
8881 msgid "Group Home"
9035 msgid "Group Home"
8882 msgstr ""
9036 msgstr ""
8883
9037
8884 #: rhodecode/templates/base/base.mako:461
9038 #: rhodecode/templates/base/base.mako:468
8885 msgid "You have admin right to this group, and can edit it"
9039 msgid "You have admin right to this group, and can edit it"
8886 msgstr ""
9040 msgstr ""
8887
9041
8888 #: rhodecode/templates/base/base.mako:461
9042 #: rhodecode/templates/base/base.mako:468
8889 msgid "Group Settings"
9043 msgid "Group Settings"
8890 msgstr ""
9044 msgstr ""
8891
9045
8892 #: rhodecode/templates/base/base.mako:504
9046 #: rhodecode/templates/base/base.mako:519
8893 msgid "Create"
8894 msgstr ""
8895
8896 #: rhodecode/templates/base/base.mako:512
8897 msgid "This Repository"
9047 msgid "This Repository"
8898 msgstr ""
9048 msgstr ""
8899
9049
8900 #: rhodecode/templates/base/base.mako:514
9050 #: rhodecode/templates/base/base.mako:521
8901 msgid "Create Pull Request"
9051 msgid "Create Pull Request"
8902 msgstr ""
9052 msgstr ""
8903
9053
8904 #: rhodecode/templates/base/base.mako:518
8905 msgid "Fork this repository"
8906 msgstr ""
8907
8908 #: rhodecode/templates/base/base.mako:525
9054 #: rhodecode/templates/base/base.mako:525
9055 msgid "Fork this repository"
9056 msgstr ""
9057
9058 #: rhodecode/templates/base/base.mako:532
8909 msgid "This Repository Group"
9059 msgid "This Repository Group"
8910 msgstr ""
9060 msgstr ""
8911
9061
8912 #: rhodecode/templates/base/base.mako:529
9062 #: rhodecode/templates/base/base.mako:536
8913 #: rhodecode/templates/base/base.mako:545
9063 #: rhodecode/templates/base/base.mako:552
8914 #: rhodecode/templates/base/base.mako:557
9064 #: rhodecode/templates/base/base.mako:564
8915 msgid "New Repository"
9065 msgid "New Repository"
8916 msgstr ""
9066 msgstr ""
8917
9067
8918 #: rhodecode/templates/base/base.mako:535
9068 #: rhodecode/templates/base/base.mako:542
8919 #: rhodecode/templates/base/base.mako:549
9069 #: rhodecode/templates/base/base.mako:556
8920 #: rhodecode/templates/base/base.mako:563
9070 #: rhodecode/templates/base/base.mako:570
8921 msgid "New Repository Group"
9071 msgid "New Repository Group"
8922 msgstr ""
9072 msgstr ""
8923
9073
8924 #: rhodecode/templates/base/base.mako:590
9074 #: rhodecode/templates/base/base.mako:597
8925 msgid "Sign in"
9075 msgid "Sign in"
8926 msgstr ""
9076 msgstr ""
8927
9077
8928 #: rhodecode/templates/base/base.mako:615
9078 #: rhodecode/templates/base/base.mako:622
8929 msgid "My personal group"
9079 msgid "My personal group"
8930 msgstr ""
9080 msgstr ""
8931
9081
8932 #: rhodecode/templates/base/base.mako:621
9082 #: rhodecode/templates/base/base.mako:628
8933 #: rhodecode/templates/debug_style/alerts.html:5
9083 #: rhodecode/templates/debug_style/alerts.html:5
8934 #: rhodecode/templates/debug_style/buttons.html:5
9084 #: rhodecode/templates/debug_style/buttons.html:5
8935 #: rhodecode/templates/debug_style/code-block.html:6
9085 #: rhodecode/templates/debug_style/code-block.html:6
@@ -8952,133 +9102,133 b' msgstr ""'
8952 msgid "Style"
9102 msgid "Style"
8953 msgstr ""
9103 msgstr ""
8954
9104
8955 #: rhodecode/templates/base/base.mako:622
9105 #: rhodecode/templates/base/base.mako:629
8956 msgid "[Style]"
9106 msgid "[Style]"
8957 msgstr ""
9107 msgstr ""
8958
9108
8959 #: rhodecode/templates/base/base.mako:639
9109 #: rhodecode/templates/base/base.mako:646
8960 msgid "No Bookmarks yet."
9110 msgid "No Bookmarks yet."
8961 msgstr ""
9111 msgstr ""
8962
9112
8963 #: rhodecode/templates/base/base.mako:677
9113 #: rhodecode/templates/base/base.mako:684
8964 msgid "Sign Out"
9114 msgid "Sign Out"
8965 msgstr ""
9115 msgstr ""
8966
9116
8967 #: rhodecode/templates/base/base.mako:725
9117 #: rhodecode/templates/base/base.mako:732
8968 msgid "dismiss"
9118 msgid "dismiss"
8969 msgstr ""
9119 msgstr ""
8970
9120
8971 #: rhodecode/templates/base/base.mako:766
9121 #: rhodecode/templates/base/base.mako:773
8972 msgid "search / go to..."
9122 msgid "search / go to..."
8973 msgstr ""
9123 msgstr ""
8974
9124
8975 #: rhodecode/templates/base/base.mako:811
9125 #: rhodecode/templates/base/base.mako:818
8976 msgid "Show activity journal"
9126 msgid "Show activity journal"
8977 msgstr ""
9127 msgstr ""
8978
9128
8979 #: rhodecode/templates/base/base.mako:812
9129 #: rhodecode/templates/base/base.mako:819
8980 #: rhodecode/templates/journal/journal.mako:4
9130 #: rhodecode/templates/journal/journal.mako:4
8981 #: rhodecode/templates/journal/journal.mako:14
9131 #: rhodecode/templates/journal/journal.mako:14
8982 msgid "Journal"
9132 msgid "Journal"
8983 msgstr ""
9133 msgstr ""
8984
9134
8985 #: rhodecode/templates/base/base.mako:817
9135 #: rhodecode/templates/base/base.mako:824
8986 msgid "Show Public activity journal"
9136 msgid "Show Public activity journal"
8987 msgstr ""
9137 msgstr ""
8988
9138
8989 #: rhodecode/templates/base/base.mako:818
8990 msgid "Public journal"
8991 msgstr ""
8992
8993 #: rhodecode/templates/base/base.mako:824
8994 msgid "Show Gists"
8995 msgstr ""
8996
8997 #: rhodecode/templates/base/base.mako:825
9139 #: rhodecode/templates/base/base.mako:825
8998 msgid "Gists"
9140 msgid "Public journal"
8999 msgstr ""
9141 msgstr ""
9000
9142
9001 #: rhodecode/templates/base/base.mako:831
9143 #: rhodecode/templates/base/base.mako:831
9144 msgid "Show Gists"
9145 msgstr ""
9146
9147 #: rhodecode/templates/base/base.mako:832
9148 msgid "Gists"
9149 msgstr ""
9150
9151 #: rhodecode/templates/base/base.mako:838
9002 msgid "Admin settings"
9152 msgid "Admin settings"
9003 msgstr ""
9153 msgstr ""
9004
9154
9005 #: rhodecode/templates/base/base.mako:1135
9155 #: rhodecode/templates/base/base.mako:1155
9006 msgid "Keyboard shortcuts"
9156 msgid "Keyboard shortcuts"
9007 msgstr ""
9157 msgstr ""
9008
9158
9009 #: rhodecode/templates/base/base.mako:1143
9159 #: rhodecode/templates/base/base.mako:1163
9010 msgid "Site-wide shortcuts"
9160 msgid "Site-wide shortcuts"
9011 msgstr ""
9161 msgstr ""
9012
9162
9013 #: rhodecode/templates/base/default_perms_box.mako:14
9163 #: rhodecode/templates/base/default_perms_box.mako:19
9014 msgid "Inherited Permissions"
9164 msgid "Inherited Permissions"
9015 msgstr ""
9165 msgstr ""
9016
9166
9017 #: rhodecode/templates/base/default_perms_box.mako:15
9167 #: rhodecode/templates/base/default_perms_box.mako:25
9018 msgid "Custom Permissions"
9168 msgid "Custom Permissions"
9019 msgstr ""
9169 msgstr ""
9020
9170
9021 #: rhodecode/templates/base/default_perms_box.mako:17
9171 #: rhodecode/templates/base/default_perms_box.mako:29
9022 msgid "Default Global Permissions"
9172 msgid "Default Global Permissions"
9023 msgstr ""
9173 msgstr ""
9024
9174
9025 #: rhodecode/templates/base/default_perms_box.mako:23
9175 #: rhodecode/templates/base/default_perms_box.mako:36
9026 msgid "The following options configure the default permissions each user or group will inherit. You can override these permissions for each individual user or user group using individual permissions settings."
9176 msgid "The following options configure the default permissions each user or group will inherit. You can override these permissions for each individual user or user group using individual permissions settings."
9027 msgstr ""
9177 msgstr ""
9028
9178
9029 #: rhodecode/templates/base/default_perms_box.mako:27
9179 #: rhodecode/templates/base/default_perms_box.mako:40
9030 msgid "Repository Creation"
9180 msgid "Repository Creation"
9031 msgstr ""
9181 msgstr ""
9032
9182
9033 #: rhodecode/templates/base/default_perms_box.mako:32
9183 #: rhodecode/templates/base/default_perms_box.mako:45
9034 msgid "Permission to create root level repositories. When disabled, users can still create repositories inside their own repository groups."
9184 msgid "Permission to create root level repositories. When disabled, users can still create repositories inside their own repository groups."
9035 msgstr ""
9185 msgstr ""
9036
9186
9037 #: rhodecode/templates/base/default_perms_box.mako:37
9187 #: rhodecode/templates/base/default_perms_box.mako:50
9038 msgid "Repository Creation With Group Write Access"
9188 msgid "Repository Creation With Group Write Access"
9039 msgstr ""
9189 msgstr ""
9040
9190
9041 #: rhodecode/templates/base/default_perms_box.mako:42
9191 #: rhodecode/templates/base/default_perms_box.mako:55
9042 msgid "Write permission given on a repository group will allow creating repositories inside that group."
9192 msgid "Write permission given on a repository group will allow creating repositories inside that group."
9043 msgstr ""
9193 msgstr ""
9044
9194
9045 #: rhodecode/templates/base/default_perms_box.mako:47
9195 #: rhodecode/templates/base/default_perms_box.mako:60
9046 msgid "Repository Forking"
9196 msgid "Repository Forking"
9047 msgstr ""
9197 msgstr ""
9048
9198
9049 #: rhodecode/templates/base/default_perms_box.mako:52
9199 #: rhodecode/templates/base/default_perms_box.mako:65
9050 msgid "Permission to create root level repository forks. When disabled, users can still fork repositories inside their own repository groups."
9200 msgid "Permission to create root level repository forks. When disabled, users can still fork repositories inside their own repository groups."
9051 msgstr ""
9201 msgstr ""
9052
9202
9053 #: rhodecode/templates/base/default_perms_box.mako:57
9203 #: rhodecode/templates/base/default_perms_box.mako:70
9054 msgid "Repository Group Creation"
9204 msgid "Repository Group Creation"
9055 msgstr ""
9205 msgstr ""
9056
9206
9057 #: rhodecode/templates/base/default_perms_box.mako:62
9207 #: rhodecode/templates/base/default_perms_box.mako:75
9058 msgid "Permission to create root level repository groups. When disabled, repository group admins can still create repository subgroups within their repository groups."
9208 msgid "Permission to create root level repository groups. When disabled, repository group admins can still create repository subgroups within their repository groups."
9059 msgstr ""
9209 msgstr ""
9060
9210
9061 #: rhodecode/templates/base/default_perms_box.mako:67
9211 #: rhodecode/templates/base/default_perms_box.mako:80
9062 msgid "User Group Creation"
9212 msgid "User Group Creation"
9063 msgstr ""
9213 msgstr ""
9064
9214
9065 #: rhodecode/templates/base/default_perms_box.mako:72
9215 #: rhodecode/templates/base/default_perms_box.mako:85
9066 msgid "Permission to allow user group creation."
9216 msgid "Permission to allow user group creation."
9067 msgstr ""
9217 msgstr ""
9068
9218
9069 #: rhodecode/templates/base/default_perms_box.mako:78
9219 #: rhodecode/templates/base/default_perms_box.mako:91
9070 msgid "Inherit Permissions From The Default User"
9220 msgid "Inherit Permissions From The Default User"
9071 msgstr ""
9221 msgstr ""
9072
9222
9073 #: rhodecode/templates/base/default_perms_box.mako:83
9223 #: rhodecode/templates/base/default_perms_box.mako:96
9074 msgid "Inherit default permissions from the default user. Turn off this option to force explicit permissions for users, even if they are more restrictive than the default user permissions."
9224 msgid "Inherit default permissions from the default user. Turn off this option to force explicit permissions for users, even if they are more restrictive than the default user permissions."
9075 msgstr ""
9225 msgstr ""
9076
9226
9077 #: rhodecode/templates/base/default_perms_box.mako:102
9227 #: rhodecode/templates/base/default_perms_box.mako:115
9078 msgid "Inherit from default settings"
9228 msgid "Inherit from default settings"
9079 msgstr ""
9229 msgstr ""
9080
9230
9081 #: rhodecode/templates/base/default_perms_box.mako:107
9231 #: rhodecode/templates/base/default_perms_box.mako:120
9082 #, python-format
9232 #, python-format
9083 msgid ""
9233 msgid ""
9084 "Select to inherit permissions from %s permissions settings, including default IP address whitelist and inheritance of \n"
9234 "Select to inherit permissions from %s permissions settings, including default IP address whitelist and inheritance of \n"
@@ -9106,11 +9256,11 b' msgid "Confirm to remove this pattern:"'
9106 msgstr ""
9256 msgstr ""
9107
9257
9108 #: rhodecode/templates/base/issue_tracker_settings.mako:293
9258 #: rhodecode/templates/base/issue_tracker_settings.mako:293
9109 #: rhodecode/templates/changeset/changeset_file_comment.mako:275
9259 #: rhodecode/templates/changeset/changeset_file_comment.mako:340
9110 #: rhodecode/templates/changeset/changeset_file_comment.mako:326
9260 #: rhodecode/templates/changeset/changeset_file_comment.mako:391
9111 #: rhodecode/templates/data_table/_dt_elements.mako:453
9261 #: rhodecode/templates/data_table/_dt_elements.mako:453
9112 #: rhodecode/templates/files/files_add.mako:60
9262 #: rhodecode/templates/files/files_add.mako:59
9113 #: rhodecode/templates/files/files_edit.mako:62
9263 #: rhodecode/templates/files/files_edit.mako:61
9114 msgid "Preview"
9264 msgid "Preview"
9115 msgstr ""
9265 msgstr ""
9116
9266
@@ -9118,107 +9268,107 b' msgstr ""'
9118 msgid "Test Pattern Preview"
9268 msgid "Test Pattern Preview"
9119 msgstr ""
9269 msgstr ""
9120
9270
9121 #: rhodecode/templates/base/perms_summary.mako:26
9271 #: rhodecode/templates/base/perms_summary.mako:31
9122 msgid "in JSON format"
9272 msgid "in JSON format"
9123 msgstr ""
9273 msgstr ""
9124
9274
9125 #: rhodecode/templates/base/perms_summary.mako:35
9275 #: rhodecode/templates/base/perms_summary.mako:40
9126 #: rhodecode/templates/base/perms_summary.mako:43
9276 #: rhodecode/templates/base/perms_summary.mako:48
9127 msgid "show"
9277 msgid "show"
9128 msgstr ""
9278 msgstr ""
9129
9279
9130 #: rhodecode/templates/base/perms_summary.mako:36
9280 #: rhodecode/templates/base/perms_summary.mako:41
9131 #: rhodecode/templates/base/perms_summary.mako:44
9281 #: rhodecode/templates/base/perms_summary.mako:49
9132 msgid "none"
9282 msgid "none"
9133 msgstr ""
9283 msgstr ""
9134
9284
9135 #: rhodecode/templates/base/perms_summary.mako:37
9285 #: rhodecode/templates/base/perms_summary.mako:42
9136 #: rhodecode/templates/commits/changelog_elements.mako:102
9286 #: rhodecode/templates/commits/changelog_elements.mako:102
9137 #: rhodecode/templates/files/base.mako:26
9287 #: rhodecode/templates/files/base.mako:26
9138 msgid "merge"
9288 msgid "merge"
9139 msgstr ""
9289 msgstr ""
9140
9290
9141 #: rhodecode/templates/base/perms_summary.mako:38
9291 #: rhodecode/templates/base/perms_summary.mako:43
9142 msgid "push"
9292 msgid "push"
9143 msgstr ""
9293 msgstr ""
9144
9294
9145 #: rhodecode/templates/base/perms_summary.mako:39
9295 #: rhodecode/templates/base/perms_summary.mako:44
9146 msgid "push force"
9296 msgid "push force"
9147 msgstr ""
9297 msgstr ""
9148
9298
9149 #: rhodecode/templates/base/perms_summary.mako:45
9299 #: rhodecode/templates/base/perms_summary.mako:50
9150 msgid "read"
9300 msgid "read"
9151 msgstr ""
9301 msgstr ""
9152
9302
9153 #: rhodecode/templates/base/perms_summary.mako:46
9303 #: rhodecode/templates/base/perms_summary.mako:51
9154 msgid "write"
9304 msgid "write"
9155 msgstr ""
9305 msgstr ""
9156
9306
9157 #: rhodecode/templates/base/perms_summary.mako:47
9307 #: rhodecode/templates/base/perms_summary.mako:52
9158 msgid "admin"
9308 msgid "admin"
9159 msgstr ""
9309 msgstr ""
9160
9310
9161 #: rhodecode/templates/base/perms_summary.mako:55
9311 #: rhodecode/templates/base/perms_summary.mako:60
9162 msgid "No permissions defined"
9312 msgid "No permissions defined"
9163 msgstr ""
9313 msgstr ""
9164
9314
9165 #: rhodecode/templates/base/perms_summary.mako:63
9315 #: rhodecode/templates/base/perms_summary.mako:68
9166 #: rhodecode/templates/base/perms_summary.mako:170
9316 #: rhodecode/templates/base/perms_summary.mako:175
9167 #: rhodecode/templates/base/perms_summary.mako:243
9317 #: rhodecode/templates/base/perms_summary.mako:248
9168 msgid "Permission"
9318 msgid "Permission"
9169 msgstr ""
9319 msgstr ""
9170
9320
9171 #: rhodecode/templates/base/perms_summary.mako:65
9321 #: rhodecode/templates/base/perms_summary.mako:70
9172 #: rhodecode/templates/base/perms_summary.mako:245
9322 #: rhodecode/templates/base/perms_summary.mako:250
9173 msgid "Edit Permission"
9323 msgid "Edit Permission"
9174 msgstr ""
9324 msgstr ""
9175
9325
9176 #: rhodecode/templates/base/perms_summary.mako:119
9326 #: rhodecode/templates/base/perms_summary.mako:124
9177 #: rhodecode/templates/base/perms_summary.mako:128
9327 #: rhodecode/templates/base/perms_summary.mako:133
9178 msgid "edit global"
9328 msgid "edit global"
9179 msgstr ""
9329 msgstr ""
9180
9330
9181 #: rhodecode/templates/base/perms_summary.mako:136
9331 #: rhodecode/templates/base/perms_summary.mako:141
9182 msgid "Repository default permission"
9332 msgid "Repository default permission"
9183 msgstr ""
9333 msgstr ""
9184
9334
9185 #: rhodecode/templates/base/perms_summary.mako:139
9335 #: rhodecode/templates/base/perms_summary.mako:144
9186 msgid "Repository group default permission"
9336 msgid "Repository group default permission"
9187 msgstr ""
9337 msgstr ""
9188
9338
9189 #: rhodecode/templates/base/perms_summary.mako:142
9339 #: rhodecode/templates/base/perms_summary.mako:147
9190 msgid "User group default permission"
9340 msgid "User group default permission"
9191 msgstr ""
9341 msgstr ""
9192
9342
9193 #: rhodecode/templates/base/perms_summary.mako:148
9343 #: rhodecode/templates/base/perms_summary.mako:153
9194 msgid "Inherit permissions"
9344 msgid "Inherit permissions"
9195 msgstr ""
9345 msgstr ""
9196
9346
9197 #: rhodecode/templates/base/perms_summary.mako:151
9347 #: rhodecode/templates/base/perms_summary.mako:156
9198 msgid "Create repositories"
9348 msgid "Create repositories"
9199 msgstr ""
9349 msgstr ""
9200
9350
9201 #: rhodecode/templates/base/perms_summary.mako:154
9351 #: rhodecode/templates/base/perms_summary.mako:159
9202 msgid "Fork repositories"
9352 msgid "Fork repositories"
9203 msgstr ""
9353 msgstr ""
9204
9354
9205 #: rhodecode/templates/base/perms_summary.mako:157
9355 #: rhodecode/templates/base/perms_summary.mako:162
9206 msgid "Create repository groups"
9356 msgid "Create repository groups"
9207 msgstr ""
9357 msgstr ""
9208
9358
9209 #: rhodecode/templates/base/perms_summary.mako:160
9359 #: rhodecode/templates/base/perms_summary.mako:165
9210 msgid "Create user groups"
9360 msgid "Create user groups"
9211 msgstr ""
9361 msgstr ""
9212
9362
9213 #: rhodecode/templates/base/perms_summary.mako:172
9363 #: rhodecode/templates/base/perms_summary.mako:177
9214 msgid "Edit Branch Permission"
9364 msgid "Edit Branch Permission"
9215 msgstr ""
9365 msgstr ""
9216
9366
9217 #: rhodecode/templates/base/perms_summary.mako:286
9367 #: rhodecode/templates/base/perms_summary.mako:291
9218 msgid "overridden by"
9368 msgid "overridden by"
9219 msgstr ""
9369 msgstr ""
9220
9370
9221 #: rhodecode/templates/base/perms_summary.mako:321
9371 #: rhodecode/templates/base/perms_summary.mako:326
9222 msgid "No matching permission defined"
9372 msgid "No matching permission defined"
9223 msgstr ""
9373 msgstr ""
9224
9374
@@ -9533,99 +9683,105 b' msgstr ""'
9533 msgid "No Parent Commits"
9683 msgid "No Parent Commits"
9534 msgstr ""
9684 msgstr ""
9535
9685
9536 #: rhodecode/templates/changeset/changeset_file_comment.mako:33
9686 #: rhodecode/templates/changeset/changeset_file_comment.mako:41
9537 #: rhodecode/templates/pullrequests/pullrequest_show.mako:401
9687 #: rhodecode/templates/pullrequests/pullrequest_show.mako:401
9538 msgid "Resolved by comment #{}"
9688 msgid "Resolved by comment #{}"
9539 msgstr ""
9689 msgstr ""
9540
9690
9541 #: rhodecode/templates/changeset/changeset_file_comment.mako:40
9691 #: rhodecode/templates/changeset/changeset_file_comment.mako:49
9542 msgid "Click to resolve this comment"
9692 msgid "Click to create resolution comment."
9543 msgstr ""
9693 msgstr ""
9544
9694
9545 #: rhodecode/templates/changeset/changeset_file_comment.mako:70
9695 #: rhodecode/templates/changeset/changeset_file_comment.mako:58
9546 #: rhodecode/templates/changeset/changeset_file_comment.mako:72
9696 msgid "This comment resolves TODO #{}"
9547 msgid "pull request !{}"
9697 msgstr ""
9548 msgstr ""
9698
9549
9699 #: rhodecode/templates/changeset/changeset_file_comment.mako:90
9550 #: rhodecode/templates/changeset/changeset_file_comment.mako:77
9700 msgid "Status from pull request."
9551 msgid "Status change on commit"
9552 msgstr ""
9553
9554 #: rhodecode/templates/changeset/changeset_file_comment.mako:85
9555 #: rhodecode/templates/compare/compare_diff.mako:139
9556 #: rhodecode/templates/email_templates/commit_comment.mako:53
9557 msgid "Commit status"
9558 msgstr ""
9559
9560 #: rhodecode/templates/changeset/changeset_file_comment.mako:94
9561 msgid "Pull request author"
9562 msgstr ""
9563
9564 #: rhodecode/templates/changeset/changeset_file_comment.mako:95
9565 msgid "author"
9566 msgstr ""
9567
9568 #: rhodecode/templates/changeset/changeset_file_comment.mako:103
9569 #: rhodecode/templates/changeset/changeset_file_comment.mako:119
9570 msgid "Outdated comment from pull request version v{0}, latest v{1}"
9571 msgstr ""
9701 msgstr ""
9572
9702
9573 #: rhodecode/templates/changeset/changeset_file_comment.mako:107
9703 #: rhodecode/templates/changeset/changeset_file_comment.mako:107
9574 #: rhodecode/templates/changeset/changeset_file_comment.mako:122
9704 msgid "Pull request author"
9705 msgstr ""
9706
9707 #: rhodecode/templates/changeset/changeset_file_comment.mako:108
9708 msgid "author"
9709 msgstr ""
9710
9711 #: rhodecode/templates/changeset/changeset_file_comment.mako:163
9712 #: rhodecode/templates/changeset/changeset_file_comment.mako:179
9713 msgid "Outdated comment from pull request version v{0}, latest v{1}"
9714 msgstr ""
9715
9716 #: rhodecode/templates/changeset/changeset_file_comment.mako:167
9717 #: rhodecode/templates/changeset/changeset_file_comment.mako:183
9575 msgid "Comment from pull request version v{0}, latest v{1}"
9718 msgid "Comment from pull request version v{0}, latest v{1}"
9576 msgstr ""
9719 msgstr ""
9577
9720
9578 #: rhodecode/templates/changeset/changeset_file_comment.mako:149
9721 #: rhodecode/templates/changeset/changeset_file_comment.mako:205
9579 #: rhodecode/templates/changeset/changeset_file_comment.mako:152
9722 #: rhodecode/templates/changeset/changeset_file_comment.mako:206
9580 msgid "Prev"
9723 #: rhodecode/templates/changeset/changeset_file_comment.mako:209
9581 msgstr ""
9724 #: rhodecode/templates/changeset/changeset_file_comment.mako:210
9582
9725 msgid "Action unavailable"
9583 #: rhodecode/templates/changeset/changeset_file_comment.mako:150
9726 msgstr ""
9584 #: rhodecode/templates/changeset/changeset_file_comment.mako:153
9727
9585 msgid "Next"
9728 #: rhodecode/templates/changeset/changeset_file_comment.mako:214
9586 msgstr ""
9729 msgid "Jump to the previous outdated comment"
9587
9730 msgstr ""
9588 #: rhodecode/templates/changeset/changeset_file_comment.mako:192
9731
9732 #: rhodecode/templates/changeset/changeset_file_comment.mako:215
9733 msgid "Jump to the next outdated comment"
9734 msgstr ""
9735
9736 #: rhodecode/templates/changeset/changeset_file_comment.mako:217
9737 msgid "Jump to the previous comment"
9738 msgstr ""
9739
9740 #: rhodecode/templates/changeset/changeset_file_comment.mako:218
9741 msgid "Jump to the next comment"
9742 msgstr ""
9743
9744 #: rhodecode/templates/changeset/changeset_file_comment.mako:257
9589 msgid "Leave a comment on this Pull Request."
9745 msgid "Leave a comment on this Pull Request."
9590 msgstr ""
9746 msgstr ""
9591
9747
9592 #: rhodecode/templates/changeset/changeset_file_comment.mako:194
9748 #: rhodecode/templates/changeset/changeset_file_comment.mako:259
9593 msgid "Leave a comment on {} commits in this range."
9749 msgid "Leave a comment on {} commits in this range."
9594 msgstr ""
9750 msgstr ""
9595
9751
9596 #: rhodecode/templates/changeset/changeset_file_comment.mako:196
9752 #: rhodecode/templates/changeset/changeset_file_comment.mako:261
9597 msgid "Leave a comment on this Commit."
9753 msgid "Leave a comment on this Commit."
9598 msgstr ""
9754 msgstr ""
9599
9755
9600 #: rhodecode/templates/changeset/changeset_file_comment.mako:283
9756 #: rhodecode/templates/changeset/changeset_file_comment.mako:348
9601 #: rhodecode/templates/codeblocks/diffs.mako:83
9757 #: rhodecode/templates/codeblocks/diffs.mako:83
9602 msgid "You need to be logged in to leave comments."
9758 msgid "You need to be logged in to leave comments."
9603 msgstr ""
9759 msgstr ""
9604
9760
9605 #: rhodecode/templates/changeset/changeset_file_comment.mako:284
9761 #: rhodecode/templates/changeset/changeset_file_comment.mako:349
9606 #: rhodecode/templates/codeblocks/diffs.mako:83
9762 #: rhodecode/templates/codeblocks/diffs.mako:83
9607 msgid "Login now"
9763 msgid "Login now"
9608 msgstr ""
9764 msgstr ""
9609
9765
9610 #: rhodecode/templates/changeset/changeset_file_comment.mako:331
9766 #: rhodecode/templates/changeset/changeset_file_comment.mako:396
9611 msgid "Mark as"
9767 msgid "Mark as"
9612 msgstr ""
9768 msgstr ""
9613
9769
9614 #: rhodecode/templates/changeset/changeset_file_comment.mako:354
9770 #: rhodecode/templates/changeset/changeset_file_comment.mako:419
9615 #: rhodecode/templates/files/files_upload.mako:86
9771 #: rhodecode/templates/files/files_upload.mako:86
9616 msgid "Drag'n Drop files here or"
9772 msgid "Drag'n Drop files here or"
9617 msgstr ""
9773 msgstr ""
9618
9774
9619 #: rhodecode/templates/changeset/changeset_file_comment.mako:354
9775 #: rhodecode/templates/changeset/changeset_file_comment.mako:419
9620 #: rhodecode/templates/files/files_upload.mako:86
9776 #: rhodecode/templates/files/files_upload.mako:86
9621 msgid "Choose your files"
9777 msgid "Choose your files"
9622 msgstr ""
9778 msgstr ""
9623
9779
9624 #: rhodecode/templates/changeset/changeset_file_comment.mako:357
9780 #: rhodecode/templates/changeset/changeset_file_comment.mako:422
9625 msgid "uploading..."
9781 msgid "uploading..."
9626 msgstr ""
9782 msgstr ""
9627
9783
9628 #: rhodecode/templates/changeset/changeset_file_comment.mako:388
9784 #: rhodecode/templates/changeset/changeset_file_comment.mako:453
9629 #: rhodecode/templates/compare/compare_diff.mako:108
9785 #: rhodecode/templates/compare/compare_diff.mako:108
9630 #: rhodecode/templates/compare/compare_diff.mako:116
9786 #: rhodecode/templates/compare/compare_diff.mako:116
9631 #: rhodecode/templates/compare/compare_diff.mako:124
9787 #: rhodecode/templates/compare/compare_diff.mako:124
@@ -9633,30 +9789,30 b' msgstr ""'
9633 msgid "Comment"
9789 msgid "Comment"
9634 msgstr ""
9790 msgstr ""
9635
9791
9636 #: rhodecode/templates/changeset/changeset_file_comment.mako:407
9792 #: rhodecode/templates/changeset/changeset_file_comment.mako:472
9637 #: rhodecode/templates/pullrequests/pullrequest_show.mako:39
9793 #: rhodecode/templates/pullrequests/pullrequest_show.mako:39
9638 #: rhodecode/templates/pullrequests/pullrequest_show.mako:103
9794 #: rhodecode/templates/pullrequests/pullrequest_show.mako:103
9639 #: rhodecode/templates/pullrequests/pullrequests.mako:31
9795 #: rhodecode/templates/pullrequests/pullrequests.mako:31
9640 msgid "Closed"
9796 msgid "Closed"
9641 msgstr ""
9797 msgstr ""
9642
9798
9643 #: rhodecode/templates/changeset/changeset_file_comment.mako:416
9799 #: rhodecode/templates/changeset/changeset_file_comment.mako:481
9644 msgid "Comments parsed using {} syntax."
9800 msgid "Comments parsed using {} syntax."
9645 msgstr ""
9801 msgstr ""
9646
9802
9647 #: rhodecode/templates/changeset/changeset_file_comment.mako:417
9803 #: rhodecode/templates/changeset/changeset_file_comment.mako:482
9648 msgid "Use @username inside this text to send notification to this RhodeCode user"
9804 msgid "Use @username inside this text to send notification to this RhodeCode user"
9649 msgstr ""
9805 msgstr ""
9650
9806
9651 #: rhodecode/templates/changeset/changeset_file_comment.mako:418
9807 #: rhodecode/templates/changeset/changeset_file_comment.mako:483
9652 msgid "and"
9808 msgid "and"
9653 msgstr ""
9809 msgstr ""
9654
9810
9655 #: rhodecode/templates/changeset/changeset_file_comment.mako:419
9811 #: rhodecode/templates/changeset/changeset_file_comment.mako:484
9656 msgid "Start typing with / for certain actions to be triggered via text box."
9812 msgid "Start typing with / for certain actions to be triggered via text box."
9657 msgstr ""
9813 msgstr ""
9658
9814
9659 #: rhodecode/templates/changeset/changeset_file_comment.mako:420
9815 #: rhodecode/templates/changeset/changeset_file_comment.mako:485
9660 msgid "actions supported."
9816 msgid "actions supported."
9661 msgstr ""
9817 msgstr ""
9662
9818
@@ -9690,7 +9846,7 b' msgstr ""'
9690 #: rhodecode/templates/changeset/diff_block.mako:25
9846 #: rhodecode/templates/changeset/diff_block.mako:25
9691 #: rhodecode/templates/changeset/diff_block.mako:46
9847 #: rhodecode/templates/changeset/diff_block.mako:46
9692 #: rhodecode/templates/codeblocks/diffs.mako:208
9848 #: rhodecode/templates/codeblocks/diffs.mako:208
9693 #: rhodecode/templates/codeblocks/diffs.mako:272
9849 #: rhodecode/templates/codeblocks/diffs.mako:283
9694 msgid "Showing a big diff might take some time and resources, continue?"
9850 msgid "Showing a big diff might take some time and resources, continue?"
9695 msgstr ""
9851 msgstr ""
9696
9852
@@ -9699,7 +9855,7 b' msgstr ""'
9699 #: rhodecode/templates/changeset/diff_block.mako:25
9855 #: rhodecode/templates/changeset/diff_block.mako:25
9700 #: rhodecode/templates/changeset/diff_block.mako:46
9856 #: rhodecode/templates/changeset/diff_block.mako:46
9701 #: rhodecode/templates/codeblocks/diffs.mako:208
9857 #: rhodecode/templates/codeblocks/diffs.mako:208
9702 #: rhodecode/templates/codeblocks/diffs.mako:272
9858 #: rhodecode/templates/codeblocks/diffs.mako:283
9703 msgid "Show full diff"
9859 msgid "Show full diff"
9704 msgstr ""
9860 msgstr ""
9705
9861
@@ -9761,124 +9917,124 b' msgstr ""'
9761 msgid "No files"
9917 msgid "No files"
9762 msgstr ""
9918 msgstr ""
9763
9919
9764 #: rhodecode/templates/codeblocks/diffs.mako:272
9920 #: rhodecode/templates/codeblocks/diffs.mako:283
9765 msgid "The requested commit or file is too big and content was truncated."
9921 msgid "The requested commit or file is too big and content was truncated."
9766 msgstr ""
9922 msgstr ""
9767
9923
9768 #: rhodecode/templates/codeblocks/diffs.mako:279
9924 #: rhodecode/templates/codeblocks/diffs.mako:290
9769 #, python-format
9925 #, python-format
9770 msgid "This diff has been collapsed as it changes many lines, (%i lines changed)"
9926 msgid "This diff has been collapsed as it changes many lines, (%i lines changed)"
9771 msgstr ""
9927 msgstr ""
9772
9928
9773 #: rhodecode/templates/codeblocks/diffs.mako:281
9929 #: rhodecode/templates/codeblocks/diffs.mako:292
9774 msgid "Show them"
9930 msgid "Show them"
9775 msgstr ""
9931 msgstr ""
9776
9932
9777 #: rhodecode/templates/codeblocks/diffs.mako:284
9933 #: rhodecode/templates/codeblocks/diffs.mako:295
9778 msgid "Hide them"
9934 msgid "Hide them"
9779 msgstr ""
9935 msgstr ""
9780
9936
9781 #: rhodecode/templates/codeblocks/diffs.mako:320
9937 #: rhodecode/templates/codeblocks/diffs.mako:332
9782 #: rhodecode/templates/codeblocks/diffs.mako:339
9938 #: rhodecode/templates/codeblocks/diffs.mako:351
9783 msgid "Unmatched/outdated inline comments below"
9939 msgid "Unmatched/outdated inline comments below"
9784 msgstr ""
9940 msgstr ""
9785
9941
9786 #: rhodecode/templates/codeblocks/diffs.mako:345
9942 #: rhodecode/templates/codeblocks/diffs.mako:357
9787 msgid "Unmatched/outdated comments below"
9943 msgid "Unmatched/outdated comments below"
9788 msgstr ""
9944 msgstr ""
9789
9945
9790 #: rhodecode/templates/codeblocks/diffs.mako:419
9946 #: rhodecode/templates/codeblocks/diffs.mako:431
9791 msgid "This file was removed from diff during updates to this pull-request."
9947 msgid "This file was removed from diff during updates to this pull-request."
9792 msgstr ""
9948 msgstr ""
9793
9949
9794 #: rhodecode/templates/codeblocks/diffs.mako:420
9950 #: rhodecode/templates/codeblocks/diffs.mako:432
9795 msgid "There are still outdated/unresolved comments attached to it."
9951 msgid "There are still outdated/unresolved comments attached to it."
9796 msgstr ""
9952 msgstr ""
9797
9953
9798 #: rhodecode/templates/codeblocks/diffs.mako:487
9954 #: rhodecode/templates/codeblocks/diffs.mako:499
9799 msgid "Copy file path"
9955 msgid "Copy file path"
9800 msgstr ""
9956 msgstr ""
9801
9957
9802 #: rhodecode/templates/codeblocks/diffs.mako:554
9958 #: rhodecode/templates/codeblocks/diffs.mako:566
9803 #: rhodecode/templates/codeblocks/diffs.mako:572
9959 #: rhodecode/templates/codeblocks/diffs.mako:584
9804 #, python-format
9960 #, python-format
9805 msgid "Show file at commit: %(commit_id)s"
9961 msgid "Show file at commit: %(commit_id)s"
9806 msgstr ""
9962 msgstr ""
9807
9963
9808 #: rhodecode/templates/codeblocks/diffs.mako:556
9964 #: rhodecode/templates/codeblocks/diffs.mako:568
9809 #: rhodecode/templates/codeblocks/diffs.mako:563
9965 #: rhodecode/templates/codeblocks/diffs.mako:575
9810 msgid "Show file before"
9966 msgid "Show file before"
9811 msgstr ""
9967 msgstr ""
9812
9968
9813 #: rhodecode/templates/codeblocks/diffs.mako:561
9969 #: rhodecode/templates/codeblocks/diffs.mako:573
9814 #: rhodecode/templates/codeblocks/diffs.mako:579
9970 #: rhodecode/templates/codeblocks/diffs.mako:591
9815 #, python-format
9971 #, python-format
9816 msgid "File not present at commit: %(commit_id)s"
9972 msgid "File not present at commit: %(commit_id)s"
9817 msgstr ""
9973 msgstr ""
9818
9974
9819 #: rhodecode/templates/codeblocks/diffs.mako:574
9975 #: rhodecode/templates/codeblocks/diffs.mako:586
9820 #: rhodecode/templates/codeblocks/diffs.mako:581
9976 #: rhodecode/templates/codeblocks/diffs.mako:593
9821 msgid "Show file after"
9977 msgid "Show file after"
9822 msgstr ""
9978 msgstr ""
9823
9979
9824 #: rhodecode/templates/codeblocks/diffs.mako:588
9980 #: rhodecode/templates/codeblocks/diffs.mako:600
9825 msgid "Show comments"
9981 msgid "Show comments"
9826 msgstr ""
9982 msgstr ""
9827
9983
9828 #: rhodecode/templates/codeblocks/diffs.mako:588
9984 #: rhodecode/templates/codeblocks/diffs.mako:600
9829 msgid "Hide comments"
9985 msgid "Hide comments"
9830 msgstr ""
9986 msgstr ""
9831
9987
9832 #: rhodecode/templates/codeblocks/diffs.mako:658
9988 #: rhodecode/templates/codeblocks/diffs.mako:691
9833 #: rhodecode/templates/codeblocks/diffs.mako:701
9989 #: rhodecode/templates/codeblocks/diffs.mako:734
9834 #: rhodecode/templates/codeblocks/diffs.mako:757
9990 #: rhodecode/templates/codeblocks/diffs.mako:796
9835 msgid "comments including outdated"
9991 msgid "comments including outdated: {}. Click here to display them."
9836 msgstr ""
9992 msgstr ""
9837
9993
9838 #: rhodecode/templates/codeblocks/diffs.mako:660
9994 #: rhodecode/templates/codeblocks/diffs.mako:693
9839 #: rhodecode/templates/codeblocks/diffs.mako:703
9995 #: rhodecode/templates/codeblocks/diffs.mako:736
9840 #: rhodecode/templates/codeblocks/diffs.mako:759
9996 #: rhodecode/templates/codeblocks/diffs.mako:798
9841 msgid "comments"
9997 msgid "comments: {}. Click to toggle them."
9842 msgstr ""
9998 msgstr ""
9843
9999
9844 #: rhodecode/templates/codeblocks/diffs.mako:828
10000 #: rhodecode/templates/codeblocks/diffs.mako:867
9845 msgid "Toggle wide diff"
10001 msgid "Toggle wide diff"
9846 msgstr ""
10002 msgstr ""
9847
10003
9848 #: rhodecode/templates/codeblocks/diffs.mako:836
10004 #: rhodecode/templates/codeblocks/diffs.mako:875
9849 msgid "View diff as side by side"
10005 msgid "View diff as side by side"
9850 msgstr ""
10006 msgstr ""
9851
10007
9852 #: rhodecode/templates/codeblocks/diffs.mako:838
10008 #: rhodecode/templates/codeblocks/diffs.mako:877
9853 msgid "Side by Side"
10009 msgid "Side by Side"
9854 msgstr ""
10010 msgstr ""
9855
10011
9856 #: rhodecode/templates/codeblocks/diffs.mako:843
10012 #: rhodecode/templates/codeblocks/diffs.mako:882
9857 msgid "View diff as unified"
10013 msgid "View diff as unified"
9858 msgstr ""
10014 msgstr ""
9859
10015
9860 #: rhodecode/templates/codeblocks/diffs.mako:844
10016 #: rhodecode/templates/codeblocks/diffs.mako:883
9861 msgid "Unified"
10017 msgid "Unified"
9862 msgstr ""
10018 msgstr ""
9863
10019
9864 #: rhodecode/templates/codeblocks/diffs.mako:849
10020 #: rhodecode/templates/codeblocks/diffs.mako:888
9865 msgid "Turn off: Show the diff as commit range"
10021 msgid "Turn off: Show the diff as commit range"
9866 msgstr ""
10022 msgstr ""
9867
10023
9868 #: rhodecode/templates/codeblocks/diffs.mako:852
10024 #: rhodecode/templates/codeblocks/diffs.mako:891
9869 #: rhodecode/templates/codeblocks/diffs.mako:859
10025 #: rhodecode/templates/codeblocks/diffs.mako:898
9870 msgid "Range Diff"
10026 msgid "Range Diff"
9871 msgstr ""
10027 msgstr ""
9872
10028
9873 #: rhodecode/templates/codeblocks/diffs.mako:856
10029 #: rhodecode/templates/codeblocks/diffs.mako:895
9874 msgid "Show the diff as commit range"
10030 msgid "Show the diff as commit range"
9875 msgstr ""
10031 msgstr ""
9876
10032
9877 #: rhodecode/templates/codeblocks/diffs.mako:900
10033 #: rhodecode/templates/codeblocks/diffs.mako:960
9878 msgid "Disabled on range diff"
10034 msgid "Disabled on range diff"
9879 msgstr ""
10035 msgstr ""
9880
10036
9881 #: rhodecode/templates/codeblocks/diffs.mako:1131
10037 #: rhodecode/templates/codeblocks/diffs.mako:1267
9882 msgid "..."
10038 msgid "..."
9883 msgstr ""
10039 msgstr ""
9884
10040
@@ -9984,7 +10140,7 b' msgstr ""'
9984
10140
9985 #: rhodecode/templates/commits/changelog_elements.mako:80
10141 #: rhodecode/templates/commits/changelog_elements.mako:80
9986 #: rhodecode/templates/compare/compare_commits.mako:46
10142 #: rhodecode/templates/compare/compare_commits.mako:46
9987 #: rhodecode/templates/pullrequests/pullrequest_show.mako:597
10143 #: rhodecode/templates/pullrequests/pullrequest_show.mako:595
9988 #: rhodecode/templates/search/search_commit.mako:34
10144 #: rhodecode/templates/search/search_commit.mako:34
9989 msgid "Expand commit message"
10145 msgid "Expand commit message"
9990 msgstr ""
10146 msgstr ""
@@ -10036,7 +10192,7 b' msgid "Compare was calculated based on t'
10036 msgstr ""
10192 msgstr ""
10037
10193
10038 #: rhodecode/templates/compare/compare_commits.mako:15
10194 #: rhodecode/templates/compare/compare_commits.mako:15
10039 #: rhodecode/templates/pullrequests/pullrequest_show.mako:558
10195 #: rhodecode/templates/pullrequests/pullrequest_show.mako:556
10040 msgid "Time"
10196 msgid "Time"
10041 msgstr ""
10197 msgstr ""
10042
10198
@@ -10066,7 +10222,7 b' msgid "Target"'
10066 msgstr ""
10222 msgstr ""
10067
10223
10068 #: rhodecode/templates/compare/compare_diff.mako:70
10224 #: rhodecode/templates/compare/compare_diff.mako:70
10069 #: rhodecode/templates/files/files_source.mako:100
10225 #: rhodecode/templates/files/files_source.mako:110
10070 msgid "Source"
10226 msgid "Source"
10071 msgstr ""
10227 msgstr ""
10072
10228
@@ -10093,6 +10249,11 b' msgstr ""'
10093 msgid "Compare commits, branches, bookmarks or tags."
10249 msgid "Compare commits, branches, bookmarks or tags."
10094 msgstr ""
10250 msgstr ""
10095
10251
10252 #: rhodecode/templates/compare/compare_diff.mako:139
10253 #: rhodecode/templates/email_templates/commit_comment.mako:57
10254 msgid "Commit status"
10255 msgstr ""
10256
10096 #: rhodecode/templates/data_table/_dt_elements.mako:73
10257 #: rhodecode/templates/data_table/_dt_elements.mako:73
10097 #: rhodecode/templates/data_table/_dt_elements.mako:74
10258 #: rhodecode/templates/data_table/_dt_elements.mako:74
10098 msgid "Fork"
10259 msgid "Fork"
@@ -10302,222 +10463,207 b' msgstr ""'
10302 msgid "Don't have an account ?"
10463 msgid "Don't have an account ?"
10303 msgstr ""
10464 msgstr ""
10304
10465
10305 #: rhodecode/templates/email_templates/base.mako:75
10466 #: rhodecode/templates/email_templates/base.mako:72
10306 #: rhodecode/templates/email_templates/base.mako:597
10467 #: rhodecode/templates/email_templates/base.mako:633
10307 msgid "This is a notification from RhodeCode."
10468 msgid "This is a notification from RhodeCode."
10308 msgstr ""
10469 msgstr ""
10309
10470
10310 #: rhodecode/templates/email_templates/base.mako:577
10471 #: rhodecode/templates/email_templates/base.mako:613
10311 msgid "RhodeCode"
10472 msgid "RhodeCode"
10312 msgstr ""
10473 msgstr ""
10313
10474
10314 #: rhodecode/templates/email_templates/commit_comment.mako:23
10475 #: rhodecode/templates/email_templates/commit_comment.mako:24
10315 #: rhodecode/templates/email_templates/commit_comment.mako:26
10476 msgid "{mention_prefix}{user} left a {comment_type} on file `{comment_file}` in commit `{commit_id}` in the `{repo_name}` repository"
10316 #: rhodecode/templates/email_templates/commit_comment.mako:28
10317 #: rhodecode/templates/email_templates/pull_request_comment.mako:24
10318 #: rhodecode/templates/email_templates/pull_request_comment.mako:27
10319 #: rhodecode/templates/email_templates/pull_request_comment.mako:29
10320 msgid "[mention]"
10321 msgstr ""
10322
10323 #: rhodecode/templates/email_templates/commit_comment.mako:23
10324 msgid "{user} left a {comment_type} on file `{comment_file}` in commit `{commit_id}`"
10325 msgstr ""
10326
10327 #: rhodecode/templates/email_templates/commit_comment.mako:23
10328 #: rhodecode/templates/email_templates/commit_comment.mako:26
10329 #: rhodecode/templates/email_templates/commit_comment.mako:28
10330 msgid "in the `{repo_name}` repository"
10331 msgstr ""
10332
10333 #: rhodecode/templates/email_templates/commit_comment.mako:26
10334 msgid "[status: {status}] {user} left a {comment_type} on commit `{commit_id}`"
10335 msgstr ""
10477 msgstr ""
10336
10478
10337 #: rhodecode/templates/email_templates/commit_comment.mako:28
10479 #: rhodecode/templates/email_templates/commit_comment.mako:28
10338 msgid "{user} left a {comment_type} on commit `{commit_id}`"
10480 msgid "{mention_prefix}[status: {status}] {user} left a {comment_type} on commit `{commit_id}` in the `{repo_name}` repository"
10339 msgstr ""
10481 msgstr ""
10340
10482
10341 #: rhodecode/templates/email_templates/commit_comment.mako:50
10483 #: rhodecode/templates/email_templates/commit_comment.mako:31
10342 #: rhodecode/templates/email_templates/pull_request_comment.mako:60
10484 msgid "{mention_prefix}{user} left a {comment_type} on commit `{commit_id}` in the `{repo_name}` repository"
10485 msgstr ""
10486
10487 #: rhodecode/templates/email_templates/commit_comment.mako:54
10488 #: rhodecode/templates/email_templates/pull_request_comment.mako:63
10343 msgid "Comment link"
10489 msgid "Comment link"
10344 msgstr ""
10490 msgstr ""
10345
10491
10346 #: rhodecode/templates/email_templates/commit_comment.mako:53
10492 #: rhodecode/templates/email_templates/commit_comment.mako:57
10347 #: rhodecode/templates/email_templates/commit_comment.mako:129
10493 #: rhodecode/templates/email_templates/commit_comment.mako:135
10348 msgid "Status was changed to"
10494 msgid "Status was changed to"
10349 msgstr ""
10495 msgstr ""
10350
10496
10351 #: rhodecode/templates/email_templates/commit_comment.mako:58
10497 #: rhodecode/templates/email_templates/commit_comment.mako:62
10352 #: rhodecode/templates/email_templates/commit_comment.mako:141
10498 #: rhodecode/templates/email_templates/commit_comment.mako:147
10353 #: rhodecode/templates/search/search_commit.mako:12
10499 #: rhodecode/templates/search/search_commit.mako:12
10354 #: rhodecode/templates/summary/summary_commits.mako:9
10500 #: rhodecode/templates/summary/summary_commits.mako:9
10355 msgid "Commit message"
10501 msgid "Commit message"
10356 msgstr ""
10502 msgstr ""
10357
10503
10358 #: rhodecode/templates/email_templates/commit_comment.mako:61
10504 #: rhodecode/templates/email_templates/commit_comment.mako:65
10359 #: rhodecode/templates/email_templates/pull_request_comment.mako:74
10505 #: rhodecode/templates/email_templates/pull_request_comment.mako:77
10360 msgid "File: {comment_file} on line {comment_line}"
10506 msgid "File: {comment_file} on line {comment_line}"
10361 msgstr ""
10507 msgstr ""
10362
10508
10363 #: rhodecode/templates/email_templates/commit_comment.mako:65
10509 #: rhodecode/templates/email_templates/commit_comment.mako:69
10364 #: rhodecode/templates/email_templates/commit_comment.mako:155
10510 #: rhodecode/templates/email_templates/commit_comment.mako:161
10365 #: rhodecode/templates/email_templates/pull_request_comment.mako:78
10511 #: rhodecode/templates/email_templates/pull_request_comment.mako:81
10366 #: rhodecode/templates/email_templates/pull_request_comment.mako:186
10512 #: rhodecode/templates/email_templates/pull_request_comment.mako:191
10367 msgid "`TODO` number"
10513 msgid "`TODO` number"
10368 msgstr ""
10514 msgstr ""
10369
10515
10370 #: rhodecode/templates/email_templates/commit_comment.mako:67
10516 #: rhodecode/templates/email_templates/commit_comment.mako:71
10371 #: rhodecode/templates/email_templates/commit_comment.mako:157
10517 #: rhodecode/templates/email_templates/commit_comment.mako:163
10372 #: rhodecode/templates/email_templates/pull_request_comment.mako:80
10518 #: rhodecode/templates/email_templates/pull_request_comment.mako:83
10373 #: rhodecode/templates/email_templates/pull_request_comment.mako:188
10519 #: rhodecode/templates/email_templates/pull_request_comment.mako:193
10374 msgid "`Note` number"
10520 msgid "`Note` number"
10375 msgstr ""
10521 msgstr ""
10376
10522
10377 #: rhodecode/templates/email_templates/commit_comment.mako:99
10378 #: rhodecode/templates/email_templates/pull_request_comment.mako:120
10379 msgid "left a"
10380 msgstr ""
10381
10382 #: rhodecode/templates/email_templates/commit_comment.mako:102
10383 msgid "{comment_type} on file `{comment_file}` in commit."
10384 msgstr ""
10385
10386 #: rhodecode/templates/email_templates/commit_comment.mako:104
10523 #: rhodecode/templates/email_templates/commit_comment.mako:104
10387 msgid "{comment_type} on commit."
10524 #: rhodecode/templates/email_templates/pull_request_comment.mako:124
10525 msgid "left a"
10526 msgstr ""
10527
10528 #: rhodecode/templates/email_templates/commit_comment.mako:107
10529 msgid "{comment_type} on file `{comment_file}` in commit."
10388 msgstr ""
10530 msgstr ""
10389
10531
10390 #: rhodecode/templates/email_templates/commit_comment.mako:109
10532 #: rhodecode/templates/email_templates/commit_comment.mako:109
10533 msgid "{comment_type} on commit."
10534 msgstr ""
10535
10536 #: rhodecode/templates/email_templates/commit_comment.mako:114
10391 msgid "of repository"
10537 msgid "of repository"
10392 msgstr ""
10538 msgstr ""
10393
10539
10394 #: rhodecode/templates/email_templates/commit_comment.mako:127
10540 #: rhodecode/templates/email_templates/commit_comment.mako:133
10395 msgid "Commit Status"
10541 msgid "Commit Status"
10396 msgstr ""
10542 msgstr ""
10397
10543
10398 #: rhodecode/templates/email_templates/commit_comment.mako:147
10544 #: rhodecode/templates/email_templates/commit_comment.mako:153
10399 #: rhodecode/templates/email_templates/pull_request_comment.mako:178
10545 #: rhodecode/templates/email_templates/pull_request_comment.mako:183
10400 #: rhodecode/templates/search/search_path.mako:9
10546 #: rhodecode/templates/search/search_path.mako:9
10401 msgid "File"
10547 msgid "File"
10402 msgstr ""
10548 msgstr ""
10403
10549
10404 #: rhodecode/templates/email_templates/commit_comment.mako:148
10550 #: rhodecode/templates/email_templates/commit_comment.mako:154
10405 #: rhodecode/templates/email_templates/pull_request_comment.mako:179
10551 #: rhodecode/templates/email_templates/pull_request_comment.mako:184
10406 msgid "`{comment_file}` on line {comment_line}"
10552 msgid "`{comment_file}` on line {comment_line}"
10407 msgstr ""
10553 msgstr ""
10408
10554
10409 #: rhodecode/templates/email_templates/commit_comment.mako:167
10555 #: rhodecode/templates/email_templates/commit_comment.mako:173
10410 #: rhodecode/templates/email_templates/pull_request_comment.mako:198
10556 #: rhodecode/templates/email_templates/pull_request_comment.mako:203
10411 msgid "Reply"
10557 msgid "Reply"
10412 msgstr ""
10558 msgstr ""
10413
10559
10414 #: rhodecode/templates/email_templates/pull_request_comment.mako:24
10560 #: rhodecode/templates/email_templates/pull_request_comment.mako:24
10415 msgid "{user} left a {comment_type} on file `{comment_file}` in pull request !{pr_id}: \"{pr_title}\""
10561 msgid "{mention_prefix}{user} left a {comment_type} on file `{comment_file}` in pull request !{pr_id}: \"{pr_title}\""
10416 msgstr ""
10562 msgstr ""
10417
10563
10418 #: rhodecode/templates/email_templates/pull_request_comment.mako:27
10564 #: rhodecode/templates/email_templates/pull_request_comment.mako:28
10419 msgid "[status: {status}] {user} left a {comment_type} on pull request !{pr_id}: \"{pr_title}\""
10565 msgid "{mention_prefix}[status: {status}] {user} left a {comment_type} on pull request !{pr_id}: \"{pr_title}\""
10420 msgstr ""
10566 msgstr ""
10421
10567
10422 #: rhodecode/templates/email_templates/pull_request_comment.mako:29
10568 #: rhodecode/templates/email_templates/pull_request_comment.mako:31
10423 msgid "{user} left a {comment_type} on pull request !{pr_id}: \"{pr_title}\""
10569 msgid "{mention_prefix}{user} left a {comment_type} on pull request !{pr_id}: \"{pr_title}\""
10424 msgstr ""
10570 msgstr ""
10425
10571
10426 #: rhodecode/templates/email_templates/pull_request_comment.mako:62
10572 #: rhodecode/templates/email_templates/pull_request_comment.mako:65
10427 #: rhodecode/templates/hovercards/hovercard_pull_request.mako:24
10573 #: rhodecode/templates/hovercards/hovercard_pull_request.mako:24
10428 msgid "Pull Request"
10574 msgid "Pull Request"
10429 msgstr ""
10575 msgstr ""
10430
10576
10431 #: rhodecode/templates/email_templates/pull_request_comment.mako:64
10432 #: rhodecode/templates/email_templates/pull_request_review.mako:39
10433 #: rhodecode/templates/email_templates/pull_request_update.mako:39
10434 msgid "Commit flow: {source_ref_type}:{source_ref_name} of {source_repo_url} into {target_ref_type}:{target_ref_name} of {target_repo_url}"
10435 msgstr ""
10436
10437 #: rhodecode/templates/email_templates/pull_request_comment.mako:67
10577 #: rhodecode/templates/email_templates/pull_request_comment.mako:67
10438 msgid "{user} submitted pull request !{pr_id} status: *{status}*"
10578 #: rhodecode/templates/email_templates/pull_request_review.mako:41
10579 #: rhodecode/templates/email_templates/pull_request_update.mako:41
10580 msgid "Commit flow: {source_ref_type}:{source_ref_name} of {source_repo_url} into {target_ref_type}:{target_ref_name} of {target_repo_url}"
10439 msgstr ""
10581 msgstr ""
10440
10582
10441 #: rhodecode/templates/email_templates/pull_request_comment.mako:70
10583 #: rhodecode/templates/email_templates/pull_request_comment.mako:70
10584 msgid "{user} submitted pull request !{pr_id} status: *{status}*"
10585 msgstr ""
10586
10587 #: rhodecode/templates/email_templates/pull_request_comment.mako:73
10442 msgid "{user} submitted pull request !{pr_id} status: *{status} and closed*"
10588 msgid "{user} submitted pull request !{pr_id} status: *{status} and closed*"
10443 msgstr ""
10589 msgstr ""
10444
10590
10445 #: rhodecode/templates/email_templates/pull_request_comment.mako:123
10591 #: rhodecode/templates/email_templates/pull_request_comment.mako:127
10446 msgid "{comment_type} on file `{comment_file}` in pull request."
10592 msgid "{comment_type} on file `{comment_file}` in pull request."
10447 msgstr ""
10593 msgstr ""
10448
10594
10449 #: rhodecode/templates/email_templates/pull_request_comment.mako:125
10595 #: rhodecode/templates/email_templates/pull_request_comment.mako:129
10450 msgid "{comment_type} on pull request."
10596 msgid "{comment_type} on pull request."
10451 msgstr ""
10597 msgstr ""
10452
10598
10453 #: rhodecode/templates/email_templates/pull_request_comment.mako:130
10599 #: rhodecode/templates/email_templates/pull_request_comment.mako:134
10454 #: rhodecode/templates/email_templates/pull_request_comment.mako:159
10600 #: rhodecode/templates/email_templates/pull_request_comment.mako:164
10455 #: rhodecode/templates/email_templates/pull_request_review.mako:89
10601 #: rhodecode/templates/email_templates/pull_request_review.mako:91
10456 #: rhodecode/templates/email_templates/pull_request_review.mako:105
10602 #: rhodecode/templates/email_templates/pull_request_review.mako:108
10457 #: rhodecode/templates/email_templates/pull_request_update.mako:101
10603 #: rhodecode/templates/email_templates/pull_request_update.mako:104
10458 #: rhodecode/templates/email_templates/pull_request_update.mako:117
10604 #: rhodecode/templates/email_templates/pull_request_update.mako:121
10459 msgid "Pull request"
10605 msgid "Pull request"
10460 msgstr ""
10606 msgstr ""
10461
10607
10462 #: rhodecode/templates/email_templates/pull_request_comment.mako:148
10463 msgid "Review Status"
10464 msgstr ""
10465
10466 #: rhodecode/templates/email_templates/pull_request_comment.mako:151
10467 msgid "Closed pull request with status"
10468 msgstr ""
10469
10470 #: rhodecode/templates/email_templates/pull_request_comment.mako:153
10608 #: rhodecode/templates/email_templates/pull_request_comment.mako:153
10609 msgid "Review Status"
10610 msgstr ""
10611
10612 #: rhodecode/templates/email_templates/pull_request_comment.mako:156
10613 msgid "Closed pull request with status"
10614 msgstr ""
10615
10616 #: rhodecode/templates/email_templates/pull_request_comment.mako:158
10471 msgid "Submitted review status"
10617 msgid "Submitted review status"
10472 msgstr ""
10618 msgstr ""
10473
10619
10474 #: rhodecode/templates/email_templates/pull_request_comment.mako:168
10620 #: rhodecode/templates/email_templates/pull_request_comment.mako:173
10475 #: rhodecode/templates/email_templates/pull_request_review.mako:114
10621 #: rhodecode/templates/email_templates/pull_request_review.mako:117
10476 #: rhodecode/templates/email_templates/pull_request_update.mako:126
10622 #: rhodecode/templates/email_templates/pull_request_update.mako:130
10477 msgid "Commit Flow"
10623 msgid "Commit Flow"
10478 msgstr ""
10624 msgstr ""
10479
10625
10480 #: rhodecode/templates/email_templates/pull_request_comment.mako:170
10626 #: rhodecode/templates/email_templates/pull_request_comment.mako:175
10481 #: rhodecode/templates/email_templates/pull_request_comment.mako:172
10627 #: rhodecode/templates/email_templates/pull_request_comment.mako:177
10482 #: rhodecode/templates/email_templates/pull_request_review.mako:116
10628 #: rhodecode/templates/email_templates/pull_request_review.mako:119
10483 #: rhodecode/templates/email_templates/pull_request_review.mako:118
10629 #: rhodecode/templates/email_templates/pull_request_review.mako:121
10484 #: rhodecode/templates/email_templates/pull_request_update.mako:128
10630 #: rhodecode/templates/email_templates/pull_request_update.mako:132
10485 #: rhodecode/templates/email_templates/pull_request_update.mako:130
10631 #: rhodecode/templates/email_templates/pull_request_update.mako:134
10486 #: rhodecode/templates/pullrequests/pullrequest_show.mako:128
10632 #: rhodecode/templates/pullrequests/pullrequest_show.mako:128
10487 #: rhodecode/templates/pullrequests/pullrequest_show.mako:137
10633 #: rhodecode/templates/pullrequests/pullrequest_show.mako:137
10488 msgid "of"
10634 msgid "of"
10489 msgstr ""
10635 msgstr ""
10490
10636
10491 #: rhodecode/templates/email_templates/pull_request_review.mako:15
10637 #: rhodecode/templates/email_templates/pull_request_review.mako:14
10492 msgid "{user} requested a pull request review. !{pr_id}: \"{pr_title}\""
10638 msgid "{user} requested a pull request review. !{pr_id}: \"{pr_title}\""
10493 msgstr ""
10639 msgstr ""
10494
10640
10495 #: rhodecode/templates/email_templates/pull_request_review.mako:37
10641 #: rhodecode/templates/email_templates/pull_request_review.mako:39
10496 #: rhodecode/templates/email_templates/pull_request_update.mako:37
10642 #: rhodecode/templates/email_templates/pull_request_update.mako:39
10497 msgid "Pull Request link"
10643 msgid "Pull Request link"
10498 msgstr ""
10644 msgstr ""
10499
10645
10500 #: rhodecode/templates/email_templates/pull_request_review.mako:83
10501 msgid "requested a"
10502 msgstr ""
10503
10504 #: rhodecode/templates/email_templates/pull_request_review.mako:85
10646 #: rhodecode/templates/email_templates/pull_request_review.mako:85
10647 msgid "requested a"
10648 msgstr ""
10649
10650 #: rhodecode/templates/email_templates/pull_request_review.mako:87
10505 msgid "pull request review."
10651 msgid "pull request review."
10506 msgstr ""
10652 msgstr ""
10507
10653
10508 #: rhodecode/templates/email_templates/pull_request_update.mako:15
10654 #: rhodecode/templates/email_templates/pull_request_update.mako:14
10509 msgid "{updating_user} updated pull request. !{pr_id}: \"{pr_title}\""
10655 msgid "{updating_user} updated pull request. !{pr_id}: \"{pr_title}\""
10510 msgstr ""
10656 msgstr ""
10511
10657
10512 #: rhodecode/templates/email_templates/pull_request_update.mako:95
10658 #: rhodecode/templates/email_templates/pull_request_update.mako:98
10513 msgid "updated"
10659 msgid "updated"
10514 msgstr ""
10660 msgstr ""
10515
10661
10516 #: rhodecode/templates/email_templates/pull_request_update.mako:97
10662 #: rhodecode/templates/email_templates/pull_request_update.mako:100
10517 msgid "pull request."
10663 msgid "pull request."
10518 msgstr ""
10664 msgstr ""
10519
10665
10520 #: rhodecode/templates/email_templates/pull_request_update.mako:139
10666 #: rhodecode/templates/email_templates/pull_request_update.mako:143
10521 msgid "Changes"
10667 msgid "Changes"
10522 msgstr ""
10668 msgstr ""
10523
10669
@@ -10525,7 +10671,7 b' msgstr ""'
10525 msgid "hello \"world\""
10671 msgid "hello \"world\""
10526 msgstr ""
10672 msgstr ""
10527
10673
10528 #: rhodecode/templates/email_templates/test.mako:22
10674 #: rhodecode/templates/email_templates/test.mako:18
10529 msgid "Translation String"
10675 msgid "Translation String"
10530 msgstr ""
10676 msgstr ""
10531
10677
@@ -10533,7 +10679,7 b' msgstr ""'
10533 msgid "New user {user} has registered on {date}"
10679 msgid "New user {user} has registered on {date}"
10534 msgstr ""
10680 msgstr ""
10535
10681
10536 #: rhodecode/templates/email_templates/user_registration.mako:46
10682 #: rhodecode/templates/email_templates/user_registration.mako:47
10537 msgid "Full Name"
10683 msgid "Full Name"
10538 msgstr ""
10684 msgstr ""
10539
10685
@@ -10576,24 +10722,24 b' msgstr ""'
10576 msgid "Add new file"
10722 msgid "Add new file"
10577 msgstr ""
10723 msgstr ""
10578
10724
10579 #: rhodecode/templates/files/files_add.mako:44
10725 #: rhodecode/templates/files/files_add.mako:43
10580 #: rhodecode/templates/files/files_edit.mako:45
10726 #: rhodecode/templates/files/files_edit.mako:44
10581 msgid "Filename e.g example.py, or docs/readme.md"
10727 msgid "Filename e.g example.py, or docs/readme.md"
10582 msgstr ""
10728 msgstr ""
10583
10729
10584 #: rhodecode/templates/files/files_add.mako:64
10730 #: rhodecode/templates/files/files_add.mako:63
10585 #: rhodecode/templates/files/files_edit.mako:66
10731 #: rhodecode/templates/files/files_edit.mako:65
10586 msgid "Line wraps on"
10732 msgid "Line wraps on"
10587 msgstr ""
10733 msgstr ""
10588
10734
10589 #: rhodecode/templates/files/files_add.mako:64
10735 #: rhodecode/templates/files/files_add.mako:63
10590 #: rhodecode/templates/files/files_edit.mako:66
10736 #: rhodecode/templates/files/files_edit.mako:65
10591 msgid "line wraps off"
10737 msgid "line wraps off"
10592 msgstr ""
10738 msgstr ""
10593
10739
10594 #: rhodecode/templates/files/files_add.mako:87
10740 #: rhodecode/templates/files/files_add.mako:86
10595 #: rhodecode/templates/files/files_delete.mako:72
10741 #: rhodecode/templates/files/files_delete.mako:71
10596 #: rhodecode/templates/files/files_edit.mako:89
10742 #: rhodecode/templates/files/files_edit.mako:88
10597 #: rhodecode/templates/files/files_upload.mako:102
10743 #: rhodecode/templates/files/files_upload.mako:102
10598 msgid "Commit changes"
10744 msgid "Commit changes"
10599 msgstr ""
10745 msgstr ""
@@ -10606,38 +10752,42 b' msgstr ""'
10606 msgid "Next commit"
10752 msgid "Next commit"
10607 msgstr ""
10753 msgstr ""
10608
10754
10609 #: rhodecode/templates/files/files_browser.mako:22
10755 #: rhodecode/templates/files/files_browser.mako:24
10610 msgid "Upload File"
10611 msgstr ""
10612
10613 #: rhodecode/templates/files/files_browser.mako:25
10614 msgid "Add File"
10756 msgid "Add File"
10615 msgstr ""
10757 msgstr ""
10616
10758
10617 #: rhodecode/templates/files/files_browser.mako:35
10759 #: rhodecode/templates/files/files_browser.mako:27
10760 msgid "more options"
10761 msgstr ""
10762
10763 #: rhodecode/templates/files/files_browser.mako:36
10764 msgid "Upload File"
10765 msgstr ""
10766
10767 #: rhodecode/templates/files/files_browser.mako:51
10618 msgid "Download full tree ZIP"
10768 msgid "Download full tree ZIP"
10619 msgstr ""
10769 msgstr ""
10620
10770
10621 #: rhodecode/templates/files/files_browser.mako:39
10771 #: rhodecode/templates/files/files_browser.mako:55
10622 msgid "Download this tree ZIP"
10772 msgid "Download this tree ZIP"
10623 msgstr ""
10773 msgstr ""
10624
10774
10625 #: rhodecode/templates/files/files_browser.mako:67
10775 #: rhodecode/templates/files/files_browser.mako:83
10626 #: rhodecode/templates/summary/summary.mako:37
10776 #: rhodecode/templates/summary/summary.mako:37
10627 #, python-format
10777 #, python-format
10628 msgid "Readme file from commit %s:%s"
10778 msgid "Readme file from commit %s:%s"
10629 msgstr ""
10779 msgstr ""
10630
10780
10631 #: rhodecode/templates/files/files_browser_tree.mako:14
10781 #: rhodecode/templates/files/files_browser_tree.mako:17
10632 #: rhodecode/templates/search/search_path.mako:12
10782 #: rhodecode/templates/search/search_path.mako:12
10633 msgid "Size"
10783 msgid "Size"
10634 msgstr ""
10784 msgstr ""
10635
10785
10636 #: rhodecode/templates/files/files_browser_tree.mako:15
10786 #: rhodecode/templates/files/files_browser_tree.mako:18
10637 msgid "Modified"
10787 msgid "Modified"
10638 msgstr ""
10788 msgstr ""
10639
10789
10640 #: rhodecode/templates/files/files_browser_tree.mako:16
10790 #: rhodecode/templates/files/files_browser_tree.mako:19
10641 msgid "Last Commit"
10791 msgid "Last Commit"
10642 msgstr ""
10792 msgstr ""
10643
10793
@@ -10649,13 +10799,13 b' msgstr ""'
10649 msgid "Delete file"
10799 msgid "Delete file"
10650 msgstr ""
10800 msgstr ""
10651
10801
10652 #: rhodecode/templates/files/files_delete.mako:53
10802 #: rhodecode/templates/files/files_delete.mako:52
10653 #, python-format
10803 #, python-format
10654 msgid "Binary file (%s)"
10804 msgid "Binary file (%s)"
10655 msgstr ""
10805 msgstr ""
10656
10806
10657 #: rhodecode/templates/files/files_delete.mako:58
10807 #: rhodecode/templates/files/files_delete.mako:57
10658 #: rhodecode/templates/files/files_source.mako:128
10808 #: rhodecode/templates/files/files_source.mako:138
10659 msgid "File size {} is bigger then allowed limit {}. "
10809 msgid "File size {} is bigger then allowed limit {}. "
10660 msgstr ""
10810 msgstr ""
10661
10811
@@ -10667,59 +10817,59 b' msgstr ""'
10667 msgid "Edit file"
10817 msgid "Edit file"
10668 msgstr ""
10818 msgstr ""
10669
10819
10670 #: rhodecode/templates/files/files_source.mako:16
10820 #: rhodecode/templates/files/files_source.mako:26
10671 msgid "Download largefile"
10821 msgid "Download largefile"
10672 msgstr ""
10822 msgstr ""
10673
10823
10674 #: rhodecode/templates/files/files_source.mako:20
10824 #: rhodecode/templates/files/files_source.mako:30
10675 msgid "Download file"
10825 msgid "Download file"
10676 msgstr ""
10826 msgstr ""
10677
10827
10678 #: rhodecode/templates/files/files_source.mako:29
10828 #: rhodecode/templates/files/files_source.mako:39
10679 msgid "Editing binary files not allowed"
10829 msgid "Editing binary files not allowed"
10680 msgstr ""
10830 msgstr ""
10681
10831
10682 #: rhodecode/templates/files/files_source.mako:33
10683 msgid "Edit on branch: "
10684 msgstr ""
10685
10686 #: rhodecode/templates/files/files_source.mako:42
10687 msgid "Editing files allowed only when on branch head commit"
10688 msgstr ""
10689
10690 #: rhodecode/templates/files/files_source.mako:43
10832 #: rhodecode/templates/files/files_source.mako:43
10833 msgid "Edit on branch: "
10834 msgstr ""
10835
10836 #: rhodecode/templates/files/files_source.mako:52
10837 msgid "Editing files allowed only when on branch head commit"
10838 msgstr ""
10839
10840 #: rhodecode/templates/files/files_source.mako:53
10691 msgid "Deleting files allowed only when on branch head commit"
10841 msgid "Deleting files allowed only when on branch head commit"
10692 msgstr ""
10842 msgstr ""
10693
10843
10694 #: rhodecode/templates/files/files_source.mako:65
10844 #: rhodecode/templates/files/files_source.mako:75
10695 msgid "lines"
10845 msgid "lines"
10696 msgstr ""
10846 msgstr ""
10697
10847
10698 #: rhodecode/templates/files/files_source.mako:73
10848 #: rhodecode/templates/files/files_source.mako:83
10699 msgid "This file is a pointer to large binary file"
10849 msgid "This file is a pointer to large binary file"
10700 msgstr ""
10850 msgstr ""
10701
10851
10702 #: rhodecode/templates/files/files_source.mako:73
10852 #: rhodecode/templates/files/files_source.mako:83
10703 msgid "LargeFile"
10853 msgid "LargeFile"
10704 msgstr ""
10854 msgstr ""
10705
10855
10706 #: rhodecode/templates/files/files_source.mako:96
10856 #: rhodecode/templates/files/files_source.mako:106
10707 msgid "History"
10857 msgid "History"
10708 msgstr ""
10858 msgstr ""
10709
10859
10710 #: rhodecode/templates/files/files_source.mako:102
10860 #: rhodecode/templates/files/files_source.mako:112
10711 msgid "Annotation"
10861 msgid "Annotation"
10712 msgstr ""
10862 msgstr ""
10713
10863
10714 #: rhodecode/templates/files/files_source.mako:104
10864 #: rhodecode/templates/files/files_source.mako:114
10715 msgid "Raw"
10865 msgid "Raw"
10716 msgstr ""
10866 msgstr ""
10717
10867
10718 #: rhodecode/templates/files/files_source.mako:107
10868 #: rhodecode/templates/files/files_source.mako:117
10719 msgid "Copy permalink"
10869 msgid "Copy permalink"
10720 msgstr ""
10870 msgstr ""
10721
10871
10722 #: rhodecode/templates/files/files_source.mako:123
10872 #: rhodecode/templates/files/files_source.mako:133
10723 msgid "Binary file ({})"
10873 msgid "Binary file ({})"
10724 msgstr ""
10874 msgstr ""
10725
10875
@@ -10761,6 +10911,11 b' msgstr ""'
10761 msgid "Fork name"
10911 msgid "Fork name"
10762 msgstr ""
10912 msgstr ""
10763
10913
10914 #: rhodecode/templates/forks/fork.mako:47
10915 #, python-format
10916 msgid "Select my personal group (%(repo_group_name)s)"
10917 msgstr ""
10918
10764 #: rhodecode/templates/forks/fork.mako:78
10919 #: rhodecode/templates/forks/fork.mako:78
10765 msgid "Copy permissions"
10920 msgid "Copy permissions"
10766 msgstr ""
10921 msgstr ""
@@ -11049,68 +11204,68 b' msgid "Please update this pull request, '
11049 msgstr ""
11204 msgstr ""
11050
11205
11051 #: rhodecode/templates/pullrequests/pullrequest_show.mako:470
11206 #: rhodecode/templates/pullrequests/pullrequest_show.mako:470
11052 msgid "Consider doing a {force_refresh_url} in case you think this is an error."
11207 msgid "Consider doing a `force update commits` in case you think this is an error."
11053 msgstr ""
11208 msgstr ""
11054
11209
11055 #: rhodecode/templates/pullrequests/pullrequest_show.mako:479
11210 #: rhodecode/templates/pullrequests/pullrequest_show.mako:478
11056 msgid "There are new changes for {}:{} in source repository, please consider updating this pull request."
11211 msgid "There are new changes for `{}:{}` in source repository, please consider updating this pull request."
11057 msgstr ""
11212 msgstr ""
11058
11213
11059 #: rhodecode/templates/pullrequests/pullrequest_show.mako:491
11214 #: rhodecode/templates/pullrequests/pullrequest_show.mako:489
11060 #, python-format
11215 #, python-format
11061 msgid "Showing changes at v%d, commenting is disabled."
11216 msgid "Showing changes at v%d, commenting is disabled."
11062 msgstr ""
11217 msgstr ""
11063
11218
11064 #: rhodecode/templates/pullrequests/pullrequest_show.mako:514
11219 #: rhodecode/templates/pullrequests/pullrequest_show.mako:512
11065 #: rhodecode/templates/pullrequests/pullrequest_show.mako:536
11220 #: rhodecode/templates/pullrequests/pullrequest_show.mako:534
11066 msgid "Update commits"
11221 msgid "Update commits"
11067 msgstr ""
11222 msgstr ""
11068
11223
11069 #: rhodecode/templates/pullrequests/pullrequest_show.mako:517
11224 #: rhodecode/templates/pullrequests/pullrequest_show.mako:515
11070 msgid "more update options"
11225 msgid "more update options"
11071 msgstr ""
11226 msgstr ""
11072
11227
11073 #: rhodecode/templates/pullrequests/pullrequest_show.mako:525
11228 #: rhodecode/templates/pullrequests/pullrequest_show.mako:523
11074 msgid "Force update commits"
11229 msgid "Force update commits"
11075 msgstr ""
11230 msgstr ""
11076
11231
11077 #: rhodecode/templates/pullrequests/pullrequest_show.mako:528
11232 #: rhodecode/templates/pullrequests/pullrequest_show.mako:526
11078 msgid "Update commits and force refresh this pull request."
11233 msgid "Update commits and force refresh this pull request."
11079 msgstr ""
11234 msgstr ""
11080
11235
11081 #: rhodecode/templates/pullrequests/pullrequest_show.mako:536
11236 #: rhodecode/templates/pullrequests/pullrequest_show.mako:534
11082 msgid "Update is disabled for current view"
11237 msgid "Update is disabled for current view"
11083 msgstr ""
11238 msgstr ""
11084
11239
11085 #: rhodecode/templates/pullrequests/pullrequest_show.mako:547
11240 #: rhodecode/templates/pullrequests/pullrequest_show.mako:545
11086 msgid "Commits and changes between v{ver_from} and {ver_to} of this pull request, commenting is disabled"
11241 msgid "Commits and changes between v{ver_from} and {ver_to} of this pull request, commenting is disabled"
11087 msgstr ""
11242 msgstr ""
11088
11243
11089 #: rhodecode/templates/pullrequests/pullrequest_show.mako:551
11244 #: rhodecode/templates/pullrequests/pullrequest_show.mako:549
11090 msgid "commits added: {}, removed: {}"
11245 msgid "commits added: {}, removed: {}"
11091 msgstr ""
11246 msgstr ""
11092
11247
11248 #: rhodecode/templates/pullrequests/pullrequest_show.mako:567
11249 msgid "Commit added in displayed changes"
11250 msgstr ""
11251
11093 #: rhodecode/templates/pullrequests/pullrequest_show.mako:569
11252 #: rhodecode/templates/pullrequests/pullrequest_show.mako:569
11094 msgid "Commit added in displayed changes"
11095 msgstr ""
11096
11097 #: rhodecode/templates/pullrequests/pullrequest_show.mako:571
11098 msgid "Commit removed in displayed changes"
11253 msgid "Commit removed in displayed changes"
11099 msgstr ""
11254 msgstr ""
11100
11255
11256 #: rhodecode/templates/pullrequests/pullrequest_show.mako:678
11257 msgid "there is {num} general comment from older versions"
11258 msgstr ""
11259
11101 #: rhodecode/templates/pullrequests/pullrequest_show.mako:679
11260 #: rhodecode/templates/pullrequests/pullrequest_show.mako:679
11102 msgid "there is {num} general comment from older versions"
11103 msgstr ""
11104
11105 #: rhodecode/templates/pullrequests/pullrequest_show.mako:680
11106 msgid "show it"
11261 msgid "show it"
11107 msgstr ""
11262 msgstr ""
11108
11263
11264 #: rhodecode/templates/pullrequests/pullrequest_show.mako:681
11265 msgid "there are {num} general comments from older versions"
11266 msgstr ""
11267
11109 #: rhodecode/templates/pullrequests/pullrequest_show.mako:682
11268 #: rhodecode/templates/pullrequests/pullrequest_show.mako:682
11110 msgid "there are {num} general comments from older versions"
11111 msgstr ""
11112
11113 #: rhodecode/templates/pullrequests/pullrequest_show.mako:683
11114 msgid "show them"
11269 msgid "show them"
11115 msgstr ""
11270 msgstr ""
11116
11271
@@ -11239,19 +11394,23 b' msgstr ""'
11239 msgid "Downloads are disabled for this repository"
11394 msgid "Downloads are disabled for this repository"
11240 msgstr ""
11395 msgstr ""
11241
11396
11242 #: rhodecode/templates/summary/components.mako:203
11397 #: rhodecode/templates/summary/components.mako:196
11398 msgid "more download options"
11399 msgstr ""
11400
11401 #: rhodecode/templates/summary/components.mako:228
11243 msgid "Repository size"
11402 msgid "Repository size"
11244 msgstr ""
11403 msgstr ""
11245
11404
11246 #: rhodecode/templates/summary/components.mako:215
11405 #: rhodecode/templates/summary/components.mako:240
11247 msgid "Calculating Repository Size..."
11406 msgid "Calculating Repository Size..."
11248 msgstr ""
11407 msgstr ""
11249
11408
11250 #: rhodecode/templates/summary/components.mako:226
11409 #: rhodecode/templates/summary/components.mako:251
11251 msgid "Code Statistics"
11410 msgid "Code Statistics"
11252 msgstr ""
11411 msgstr ""
11253
11412
11254 #: rhodecode/templates/summary/components.mako:235
11413 #: rhodecode/templates/summary/components.mako:260
11255 msgid "Statistics are disabled for this repository"
11414 msgid "Statistics are disabled for this repository"
11256 msgstr ""
11415 msgstr ""
11257
11416
@@ -644,7 +644,7 b' def load_rcextensions(root_path):'
644 rcextensions = None
644 rcextensions = None
645
645
646 if rcextensions:
646 if rcextensions:
647 log.debug('Found rcextensions module loaded %s...', rcextensions)
647 log.info('Loaded rcextensions from %s...', rcextensions)
648 rhodecode.EXTENSIONS = rcextensions
648 rhodecode.EXTENSIONS = rcextensions
649
649
650 # Additional mappings that are not present in the pygments lexers
650 # Additional mappings that are not present in the pygments lexers
@@ -587,51 +587,17 b' def cleaned_uri(uri):'
587 return urllib.quote(uri, safe='@$:/')
587 return urllib.quote(uri, safe='@$:/')
588
588
589
589
590 def uri_filter(uri):
591 """
592 Removes user:password from given url string
593
594 :param uri:
595 :rtype: unicode
596 :returns: filtered list of strings
597 """
598 if not uri:
599 return ''
600
601 proto = ''
602
603 for pat in ('https://', 'http://'):
604 if uri.startswith(pat):
605 uri = uri[len(pat):]
606 proto = pat
607 break
608
609 # remove passwords and username
610 uri = uri[uri.find('@') + 1:]
611
612 # get the port
613 cred_pos = uri.find(':')
614 if cred_pos == -1:
615 host, port = uri, None
616 else:
617 host, port = uri[:cred_pos], uri[cred_pos + 1:]
618
619 return filter(None, [proto, host, port])
620
621
622 def credentials_filter(uri):
590 def credentials_filter(uri):
623 """
591 """
624 Returns a url with removed credentials
592 Returns a url with removed credentials
625
593
626 :param uri:
594 :param uri:
627 """
595 """
596 import urlobject
597 url_obj = urlobject.URLObject(cleaned_uri(uri))
598 url_obj = url_obj.without_password().without_username()
628
599
629 uri = uri_filter(uri)
600 return url_obj
630 # check if we have port
631 if len(uri) > 2 and uri[2]:
632 uri[2] = ':' + uri[2]
633
634 return ''.join(uri)
635
601
636
602
637 def get_host_info(request):
603 def get_host_info(request):
@@ -384,7 +384,15 b' class EmailNotificationModel(BaseModel):'
384 instance_url = h.route_url('home')
384 instance_url = h.route_url('home')
385 _kwargs = {
385 _kwargs = {
386 'instance_url': instance_url,
386 'instance_url': instance_url,
387 'whitespace_filter': self.whitespace_filter
387 'whitespace_filter': self.whitespace_filter,
388 'email_pr_update_subject_template': EMAIL_PR_UPDATE_SUBJECT_TEMPLATE,
389 'email_pr_review_subject_template': EMAIL_PR_REVIEW_SUBJECT_TEMPLATE,
390 'email_pr_comment_subject_template': EMAIL_PR_COMMENT_SUBJECT_TEMPLATE,
391 'email_pr_comment_status_change_subject_template': EMAIL_PR_COMMENT_STATUS_CHANGE_SUBJECT_TEMPLATE,
392 'email_pr_comment_file_subject_template': EMAIL_PR_COMMENT_FILE_SUBJECT_TEMPLATE,
393 'email_comment_subject_template': EMAIL_COMMENT_SUBJECT_TEMPLATE,
394 'email_comment_status_change_subject_template': EMAIL_COMMENT_STATUS_CHANGE_SUBJECT_TEMPLATE,
395 'email_comment_file_subject_template': EMAIL_COMMENT_FILE_SUBJECT_TEMPLATE,
388 }
396 }
389 _kwargs.update(kwargs)
397 _kwargs.update(kwargs)
390 return _kwargs
398 return _kwargs
@@ -561,7 +561,7 b' class PermissionModel(BaseModel):'
561 default_user_id = User.get_default_user_id()
561 default_user_id = User.get_default_user_id()
562 user_write_permissions = collections.OrderedDict()
562 user_write_permissions = collections.OrderedDict()
563
563
564 # write+ and DEFAULT user for inheritance
564 # write or higher and DEFAULT user for inheritance
565 for perm in db_repo.permissions():
565 for perm in db_repo.permissions():
566 if perm.permission in write_plus or perm.user_id == default_user_id:
566 if perm.permission in write_plus or perm.user_id == default_user_id:
567 user_write_permissions[perm.user_id] = perm
567 user_write_permissions[perm.user_id] = perm
@@ -571,7 +571,7 b' class PermissionModel(BaseModel):'
571 write_plus = ['repository.write', 'repository.admin']
571 write_plus = ['repository.write', 'repository.admin']
572 user_group_write_permissions = collections.OrderedDict()
572 user_group_write_permissions = collections.OrderedDict()
573
573
574 # write+ and DEFAULT user for inheritance
574 # write or higher and DEFAULT user for inheritance
575 for p in db_repo.permission_user_groups():
575 for p in db_repo.permission_user_groups():
576 if p.permission in write_plus:
576 if p.permission in write_plus:
577 user_group_write_permissions[p.users_group_id] = p
577 user_group_write_permissions[p.users_group_id] = p
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Unfollow',
114 'Unfollow': 'Unfollow',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Unfollow',
114 'Unfollow': 'Unfollow',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Unfollow',
114 'Unfollow': 'Unfollow',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Unfollow',
114 'Unfollow': 'Unfollow',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Unfollow',
114 'Unfollow': 'Unfollow',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Smetti di seguire',
114 'Unfollow': 'Smetti di seguire',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': '選択したステータス ({0}) を元にコメントが自動的に設定されます...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': '選択したステータス ({0}) を元にコメントが自動的に設定されます...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'アンフォロー',
114 'Unfollow': 'アンフォロー',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -18,6 +18,7 b''
18 _gettext('Collapse all files');
18 _gettext('Collapse all files');
19 _gettext('Collapse {0} commit');
19 _gettext('Collapse {0} commit');
20 _gettext('Collapse {0} commits');
20 _gettext('Collapse {0} commits');
21 _gettext('Comment body was not changed.');
21 _gettext('Comment text will be set automatically based on currently selected status ({0}) ...');
22 _gettext('Comment text will be set automatically based on currently selected status ({0}) ...');
22 _gettext('Commit Authors are not allowed to be a reviewer.');
23 _gettext('Commit Authors are not allowed to be a reviewer.');
23 _gettext('Context file: ');
24 _gettext('Context file: ');
@@ -106,6 +107,7 b''
106 _gettext('Toggle Wide Mode diff');
107 _gettext('Toggle Wide Mode diff');
107 _gettext('Unfollow');
108 _gettext('Unfollow');
108 _gettext('Unwatch');
109 _gettext('Unwatch');
110 _gettext('Updated Comment');
109 _gettext('Updating...');
111 _gettext('Updating...');
110 _gettext('User `{0}` already in reviewers');
112 _gettext('User `{0}` already in reviewers');
111 _gettext('User `{0}` not allowed to be a reviewer');
113 _gettext('User `{0}` not allowed to be a reviewer');
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Nie obserwuj',
114 'Unfollow': 'Nie obserwuj',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Parar de seguir',
114 'Unfollow': 'Parar de seguir',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Не наблюдать',
114 'Unfollow': 'Не наблюдать',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -24,6 +24,7 b' var _TM = {'
24 'Collapse all files': 'Collapse all files',
24 'Collapse all files': 'Collapse all files',
25 'Collapse {0} commit': 'Collapse {0} commit',
25 'Collapse {0} commit': 'Collapse {0} commit',
26 'Collapse {0} commits': 'Collapse {0} commits',
26 'Collapse {0} commits': 'Collapse {0} commits',
27 'Comment body was not changed.': 'Comment body was not changed.',
27 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Comment text will be set automatically based on currently selected status ({0}) ...': 'Comment text will be set automatically based on currently selected status ({0}) ...',
28 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Commit Authors are not allowed to be a reviewer.': 'Commit Authors are not allowed to be a reviewer.',
29 'Context file: ': 'Context file: ',
30 'Context file: ': 'Context file: ',
@@ -112,6 +113,7 b' var _TM = {'
112 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Toggle Wide Mode diff': 'Toggle Wide Mode diff',
113 'Unfollow': 'Unfollow',
114 'Unfollow': 'Unfollow',
114 'Unwatch': 'Unwatch',
115 'Unwatch': 'Unwatch',
116 'Updated Comment': 'Updated Comment',
115 'Updating...': 'Updating...',
117 'Updating...': 'Updating...',
116 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
118 'User `{0}` already in reviewers': 'User `{0}` already in reviewers',
117 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
119 'User `{0}` not allowed to be a reviewer': 'User `{0}` not allowed to be a reviewer',
@@ -106,9 +106,9 b''
106
106
107 %if getattr(_user, 'branch_rules', None):
107 %if getattr(_user, 'branch_rules', None):
108 % if used_by_n_rules == 1:
108 % if used_by_n_rules == 1:
109 (${_('used by {} branch rule, requires write+ permissions').format(used_by_n_rules)})
109 (${_('used by {} branch rule, requires write or higher permissions').format(used_by_n_rules)})
110 % else:
110 % else:
111 (${_('used by {} branch rules, requires write+ permissions').format(used_by_n_rules)})
111 (${_('used by {} branch rules, requires write or higher permissions').format(used_by_n_rules)})
112 % endif
112 % endif
113 %endif
113 %endif
114 % endif
114 % endif
@@ -465,9 +465,9 b''
465 <div class="alert alert-warning">
465 <div class="alert alert-warning">
466 <div>
466 <div>
467 <strong>${_('Missing commits')}:</strong>
467 <strong>${_('Missing commits')}:</strong>
468 ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')}
468 ${_('This pull request cannot be displayed, because one or more commits no longer exist in the source repository.')}<br/>
469 ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')}
469 ${_('Please update this pull request, push the commits back into the source repository, or consider closing this pull request.')}<br/>
470 ${_('Consider doing a {force_refresh_url} in case you think this is an error.').format(force_refresh_url=h.link_to('force refresh', h.current_route_path(request, force_refresh='1')))|n}
470 ${_('Consider doing a `force update commits` in case you think this is an error.')}
471 </div>
471 </div>
472 </div>
472 </div>
473 </div>
473 </div>
@@ -38,36 +38,29 b' from rhodecode.lib.utils2 import Attribu'
38 from rhodecode.model.db import Repository, CacheKey
38 from rhodecode.model.db import Repository, CacheKey
39
39
40
40
41 def _urls_for_proto(proto):
41 TEST_URLS = [
42 return [
42 ('127.0.0.1', '127.0.0.1'),
43 ('%s://127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
43 ('marcink@127.0.0.1', '127.0.0.1'),
44 '%s://127.0.0.1' % proto),
44 ('marcink:pass@127.0.0.1', '127.0.0.1'),
45 ('%s://marcink@127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
45 ('marcink@domain.name:pass@127.0.0.1', '127.0.0.1'),
46 '%s://127.0.0.1' % proto),
46
47 ('%s://marcink:pass@127.0.0.1' % proto, ['%s://' % proto, '127.0.0.1'],
47 ('127.0.0.1:8080', '127.0.0.1:8080'),
48 '%s://127.0.0.1' % proto),
48 ('marcink@127.0.0.1:8080', '127.0.0.1:8080'),
49 ('%s://127.0.0.1:8080' % proto, ['%s://' % proto, '127.0.0.1', '8080'],
49 ('marcink:pass@127.0.0.1:8080', '127.0.0.1:8080'),
50 '%s://127.0.0.1:8080' % proto),
50 ('marcink@domain.name:pass@127.0.0.1:8080', '127.0.0.1:8080'),
51 ('%s://domain.org' % proto, ['%s://' % proto, 'domain.org'],
51
52 '%s://domain.org' % proto),
52 ('domain.org', 'domain.org'),
53 ('%s://user:pass@domain.org:8080' % proto,
53 ('user:pass@domain.org:8080', 'domain.org:8080'),
54 ['%s://' % proto, 'domain.org', '8080'],
54 ('user@domain.org:pass@domain.org:8080', 'domain.org:8080'),
55 '%s://domain.org:8080' % proto),
56 ]
55 ]
57
56
58 TEST_URLS = _urls_for_proto('http') + _urls_for_proto('https')
59
57
60
58 @pytest.mark.parametrize("protocol", ['http://', 'https://'])
61 @pytest.mark.parametrize("test_url, expected, expected_creds", TEST_URLS)
59 @pytest.mark.parametrize("test_url, expected", TEST_URLS)
62 def test_uri_filter(test_url, expected, expected_creds):
60 def test_credentials_filter(protocol, test_url, expected):
63 from rhodecode.lib.utils2 import uri_filter
64 assert uri_filter(test_url) == expected
65
66
67 @pytest.mark.parametrize("test_url, expected, expected_creds", TEST_URLS)
68 def test_credentials_filter(test_url, expected, expected_creds):
69 from rhodecode.lib.utils2 import credentials_filter
61 from rhodecode.lib.utils2 import credentials_filter
70 assert credentials_filter(test_url) == expected_creds
62 test_url = protocol + test_url
63 assert credentials_filter(test_url) == protocol + expected
71
64
72
65
73 @pytest.mark.parametrize("str_bool, expected", [
66 @pytest.mark.parametrize("str_bool, expected", [
General Comments 0
You need to be logged in to leave comments. Login now