##// END OF EJS Templates
merge with beta
marcink -
r3112:3259dc7c merge rhodecode-0.0.1.5.1 default
parent child Browse files
Show More
@@ -0,0 +1,28 b''
1 import logging
2 import datetime
3
4 from sqlalchemy import *
5 from sqlalchemy.exc import DatabaseError
6 from sqlalchemy.orm import relation, backref, class_mapper, joinedload
7 from sqlalchemy.orm.session import Session
8 from sqlalchemy.ext.declarative import declarative_base
9
10 from rhodecode.lib.dbmigrate.migrate import *
11 from rhodecode.lib.dbmigrate.migrate.changeset import *
12
13 from rhodecode.model.meta import Base
14 from rhodecode.model import meta
15
16 log = logging.getLogger(__name__)
17
18
19 def upgrade(migrate_engine):
20 """
21 Upgrade operations go here.
22 Don't create your own engine; bind migrate_engine to your metadata
23 """
24 pass
25
26 def downgrade(migrate_engine):
27 meta = MetaData()
28 meta.bind = migrate_engine
@@ -5,6 +5,24 b' Changelog'
5 5 =========
6 6
7 7
8 1.5.1 (**2012-12-13**)
9 ----------------------
10
11 news
12 ++++
13
14 - implements #677: Don't allow to close pull requests when they are
15 under-review status
16 - implemented #670 Implementation of Roles in Pull Request
17
18 fixes
19 +++++
20
21 - default permissions can get duplicated after migration
22 - fixed changeset status labels, they now select radio buttons
23 - #682 translation difficult for multi-line text
24 - #683 fixed difference between messages about not mapped repositories
25
8 26 1.5.0 (**2012-12-12**)
9 27 ----------------------
10 28
@@ -26,7 +26,7 b''
26 26 import sys
27 27 import platform
28 28
29 VERSION = (1, 5, 0)
29 VERSION = (1, 5, 1)
30 30
31 31 try:
32 32 from rhodecode.lib import get_current_revision
@@ -38,7 +38,7 b' except ImportError:'
38 38
39 39 __version__ = ('.'.join((str(each) for each in VERSION[:3])) +
40 40 '.'.join(VERSION[3:]))
41 __dbversion__ = 8 # defines current db version for migrations
41 __dbversion__ = 9 # defines current db version for migrations
42 42 __platform__ = platform.system()
43 43 __license__ = 'GPLv3'
44 44 __py_version__ = sys.version_info
@@ -89,12 +89,7 b' class ReposController(BaseController):'
89 89 repo = db_repo.scm_instance
90 90
91 91 if c.repo_info is None:
92 h.flash(_('%s repository is not mapped to db perhaps'
93 ' it was created or renamed from the filesystem'
94 ' please run the application again'
95 ' in order to rescan repositories') % repo_name,
96 category='error')
97
92 h.not_mapped_error(repo_name)
98 93 return redirect(url('repos'))
99 94
100 95 ##override defaults for exact repo info here git/hg etc
@@ -310,12 +305,7 b' class ReposController(BaseController):'
310 305 repo_model = RepoModel()
311 306 repo = repo_model.get_by_repo_name(repo_name)
312 307 if not repo:
313 h.flash(_('%s repository is not mapped to db perhaps'
314 ' it was moved or renamed from the filesystem'
315 ' please run the application again'
316 ' in order to rescan repositories') % repo_name,
317 category='error')
318
308 h.not_mapped_error(repo_name)
319 309 return redirect(url('repos'))
320 310 try:
321 311 action_logger(self.rhodecode_user, 'admin_deleted_repo',
@@ -71,12 +71,7 b' class ForksController(BaseRepoController'
71 71 repo = db_repo.scm_instance
72 72
73 73 if c.repo_info is None:
74 h.flash(_('%s repository is not mapped to db perhaps'
75 ' it was created or renamed from the filesystem'
76 ' please run the application again'
77 ' in order to rescan repositories') % repo_name,
78 category='error')
79
74 h.not_mapped_error(repo_name)
80 75 return redirect(url('repos'))
81 76
82 77 c.default_user_id = User.get_by_username('default').user_id
@@ -131,12 +126,7 b' class ForksController(BaseRepoController'
131 126 def fork(self, repo_name):
132 127 c.repo_info = Repository.get_by_repo_name(repo_name)
133 128 if not c.repo_info:
134 h.flash(_('%s repository is not mapped to db perhaps'
135 ' it was created or renamed from the file system'
136 ' please run the application again'
137 ' in order to rescan repositories') % repo_name,
138 category='error')
139
129 h.not_mapped_error(repo_name)
140 130 return redirect(url('home'))
141 131
142 132 defaults = self.__load_data(repo_name)
@@ -96,6 +96,12 b' class PullrequestsController(BaseRepoCon'
96 96 #if repo doesn't have default branch return first found
97 97 return repo.branches.keys()[0]
98 98
99 def _get_is_allowed_change_status(self, pull_request):
100 owner = self.rhodecode_user.user_id == pull_request.user_id
101 reviewer = self.rhodecode_user.user_id in [x.user_id for x in
102 pull_request.reviewers]
103 return (self.rhodecode_user.admin or owner or reviewer)
104
99 105 def show_all(self, repo_name):
100 106 c.pull_requests = PullRequestModel().get_all(repo_name)
101 107 c.repo_name = repo_name
@@ -334,7 +340,7 b' class PullrequestsController(BaseRepoCon'
334 340 c.users_groups_array = repo_model.get_users_groups_js()
335 341 c.pull_request = PullRequest.get_or_404(pull_request_id)
336 342 c.target_repo = c.pull_request.org_repo.repo_name
337
343 c.allowed_to_change_status = self._get_is_allowed_change_status(c.pull_request)
338 344 cc_model = ChangesetCommentsModel()
339 345 cs_model = ChangesetStatusModel()
340 346 _cs_statuses = cs_model.get_statuses(c.pull_request.org_repo,
@@ -405,7 +411,9 b' class PullrequestsController(BaseRepoCon'
405 411 status = request.POST.get('changeset_status')
406 412 change_status = request.POST.get('change_changeset_status')
407 413 text = request.POST.get('text')
408 if status and change_status:
414
415 allowed_to_change_status = self._get_is_allowed_change_status(pull_request)
416 if status and change_status and allowed_to_change_status:
409 417 text = text or (_('Status change -> %s')
410 418 % ChangesetStatus.get_status_lbl(status))
411 419 comm = ChangesetCommentsModel().create(
@@ -416,27 +424,34 b' class PullrequestsController(BaseRepoCon'
416 424 f_path=request.POST.get('f_path'),
417 425 line_no=request.POST.get('line'),
418 426 status_change=(ChangesetStatus.get_status_lbl(status)
419 if status and change_status else None)
427 if status and change_status and allowed_to_change_status else None)
420 428 )
421 429
422 # get status if set !
423 if status and change_status:
424 ChangesetStatusModel().set_status(
425 c.rhodecode_db_repo.repo_id,
426 status,
427 c.rhodecode_user.user_id,
428 comm,
429 pull_request=pull_request_id
430 )
431 430 action_logger(self.rhodecode_user,
432 431 'user_commented_pull_request:%s' % pull_request_id,
433 432 c.rhodecode_db_repo, self.ip_addr, self.sa)
434 433
435 if request.POST.get('save_close'):
436 PullRequestModel().close_pull_request(pull_request_id)
437 action_logger(self.rhodecode_user,
438 'user_closed_pull_request:%s' % pull_request_id,
439 c.rhodecode_db_repo, self.ip_addr, self.sa)
434 if allowed_to_change_status:
435 # get status if set !
436 if status and change_status:
437 ChangesetStatusModel().set_status(
438 c.rhodecode_db_repo.repo_id,
439 status,
440 c.rhodecode_user.user_id,
441 comm,
442 pull_request=pull_request_id
443 )
444
445 if request.POST.get('save_close'):
446 if status in ['rejected', 'approved']:
447 PullRequestModel().close_pull_request(pull_request_id)
448 action_logger(self.rhodecode_user,
449 'user_closed_pull_request:%s' % pull_request_id,
450 c.rhodecode_db_repo, self.ip_addr, self.sa)
451 else:
452 h.flash(_('Closing pull request on other statuses than '
453 'rejected or approved forbidden'),
454 category='warning')
440 455
441 456 Session().commit()
442 457
@@ -77,12 +77,7 b' class SettingsController(BaseRepoControl'
77 77 repo = db_repo.scm_instance
78 78
79 79 if c.repo_info is None:
80 h.flash(_('%s repository is not mapped to db perhaps'
81 ' it was created or renamed from the filesystem'
82 ' please run the application again'
83 ' in order to rescan repositories') % repo_name,
84 category='error')
85
80 h.not_mapped_error(repo_name)
86 81 return redirect(url('home'))
87 82
88 83 ##override defaults for exact repo info here git/hg etc
@@ -157,12 +152,7 b' class SettingsController(BaseRepoControl'
157 152 repo_model = RepoModel()
158 153 repo = repo_model.get_by_repo_name(repo_name)
159 154 if not repo:
160 h.flash(_('%s repository is not mapped to db perhaps'
161 ' it was moved or renamed from the filesystem'
162 ' please run the application again'
163 ' in order to rescan repositories') % repo_name,
164 category='error')
165
155 h.not_mapped_error(repo_name)
166 156 return redirect(url('home'))
167 157 try:
168 158 action_logger(self.rhodecode_user, 'user_deleted_repo',
@@ -7,7 +7,7 b' msgid ""'
7 7 msgstr ""
8 8 "Project-Id-Version: rhodecode 0.1\n"
9 9 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
10 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
11 11 "PO-Revision-Date: 2011-02-25 19:13+0100\n"
12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13 13 "Language-Team: en <LL@li.org>\n"
@@ -21,33 +21,33 b' msgstr ""'
21 21 msgid "All Branches"
22 22 msgstr ""
23 23
24 #: rhodecode/controllers/changeset.py:84
24 #: rhodecode/controllers/changeset.py:83
25 25 msgid "show white space"
26 26 msgstr ""
27 27
28 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
28 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
29 29 msgid "ignore white space"
30 30 msgstr ""
31 31
32 #: rhodecode/controllers/changeset.py:164
32 #: rhodecode/controllers/changeset.py:163
33 33 #, python-format
34 34 msgid "%s line context"
35 35 msgstr ""
36 36
37 #: rhodecode/controllers/changeset.py:315
38 #: rhodecode/controllers/pullrequests.py:411
37 #: rhodecode/controllers/changeset.py:314
38 #: rhodecode/controllers/pullrequests.py:417
39 39 #, python-format
40 40 msgid "Status change -> %s"
41 41 msgstr ""
42 42
43 #: rhodecode/controllers/changeset.py:346
43 #: rhodecode/controllers/changeset.py:345
44 44 msgid ""
45 45 "Changing status on a changeset associated witha closed pull request is "
46 46 "not allowed"
47 47 msgstr ""
48 48
49 49 #: rhodecode/controllers/compare.py:75
50 #: rhodecode/controllers/pullrequests.py:117
50 #: rhodecode/controllers/pullrequests.py:121
51 51 #: rhodecode/controllers/shortlog.py:100
52 52 msgid "There are no changesets yet"
53 53 msgstr ""
@@ -89,8 +89,8 b' msgid "%s %s feed"'
89 89 msgstr ""
90 90
91 91 #: rhodecode/controllers/feed.py:86
92 #: rhodecode/templates/changeset/changeset.html:126
93 #: rhodecode/templates/changeset/changeset.html:138
92 #: rhodecode/templates/changeset/changeset.html:137
93 #: rhodecode/templates/changeset/changeset.html:149
94 94 #: rhodecode/templates/compare/compare_diff.html:62
95 95 #: rhodecode/templates/compare/compare_diff.html:73
96 96 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -170,48 +170,33 b' msgstr ""'
170 170 msgid "Changesets"
171 171 msgstr ""
172 172
173 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
173 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
174 174 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
175 175 msgid "Branches"
176 176 msgstr ""
177 177
178 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
178 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
179 179 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
180 180 msgid "Tags"
181 181 msgstr ""
182 182
183 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
184 #, python-format
185 msgid ""
186 "%s repository is not mapped to db perhaps it was created or renamed from "
187 "the filesystem please run the application again in order to rescan "
188 "repositories"
189 msgstr ""
190
191 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
192 #, python-format
193 msgid ""
194 "%s repository is not mapped to db perhaps it was created or renamed from "
195 "the file system please run the application again in order to rescan "
196 "repositories"
197 msgstr ""
198
199 #: rhodecode/controllers/forks.py:168
183 #: rhodecode/controllers/forks.py:158
200 184 #, python-format
201 185 msgid "forked %s repository as %s"
202 186 msgstr ""
203 187
204 #: rhodecode/controllers/forks.py:182
188 #: rhodecode/controllers/forks.py:172
205 189 #, python-format
206 190 msgid "An error occurred during repository forking %s"
207 191 msgstr ""
208 192
209 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
193 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
210 194 msgid "public journal"
211 195 msgstr ""
212 196
213 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
197 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
214 198 #: rhodecode/templates/base/base.html:232
199 #: rhodecode/templates/journal/journal.html:12
215 200 msgid "journal"
216 201 msgstr ""
217 202
@@ -229,30 +214,34 b' msgid ""'
229 214 "email"
230 215 msgstr ""
231 216
232 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
217 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
233 218 msgid "Bookmarks"
234 219 msgstr ""
235 220
236 #: rhodecode/controllers/pullrequests.py:186
221 #: rhodecode/controllers/pullrequests.py:190
237 222 msgid "Pull request requires a title with min. 3 chars"
238 223 msgstr ""
239 224
240 #: rhodecode/controllers/pullrequests.py:188
225 #: rhodecode/controllers/pullrequests.py:192
241 226 msgid "error during creation of pull request"
242 227 msgstr ""
243 228
244 #: rhodecode/controllers/pullrequests.py:220
229 #: rhodecode/controllers/pullrequests.py:224
245 230 msgid "Successfully opened new pull request"
246 231 msgstr ""
247 232
248 #: rhodecode/controllers/pullrequests.py:223
233 #: rhodecode/controllers/pullrequests.py:227
249 234 msgid "Error occurred during sending pull request"
250 235 msgstr ""
251 236
252 #: rhodecode/controllers/pullrequests.py:256
237 #: rhodecode/controllers/pullrequests.py:260
253 238 msgid "Successfully deleted pull request"
254 239 msgstr ""
255 240
241 #: rhodecode/controllers/pullrequests.py:452
242 msgid "Closing pull request on other statuses than rejected or approved forbidden"
243 msgstr ""
244
256 245 #: rhodecode/controllers/search.py:134
257 246 msgid "Invalid search query. Try quoting it."
258 247 msgstr ""
@@ -265,55 +254,46 b' msgstr ""'
265 254 msgid "An error occurred during this search operation"
266 255 msgstr ""
267 256
268 #: rhodecode/controllers/settings.py:108
269 #: rhodecode/controllers/admin/repos.py:268
257 #: rhodecode/controllers/settings.py:119
258 #: rhodecode/controllers/admin/repos.py:272
270 259 #, python-format
271 260 msgid "Repository %s updated successfully"
272 261 msgstr ""
273 262
274 #: rhodecode/controllers/settings.py:126
275 #: rhodecode/controllers/admin/repos.py:286
263 #: rhodecode/controllers/settings.py:137
264 #: rhodecode/controllers/admin/repos.py:290
276 265 #, python-format
277 266 msgid "error occurred during update of repository %s"
278 267 msgstr ""
279 268
280 #: rhodecode/controllers/settings.py:144
281 #: rhodecode/controllers/admin/repos.py:304
282 #, python-format
283 msgid ""
284 "%s repository is not mapped to db perhaps it was moved or renamed from "
285 "the filesystem please run the application again in order to rescan "
286 "repositories"
287 msgstr ""
288
289 #: rhodecode/controllers/settings.py:156
290 #: rhodecode/controllers/admin/repos.py:316
269 #: rhodecode/controllers/settings.py:162
270 #: rhodecode/controllers/admin/repos.py:315
291 271 #, python-format
292 272 msgid "deleted repository %s"
293 273 msgstr ""
294 274
295 #: rhodecode/controllers/settings.py:160
296 #: rhodecode/controllers/admin/repos.py:326
297 #: rhodecode/controllers/admin/repos.py:332
275 #: rhodecode/controllers/settings.py:166
276 #: rhodecode/controllers/admin/repos.py:325
277 #: rhodecode/controllers/admin/repos.py:331
298 278 #, python-format
299 279 msgid "An error occurred during deletion of %s"
300 280 msgstr ""
301 281
302 #: rhodecode/controllers/settings.py:179
282 #: rhodecode/controllers/settings.py:185
303 283 msgid "unlocked"
304 284 msgstr ""
305 285
306 #: rhodecode/controllers/settings.py:182
307 msgid "locked"
308 msgstr ""
309
310 #: rhodecode/controllers/settings.py:184
311 #, python-format
312 msgid "Repository has been %s"
313 msgstr ""
314
315 286 #: rhodecode/controllers/settings.py:188
316 #: rhodecode/controllers/admin/repos.py:424
287 msgid "locked"
288 msgstr ""
289
290 #: rhodecode/controllers/settings.py:190
291 #, python-format
292 msgid "Repository has been %s"
293 msgstr ""
294
295 #: rhodecode/controllers/settings.py:194
296 #: rhodecode/controllers/admin/repos.py:423
317 297 msgid "An error occurred during unlocking"
318 298 msgstr ""
319 299
@@ -462,76 +442,76 b' msgstr ""'
462 442 msgid "error occurred during update of permissions"
463 443 msgstr ""
464 444
465 #: rhodecode/controllers/admin/repos.py:125
445 #: rhodecode/controllers/admin/repos.py:121
466 446 msgid "--REMOVE FORK--"
467 447 msgstr ""
468 448
449 #: rhodecode/controllers/admin/repos.py:190
450 #, python-format
451 msgid "created repository %s from %s"
452 msgstr ""
453
469 454 #: rhodecode/controllers/admin/repos.py:194
470 455 #, python-format
471 msgid "created repository %s from %s"
472 msgstr ""
473
474 #: rhodecode/controllers/admin/repos.py:198
475 #, python-format
476 456 msgid "created repository %s"
477 457 msgstr ""
478 458
479 #: rhodecode/controllers/admin/repos.py:229
459 #: rhodecode/controllers/admin/repos.py:225
480 460 #, python-format
481 461 msgid "error occurred during creation of repository %s"
482 462 msgstr ""
483 463
484 #: rhodecode/controllers/admin/repos.py:321
464 #: rhodecode/controllers/admin/repos.py:320
485 465 #, python-format
486 466 msgid "Cannot delete %s it still contains attached forks"
487 467 msgstr ""
488 468
489 #: rhodecode/controllers/admin/repos.py:350
469 #: rhodecode/controllers/admin/repos.py:349
490 470 msgid "An error occurred during deletion of repository user"
491 471 msgstr ""
492 472
493 #: rhodecode/controllers/admin/repos.py:369
473 #: rhodecode/controllers/admin/repos.py:368
494 474 msgid "An error occurred during deletion of repository users groups"
495 475 msgstr ""
496 476
497 #: rhodecode/controllers/admin/repos.py:387
477 #: rhodecode/controllers/admin/repos.py:386
498 478 msgid "An error occurred during deletion of repository stats"
499 479 msgstr ""
500 480
501 #: rhodecode/controllers/admin/repos.py:404
481 #: rhodecode/controllers/admin/repos.py:403
502 482 msgid "An error occurred during cache invalidation"
503 483 msgstr ""
504 484
505 #: rhodecode/controllers/admin/repos.py:444
485 #: rhodecode/controllers/admin/repos.py:443
506 486 msgid "Updated repository visibility in public journal"
507 487 msgstr ""
508 488
509 #: rhodecode/controllers/admin/repos.py:448
489 #: rhodecode/controllers/admin/repos.py:447
510 490 msgid "An error occurred during setting this repository in public journal"
511 491 msgstr ""
512 492
513 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
493 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
514 494 msgid "Token mismatch"
515 495 msgstr ""
516 496
517 #: rhodecode/controllers/admin/repos.py:466
497 #: rhodecode/controllers/admin/repos.py:465
518 498 msgid "Pulled from remote location"
519 499 msgstr ""
520 500
521 #: rhodecode/controllers/admin/repos.py:468
501 #: rhodecode/controllers/admin/repos.py:467
522 502 msgid "An error occurred during pull from remote location"
523 503 msgstr ""
524 504
525 #: rhodecode/controllers/admin/repos.py:484
505 #: rhodecode/controllers/admin/repos.py:483
526 506 msgid "Nothing"
527 507 msgstr ""
528 508
529 #: rhodecode/controllers/admin/repos.py:486
509 #: rhodecode/controllers/admin/repos.py:485
530 510 #, python-format
531 511 msgid "Marked repo %s as fork of %s"
532 512 msgstr ""
533 513
534 #: rhodecode/controllers/admin/repos.py:490
514 #: rhodecode/controllers/admin/repos.py:489
535 515 msgid "An error occurred during this operation"
536 516 msgstr ""
537 517
@@ -767,152 +747,160 b' msgstr ""'
767 747 msgid "No changes detected"
768 748 msgstr ""
769 749
770 #: rhodecode/lib/helpers.py:373
750 #: rhodecode/lib/helpers.py:374
771 751 #, python-format
772 752 msgid "%a, %d %b %Y %H:%M:%S"
773 753 msgstr ""
774 754
775 #: rhodecode/lib/helpers.py:485
755 #: rhodecode/lib/helpers.py:486
776 756 msgid "True"
777 757 msgstr ""
778 758
779 #: rhodecode/lib/helpers.py:489
759 #: rhodecode/lib/helpers.py:490
780 760 msgid "False"
781 761 msgstr ""
782 762
783 #: rhodecode/lib/helpers.py:529
763 #: rhodecode/lib/helpers.py:530
784 764 #, python-format
785 765 msgid "Deleted branch: %s"
786 766 msgstr ""
787 767
788 #: rhodecode/lib/helpers.py:532
768 #: rhodecode/lib/helpers.py:533
789 769 #, python-format
790 770 msgid "Created tag: %s"
791 771 msgstr ""
792 772
793 #: rhodecode/lib/helpers.py:545
773 #: rhodecode/lib/helpers.py:546
794 774 msgid "Changeset not found"
795 775 msgstr ""
796 776
797 #: rhodecode/lib/helpers.py:588
777 #: rhodecode/lib/helpers.py:589
798 778 #, python-format
799 779 msgid "Show all combined changesets %s->%s"
800 780 msgstr ""
801 781
802 #: rhodecode/lib/helpers.py:594
782 #: rhodecode/lib/helpers.py:595
803 783 msgid "compare view"
804 784 msgstr ""
805 785
806 #: rhodecode/lib/helpers.py:614
807 msgid "and"
808 msgstr ""
809
810 786 #: rhodecode/lib/helpers.py:615
787 msgid "and"
788 msgstr ""
789
790 #: rhodecode/lib/helpers.py:616
811 791 #, python-format
812 792 msgid "%s more"
813 793 msgstr ""
814 794
815 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
795 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
816 796 msgid "revisions"
817 797 msgstr ""
818 798
819 #: rhodecode/lib/helpers.py:640
799 #: rhodecode/lib/helpers.py:641
820 800 #, python-format
821 801 msgid "fork name %s"
822 802 msgstr ""
823 803
824 #: rhodecode/lib/helpers.py:653
804 #: rhodecode/lib/helpers.py:658
825 805 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
826 806 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
827 807 #, python-format
828 808 msgid "Pull request #%s"
829 809 msgstr ""
830 810
831 #: rhodecode/lib/helpers.py:659
811 #: rhodecode/lib/helpers.py:664
832 812 msgid "[deleted] repository"
833 813 msgstr ""
834 814
835 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
815 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
836 816 msgid "[created] repository"
837 817 msgstr ""
838 818
839 #: rhodecode/lib/helpers.py:663
819 #: rhodecode/lib/helpers.py:668
840 820 msgid "[created] repository as fork"
841 821 msgstr ""
842 822
843 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
823 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
844 824 msgid "[forked] repository"
845 825 msgstr ""
846 826
847 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
827 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
848 828 msgid "[updated] repository"
849 829 msgstr ""
850 830
851 #: rhodecode/lib/helpers.py:669
831 #: rhodecode/lib/helpers.py:674
852 832 msgid "[delete] repository"
853 833 msgstr ""
854 834
855 #: rhodecode/lib/helpers.py:677
835 #: rhodecode/lib/helpers.py:682
856 836 msgid "[created] user"
857 837 msgstr ""
858 838
859 #: rhodecode/lib/helpers.py:679
839 #: rhodecode/lib/helpers.py:684
860 840 msgid "[updated] user"
861 841 msgstr ""
862 842
863 #: rhodecode/lib/helpers.py:681
843 #: rhodecode/lib/helpers.py:686
864 844 msgid "[created] users group"
865 845 msgstr ""
866 846
867 #: rhodecode/lib/helpers.py:683
847 #: rhodecode/lib/helpers.py:688
868 848 msgid "[updated] users group"
869 849 msgstr ""
870 850
871 #: rhodecode/lib/helpers.py:685
851 #: rhodecode/lib/helpers.py:690
872 852 msgid "[commented] on revision in repository"
873 853 msgstr ""
874 854
875 #: rhodecode/lib/helpers.py:687
855 #: rhodecode/lib/helpers.py:692
876 856 msgid "[commented] on pull request for"
877 857 msgstr ""
878 858
879 #: rhodecode/lib/helpers.py:689
859 #: rhodecode/lib/helpers.py:694
880 860 msgid "[closed] pull request for"
881 861 msgstr ""
882 862
883 #: rhodecode/lib/helpers.py:691
863 #: rhodecode/lib/helpers.py:696
884 864 msgid "[pushed] into"
885 865 msgstr ""
886 866
887 #: rhodecode/lib/helpers.py:693
867 #: rhodecode/lib/helpers.py:698
888 868 msgid "[committed via RhodeCode] into repository"
889 869 msgstr ""
890 870
891 #: rhodecode/lib/helpers.py:695
871 #: rhodecode/lib/helpers.py:700
892 872 msgid "[pulled from remote] into repository"
893 873 msgstr ""
894 874
895 #: rhodecode/lib/helpers.py:697
875 #: rhodecode/lib/helpers.py:702
896 876 msgid "[pulled] from"
897 877 msgstr ""
898 878
899 #: rhodecode/lib/helpers.py:699
879 #: rhodecode/lib/helpers.py:704
900 880 msgid "[started following] repository"
901 881 msgstr ""
902 882
903 #: rhodecode/lib/helpers.py:701
883 #: rhodecode/lib/helpers.py:706
904 884 msgid "[stopped following] repository"
905 885 msgstr ""
906 886
907 #: rhodecode/lib/helpers.py:877
887 #: rhodecode/lib/helpers.py:883
908 888 #, python-format
909 889 msgid " and %s more"
910 890 msgstr ""
911 891
912 #: rhodecode/lib/helpers.py:881
892 #: rhodecode/lib/helpers.py:887
913 893 msgid "No Files"
914 894 msgstr ""
915 895
896 #: rhodecode/lib/helpers.py:1163
897 #, python-format
898 msgid ""
899 "%s repository is not mapped to db perhaps it was created or renamed from "
900 "the filesystem please run the application again in order to rescan "
901 "repositories"
902 msgstr ""
903
916 904 #: rhodecode/lib/utils2.py:403
917 905 #, python-format
918 906 msgid "%d year"
@@ -983,83 +971,83 b' msgstr ""'
983 971 msgid "password reset link"
984 972 msgstr ""
985 973
986 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
974 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
987 975 msgid "Repository no access"
988 976 msgstr ""
989 977
990 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
978 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
991 979 msgid "Repository read access"
992 980 msgstr ""
993 981
994 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
982 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
995 983 msgid "Repository write access"
996 984 msgstr ""
997 985
998 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
986 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
999 987 msgid "Repository admin access"
1000 988 msgstr ""
1001 989
1002 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
990 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1003 991 msgid "Repositories Group no access"
1004 992 msgstr ""
1005 993
1006 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
994 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1007 995 msgid "Repositories Group read access"
1008 996 msgstr ""
1009 997
1010 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
998 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1011 999 msgid "Repositories Group write access"
1012 1000 msgstr ""
1013 1001
1014 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
1002 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1015 1003 msgid "Repositories Group admin access"
1016 1004 msgstr ""
1017 1005
1018 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1006 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1019 1007 msgid "RhodeCode Administrator"
1020 1008 msgstr ""
1021 1009
1022 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1010 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1023 1011 msgid "Repository creation disabled"
1024 1012 msgstr ""
1025 1013
1026 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1014 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1027 1015 msgid "Repository creation enabled"
1028 1016 msgstr ""
1029 1017
1030 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1018 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1031 1019 msgid "Repository forking disabled"
1032 1020 msgstr ""
1033 1021
1034 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1022 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1035 1023 msgid "Repository forking enabled"
1036 1024 msgstr ""
1037 1025
1038 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1026 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1039 1027 msgid "Register disabled"
1040 1028 msgstr ""
1041 1029
1042 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1030 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1043 1031 msgid "Register new user with RhodeCode with manual activation"
1044 1032 msgstr ""
1045 1033
1046 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1034 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1047 1035 msgid "Register new user with RhodeCode with auto activation"
1048 1036 msgstr ""
1049 1037
1050 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1038 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1051 1039 msgid "Not Reviewed"
1052 1040 msgstr ""
1053 1041
1054 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1042 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1055 1043 msgid "Approved"
1056 1044 msgstr ""
1057 1045
1058 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1046 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1059 1047 msgid "Rejected"
1060 1048 msgstr ""
1061 1049
1062 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1050 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1063 1051 msgid "Under Review"
1064 1052 msgstr ""
1065 1053
@@ -1129,20 +1117,20 b' msgstr ""'
1129 1117 msgid "latest tip"
1130 1118 msgstr ""
1131 1119
1132 #: rhodecode/model/user.py:230
1120 #: rhodecode/model/user.py:232
1133 1121 msgid "new user registration"
1134 1122 msgstr ""
1135 1123
1136 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1137 #: rhodecode/model/user.py:301
1124 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1125 #: rhodecode/model/user.py:303
1138 1126 msgid "You can't Edit this user since it's crucial for entire application"
1139 1127 msgstr ""
1140 1128
1141 #: rhodecode/model/user.py:325
1129 #: rhodecode/model/user.py:327
1142 1130 msgid "You can't remove this user since it's crucial for entire application"
1143 1131 msgstr ""
1144 1132
1145 #: rhodecode/model/user.py:331
1133 #: rhodecode/model/user.py:333
1146 1134 #, python-format
1147 1135 msgid ""
1148 1136 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1263,26 +1251,26 b' msgstr ""'
1263 1251 msgid "This username or users group name is not valid"
1264 1252 msgstr ""
1265 1253
1266 #: rhodecode/model/validators.py:582
1254 #: rhodecode/model/validators.py:591
1267 1255 msgid "This is not a valid path"
1268 1256 msgstr ""
1269 1257
1270 #: rhodecode/model/validators.py:597
1258 #: rhodecode/model/validators.py:606
1271 1259 msgid "This e-mail address is already taken"
1272 1260 msgstr ""
1273 1261
1274 #: rhodecode/model/validators.py:617
1262 #: rhodecode/model/validators.py:626
1275 1263 #, python-format
1276 1264 msgid "e-mail \"%(email)s\" does not exist."
1277 1265 msgstr ""
1278 1266
1279 #: rhodecode/model/validators.py:654
1267 #: rhodecode/model/validators.py:663
1280 1268 msgid ""
1281 1269 "The LDAP Login attribute of the CN must be specified - this is the name "
1282 1270 "of the attribute that is equivalent to \"username\""
1283 1271 msgstr ""
1284 1272
1285 #: rhodecode/model/validators.py:673
1273 #: rhodecode/model/validators.py:682
1286 1274 #, python-format
1287 1275 msgid "Revisions %(revs)s are already part of pull request or have set status"
1288 1276 msgstr ""
@@ -1298,7 +1286,8 b' msgstr ""'
1298 1286 #: rhodecode/templates/admin/users/users.html:9
1299 1287 #: rhodecode/templates/bookmarks/bookmarks.html:10
1300 1288 #: rhodecode/templates/branches/branches.html:9
1301 #: rhodecode/templates/journal/journal.html:40
1289 #: rhodecode/templates/journal/journal.html:9
1290 #: rhodecode/templates/journal/journal.html:48
1302 1291 #: rhodecode/templates/tags/tags.html:10
1303 1292 msgid "quick filter..."
1304 1293 msgstr ""
@@ -1364,8 +1353,8 b' msgstr ""'
1364 1353 #: rhodecode/templates/branches/branches.html:50
1365 1354 #: rhodecode/templates/branches/branches_data.html:6
1366 1355 #: rhodecode/templates/files/files_browser.html:47
1367 #: rhodecode/templates/journal/journal.html:62
1368 #: rhodecode/templates/journal/journal.html:168
1356 #: rhodecode/templates/journal/journal.html:70
1357 #: rhodecode/templates/journal/journal.html:196
1369 1358 #: rhodecode/templates/journal/journal_page_repos.html:7
1370 1359 #: rhodecode/templates/settings/repo_settings.html:31
1371 1360 #: rhodecode/templates/summary/summary.html:43
@@ -1382,7 +1371,7 b' msgstr ""'
1382 1371 #: rhodecode/templates/index_base.html:74
1383 1372 #: rhodecode/templates/index_base.html:179
1384 1373 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1385 #: rhodecode/templates/journal/journal.html:170
1374 #: rhodecode/templates/journal/journal.html:198
1386 1375 msgid "Tip"
1387 1376 msgstr ""
1388 1377
@@ -1412,7 +1401,7 b' msgstr ""'
1412 1401 #: rhodecode/templates/admin/users/users.html:107
1413 1402 #: rhodecode/templates/bookmarks/bookmarks.html:60
1414 1403 #: rhodecode/templates/branches/branches.html:76
1415 #: rhodecode/templates/journal/journal.html:193
1404 #: rhodecode/templates/journal/journal.html:221
1416 1405 #: rhodecode/templates/tags/tags.html:77
1417 1406 msgid "Click to sort ascending"
1418 1407 msgstr ""
@@ -1425,7 +1414,7 b' msgstr ""'
1425 1414 #: rhodecode/templates/admin/users/users.html:108
1426 1415 #: rhodecode/templates/bookmarks/bookmarks.html:61
1427 1416 #: rhodecode/templates/branches/branches.html:77
1428 #: rhodecode/templates/journal/journal.html:194
1417 #: rhodecode/templates/journal/journal.html:222
1429 1418 #: rhodecode/templates/tags/tags.html:78
1430 1419 msgid "Click to sort descending"
1431 1420 msgstr ""
@@ -1442,7 +1431,7 b' msgstr ""'
1442 1431 #: rhodecode/templates/admin/users/users.html:109
1443 1432 #: rhodecode/templates/bookmarks/bookmarks.html:62
1444 1433 #: rhodecode/templates/branches/branches.html:78
1445 #: rhodecode/templates/journal/journal.html:195
1434 #: rhodecode/templates/journal/journal.html:223
1446 1435 #: rhodecode/templates/tags/tags.html:79
1447 1436 msgid "No records found."
1448 1437 msgstr ""
@@ -1454,7 +1443,7 b' msgstr ""'
1454 1443 #: rhodecode/templates/admin/users/users.html:110
1455 1444 #: rhodecode/templates/bookmarks/bookmarks.html:63
1456 1445 #: rhodecode/templates/branches/branches.html:79
1457 #: rhodecode/templates/journal/journal.html:196
1446 #: rhodecode/templates/journal/journal.html:224
1458 1447 #: rhodecode/templates/tags/tags.html:80
1459 1448 msgid "Data error."
1460 1449 msgstr ""
@@ -1466,8 +1455,8 b' msgstr ""'
1466 1455 #: rhodecode/templates/admin/users/users.html:111
1467 1456 #: rhodecode/templates/bookmarks/bookmarks.html:64
1468 1457 #: rhodecode/templates/branches/branches.html:80
1469 #: rhodecode/templates/journal/journal.html:54
1470 #: rhodecode/templates/journal/journal.html:197
1458 #: rhodecode/templates/journal/journal.html:62
1459 #: rhodecode/templates/journal/journal.html:225
1471 1460 #: rhodecode/templates/tags/tags.html:81
1472 1461 msgid "Loading..."
1473 1462 msgstr ""
@@ -1615,10 +1604,27 b' msgid "There are no bookmarks yet"'
1615 1604 msgstr ""
1616 1605
1617 1606 #: rhodecode/templates/admin/admin.html:5
1618 #: rhodecode/templates/admin/admin.html:9
1607 #: rhodecode/templates/admin/admin.html:13
1619 1608 msgid "Admin journal"
1620 1609 msgstr ""
1621 1610
1611 #: rhodecode/templates/admin/admin.html:10
1612 msgid "journal filter..."
1613 msgstr ""
1614
1615 #: rhodecode/templates/admin/admin.html:12
1616 #: rhodecode/templates/journal/journal.html:11
1617 msgid "filter"
1618 msgstr ""
1619
1620 #: rhodecode/templates/admin/admin.html:13
1621 #: rhodecode/templates/journal/journal.html:12
1622 #, python-format
1623 msgid "%s entry"
1624 msgid_plural "%s entries"
1625 msgstr[0] ""
1626 msgstr[1] ""
1627
1622 1628 #: rhodecode/templates/admin/admin_log.html:6
1623 1629 #: rhodecode/templates/admin/repos/repos.html:74
1624 1630 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1647,7 +1653,7 b' msgstr ""'
1647 1653 msgid "From IP"
1648 1654 msgstr ""
1649 1655
1650 #: rhodecode/templates/admin/admin_log.html:57
1656 #: rhodecode/templates/admin/admin_log.html:63
1651 1657 msgid "No actions yet"
1652 1658 msgstr ""
1653 1659
@@ -1716,7 +1722,7 b' msgstr ""'
1716 1722 #: rhodecode/templates/admin/users/user_edit.html:178
1717 1723 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1718 1724 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1719 #: rhodecode/templates/settings/repo_settings.html:93
1725 #: rhodecode/templates/settings/repo_settings.html:94
1720 1726 msgid "Save"
1721 1727 msgstr ""
1722 1728
@@ -2004,7 +2010,7 b' msgstr ""'
2004 2010 #: rhodecode/templates/files/files_add.html:82
2005 2011 #: rhodecode/templates/files/files_edit.html:68
2006 2012 #: rhodecode/templates/pullrequests/pullrequest.html:124
2007 #: rhodecode/templates/settings/repo_settings.html:94
2013 #: rhodecode/templates/settings/repo_settings.html:95
2008 2014 msgid "Reset"
2009 2015 msgstr ""
2010 2016
@@ -2145,19 +2151,21 b' msgid "Delete"'
2145 2151 msgstr ""
2146 2152
2147 2153 #: rhodecode/templates/admin/repos/repo_edit.html:278
2154 #: rhodecode/templates/settings/repo_settings.html:115
2148 2155 msgid "Remove this repository"
2149 2156 msgstr ""
2150 2157
2151 2158 #: rhodecode/templates/admin/repos/repo_edit.html:278
2159 #: rhodecode/templates/settings/repo_settings.html:115
2152 2160 msgid "Confirm to delete this repository"
2153 2161 msgstr ""
2154 2162
2155 2163 #: rhodecode/templates/admin/repos/repo_edit.html:282
2164 #: rhodecode/templates/settings/repo_settings.html:119
2156 2165 msgid ""
2157 2166 "This repository will be renamed in a special way in order to be "
2158 "unaccesible for RhodeCode and VCS systems.\n"
2159 " If you need fully delete it from filesystem "
2160 "please do it manually"
2167 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2168 "from file system please do it manually"
2161 2169 msgstr ""
2162 2170
2163 2171 #: rhodecode/templates/admin/repos/repo_edit_perms.html:3
@@ -2189,7 +2197,7 b' msgstr ""'
2189 2197
2190 2198 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2191 2199 #: rhodecode/templates/data_table/_dt_elements.html:67
2192 #: rhodecode/templates/journal/journal.html:87
2200 #: rhodecode/templates/journal/journal.html:95
2193 2201 #: rhodecode/templates/summary/summary.html:85
2194 2202 msgid "private repository"
2195 2203 msgstr ""
@@ -2694,7 +2702,7 b' msgid "My permissions"'
2694 2702 msgstr ""
2695 2703
2696 2704 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2697 #: rhodecode/templates/journal/journal.html:41
2705 #: rhodecode/templates/journal/journal.html:49
2698 2706 msgid "My repos"
2699 2707 msgstr ""
2700 2708
@@ -2905,7 +2913,6 b' msgstr ""'
2905 2913 #: rhodecode/templates/base/base.html:324
2906 2914 #: rhodecode/templates/base/base.html:326
2907 2915 #: rhodecode/templates/journal/journal.html:4
2908 #: rhodecode/templates/journal/journal.html:21
2909 2916 #: rhodecode/templates/journal/public_journal.html:4
2910 2917 msgid "Journal"
2911 2918 msgstr ""
@@ -3037,7 +3044,7 b' msgid "add another comment"'
3037 3044 msgstr ""
3038 3045
3039 3046 #: rhodecode/templates/base/root.html:43
3040 #: rhodecode/templates/journal/journal.html:75
3047 #: rhodecode/templates/journal/journal.html:83
3041 3048 #: rhodecode/templates/summary/summary.html:57
3042 3049 msgid "Stop following this repository"
3043 3050 msgstr ""
@@ -3143,7 +3150,7 b' msgid "Affected number of files, click t'
3143 3150 msgstr ""
3144 3151
3145 3152 #: rhodecode/templates/changelog/changelog.html:91
3146 #: rhodecode/templates/changeset/changeset.html:44
3153 #: rhodecode/templates/changeset/changeset.html:65
3147 3154 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3148 3155 #: rhodecode/templates/changeset/changeset_range.html:46
3149 3156 msgid "Changeset status"
@@ -3155,23 +3162,22 b' msgid "Click to open associated pull req'
3155 3162 msgstr ""
3156 3163
3157 3164 #: rhodecode/templates/changelog/changelog.html:104
3158 #: rhodecode/templates/changeset/changeset.html:85
3159 3165 msgid "Parent"
3160 3166 msgstr ""
3161 3167
3162 3168 #: rhodecode/templates/changelog/changelog.html:110
3163 #: rhodecode/templates/changeset/changeset.html:91
3169 #: rhodecode/templates/changeset/changeset.html:42
3164 3170 msgid "No parents"
3165 3171 msgstr ""
3166 3172
3167 3173 #: rhodecode/templates/changelog/changelog.html:115
3168 #: rhodecode/templates/changeset/changeset.html:95
3174 #: rhodecode/templates/changeset/changeset.html:106
3169 3175 #: rhodecode/templates/changeset/changeset_range.html:79
3170 3176 msgid "merge"
3171 3177 msgstr ""
3172 3178
3173 3179 #: rhodecode/templates/changelog/changelog.html:118
3174 #: rhodecode/templates/changeset/changeset.html:98
3180 #: rhodecode/templates/changeset/changeset.html:109
3175 3181 #: rhodecode/templates/changeset/changeset_range.html:82
3176 3182 #: rhodecode/templates/files/files.html:29
3177 3183 #: rhodecode/templates/files/files_add.html:33
@@ -3186,7 +3192,7 b' msgid "bookmark"'
3186 3192 msgstr ""
3187 3193
3188 3194 #: rhodecode/templates/changelog/changelog.html:130
3189 #: rhodecode/templates/changeset/changeset.html:103
3195 #: rhodecode/templates/changeset/changeset.html:114
3190 3196 #: rhodecode/templates/changeset/changeset_range.html:94
3191 3197 msgid "tag"
3192 3198 msgstr ""
@@ -3196,26 +3202,26 b' msgid "There are no changes yet"'
3196 3202 msgstr ""
3197 3203
3198 3204 #: rhodecode/templates/changelog/changelog_details.html:4
3199 #: rhodecode/templates/changeset/changeset.html:73
3205 #: rhodecode/templates/changeset/changeset.html:94
3200 3206 msgid "removed"
3201 3207 msgstr ""
3202 3208
3203 3209 #: rhodecode/templates/changelog/changelog_details.html:5
3204 #: rhodecode/templates/changeset/changeset.html:74
3210 #: rhodecode/templates/changeset/changeset.html:95
3205 3211 msgid "changed"
3206 3212 msgstr ""
3207 3213
3208 3214 #: rhodecode/templates/changelog/changelog_details.html:6
3209 #: rhodecode/templates/changeset/changeset.html:75
3215 #: rhodecode/templates/changeset/changeset.html:96
3210 3216 msgid "added"
3211 3217 msgstr ""
3212 3218
3213 3219 #: rhodecode/templates/changelog/changelog_details.html:8
3214 3220 #: rhodecode/templates/changelog/changelog_details.html:9
3215 3221 #: rhodecode/templates/changelog/changelog_details.html:10
3216 #: rhodecode/templates/changeset/changeset.html:77
3217 #: rhodecode/templates/changeset/changeset.html:78
3218 #: rhodecode/templates/changeset/changeset.html:79
3222 #: rhodecode/templates/changeset/changeset.html:98
3223 #: rhodecode/templates/changeset/changeset.html:99
3224 #: rhodecode/templates/changeset/changeset.html:100
3219 3225 #, python-format
3220 3226 msgid "affected %s files"
3221 3227 msgstr ""
@@ -3229,21 +3235,25 b' msgstr ""'
3229 3235 msgid "Changeset"
3230 3236 msgstr ""
3231 3237
3232 #: rhodecode/templates/changeset/changeset.html:49
3238 #: rhodecode/templates/changeset/changeset.html:52
3239 msgid "No children"
3240 msgstr ""
3241
3242 #: rhodecode/templates/changeset/changeset.html:70
3233 3243 #: rhodecode/templates/changeset/diff_block.html:20
3234 3244 msgid "raw diff"
3235 3245 msgstr ""
3236 3246
3237 #: rhodecode/templates/changeset/changeset.html:50
3247 #: rhodecode/templates/changeset/changeset.html:71
3238 3248 msgid "patch diff"
3239 3249 msgstr ""
3240 3250
3241 #: rhodecode/templates/changeset/changeset.html:51
3251 #: rhodecode/templates/changeset/changeset.html:72
3242 3252 #: rhodecode/templates/changeset/diff_block.html:21
3243 3253 msgid "download diff"
3244 3254 msgstr ""
3245 3255
3246 #: rhodecode/templates/changeset/changeset.html:55
3256 #: rhodecode/templates/changeset/changeset.html:76
3247 3257 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3248 3258 #, python-format
3249 3259 msgid "%d comment"
@@ -3251,7 +3261,7 b' msgid_plural "%d comments"'
3251 3261 msgstr[0] ""
3252 3262 msgstr[1] ""
3253 3263
3254 #: rhodecode/templates/changeset/changeset.html:55
3264 #: rhodecode/templates/changeset/changeset.html:76
3255 3265 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3256 3266 #, python-format
3257 3267 msgid "(%d inline)"
@@ -3259,7 +3269,7 b' msgid_plural "(%d inline)"'
3259 3269 msgstr[0] ""
3260 3270 msgstr[1] ""
3261 3271
3262 #: rhodecode/templates/changeset/changeset.html:111
3272 #: rhodecode/templates/changeset/changeset.html:122
3263 3273 #: rhodecode/templates/compare/compare_diff.html:44
3264 3274 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3265 3275 #, python-format
@@ -3268,7 +3278,7 b' msgid_plural "%s files changed"'
3268 3278 msgstr[0] ""
3269 3279 msgstr[1] ""
3270 3280
3271 #: rhodecode/templates/changeset/changeset.html:113
3281 #: rhodecode/templates/changeset/changeset.html:124
3272 3282 #: rhodecode/templates/compare/compare_diff.html:46
3273 3283 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3274 3284 #, python-format
@@ -3297,7 +3307,7 b' msgid "Use @username inside this text to'
3297 3307 msgstr ""
3298 3308
3299 3309 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3300 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3310 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3301 3311 msgid "Comment"
3302 3312 msgstr ""
3303 3313
@@ -3318,15 +3328,15 b' msgstr ""'
3318 3328 msgid "Leave a comment"
3319 3329 msgstr ""
3320 3330
3321 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3331 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3322 3332 msgid "Check this to change current status of code-review for this changeset"
3323 3333 msgstr ""
3324 3334
3325 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3335 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3326 3336 msgid "change status"
3327 3337 msgstr ""
3328 3338
3329 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3339 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3330 3340 msgid "Comment and close"
3331 3341 msgstr ""
3332 3342
@@ -3380,19 +3390,19 b' msgid "Fork"'
3380 3390 msgstr ""
3381 3391
3382 3392 #: rhodecode/templates/data_table/_dt_elements.html:60
3383 #: rhodecode/templates/journal/journal.html:81
3393 #: rhodecode/templates/journal/journal.html:89
3384 3394 #: rhodecode/templates/summary/summary.html:77
3385 3395 msgid "Mercurial repository"
3386 3396 msgstr ""
3387 3397
3388 3398 #: rhodecode/templates/data_table/_dt_elements.html:62
3389 #: rhodecode/templates/journal/journal.html:83
3399 #: rhodecode/templates/journal/journal.html:91
3390 3400 #: rhodecode/templates/summary/summary.html:80
3391 3401 msgid "Git repository"
3392 3402 msgstr ""
3393 3403
3394 3404 #: rhodecode/templates/data_table/_dt_elements.html:69
3395 #: rhodecode/templates/journal/journal.html:89
3405 #: rhodecode/templates/journal/journal.html:97
3396 3406 #: rhodecode/templates/summary/summary.html:87
3397 3407 msgid "public repository"
3398 3408 msgstr ""
@@ -3764,50 +3774,50 b' msgstr ""'
3764 3774 msgid "There are no forks yet"
3765 3775 msgstr ""
3766 3776
3767 #: rhodecode/templates/journal/journal.html:13
3777 #: rhodecode/templates/journal/journal.html:21
3768 3778 msgid "ATOM journal feed"
3769 3779 msgstr ""
3770 3780
3771 #: rhodecode/templates/journal/journal.html:14
3781 #: rhodecode/templates/journal/journal.html:22
3772 3782 msgid "RSS journal feed"
3773 3783 msgstr ""
3774 3784
3775 #: rhodecode/templates/journal/journal.html:24
3785 #: rhodecode/templates/journal/journal.html:32
3776 3786 #: rhodecode/templates/pullrequests/pullrequest.html:55
3777 3787 msgid "Refresh"
3778 3788 msgstr ""
3779 3789
3780 #: rhodecode/templates/journal/journal.html:27
3790 #: rhodecode/templates/journal/journal.html:35
3781 3791 #: rhodecode/templates/journal/public_journal.html:24
3782 3792 msgid "RSS feed"
3783 3793 msgstr ""
3784 3794
3785 #: rhodecode/templates/journal/journal.html:30
3795 #: rhodecode/templates/journal/journal.html:38
3786 3796 #: rhodecode/templates/journal/public_journal.html:27
3787 3797 msgid "ATOM feed"
3788 3798 msgstr ""
3789 3799
3790 #: rhodecode/templates/journal/journal.html:41
3800 #: rhodecode/templates/journal/journal.html:49
3791 3801 msgid "Watched"
3792 3802 msgstr ""
3793 3803
3794 #: rhodecode/templates/journal/journal.html:46
3804 #: rhodecode/templates/journal/journal.html:54
3795 3805 msgid "ADD"
3796 3806 msgstr ""
3797 3807
3798 #: rhodecode/templates/journal/journal.html:69
3808 #: rhodecode/templates/journal/journal.html:77
3799 3809 msgid "following user"
3800 3810 msgstr ""
3801 3811
3802 #: rhodecode/templates/journal/journal.html:69
3812 #: rhodecode/templates/journal/journal.html:77
3803 3813 msgid "user"
3804 3814 msgstr ""
3805 3815
3806 #: rhodecode/templates/journal/journal.html:102
3816 #: rhodecode/templates/journal/journal.html:110
3807 3817 msgid "You are not following any users or repositories"
3808 3818 msgstr ""
3809 3819
3810 #: rhodecode/templates/journal/journal_data.html:51
3820 #: rhodecode/templates/journal/journal_data.html:55
3811 3821 msgid "No entries yet"
3812 3822 msgstr ""
3813 3823
@@ -3906,6 +3916,11 b' msgstr ""'
3906 3916 msgid "Compare view"
3907 3917 msgstr ""
3908 3918
3919 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
3920 #, fuzzy
3921 msgid "reviewer"
3922 msgstr ""
3923
3909 3924 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
3910 3925 msgid "all pull requests"
3911 3926 msgstr ""
@@ -3970,6 +3985,14 b' msgstr ""'
3970 3985 msgid "%s Settings"
3971 3986 msgstr ""
3972 3987
3988 #: rhodecode/templates/settings/repo_settings.html:102
3989 msgid "Delete repository"
3990 msgstr ""
3991
3992 #: rhodecode/templates/settings/repo_settings.html:109
3993 msgid "Remove repo"
3994 msgstr ""
3995
3973 3996 #: rhodecode/templates/shortlog/shortlog.html:5
3974 3997 #, python-format
3975 3998 msgid "%s Shortlog"
@@ -4171,3 +4194,19 b' msgstr ""'
4171 4194 msgid "Compare tags"
4172 4195 msgstr ""
4173 4196
4197 #~ msgid ""
4198 #~ "%s repository is not mapped to db"
4199 #~ " perhaps it was created or renamed"
4200 #~ " from the file system please run "
4201 #~ "the application again in order to "
4202 #~ "rescan repositories"
4203 #~ msgstr ""
4204
4205 #~ msgid ""
4206 #~ "%s repository is not mapped to db"
4207 #~ " perhaps it was moved or renamed "
4208 #~ "from the filesystem please run the "
4209 #~ "application again in order to rescan "
4210 #~ "repositories"
4211 #~ msgstr ""
4212
@@ -7,7 +7,7 b' msgid ""'
7 7 msgstr ""
8 8 "Project-Id-Version: RhodeCode 1.1.5\n"
9 9 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
10 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
11 11 "PO-Revision-Date: 2012-10-02 11:32+0100\n"
12 12 "Last-Translator: Vincent Duvert <vincent@duvert.net>\n"
13 13 "Language-Team: fr <LL@li.org>\n"
@@ -21,26 +21,26 b' msgstr ""'
21 21 msgid "All Branches"
22 22 msgstr "Toutes les branches"
23 23
24 #: rhodecode/controllers/changeset.py:84
24 #: rhodecode/controllers/changeset.py:83
25 25 msgid "show white space"
26 26 msgstr "Afficher les espaces et tabulations"
27 27
28 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
28 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
29 29 msgid "ignore white space"
30 30 msgstr "Ignorer les espaces et tabulations"
31 31
32 #: rhodecode/controllers/changeset.py:164
32 #: rhodecode/controllers/changeset.py:163
33 33 #, python-format
34 34 msgid "%s line context"
35 35 msgstr "Afficher %s lignes de contexte"
36 36
37 #: rhodecode/controllers/changeset.py:315
38 #: rhodecode/controllers/pullrequests.py:411
37 #: rhodecode/controllers/changeset.py:314
38 #: rhodecode/controllers/pullrequests.py:417
39 39 #, python-format
40 40 msgid "Status change -> %s"
41 41 msgstr "Changement de statut -> %s"
42 42
43 #: rhodecode/controllers/changeset.py:346
43 #: rhodecode/controllers/changeset.py:345
44 44 msgid ""
45 45 "Changing status on a changeset associated witha closed pull request is "
46 46 "not allowed"
@@ -49,7 +49,7 b' msgstr ""'
49 49 "n’est pas autorisé."
50 50
51 51 #: rhodecode/controllers/compare.py:75
52 #: rhodecode/controllers/pullrequests.py:117
52 #: rhodecode/controllers/pullrequests.py:121
53 53 #: rhodecode/controllers/shortlog.py:100
54 54 msgid "There are no changesets yet"
55 55 msgstr "Il n’y a aucun changement pour le moment"
@@ -95,8 +95,8 b' msgid "%s %s feed"'
95 95 msgstr "Flux %s de %s"
96 96
97 97 #: rhodecode/controllers/feed.py:86
98 #: rhodecode/templates/changeset/changeset.html:126
99 #: rhodecode/templates/changeset/changeset.html:138
98 #: rhodecode/templates/changeset/changeset.html:137
99 #: rhodecode/templates/changeset/changeset.html:149
100 100 #: rhodecode/templates/compare/compare_diff.html:62
101 101 #: rhodecode/templates/compare/compare_diff.html:73
102 102 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -176,54 +176,33 b' msgstr "Type d\xe2\x80\x99archive inconnu"'
176 176 msgid "Changesets"
177 177 msgstr "Changesets"
178 178
179 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
179 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
180 180 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
181 181 msgid "Branches"
182 182 msgstr "Branches"
183 183
184 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
184 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
185 185 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
186 186 msgid "Tags"
187 187 msgstr "Tags"
188 188
189 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
190 #, python-format
191 msgid ""
192 "%s repository is not mapped to db perhaps it was created or renamed from "
193 "the filesystem please run the application again in order to rescan "
194 "repositories"
195 msgstr ""
196 "Le dépôt %s n’est pas représenté dans la base de données. Il a "
197 "probablement été créé ou renommé manuellement. Veuillez relancer "
198 "l’application pour rescanner les dépôts."
199
200 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
201 #, python-format
202 msgid ""
203 "%s repository is not mapped to db perhaps it was created or renamed from "
204 "the file system please run the application again in order to rescan "
205 "repositories"
206 msgstr ""
207 "Le dépôt %s n’est pas représenté dans la base de données. Il a "
208 "probablement été créé ou renommé manuellement. Veuillez relancer "
209 "l’application pour rescanner les dépôts."
210
211 #: rhodecode/controllers/forks.py:168
189 #: rhodecode/controllers/forks.py:158
212 190 #, python-format
213 191 msgid "forked %s repository as %s"
214 192 msgstr "dépôt %s forké en tant que %s"
215 193
216 #: rhodecode/controllers/forks.py:182
194 #: rhodecode/controllers/forks.py:172
217 195 #, python-format
218 196 msgid "An error occurred during repository forking %s"
219 197 msgstr "Une erreur est survenue durant le fork du dépôt %s."
220 198
221 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
199 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
222 200 msgid "public journal"
223 201 msgstr "Journal public"
224 202
225 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
203 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
226 204 #: rhodecode/templates/base/base.html:232
205 #: rhodecode/templates/journal/journal.html:12
227 206 msgid "journal"
228 207 msgstr "Journal"
229 208
@@ -243,30 +222,34 b' msgstr ""'
243 222 "Votre mot de passe a été réinitialisé. Votre nouveau mot de passe vous a "
244 223 "été envoyé par e-mail."
245 224
246 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
225 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
247 226 msgid "Bookmarks"
248 227 msgstr "Signets"
249 228
250 #: rhodecode/controllers/pullrequests.py:186
229 #: rhodecode/controllers/pullrequests.py:190
251 230 msgid "Pull request requires a title with min. 3 chars"
252 231 msgstr "Les requêtes de pull nécessitent un titre d’au moins 3 caractères."
253 232
254 #: rhodecode/controllers/pullrequests.py:188
233 #: rhodecode/controllers/pullrequests.py:192
255 234 msgid "error during creation of pull request"
256 235 msgstr "Une erreur est survenue lors de la création de la requête de pull."
257 236
258 #: rhodecode/controllers/pullrequests.py:220
237 #: rhodecode/controllers/pullrequests.py:224
259 238 msgid "Successfully opened new pull request"
260 239 msgstr "La requête de pull a été ouverte avec succès."
261 240
262 #: rhodecode/controllers/pullrequests.py:223
241 #: rhodecode/controllers/pullrequests.py:227
263 242 msgid "Error occurred during sending pull request"
264 243 msgstr "Une erreur est survenue durant l’envoi de la requête de pull."
265 244
266 #: rhodecode/controllers/pullrequests.py:256
245 #: rhodecode/controllers/pullrequests.py:260
267 246 msgid "Successfully deleted pull request"
268 247 msgstr "La requête de pull a été supprimée avec succès."
269 248
249 #: rhodecode/controllers/pullrequests.py:452
250 msgid "Closing pull request on other statuses than rejected or approved forbidden"
251 msgstr ""
252
270 253 #: rhodecode/controllers/search.py:134
271 254 msgid "Invalid search query. Try quoting it."
272 255 msgstr "Requête invalide. Essayer de la mettre entre guillemets."
@@ -281,58 +264,46 b' msgstr ""'
281 264 msgid "An error occurred during this search operation"
282 265 msgstr "Une erreur est survenue durant l’opération de recherche."
283 266
284 #: rhodecode/controllers/settings.py:108
285 #: rhodecode/controllers/admin/repos.py:268
267 #: rhodecode/controllers/settings.py:119
268 #: rhodecode/controllers/admin/repos.py:272
286 269 #, python-format
287 270 msgid "Repository %s updated successfully"
288 271 msgstr "Dépôt %s mis à jour avec succès."
289 272
290 #: rhodecode/controllers/settings.py:126
291 #: rhodecode/controllers/admin/repos.py:286
273 #: rhodecode/controllers/settings.py:137
274 #: rhodecode/controllers/admin/repos.py:290
292 275 #, python-format
293 276 msgid "error occurred during update of repository %s"
294 277 msgstr "Une erreur est survenue lors de la mise à jour du dépôt %s."
295 278
296 #: rhodecode/controllers/settings.py:144
297 #: rhodecode/controllers/admin/repos.py:304
298 #, python-format
299 msgid ""
300 "%s repository is not mapped to db perhaps it was moved or renamed from "
301 "the filesystem please run the application again in order to rescan "
302 "repositories"
303 msgstr ""
304 "Le dépôt %s n’est pas représenté dans la base de données. Il a "
305 "probablement été déplacé ou renommé manuellement. Veuillez relancer "
306 "l’application pour rescanner les dépôts."
307
308 #: rhodecode/controllers/settings.py:156
309 #: rhodecode/controllers/admin/repos.py:316
279 #: rhodecode/controllers/settings.py:162
280 #: rhodecode/controllers/admin/repos.py:315
310 281 #, python-format
311 282 msgid "deleted repository %s"
312 283 msgstr "Dépôt %s supprimé"
313 284
314 #: rhodecode/controllers/settings.py:160
315 #: rhodecode/controllers/admin/repos.py:326
316 #: rhodecode/controllers/admin/repos.py:332
285 #: rhodecode/controllers/settings.py:166
286 #: rhodecode/controllers/admin/repos.py:325
287 #: rhodecode/controllers/admin/repos.py:331
317 288 #, python-format
318 289 msgid "An error occurred during deletion of %s"
319 290 msgstr "Erreur pendant la suppression de %s"
320 291
321 #: rhodecode/controllers/settings.py:179
292 #: rhodecode/controllers/settings.py:185
322 293 msgid "unlocked"
323 294 msgstr "déverrouillé"
324 295
325 #: rhodecode/controllers/settings.py:182
296 #: rhodecode/controllers/settings.py:188
326 297 msgid "locked"
327 298 msgstr "verrouillé"
328 299
329 #: rhodecode/controllers/settings.py:184
300 #: rhodecode/controllers/settings.py:190
330 301 #, python-format
331 302 msgid "Repository has been %s"
332 303 msgstr "Le dépôt a été %s."
333 304
334 #: rhodecode/controllers/settings.py:188
335 #: rhodecode/controllers/admin/repos.py:424
305 #: rhodecode/controllers/settings.py:194
306 #: rhodecode/controllers/admin/repos.py:423
336 307 msgid "An error occurred during unlocking"
337 308 msgstr "Une erreur est survenue durant le déverrouillage."
338 309
@@ -483,80 +454,80 b' msgstr "Permissions par d\xc3\xa9faut mises \xc3\xa0 jour avec succ\xc3\xa8s"'
483 454 msgid "error occurred during update of permissions"
484 455 msgstr "erreur pendant la mise à jour des permissions"
485 456
486 #: rhodecode/controllers/admin/repos.py:125
457 #: rhodecode/controllers/admin/repos.py:121
487 458 msgid "--REMOVE FORK--"
488 459 msgstr "[Pas un fork]"
489 460
490 #: rhodecode/controllers/admin/repos.py:194
461 #: rhodecode/controllers/admin/repos.py:190
491 462 #, python-format
492 463 msgid "created repository %s from %s"
493 464 msgstr "Le dépôt %s a été créé depuis %s."
494 465
495 #: rhodecode/controllers/admin/repos.py:198
466 #: rhodecode/controllers/admin/repos.py:194
496 467 #, python-format
497 468 msgid "created repository %s"
498 469 msgstr "Le dépôt %s a été créé."
499 470
500 #: rhodecode/controllers/admin/repos.py:229
471 #: rhodecode/controllers/admin/repos.py:225
501 472 #, python-format
502 473 msgid "error occurred during creation of repository %s"
503 474 msgstr "Une erreur est survenue durant la création du dépôt %s."
504 475
505 #: rhodecode/controllers/admin/repos.py:321
476 #: rhodecode/controllers/admin/repos.py:320
506 477 #, python-format
507 478 msgid "Cannot delete %s it still contains attached forks"
508 479 msgstr "Impossible de supprimer le dépôt %s : Des forks y sont attachés."
509 480
510 #: rhodecode/controllers/admin/repos.py:350
481 #: rhodecode/controllers/admin/repos.py:349
511 482 msgid "An error occurred during deletion of repository user"
512 483 msgstr "Une erreur est survenue durant la suppression de l’utilisateur du dépôt."
513 484
514 #: rhodecode/controllers/admin/repos.py:369
485 #: rhodecode/controllers/admin/repos.py:368
515 486 msgid "An error occurred during deletion of repository users groups"
516 487 msgstr ""
517 488 "Une erreur est survenue durant la suppression du groupe d’utilisateurs de"
518 489 " ce dépôt."
519 490
520 #: rhodecode/controllers/admin/repos.py:387
491 #: rhodecode/controllers/admin/repos.py:386
521 492 msgid "An error occurred during deletion of repository stats"
522 493 msgstr "Une erreur est survenue durant la suppression des statistiques du dépôt."
523 494
524 #: rhodecode/controllers/admin/repos.py:404
495 #: rhodecode/controllers/admin/repos.py:403
525 496 msgid "An error occurred during cache invalidation"
526 497 msgstr "Une erreur est survenue durant l’invalidation du cache."
527 498
528 #: rhodecode/controllers/admin/repos.py:444
499 #: rhodecode/controllers/admin/repos.py:443
529 500 msgid "Updated repository visibility in public journal"
530 501 msgstr "La visibilité du dépôt dans le journal public a été mise à jour."
531 502
532 #: rhodecode/controllers/admin/repos.py:448
503 #: rhodecode/controllers/admin/repos.py:447
533 504 msgid "An error occurred during setting this repository in public journal"
534 505 msgstr ""
535 506 "Une erreur est survenue durant la configuration du journal public pour ce"
536 507 " dépôt."
537 508
538 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
509 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
539 510 msgid "Token mismatch"
540 511 msgstr "Jeton d’authentification incorrect."
541 512
542 #: rhodecode/controllers/admin/repos.py:466
513 #: rhodecode/controllers/admin/repos.py:465
543 514 msgid "Pulled from remote location"
544 515 msgstr "Les changements distants ont été récupérés."
545 516
546 #: rhodecode/controllers/admin/repos.py:468
517 #: rhodecode/controllers/admin/repos.py:467
547 518 msgid "An error occurred during pull from remote location"
548 519 msgstr "Une erreur est survenue durant le pull depuis la source distante."
549 520
550 #: rhodecode/controllers/admin/repos.py:484
521 #: rhodecode/controllers/admin/repos.py:483
551 522 msgid "Nothing"
552 523 msgstr "[Aucun dépôt]"
553 524
554 #: rhodecode/controllers/admin/repos.py:486
525 #: rhodecode/controllers/admin/repos.py:485
555 526 #, python-format
556 527 msgid "Marked repo %s as fork of %s"
557 528 msgstr "Le dépôt %s a été marké comme fork de %s"
558 529
559 #: rhodecode/controllers/admin/repos.py:490
530 #: rhodecode/controllers/admin/repos.py:489
560 531 msgid "An error occurred during this operation"
561 532 msgstr "Une erreur est survenue durant cette opération."
562 533
@@ -804,152 +775,163 b' msgstr ""'
804 775 msgid "No changes detected"
805 776 msgstr "Aucun changement détecté."
806 777
807 #: rhodecode/lib/helpers.py:373
778 #: rhodecode/lib/helpers.py:374
808 779 #, python-format
809 780 msgid "%a, %d %b %Y %H:%M:%S"
810 781 msgstr "%d/%m/%Y à %H:%M:%S"
811 782
812 #: rhodecode/lib/helpers.py:485
783 #: rhodecode/lib/helpers.py:486
813 784 msgid "True"
814 785 msgstr "Vrai"
815 786
816 #: rhodecode/lib/helpers.py:489
787 #: rhodecode/lib/helpers.py:490
817 788 msgid "False"
818 789 msgstr "Faux"
819 790
820 #: rhodecode/lib/helpers.py:529
791 #: rhodecode/lib/helpers.py:530
821 792 #, fuzzy, python-format
822 793 msgid "Deleted branch: %s"
823 794 msgstr "Dépôt %s supprimé"
824 795
825 #: rhodecode/lib/helpers.py:532
796 #: rhodecode/lib/helpers.py:533
826 797 #, fuzzy, python-format
827 798 msgid "Created tag: %s"
828 799 msgstr "utilisateur %s créé"
829 800
830 #: rhodecode/lib/helpers.py:545
801 #: rhodecode/lib/helpers.py:546
831 802 msgid "Changeset not found"
832 803 msgstr "Ensemble de changements non trouvé"
833 804
834 #: rhodecode/lib/helpers.py:588
805 #: rhodecode/lib/helpers.py:589
835 806 #, python-format
836 807 msgid "Show all combined changesets %s->%s"
837 808 msgstr "Afficher les changements combinés %s->%s"
838 809
839 #: rhodecode/lib/helpers.py:594
810 #: rhodecode/lib/helpers.py:595
840 811 msgid "compare view"
841 812 msgstr "vue de comparaison"
842 813
843 #: rhodecode/lib/helpers.py:614
814 #: rhodecode/lib/helpers.py:615
844 815 msgid "and"
845 816 msgstr "et"
846 817
847 #: rhodecode/lib/helpers.py:615
818 #: rhodecode/lib/helpers.py:616
848 819 #, python-format
849 820 msgid "%s more"
850 821 msgstr "%s de plus"
851 822
852 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
823 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
853 824 msgid "revisions"
854 825 msgstr "révisions"
855 826
856 #: rhodecode/lib/helpers.py:640
827 #: rhodecode/lib/helpers.py:641
857 828 #, fuzzy, python-format
858 829 msgid "fork name %s"
859 830 msgstr "Nom du fork %s"
860 831
861 #: rhodecode/lib/helpers.py:653
832 #: rhodecode/lib/helpers.py:658
862 833 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
863 834 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
864 835 #, python-format
865 836 msgid "Pull request #%s"
866 837 msgstr "Requête de pull #%s"
867 838
868 #: rhodecode/lib/helpers.py:659
839 #: rhodecode/lib/helpers.py:664
869 840 msgid "[deleted] repository"
870 841 msgstr "[a supprimé] le dépôt"
871 842
872 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
843 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
873 844 msgid "[created] repository"
874 845 msgstr "[a créé] le dépôt"
875 846
876 #: rhodecode/lib/helpers.py:663
847 #: rhodecode/lib/helpers.py:668
877 848 msgid "[created] repository as fork"
878 849 msgstr "[a créé] le dépôt en tant que fork"
879 850
880 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
851 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
881 852 msgid "[forked] repository"
882 853 msgstr "[a forké] le dépôt"
883 854
884 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
855 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
885 856 msgid "[updated] repository"
886 857 msgstr "[a mis à jour] le dépôt"
887 858
888 #: rhodecode/lib/helpers.py:669
859 #: rhodecode/lib/helpers.py:674
889 860 msgid "[delete] repository"
890 861 msgstr "[a supprimé] le dépôt"
891 862
892 #: rhodecode/lib/helpers.py:677
863 #: rhodecode/lib/helpers.py:682
893 864 msgid "[created] user"
894 865 msgstr "[a créé] l’utilisateur"
895 866
896 #: rhodecode/lib/helpers.py:679
867 #: rhodecode/lib/helpers.py:684
897 868 msgid "[updated] user"
898 869 msgstr "[a mis à jour] l’utilisateur"
899 870
900 #: rhodecode/lib/helpers.py:681
871 #: rhodecode/lib/helpers.py:686
901 872 msgid "[created] users group"
902 873 msgstr "[a créé] le groupe d’utilisateurs"
903 874
904 #: rhodecode/lib/helpers.py:683
875 #: rhodecode/lib/helpers.py:688
905 876 msgid "[updated] users group"
906 877 msgstr "[a mis à jour] le groupe d’utilisateurs"
907 878
908 #: rhodecode/lib/helpers.py:685
879 #: rhodecode/lib/helpers.py:690
909 880 msgid "[commented] on revision in repository"
910 881 msgstr "[a commenté] une révision du dépôt"
911 882
912 #: rhodecode/lib/helpers.py:687
883 #: rhodecode/lib/helpers.py:692
913 884 msgid "[commented] on pull request for"
914 885 msgstr "[a commenté] la requête de pull pour"
915 886
916 #: rhodecode/lib/helpers.py:689
887 #: rhodecode/lib/helpers.py:694
917 888 msgid "[closed] pull request for"
918 889 msgstr "[a fermé] la requête de pull de"
919 890
920 #: rhodecode/lib/helpers.py:691
891 #: rhodecode/lib/helpers.py:696
921 892 msgid "[pushed] into"
922 893 msgstr "[a pushé] dans"
923 894
924 #: rhodecode/lib/helpers.py:693
895 #: rhodecode/lib/helpers.py:698
925 896 msgid "[committed via RhodeCode] into repository"
926 897 msgstr "[a commité via RhodeCode] dans le dépôt"
927 898
928 #: rhodecode/lib/helpers.py:695
899 #: rhodecode/lib/helpers.py:700
929 900 msgid "[pulled from remote] into repository"
930 901 msgstr "[a pullé depuis un site distant] dans le dépôt"
931 902
932 #: rhodecode/lib/helpers.py:697
903 #: rhodecode/lib/helpers.py:702
933 904 msgid "[pulled] from"
934 905 msgstr "[a pullé] depuis"
935 906
936 #: rhodecode/lib/helpers.py:699
907 #: rhodecode/lib/helpers.py:704
937 908 msgid "[started following] repository"
938 909 msgstr "[suit maintenant] le dépôt"
939 910
940 #: rhodecode/lib/helpers.py:701
911 #: rhodecode/lib/helpers.py:706
941 912 msgid "[stopped following] repository"
942 913 msgstr "[ne suit plus] le dépôt"
943 914
944 #: rhodecode/lib/helpers.py:877
915 #: rhodecode/lib/helpers.py:883
945 916 #, python-format
946 917 msgid " and %s more"
947 918 msgstr "et %s de plus"
948 919
949 #: rhodecode/lib/helpers.py:881
920 #: rhodecode/lib/helpers.py:887
950 921 msgid "No Files"
951 922 msgstr "Aucun fichier"
952 923
924 #: rhodecode/lib/helpers.py:1163
925 #, python-format
926 msgid ""
927 "%s repository is not mapped to db perhaps it was created or renamed from "
928 "the filesystem please run the application again in order to rescan "
929 "repositories"
930 msgstr ""
931 "Le dépôt %s n’est pas représenté dans la base de données. Il a "
932 "probablement été créé ou renommé manuellement. Veuillez relancer "
933 "l’application pour rescanner les dépôts."
934
953 935 #: rhodecode/lib/utils2.py:403
954 936 #, python-format
955 937 msgid "%d year"
@@ -1020,83 +1002,83 b' msgstr "\xc3\xa0 l\xe2\x80\x99instant"'
1020 1002 msgid "password reset link"
1021 1003 msgstr "Réinitialisation du mot de passe"
1022 1004
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
1005 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
1024 1006 msgid "Repository no access"
1025 1007 msgstr "Aucun accès au dépôt"
1026 1008
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
1009 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
1028 1010 msgid "Repository read access"
1029 1011 msgstr "Accès en lecture au dépôt"
1030 1012
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
1013 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
1032 1014 msgid "Repository write access"
1033 1015 msgstr "Accès en écriture au dépôt"
1034 1016
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
1017 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
1036 1018 msgid "Repository admin access"
1037 1019 msgstr "Accès administrateur au dépôt"
1038 1020
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
1021 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1040 1022 msgid "Repositories Group no access"
1041 1023 msgstr "Aucun accès au groupe de dépôts"
1042 1024
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
1025 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1044 1026 msgid "Repositories Group read access"
1045 1027 msgstr "Accès en lecture au groupe de dépôts"
1046 1028
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
1029 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1048 1030 msgid "Repositories Group write access"
1049 1031 msgstr "Accès en écriture au groupe de dépôts"
1050 1032
1051 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
1033 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1052 1034 msgid "Repositories Group admin access"
1053 1035 msgstr "Accès administrateur au groupe de dépôts"
1054 1036
1055 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1037 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1056 1038 msgid "RhodeCode Administrator"
1057 1039 msgstr "Administrateur RhodeCode"
1058 1040
1059 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1041 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1060 1042 msgid "Repository creation disabled"
1061 1043 msgstr "Création de dépôt désactivée"
1062 1044
1063 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1045 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1064 1046 msgid "Repository creation enabled"
1065 1047 msgstr "Création de dépôt activée"
1066 1048
1067 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1049 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1068 1050 msgid "Repository forking disabled"
1069 1051 msgstr "Fork de dépôt désactivé"
1070 1052
1071 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1053 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1072 1054 msgid "Repository forking enabled"
1073 1055 msgstr "Fork de dépôt activé"
1074 1056
1075 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1057 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1076 1058 msgid "Register disabled"
1077 1059 msgstr "Enregistrement désactivé"
1078 1060
1079 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1061 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1080 1062 msgid "Register new user with RhodeCode with manual activation"
1081 1063 msgstr "Enregistrer un nouvel utilisateur Rhodecode manuellement activé"
1082 1064
1083 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1065 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1084 1066 msgid "Register new user with RhodeCode with auto activation"
1085 1067 msgstr "Enregistrer un nouvel utilisateur Rhodecode auto-activé"
1086 1068
1087 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1069 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1088 1070 msgid "Not Reviewed"
1089 1071 msgstr "Pas encore relue"
1090 1072
1091 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1073 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1092 1074 msgid "Approved"
1093 1075 msgstr "Approuvée "
1094 1076
1095 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1077 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1096 1078 msgid "Rejected"
1097 1079 msgstr "Rejetée"
1098 1080
1099 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1081 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1100 1082 msgid "Under Review"
1101 1083 msgstr "En cours de relecture"
1102 1084
@@ -1166,24 +1148,24 b' msgstr "%(user)s voudrait que vous examiniez sa requ\xc3\xaate de pull n\xc2\xba%(pr_id)s"'
1166 1148 msgid "latest tip"
1167 1149 msgstr "Dernier sommet"
1168 1150
1169 #: rhodecode/model/user.py:230
1151 #: rhodecode/model/user.py:232
1170 1152 msgid "new user registration"
1171 1153 msgstr "Nouveau compte utilisateur enregistré"
1172 1154
1173 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1174 #: rhodecode/model/user.py:301
1155 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1156 #: rhodecode/model/user.py:303
1175 1157 msgid "You can't Edit this user since it's crucial for entire application"
1176 1158 msgstr ""
1177 1159 "Vous ne pouvez pas éditer cet utilisateur ; il est nécessaire pour le bon"
1178 1160 " fonctionnement de l’application."
1179 1161
1180 #: rhodecode/model/user.py:325
1162 #: rhodecode/model/user.py:327
1181 1163 msgid "You can't remove this user since it's crucial for entire application"
1182 1164 msgstr ""
1183 1165 "Vous ne pouvez pas supprimer cet utilisateur ; il est nécessaire pour le "
1184 1166 "bon fonctionnement de l’application."
1185 1167
1186 #: rhodecode/model/user.py:331
1168 #: rhodecode/model/user.py:333
1187 1169 #, python-format
1188 1170 msgid ""
1189 1171 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1314,20 +1296,20 b' msgstr "Vous n\xe2\x80\x99avez pas la permission de cr\xc3\xa9er un d\xc3\xa9p\xc3\xb4t dans ce groupe."'
1314 1296 msgid "This username or users group name is not valid"
1315 1297 msgstr "Ce nom d’utilisateur ou de groupe n’est pas valide."
1316 1298
1317 #: rhodecode/model/validators.py:582
1299 #: rhodecode/model/validators.py:591
1318 1300 msgid "This is not a valid path"
1319 1301 msgstr "Ceci n’est pas un chemin valide"
1320 1302
1321 #: rhodecode/model/validators.py:597
1303 #: rhodecode/model/validators.py:606
1322 1304 msgid "This e-mail address is already taken"
1323 1305 msgstr "Cette adresse e-mail est déjà enregistrée"
1324 1306
1325 #: rhodecode/model/validators.py:617
1307 #: rhodecode/model/validators.py:626
1326 1308 #, python-format
1327 1309 msgid "e-mail \"%(email)s\" does not exist."
1328 1310 msgstr "L’adresse e-mail « %(email)s » n’existe pas"
1329 1311
1330 #: rhodecode/model/validators.py:654
1312 #: rhodecode/model/validators.py:663
1331 1313 msgid ""
1332 1314 "The LDAP Login attribute of the CN must be specified - this is the name "
1333 1315 "of the attribute that is equivalent to \"username\""
@@ -1335,7 +1317,7 b' msgstr ""'
1335 1317 "L’attribut Login du CN doit être spécifié. Cet attribut correspond au nom"
1336 1318 " d’utilisateur."
1337 1319
1338 #: rhodecode/model/validators.py:673
1320 #: rhodecode/model/validators.py:682
1339 1321 #, python-format
1340 1322 msgid "Revisions %(revs)s are already part of pull request or have set status"
1341 1323 msgstr ""
@@ -1353,7 +1335,8 b' msgstr "Tableau de bord"'
1353 1335 #: rhodecode/templates/admin/users/users.html:9
1354 1336 #: rhodecode/templates/bookmarks/bookmarks.html:10
1355 1337 #: rhodecode/templates/branches/branches.html:9
1356 #: rhodecode/templates/journal/journal.html:40
1338 #: rhodecode/templates/journal/journal.html:9
1339 #: rhodecode/templates/journal/journal.html:48
1357 1340 #: rhodecode/templates/tags/tags.html:10
1358 1341 msgid "quick filter..."
1359 1342 msgstr "Filtre rapide…"
@@ -1419,8 +1402,8 b' msgstr "Groupe de d\xc3\xa9p\xc3\xb4ts"'
1419 1402 #: rhodecode/templates/branches/branches.html:50
1420 1403 #: rhodecode/templates/branches/branches_data.html:6
1421 1404 #: rhodecode/templates/files/files_browser.html:47
1422 #: rhodecode/templates/journal/journal.html:62
1423 #: rhodecode/templates/journal/journal.html:168
1405 #: rhodecode/templates/journal/journal.html:70
1406 #: rhodecode/templates/journal/journal.html:196
1424 1407 #: rhodecode/templates/journal/journal_page_repos.html:7
1425 1408 #: rhodecode/templates/settings/repo_settings.html:31
1426 1409 #: rhodecode/templates/summary/summary.html:43
@@ -1437,7 +1420,7 b' msgstr "Derni\xc3\xa8re modification"'
1437 1420 #: rhodecode/templates/index_base.html:74
1438 1421 #: rhodecode/templates/index_base.html:179
1439 1422 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1440 #: rhodecode/templates/journal/journal.html:170
1423 #: rhodecode/templates/journal/journal.html:198
1441 1424 msgid "Tip"
1442 1425 msgstr "Sommet"
1443 1426
@@ -1467,7 +1450,7 b' msgstr "Atom"'
1467 1450 #: rhodecode/templates/admin/users/users.html:107
1468 1451 #: rhodecode/templates/bookmarks/bookmarks.html:60
1469 1452 #: rhodecode/templates/branches/branches.html:76
1470 #: rhodecode/templates/journal/journal.html:193
1453 #: rhodecode/templates/journal/journal.html:221
1471 1454 #: rhodecode/templates/tags/tags.html:77
1472 1455 msgid "Click to sort ascending"
1473 1456 msgstr "Tri ascendant"
@@ -1480,7 +1463,7 b' msgstr "Tri ascendant"'
1480 1463 #: rhodecode/templates/admin/users/users.html:108
1481 1464 #: rhodecode/templates/bookmarks/bookmarks.html:61
1482 1465 #: rhodecode/templates/branches/branches.html:77
1483 #: rhodecode/templates/journal/journal.html:194
1466 #: rhodecode/templates/journal/journal.html:222
1484 1467 #: rhodecode/templates/tags/tags.html:78
1485 1468 msgid "Click to sort descending"
1486 1469 msgstr "Tri descendant"
@@ -1497,7 +1480,7 b' msgstr "Derni\xc3\xa8re modification"'
1497 1480 #: rhodecode/templates/admin/users/users.html:109
1498 1481 #: rhodecode/templates/bookmarks/bookmarks.html:62
1499 1482 #: rhodecode/templates/branches/branches.html:78
1500 #: rhodecode/templates/journal/journal.html:195
1483 #: rhodecode/templates/journal/journal.html:223
1501 1484 #: rhodecode/templates/tags/tags.html:79
1502 1485 msgid "No records found."
1503 1486 msgstr "Aucun élément n’a été trouvé."
@@ -1509,7 +1492,7 b' msgstr "Aucun \xc3\xa9l\xc3\xa9ment n\xe2\x80\x99a \xc3\xa9t\xc3\xa9 trouv\xc3\xa9."'
1509 1492 #: rhodecode/templates/admin/users/users.html:110
1510 1493 #: rhodecode/templates/bookmarks/bookmarks.html:63
1511 1494 #: rhodecode/templates/branches/branches.html:79
1512 #: rhodecode/templates/journal/journal.html:196
1495 #: rhodecode/templates/journal/journal.html:224
1513 1496 #: rhodecode/templates/tags/tags.html:80
1514 1497 msgid "Data error."
1515 1498 msgstr "Erreur d’intégrité des données."
@@ -1521,8 +1504,8 b' msgstr "Erreur d\xe2\x80\x99int\xc3\xa9grit\xc3\xa9 des donn\xc3\xa9es."'
1521 1504 #: rhodecode/templates/admin/users/users.html:111
1522 1505 #: rhodecode/templates/bookmarks/bookmarks.html:64
1523 1506 #: rhodecode/templates/branches/branches.html:80
1524 #: rhodecode/templates/journal/journal.html:54
1525 #: rhodecode/templates/journal/journal.html:197
1507 #: rhodecode/templates/journal/journal.html:62
1508 #: rhodecode/templates/journal/journal.html:225
1526 1509 #: rhodecode/templates/tags/tags.html:81
1527 1510 msgid "Loading..."
1528 1511 msgstr "Chargement…"
@@ -1670,10 +1653,29 b' msgid "There are no bookmarks yet"'
1670 1653 msgstr "Aucun signet n’a été créé."
1671 1654
1672 1655 #: rhodecode/templates/admin/admin.html:5
1673 #: rhodecode/templates/admin/admin.html:9
1656 #: rhodecode/templates/admin/admin.html:13
1674 1657 msgid "Admin journal"
1675 1658 msgstr "Historique d’administration"
1676 1659
1660 #: rhodecode/templates/admin/admin.html:10
1661 #, fuzzy
1662 msgid "journal filter..."
1663 msgstr "Filtre rapide…"
1664
1665 #: rhodecode/templates/admin/admin.html:12
1666 #: rhodecode/templates/journal/journal.html:11
1667 #, fuzzy
1668 msgid "filter"
1669 msgstr "Fichiers"
1670
1671 #: rhodecode/templates/admin/admin.html:13
1672 #: rhodecode/templates/journal/journal.html:12
1673 #, python-format
1674 msgid "%s entry"
1675 msgid_plural "%s entries"
1676 msgstr[0] ""
1677 msgstr[1] ""
1678
1677 1679 #: rhodecode/templates/admin/admin_log.html:6
1678 1680 #: rhodecode/templates/admin/repos/repos.html:74
1679 1681 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1702,7 +1704,7 b' msgstr "Date"'
1702 1704 msgid "From IP"
1703 1705 msgstr "Depuis l’adresse IP"
1704 1706
1705 #: rhodecode/templates/admin/admin_log.html:57
1707 #: rhodecode/templates/admin/admin_log.html:63
1706 1708 msgid "No actions yet"
1707 1709 msgstr "Aucune action n’a été enregistrée pour le moment."
1708 1710
@@ -1775,7 +1777,7 b' msgstr "Activer le verrouillage lors d\xe2\x80\x99un pull sur le d\xc3\xa9p\xc3\xb4t."'
1775 1777 #: rhodecode/templates/admin/users/user_edit.html:178
1776 1778 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1777 1779 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1778 #: rhodecode/templates/settings/repo_settings.html:93
1780 #: rhodecode/templates/settings/repo_settings.html:94
1779 1781 msgid "Save"
1780 1782 msgstr "Enregistrer"
1781 1783
@@ -2073,7 +2075,7 b' msgstr "Changer le propri\xc3\xa9taire de ce d\xc3\xa9p\xc3\xb4t."'
2073 2075 #: rhodecode/templates/files/files_add.html:82
2074 2076 #: rhodecode/templates/files/files_edit.html:68
2075 2077 #: rhodecode/templates/pullrequests/pullrequest.html:124
2076 #: rhodecode/templates/settings/repo_settings.html:94
2078 #: rhodecode/templates/settings/repo_settings.html:95
2077 2079 msgid "Reset"
2078 2080 msgstr "Réinitialiser"
2079 2081
@@ -2221,19 +2223,22 b' msgid "Delete"'
2221 2223 msgstr "Supprimer"
2222 2224
2223 2225 #: rhodecode/templates/admin/repos/repo_edit.html:278
2226 #: rhodecode/templates/settings/repo_settings.html:115
2224 2227 msgid "Remove this repository"
2225 2228 msgstr "Supprimer ce dépôt"
2226 2229
2227 2230 #: rhodecode/templates/admin/repos/repo_edit.html:278
2231 #: rhodecode/templates/settings/repo_settings.html:115
2228 2232 msgid "Confirm to delete this repository"
2229 2233 msgstr "Voulez-vous vraiment supprimer ce dépôt ?"
2230 2234
2231 2235 #: rhodecode/templates/admin/repos/repo_edit.html:282
2236 #: rhodecode/templates/settings/repo_settings.html:119
2237 #, fuzzy
2232 2238 msgid ""
2233 2239 "This repository will be renamed in a special way in order to be "
2234 "unaccesible for RhodeCode and VCS systems.\n"
2235 " If you need fully delete it from filesystem "
2236 "please do it manually"
2240 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2241 "from file system please do it manually"
2237 2242 msgstr ""
2238 2243 "Ce dépôt sera renommé de manière à le rendre inaccessible à RhodeCode et "
2239 2244 "au système de gestion de versions.\n"
@@ -2272,7 +2277,7 b' msgstr "Membre"'
2272 2277
2273 2278 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2274 2279 #: rhodecode/templates/data_table/_dt_elements.html:67
2275 #: rhodecode/templates/journal/journal.html:87
2280 #: rhodecode/templates/journal/journal.html:95
2276 2281 #: rhodecode/templates/summary/summary.html:85
2277 2282 msgid "private repository"
2278 2283 msgstr "Dépôt privé"
@@ -2798,7 +2803,7 b' msgid "My permissions"'
2798 2803 msgstr "Mes permissions"
2799 2804
2800 2805 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2801 #: rhodecode/templates/journal/journal.html:41
2806 #: rhodecode/templates/journal/journal.html:49
2802 2807 msgid "My repos"
2803 2808 msgstr "Mes dépôts"
2804 2809
@@ -3012,7 +3017,6 b' msgstr "Bo\xc3\xaete de r\xc3\xa9ception"'
3012 3017 #: rhodecode/templates/base/base.html:324
3013 3018 #: rhodecode/templates/base/base.html:326
3014 3019 #: rhodecode/templates/journal/journal.html:4
3015 #: rhodecode/templates/journal/journal.html:21
3016 3020 #: rhodecode/templates/journal/public_journal.html:4
3017 3021 msgid "Journal"
3018 3022 msgstr "Historique"
@@ -3145,7 +3149,7 b' msgid "add another comment"'
3145 3149 msgstr "Nouveau commentaire"
3146 3150
3147 3151 #: rhodecode/templates/base/root.html:43
3148 #: rhodecode/templates/journal/journal.html:75
3152 #: rhodecode/templates/journal/journal.html:83
3149 3153 #: rhodecode/templates/summary/summary.html:57
3150 3154 msgid "Stop following this repository"
3151 3155 msgstr "Arrêter de suivre ce dépôt"
@@ -3254,7 +3258,7 b' msgid "Affected number of files, click t'
3254 3258 msgstr "Nombre de fichiers modifiés, cliquez pour plus de détails"
3255 3259
3256 3260 #: rhodecode/templates/changelog/changelog.html:91
3257 #: rhodecode/templates/changeset/changeset.html:44
3261 #: rhodecode/templates/changeset/changeset.html:65
3258 3262 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3259 3263 #: rhodecode/templates/changeset/changeset_range.html:46
3260 3264 msgid "Changeset status"
@@ -3266,23 +3270,22 b' msgid "Click to open associated pull req'
3266 3270 msgstr "Cliquez ici pour ouvrir la requête de pull associée."
3267 3271
3268 3272 #: rhodecode/templates/changelog/changelog.html:104
3269 #: rhodecode/templates/changeset/changeset.html:85
3270 3273 msgid "Parent"
3271 3274 msgstr "Parent"
3272 3275
3273 3276 #: rhodecode/templates/changelog/changelog.html:110
3274 #: rhodecode/templates/changeset/changeset.html:91
3277 #: rhodecode/templates/changeset/changeset.html:42
3275 3278 msgid "No parents"
3276 3279 msgstr "Aucun parent"
3277 3280
3278 3281 #: rhodecode/templates/changelog/changelog.html:115
3279 #: rhodecode/templates/changeset/changeset.html:95
3282 #: rhodecode/templates/changeset/changeset.html:106
3280 3283 #: rhodecode/templates/changeset/changeset_range.html:79
3281 3284 msgid "merge"
3282 3285 msgstr "Fusion"
3283 3286
3284 3287 #: rhodecode/templates/changelog/changelog.html:118
3285 #: rhodecode/templates/changeset/changeset.html:98
3288 #: rhodecode/templates/changeset/changeset.html:109
3286 3289 #: rhodecode/templates/changeset/changeset_range.html:82
3287 3290 #: rhodecode/templates/files/files.html:29
3288 3291 #: rhodecode/templates/files/files_add.html:33
@@ -3297,7 +3300,7 b' msgid "bookmark"'
3297 3300 msgstr "Signet"
3298 3301
3299 3302 #: rhodecode/templates/changelog/changelog.html:130
3300 #: rhodecode/templates/changeset/changeset.html:103
3303 #: rhodecode/templates/changeset/changeset.html:114
3301 3304 #: rhodecode/templates/changeset/changeset_range.html:94
3302 3305 msgid "tag"
3303 3306 msgstr "Tag"
@@ -3307,26 +3310,26 b' msgid "There are no changes yet"'
3307 3310 msgstr "Il n’y a aucun changement pour le moment"
3308 3311
3309 3312 #: rhodecode/templates/changelog/changelog_details.html:4
3310 #: rhodecode/templates/changeset/changeset.html:73
3313 #: rhodecode/templates/changeset/changeset.html:94
3311 3314 msgid "removed"
3312 3315 msgstr "Supprimés"
3313 3316
3314 3317 #: rhodecode/templates/changelog/changelog_details.html:5
3315 #: rhodecode/templates/changeset/changeset.html:74
3318 #: rhodecode/templates/changeset/changeset.html:95
3316 3319 msgid "changed"
3317 3320 msgstr "Modifiés"
3318 3321
3319 3322 #: rhodecode/templates/changelog/changelog_details.html:6
3320 #: rhodecode/templates/changeset/changeset.html:75
3323 #: rhodecode/templates/changeset/changeset.html:96
3321 3324 msgid "added"
3322 3325 msgstr "Ajoutés"
3323 3326
3324 3327 #: rhodecode/templates/changelog/changelog_details.html:8
3325 3328 #: rhodecode/templates/changelog/changelog_details.html:9
3326 3329 #: rhodecode/templates/changelog/changelog_details.html:10
3327 #: rhodecode/templates/changeset/changeset.html:77
3328 #: rhodecode/templates/changeset/changeset.html:78
3329 #: rhodecode/templates/changeset/changeset.html:79
3330 #: rhodecode/templates/changeset/changeset.html:98
3331 #: rhodecode/templates/changeset/changeset.html:99
3332 #: rhodecode/templates/changeset/changeset.html:100
3330 3333 #, python-format
3331 3334 msgid "affected %s files"
3332 3335 msgstr "%s fichiers affectés"
@@ -3340,22 +3343,27 b' msgstr "Changeset de %s"'
3340 3343 msgid "Changeset"
3341 3344 msgstr "Changements"
3342 3345
3343 #: rhodecode/templates/changeset/changeset.html:49
3346 #: rhodecode/templates/changeset/changeset.html:52
3347 #, fuzzy
3348 msgid "No children"
3349 msgstr "Appliquer aux enfants"
3350
3351 #: rhodecode/templates/changeset/changeset.html:70
3344 3352 #: rhodecode/templates/changeset/diff_block.html:20
3345 3353 msgid "raw diff"
3346 3354 msgstr "Diff brut"
3347 3355
3348 #: rhodecode/templates/changeset/changeset.html:50
3356 #: rhodecode/templates/changeset/changeset.html:71
3349 3357 #, fuzzy
3350 3358 msgid "patch diff"
3351 3359 msgstr "Diff brut"
3352 3360
3353 #: rhodecode/templates/changeset/changeset.html:51
3361 #: rhodecode/templates/changeset/changeset.html:72
3354 3362 #: rhodecode/templates/changeset/diff_block.html:21
3355 3363 msgid "download diff"
3356 3364 msgstr "Télécharger le diff"
3357 3365
3358 #: rhodecode/templates/changeset/changeset.html:55
3366 #: rhodecode/templates/changeset/changeset.html:76
3359 3367 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3360 3368 #, python-format
3361 3369 msgid "%d comment"
@@ -3363,7 +3371,7 b' msgid_plural "%d comments"'
3363 3371 msgstr[0] "%d commentaire"
3364 3372 msgstr[1] "%d commentaires"
3365 3373
3366 #: rhodecode/templates/changeset/changeset.html:55
3374 #: rhodecode/templates/changeset/changeset.html:76
3367 3375 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3368 3376 #, python-format
3369 3377 msgid "(%d inline)"
@@ -3371,7 +3379,7 b' msgid_plural "(%d inline)"'
3371 3379 msgstr[0] "(et %d en ligne)"
3372 3380 msgstr[1] "(et %d en ligne)"
3373 3381
3374 #: rhodecode/templates/changeset/changeset.html:111
3382 #: rhodecode/templates/changeset/changeset.html:122
3375 3383 #: rhodecode/templates/compare/compare_diff.html:44
3376 3384 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3377 3385 #, fuzzy, python-format
@@ -3380,7 +3388,7 b' msgid_plural "%s files changed"'
3380 3388 msgstr[0] "%s fichié modifié"
3381 3389 msgstr[1] "%s fichié modifié"
3382 3390
3383 #: rhodecode/templates/changeset/changeset.html:113
3391 #: rhodecode/templates/changeset/changeset.html:124
3384 3392 #: rhodecode/templates/compare/compare_diff.html:46
3385 3393 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3386 3394 #, fuzzy, python-format
@@ -3413,7 +3421,7 b' msgstr ""'
3413 3421 "l’utilisateur RhodeCode en question."
3414 3422
3415 3423 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3416 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3424 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3417 3425 msgid "Comment"
3418 3426 msgstr "Commentaire"
3419 3427
@@ -3434,15 +3442,15 b' msgstr "Se connecter maintenant"'
3434 3442 msgid "Leave a comment"
3435 3443 msgstr "Laisser un commentaire"
3436 3444
3437 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3445 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3438 3446 msgid "Check this to change current status of code-review for this changeset"
3439 3447 msgstr "Cochez pour changer le statut de la relecture de code pour ce changeset"
3440 3448
3441 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3449 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3442 3450 msgid "change status"
3443 3451 msgstr "Modifier le statut"
3444 3452
3445 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3453 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3446 3454 msgid "Comment and close"
3447 3455 msgstr "Commenter et fermer"
3448 3456
@@ -3498,19 +3506,19 b' msgid "Fork"'
3498 3506 msgstr "Fork"
3499 3507
3500 3508 #: rhodecode/templates/data_table/_dt_elements.html:60
3501 #: rhodecode/templates/journal/journal.html:81
3509 #: rhodecode/templates/journal/journal.html:89
3502 3510 #: rhodecode/templates/summary/summary.html:77
3503 3511 msgid "Mercurial repository"
3504 3512 msgstr "Dépôt Mercurial"
3505 3513
3506 3514 #: rhodecode/templates/data_table/_dt_elements.html:62
3507 #: rhodecode/templates/journal/journal.html:83
3515 #: rhodecode/templates/journal/journal.html:91
3508 3516 #: rhodecode/templates/summary/summary.html:80
3509 3517 msgid "Git repository"
3510 3518 msgstr "Dépôt Git"
3511 3519
3512 3520 #: rhodecode/templates/data_table/_dt_elements.html:69
3513 #: rhodecode/templates/journal/journal.html:89
3521 #: rhodecode/templates/journal/journal.html:97
3514 3522 #: rhodecode/templates/summary/summary.html:87
3515 3523 msgid "public repository"
3516 3524 msgstr "Dépôt public"
@@ -3889,50 +3897,50 b' msgstr "fork\xc3\xa9"'
3889 3897 msgid "There are no forks yet"
3890 3898 msgstr "Il n’y a pas encore de forks."
3891 3899
3892 #: rhodecode/templates/journal/journal.html:13
3900 #: rhodecode/templates/journal/journal.html:21
3893 3901 msgid "ATOM journal feed"
3894 3902 msgstr "Flux ATOM du journal"
3895 3903
3896 #: rhodecode/templates/journal/journal.html:14
3904 #: rhodecode/templates/journal/journal.html:22
3897 3905 msgid "RSS journal feed"
3898 3906 msgstr "Flux RSS du journal"
3899 3907
3900 #: rhodecode/templates/journal/journal.html:24
3908 #: rhodecode/templates/journal/journal.html:32
3901 3909 #: rhodecode/templates/pullrequests/pullrequest.html:55
3902 3910 msgid "Refresh"
3903 3911 msgstr "Rafraîchir"
3904 3912
3905 #: rhodecode/templates/journal/journal.html:27
3913 #: rhodecode/templates/journal/journal.html:35
3906 3914 #: rhodecode/templates/journal/public_journal.html:24
3907 3915 msgid "RSS feed"
3908 3916 msgstr "Flux RSS"
3909 3917
3910 #: rhodecode/templates/journal/journal.html:30
3918 #: rhodecode/templates/journal/journal.html:38
3911 3919 #: rhodecode/templates/journal/public_journal.html:27
3912 3920 msgid "ATOM feed"
3913 3921 msgstr "Flux ATOM"
3914 3922
3915 #: rhodecode/templates/journal/journal.html:41
3923 #: rhodecode/templates/journal/journal.html:49
3916 3924 msgid "Watched"
3917 3925 msgstr "Surveillé"
3918 3926
3919 #: rhodecode/templates/journal/journal.html:46
3927 #: rhodecode/templates/journal/journal.html:54
3920 3928 msgid "ADD"
3921 3929 msgstr "AJOUTER"
3922 3930
3923 #: rhodecode/templates/journal/journal.html:69
3931 #: rhodecode/templates/journal/journal.html:77
3924 3932 msgid "following user"
3925 3933 msgstr "utilisateur suivant"
3926 3934
3927 #: rhodecode/templates/journal/journal.html:69
3935 #: rhodecode/templates/journal/journal.html:77
3928 3936 msgid "user"
3929 3937 msgstr "utilisateur"
3930 3938
3931 #: rhodecode/templates/journal/journal.html:102
3939 #: rhodecode/templates/journal/journal.html:110
3932 3940 msgid "You are not following any users or repositories"
3933 3941 msgstr "Vous ne suivez aucun utilisateur ou dépôt"
3934 3942
3935 #: rhodecode/templates/journal/journal_data.html:51
3943 #: rhodecode/templates/journal/journal_data.html:55
3936 3944 msgid "No entries yet"
3937 3945 msgstr "Aucune entrée pour le moment"
3938 3946
@@ -4031,6 +4039,11 b' msgstr "Cr\xc3\xa9\xc3\xa9 le"'
4031 4039 msgid "Compare view"
4032 4040 msgstr "Vue de comparaison"
4033 4041
4042 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
4043 #, fuzzy
4044 msgid "reviewer"
4045 msgstr "%d relecteur"
4046
4034 4047 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
4035 4048 msgid "all pull requests"
4036 4049 msgstr "Requêtes de pull"
@@ -4095,6 +4108,16 b' msgstr "Permission refus\xc3\xa9e"'
4095 4108 msgid "%s Settings"
4096 4109 msgstr "Réglages de %s"
4097 4110
4111 #: rhodecode/templates/settings/repo_settings.html:102
4112 #, fuzzy
4113 msgid "Delete repository"
4114 msgstr "[a supprimé] le dépôt"
4115
4116 #: rhodecode/templates/settings/repo_settings.html:109
4117 #, fuzzy
4118 msgid "Remove repo"
4119 msgstr "Enlever"
4120
4098 4121 #: rhodecode/templates/shortlog/shortlog.html:5
4099 4122 #, python-format
4100 4123 msgid "%s Shortlog"
@@ -4298,3 +4321,29 b' msgstr "Tags de %s"'
4298 4321 msgid "Compare tags"
4299 4322 msgstr "Comparer"
4300 4323
4324 #~ msgid ""
4325 #~ "%s repository is not mapped to db"
4326 #~ " perhaps it was created or renamed"
4327 #~ " from the file system please run "
4328 #~ "the application again in order to "
4329 #~ "rescan repositories"
4330 #~ msgstr ""
4331 #~ "Le dépôt %s n’est pas représenté "
4332 #~ "dans la base de données. Il a "
4333 #~ "probablement été créé ou renommé "
4334 #~ "manuellement. Veuillez relancer l’application "
4335 #~ "pour rescanner les dépôts."
4336
4337 #~ msgid ""
4338 #~ "%s repository is not mapped to db"
4339 #~ " perhaps it was moved or renamed "
4340 #~ "from the filesystem please run the "
4341 #~ "application again in order to rescan "
4342 #~ "repositories"
4343 #~ msgstr ""
4344 #~ "Le dépôt %s n’est pas représenté "
4345 #~ "dans la base de données. Il a "
4346 #~ "probablement été déplacé ou renommé "
4347 #~ "manuellement. Veuillez relancer l’application "
4348 #~ "pour rescanner les dépôts."
4349
@@ -12,7 +12,7 b' msgid ""'
12 12 msgstr ""
13 13 "Project-Id-Version: RhodeCode 1.2.0\n"
14 14 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
15 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
15 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
16 16 "PO-Revision-Date: 2012-10-27 15:06+0900\n"
17 17 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
18 18 "Language-Team: ja <LL@li.org>\n"
@@ -26,33 +26,33 b' msgstr ""'
26 26 msgid "All Branches"
27 27 msgstr "すべてのブランチ"
28 28
29 #: rhodecode/controllers/changeset.py:84
29 #: rhodecode/controllers/changeset.py:83
30 30 msgid "show white space"
31 31 msgstr "空白を表示"
32 32
33 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
33 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
34 34 msgid "ignore white space"
35 35 msgstr "空白を無視"
36 36
37 #: rhodecode/controllers/changeset.py:164
37 #: rhodecode/controllers/changeset.py:163
38 38 #, python-format
39 39 msgid "%s line context"
40 40 msgstr ""
41 41
42 #: rhodecode/controllers/changeset.py:315
43 #: rhodecode/controllers/pullrequests.py:411
42 #: rhodecode/controllers/changeset.py:314
43 #: rhodecode/controllers/pullrequests.py:417
44 44 #, fuzzy, python-format
45 45 msgid "Status change -> %s"
46 46 msgstr ""
47 47
48 #: rhodecode/controllers/changeset.py:346
48 #: rhodecode/controllers/changeset.py:345
49 49 msgid ""
50 50 "Changing status on a changeset associated witha closed pull request is "
51 51 "not allowed"
52 52 msgstr ""
53 53
54 54 #: rhodecode/controllers/compare.py:75
55 #: rhodecode/controllers/pullrequests.py:117
55 #: rhodecode/controllers/pullrequests.py:121
56 56 #: rhodecode/controllers/shortlog.py:100
57 57 msgid "There are no changesets yet"
58 58 msgstr "まだ変更がありません"
@@ -94,8 +94,8 b' msgid "%s %s feed"'
94 94 msgstr "%s %s フィード"
95 95
96 96 #: rhodecode/controllers/feed.py:86
97 #: rhodecode/templates/changeset/changeset.html:126
98 #: rhodecode/templates/changeset/changeset.html:138
97 #: rhodecode/templates/changeset/changeset.html:137
98 #: rhodecode/templates/changeset/changeset.html:149
99 99 #: rhodecode/templates/compare/compare_diff.html:62
100 100 #: rhodecode/templates/compare/compare_diff.html:73
101 101 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -175,52 +175,33 b' msgstr "\xe6\x9c\xaa\xe7\x9f\xa5\xe3\x81\xae\xe3\x82\xa2\xe3\x83\xbc\xe3\x82\xab\xe3\x82\xa4\xe3\x83\x96\xe7\xa8\xae\xe5\x88\xa5\xe3\x81\xa7\xe3\x81\x99"'
175 175 msgid "Changesets"
176 176 msgstr "チェンジセット"
177 177
178 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
178 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
179 179 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
180 180 msgid "Branches"
181 181 msgstr "ブランチ"
182 182
183 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
183 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
184 184 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
185 185 msgid "Tags"
186 186 msgstr "タグ"
187 187
188 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
189 #, python-format
190 msgid ""
191 "%s repository is not mapped to db perhaps it was created or renamed from "
192 "the filesystem please run the application again in order to rescan "
193 "repositories"
194 msgstr ""
195 "%s "
196 "リポジトリはDB内に見つかりませんでした。おそらくファイルシステム上で作られたか名前が変更されたためです。リポジトリをもう一度チェックするためにアプリケーションを立ち上げ直してください。"
197
198 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
199 #, python-format
200 msgid ""
201 "%s repository is not mapped to db perhaps it was created or renamed from "
202 "the file system please run the application again in order to rescan "
203 "repositories"
204 msgstr ""
205 "%s "
206 "リポジトリはDB内に見つかりませんでした。おそらくファイルシステム上で作られたか名前が変更されたためです。リポジトリをもう一度チェックするためにアプリケーションを立ち上げ直してください。"
207
208 #: rhodecode/controllers/forks.py:168
188 #: rhodecode/controllers/forks.py:158
209 189 #, python-format
210 190 msgid "forked %s repository as %s"
211 191 msgstr "リポジトリ %s を %s としてフォーク"
212 192
213 #: rhodecode/controllers/forks.py:182
193 #: rhodecode/controllers/forks.py:172
214 194 #, python-format
215 195 msgid "An error occurred during repository forking %s"
216 196 msgstr "リポジトリ %s のフォーク中にエラーが発生しました"
217 197
218 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
198 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
219 199 msgid "public journal"
220 200 msgstr "公開ジャーナル"
221 201
222 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
202 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
223 203 #: rhodecode/templates/base/base.html:232
204 #: rhodecode/templates/journal/journal.html:12
224 205 msgid "journal"
225 206 msgstr "ジャーナル"
226 207
@@ -238,30 +219,34 b' msgid ""'
238 219 "email"
239 220 msgstr "パスワードをリセットしました。新しいパスワードをあなたのメールアドレスに送りました"
240 221
241 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
222 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
242 223 msgid "Bookmarks"
243 224 msgstr "ブックマーク"
244 225
245 #: rhodecode/controllers/pullrequests.py:186
226 #: rhodecode/controllers/pullrequests.py:190
246 227 msgid "Pull request requires a title with min. 3 chars"
247 228 msgstr "プルリクエストには3文字以上のタイトルが必要です"
248 229
249 #: rhodecode/controllers/pullrequests.py:188
230 #: rhodecode/controllers/pullrequests.py:192
250 231 msgid "error during creation of pull request"
251 232 msgstr "プルリクエストの作成中にエラーが発生しました"
252 233
253 #: rhodecode/controllers/pullrequests.py:220
234 #: rhodecode/controllers/pullrequests.py:224
254 235 msgid "Successfully opened new pull request"
255 236 msgstr "新しいプルリクエストを作成しました"
256 237
257 #: rhodecode/controllers/pullrequests.py:223
238 #: rhodecode/controllers/pullrequests.py:227
258 239 msgid "Error occurred during sending pull request"
259 240 msgstr "プルリクエストの作成中にエラーが発生しました"
260 241
261 #: rhodecode/controllers/pullrequests.py:256
242 #: rhodecode/controllers/pullrequests.py:260
262 243 msgid "Successfully deleted pull request"
263 244 msgstr "プルリクエストを削除しました"
264 245
246 #: rhodecode/controllers/pullrequests.py:452
247 msgid "Closing pull request on other statuses than rejected or approved forbidden"
248 msgstr ""
249
265 250 #: rhodecode/controllers/search.py:134
266 251 msgid "Invalid search query. Try quoting it."
267 252 msgstr "無効な検索クエリーです。\\\"で囲んで下さい"
@@ -274,59 +259,48 b' msgstr "\xe6\xa4\x9c\xe7\xb4\xa2\xe3\x81\x99\xe3\x82\x8b\xe3\x81\x9f\xe3\x82\x81\xe3\x81\xae\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x87\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9\xe3\x81\x8c\xe3\x81\x82\xe3\x82\x8a\xe3\x81\xbe\xe3\x81\x9b\xe3\x82\x93\xe3\x80\x82whoosh\xe3\x81\xa7\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x87\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9\xe3\x82\x92\xe4\xbd\x9c\xe6\x88\x90\xe3\x81\x97\xe3\x81\xa6\xe4\xb8\x8b\xe3\x81\x95\xe3\x81\x84"'
274 259 msgid "An error occurred during this search operation"
275 260 msgstr "検索を実行する際にエラーがおきました"
276 261
277 #: rhodecode/controllers/settings.py:108
278 #: rhodecode/controllers/admin/repos.py:268
262 #: rhodecode/controllers/settings.py:119
263 #: rhodecode/controllers/admin/repos.py:272
279 264 #, python-format
280 265 msgid "Repository %s updated successfully"
281 266 msgstr "リポジトリ %s の更新に成功しました"
282 267
283 #: rhodecode/controllers/settings.py:126
284 #: rhodecode/controllers/admin/repos.py:286
268 #: rhodecode/controllers/settings.py:137
269 #: rhodecode/controllers/admin/repos.py:290
285 270 #, python-format
286 271 msgid "error occurred during update of repository %s"
287 272 msgstr "リポジトリ %s の更新中にエラーが発生しました"
288 273
289 #: rhodecode/controllers/settings.py:144
290 #: rhodecode/controllers/admin/repos.py:304
291 #, python-format
292 msgid ""
293 "%s repository is not mapped to db perhaps it was moved or renamed from "
294 "the filesystem please run the application again in order to rescan "
295 "repositories"
296 msgstr ""
297 "%s "
298 "リポジトリはDB内に見つかりませんでした。おそらくファイルシステム上で作られたか名前が変更されたためです。リポジトリをもう一度チェックするためにアプリケーションを立ち上げ直してください。"
299
300 #: rhodecode/controllers/settings.py:156
301 #: rhodecode/controllers/admin/repos.py:316
274 #: rhodecode/controllers/settings.py:162
275 #: rhodecode/controllers/admin/repos.py:315
302 276 #, python-format
303 277 msgid "deleted repository %s"
304 278 msgstr "リポジトリ %s を削除しました"
305 279
306 #: rhodecode/controllers/settings.py:160
307 #: rhodecode/controllers/admin/repos.py:326
308 #: rhodecode/controllers/admin/repos.py:332
280 #: rhodecode/controllers/settings.py:166
281 #: rhodecode/controllers/admin/repos.py:325
282 #: rhodecode/controllers/admin/repos.py:331
309 283 #, python-format
310 284 msgid "An error occurred during deletion of %s"
311 285 msgstr "リポジトリ %s の削除中にエラーが発生しました"
312 286
313 #: rhodecode/controllers/settings.py:179
287 #: rhodecode/controllers/settings.py:185
314 288 #, fuzzy
315 289 msgid "unlocked"
316 290 msgstr "変更可能にする"
317 291
318 #: rhodecode/controllers/settings.py:182
292 #: rhodecode/controllers/settings.py:188
319 293 #, fuzzy
320 294 msgid "locked"
321 295 msgstr "変更可能にする"
322 296
323 #: rhodecode/controllers/settings.py:184
297 #: rhodecode/controllers/settings.py:190
324 298 #, fuzzy, python-format
325 299 msgid "Repository has been %s"
326 300 msgstr ""
327 301
328 #: rhodecode/controllers/settings.py:188
329 #: rhodecode/controllers/admin/repos.py:424
302 #: rhodecode/controllers/settings.py:194
303 #: rhodecode/controllers/admin/repos.py:423
330 304 msgid "An error occurred during unlocking"
331 305 msgstr "アンロック時にエラーが発生しました"
332 306
@@ -477,76 +451,76 b' msgstr "\xe3\x83\x87\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x88\xe3\x81\xae\xe6\xa8\xa9\xe9\x99\x90\xe3\x82\x92\xe6\x9b\xb4\xe6\x96\xb0\xe3\x81\x97\xe3\x81\xbe\xe3\x81\x97\xe3\x81\x9f"'
477 451 msgid "error occurred during update of permissions"
478 452 msgstr "権限の更新中にエラーが発生しました"
479 453
480 #: rhodecode/controllers/admin/repos.py:125
454 #: rhodecode/controllers/admin/repos.py:121
481 455 msgid "--REMOVE FORK--"
482 456 msgstr "--フォーク元を削除--"
483 457
484 #: rhodecode/controllers/admin/repos.py:194
458 #: rhodecode/controllers/admin/repos.py:190
485 459 #, python-format
486 460 msgid "created repository %s from %s"
487 461 msgstr "リポジトリ %s を %s から作成"
488 462
489 #: rhodecode/controllers/admin/repos.py:198
463 #: rhodecode/controllers/admin/repos.py:194
490 464 #, python-format
491 465 msgid "created repository %s"
492 466 msgstr "リポジトリ %s を作成しました"
493 467
494 #: rhodecode/controllers/admin/repos.py:229
468 #: rhodecode/controllers/admin/repos.py:225
495 469 #, python-format
496 470 msgid "error occurred during creation of repository %s"
497 471 msgstr "リポジトリ %s を作成中にエラーが発生しました"
498 472
499 #: rhodecode/controllers/admin/repos.py:321
473 #: rhodecode/controllers/admin/repos.py:320
500 474 #, python-format
501 475 msgid "Cannot delete %s it still contains attached forks"
502 476 msgstr ""
503 477
504 #: rhodecode/controllers/admin/repos.py:350
478 #: rhodecode/controllers/admin/repos.py:349
505 479 msgid "An error occurred during deletion of repository user"
506 480 msgstr "リポジトリユーザーの削除中にエラーが発生しました"
507 481
508 #: rhodecode/controllers/admin/repos.py:369
482 #: rhodecode/controllers/admin/repos.py:368
509 483 msgid "An error occurred during deletion of repository users groups"
510 484 msgstr "リポジトリユーザーグループの削除中にエラーが発生しました"
511 485
512 #: rhodecode/controllers/admin/repos.py:387
486 #: rhodecode/controllers/admin/repos.py:386
513 487 msgid "An error occurred during deletion of repository stats"
514 488 msgstr "リポジトリステートの削除中にエラーが発生しました"
515 489
516 #: rhodecode/controllers/admin/repos.py:404
490 #: rhodecode/controllers/admin/repos.py:403
517 491 msgid "An error occurred during cache invalidation"
518 492 msgstr "キャッシュの無効化時にエラーが発生しました"
519 493
520 #: rhodecode/controllers/admin/repos.py:444
494 #: rhodecode/controllers/admin/repos.py:443
521 495 msgid "Updated repository visibility in public journal"
522 496 msgstr ""
523 497
524 #: rhodecode/controllers/admin/repos.py:448
498 #: rhodecode/controllers/admin/repos.py:447
525 499 msgid "An error occurred during setting this repository in public journal"
526 500 msgstr ""
527 501
528 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
502 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
529 503 msgid "Token mismatch"
530 504 msgstr "トークンが合いません"
531 505
532 #: rhodecode/controllers/admin/repos.py:466
506 #: rhodecode/controllers/admin/repos.py:465
533 507 msgid "Pulled from remote location"
534 508 msgstr "リモートから取得"
535 509
536 #: rhodecode/controllers/admin/repos.py:468
510 #: rhodecode/controllers/admin/repos.py:467
537 511 msgid "An error occurred during pull from remote location"
538 512 msgstr "リモートから取得中にエラーが発生しました"
539 513
540 #: rhodecode/controllers/admin/repos.py:484
514 #: rhodecode/controllers/admin/repos.py:483
541 515 msgid "Nothing"
542 516 msgstr "ありません"
543 517
544 #: rhodecode/controllers/admin/repos.py:486
518 #: rhodecode/controllers/admin/repos.py:485
545 519 #, python-format
546 520 msgid "Marked repo %s as fork of %s"
547 521 msgstr "%s リポジトリを %s のフォークとして印をつける"
548 522
549 #: rhodecode/controllers/admin/repos.py:490
523 #: rhodecode/controllers/admin/repos.py:489
550 524 msgid "An error occurred during this operation"
551 525 msgstr "操作中にエラーが発生しました"
552 526
@@ -782,152 +756,162 b' msgstr ""'
782 756 msgid "No changes detected"
783 757 msgstr "検出された変更はありません"
784 758
785 #: rhodecode/lib/helpers.py:373
759 #: rhodecode/lib/helpers.py:374
786 760 #, python-format
787 761 msgid "%a, %d %b %Y %H:%M:%S"
788 762 msgstr "%a, %d %b %Y %H:%M:%S"
789 763
790 #: rhodecode/lib/helpers.py:485
764 #: rhodecode/lib/helpers.py:486
791 765 msgid "True"
792 766 msgstr "True"
793 767
794 #: rhodecode/lib/helpers.py:489
768 #: rhodecode/lib/helpers.py:490
795 769 msgid "False"
796 770 msgstr "False"
797 771
798 #: rhodecode/lib/helpers.py:529
772 #: rhodecode/lib/helpers.py:530
799 773 #, fuzzy, python-format
800 774 msgid "Deleted branch: %s"
801 775 msgstr "リポジトリ %s を削除しました"
802 776
803 #: rhodecode/lib/helpers.py:532
777 #: rhodecode/lib/helpers.py:533
804 778 #, fuzzy, python-format
805 779 msgid "Created tag: %s"
806 780 msgstr "ユーザー %s を作成しました"
807 781
808 #: rhodecode/lib/helpers.py:545
782 #: rhodecode/lib/helpers.py:546
809 783 msgid "Changeset not found"
810 784 msgstr "リビジョンが見つかりません"
811 785
812 #: rhodecode/lib/helpers.py:588
786 #: rhodecode/lib/helpers.py:589
813 787 #, python-format
814 788 msgid "Show all combined changesets %s->%s"
815 789 msgstr "%s から %s までのすべてのチェンジセットを表示"
816 790
817 #: rhodecode/lib/helpers.py:594
791 #: rhodecode/lib/helpers.py:595
818 792 msgid "compare view"
819 793 msgstr "比較の表示"
820 794
821 #: rhodecode/lib/helpers.py:614
795 #: rhodecode/lib/helpers.py:615
822 796 msgid "and"
823 797 msgstr ""
824 798
825 #: rhodecode/lib/helpers.py:615
799 #: rhodecode/lib/helpers.py:616
826 800 #, python-format
827 801 msgid "%s more"
828 802 msgstr ""
829 803
830 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
804 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
831 805 msgid "revisions"
832 806 msgstr "リビジョン"
833 807
834 #: rhodecode/lib/helpers.py:640
808 #: rhodecode/lib/helpers.py:641
835 809 #, fuzzy, python-format
836 810 msgid "fork name %s"
837 811 msgstr ""
838 812
839 #: rhodecode/lib/helpers.py:653
813 #: rhodecode/lib/helpers.py:658
840 814 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
841 815 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
842 816 #, python-format
843 817 msgid "Pull request #%s"
844 818 msgstr "プルリクエスト #%s"
845 819
846 #: rhodecode/lib/helpers.py:659
820 #: rhodecode/lib/helpers.py:664
847 821 msgid "[deleted] repository"
848 822 msgstr "リポジトリを[削除]"
849 823
850 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
824 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
851 825 msgid "[created] repository"
852 826 msgstr "リポジトリを[作成]"
853 827
854 #: rhodecode/lib/helpers.py:663
828 #: rhodecode/lib/helpers.py:668
855 829 msgid "[created] repository as fork"
856 830 msgstr "フォークしてリポジトリを[作成]"
857 831
858 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
832 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
859 833 msgid "[forked] repository"
860 834 msgstr "リポジトリを[フォーク]"
861 835
862 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
836 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
863 837 msgid "[updated] repository"
864 838 msgstr "リポジトリを[更新]"
865 839
866 #: rhodecode/lib/helpers.py:669
840 #: rhodecode/lib/helpers.py:674
867 841 msgid "[delete] repository"
868 842 msgstr "リポジトリを[削除]"
869 843
870 #: rhodecode/lib/helpers.py:677
844 #: rhodecode/lib/helpers.py:682
871 845 msgid "[created] user"
872 846 msgstr "ユーザーを[作成]"
873 847
874 #: rhodecode/lib/helpers.py:679
848 #: rhodecode/lib/helpers.py:684
875 849 msgid "[updated] user"
876 850 msgstr "ユーザーを[更新]"
877 851
878 #: rhodecode/lib/helpers.py:681
852 #: rhodecode/lib/helpers.py:686
879 853 msgid "[created] users group"
880 854 msgstr "ユーザーグループを[作成]"
881 855
882 #: rhodecode/lib/helpers.py:683
856 #: rhodecode/lib/helpers.py:688
883 857 msgid "[updated] users group"
884 858 msgstr "ユーザーグループを[更新]"
885 859
886 #: rhodecode/lib/helpers.py:685
860 #: rhodecode/lib/helpers.py:690
887 861 msgid "[commented] on revision in repository"
888 862 msgstr "リポジトリのリビジョンに[コメント]"
889 863
890 #: rhodecode/lib/helpers.py:687
864 #: rhodecode/lib/helpers.py:692
891 865 msgid "[commented] on pull request for"
892 866 msgstr "プルリクエストに[コメント]"
893 867
894 #: rhodecode/lib/helpers.py:689
868 #: rhodecode/lib/helpers.py:694
895 869 msgid "[closed] pull request for"
896 870 msgstr "プルリクエストを[クローズ]"
897 871
898 #: rhodecode/lib/helpers.py:691
872 #: rhodecode/lib/helpers.py:696
899 873 msgid "[pushed] into"
900 874 msgstr "[プッシュ]"
901 875
902 #: rhodecode/lib/helpers.py:693
876 #: rhodecode/lib/helpers.py:698
903 877 msgid "[committed via RhodeCode] into repository"
904 878 msgstr "リポジトリに[RhodeCode経由でコミット]"
905 879
906 #: rhodecode/lib/helpers.py:695
880 #: rhodecode/lib/helpers.py:700
907 881 msgid "[pulled from remote] into repository"
908 882 msgstr "リポジトリに[リモートからプル]"
909 883
910 #: rhodecode/lib/helpers.py:697
884 #: rhodecode/lib/helpers.py:702
911 885 msgid "[pulled] from"
912 886 msgstr "[プル]"
913 887
914 #: rhodecode/lib/helpers.py:699
888 #: rhodecode/lib/helpers.py:704
915 889 msgid "[started following] repository"
916 890 msgstr "リポジトリの[フォローを開始]"
917 891
918 #: rhodecode/lib/helpers.py:701
892 #: rhodecode/lib/helpers.py:706
919 893 msgid "[stopped following] repository"
920 894 msgstr "リポジトリの[フォローを停止]"
921 895
922 #: rhodecode/lib/helpers.py:877
896 #: rhodecode/lib/helpers.py:883
923 897 #, python-format
924 898 msgid " and %s more"
925 899 msgstr " と %s 以上"
926 900
927 #: rhodecode/lib/helpers.py:881
901 #: rhodecode/lib/helpers.py:887
928 902 msgid "No Files"
929 903 msgstr "ファイルなし"
930 904
905 #: rhodecode/lib/helpers.py:1163
906 #, python-format
907 msgid ""
908 "%s repository is not mapped to db perhaps it was created or renamed from "
909 "the filesystem please run the application again in order to rescan "
910 "repositories"
911 msgstr ""
912 "%s "
913 "リポジトリはDB内に見つかりませんでした。おそらくファイルシステム上で作られたか名前が変更されたためです。リポジトリをもう一度チェックするためにアプリケーションを立ち上げ直してください。"
914
931 915 #: rhodecode/lib/utils2.py:403
932 916 #, python-format
933 917 msgid "%d year"
@@ -992,83 +976,83 b' msgstr "\xe3\x81\xa1\xe3\x82\x87\xe3\x81\x86\xe3\x81\xa9\xe3\x81\x84\xe3\x81\xbe"'
992 976 msgid "password reset link"
993 977 msgstr "パスワードリセットのリンク"
994 978
995 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
979 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
996 980 msgid "Repository no access"
997 981 msgstr ""
998 982
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
983 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
1000 984 msgid "Repository read access"
1001 985 msgstr ""
1002 986
1003 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
987 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
1004 988 msgid "Repository write access"
1005 989 msgstr ""
1006 990
1007 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
991 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
1008 992 msgid "Repository admin access"
1009 993 msgstr ""
1010 994
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
995 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1012 996 msgid "Repositories Group no access"
1013 997 msgstr ""
1014 998
1015 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1016 1000 msgid "Repositories Group read access"
1017 1001 msgstr ""
1018 1002
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
1003 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1020 1004 msgid "Repositories Group write access"
1021 1005 msgstr ""
1022 1006
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
1007 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1024 1008 msgid "Repositories Group admin access"
1025 1009 msgstr ""
1026 1010
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1028 1012 msgid "RhodeCode Administrator"
1029 1013 msgstr ""
1030 1014
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1015 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1032 1016 msgid "Repository creation disabled"
1033 1017 msgstr ""
1034 1018
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1036 1020 msgid "Repository creation enabled"
1037 1021 msgstr ""
1038 1022
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1040 1024 msgid "Repository forking disabled"
1041 1025 msgstr ""
1042 1026
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1044 1028 msgid "Repository forking enabled"
1045 1029 msgstr ""
1046 1030
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1048 1032 msgid "Register disabled"
1049 1033 msgstr ""
1050 1034
1051 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1052 1036 msgid "Register new user with RhodeCode with manual activation"
1053 1037 msgstr ""
1054 1038
1055 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1056 1040 msgid "Register new user with RhodeCode with auto activation"
1057 1041 msgstr ""
1058 1042
1059 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1060 1044 msgid "Not Reviewed"
1061 1045 msgstr "未レビュー"
1062 1046
1063 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1064 1048 msgid "Approved"
1065 1049 msgstr "承認"
1066 1050
1067 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1051 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1068 1052 msgid "Rejected"
1069 1053 msgstr "却下"
1070 1054
1071 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1055 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1072 1056 msgid "Under Review"
1073 1057 msgstr "レビュー中"
1074 1058
@@ -1138,20 +1122,20 b' msgstr ""'
1138 1122 msgid "latest tip"
1139 1123 msgstr "最新のtip"
1140 1124
1141 #: rhodecode/model/user.py:230
1125 #: rhodecode/model/user.py:232
1142 1126 msgid "new user registration"
1143 1127 msgstr "新規ユーザー登録"
1144 1128
1145 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1146 #: rhodecode/model/user.py:301
1129 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1130 #: rhodecode/model/user.py:303
1147 1131 msgid "You can't Edit this user since it's crucial for entire application"
1148 1132 msgstr ""
1149 1133
1150 #: rhodecode/model/user.py:325
1134 #: rhodecode/model/user.py:327
1151 1135 msgid "You can't remove this user since it's crucial for entire application"
1152 1136 msgstr ""
1153 1137
1154 #: rhodecode/model/user.py:331
1138 #: rhodecode/model/user.py:333
1155 1139 #, python-format
1156 1140 msgid ""
1157 1141 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1275,26 +1259,26 b' msgstr "\xe3\x81\x93\xe3\x81\xae\xe3\x83\x9a\xe3\x83\xbc\xe3\x82\xb8\xe3\x82\x92\xe8\xa6\x8b\xe3\x82\x8b\xe6\xa8\xa9\xe9\x99\x90\xe3\x81\x8c\xe3\x81\x82\xe3\x82\x8a\xe3\x81\xbe\xe3\x81\x9b\xe3\x82\x93"'
1275 1259 msgid "This username or users group name is not valid"
1276 1260 msgstr "ユーザー名かユーザーグループが不正です"
1277 1261
1278 #: rhodecode/model/validators.py:582
1262 #: rhodecode/model/validators.py:591
1279 1263 msgid "This is not a valid path"
1280 1264 msgstr "不正なパスです"
1281 1265
1282 #: rhodecode/model/validators.py:597
1266 #: rhodecode/model/validators.py:606
1283 1267 msgid "This e-mail address is already taken"
1284 1268 msgstr "このメールアドレスはすでに取得されています"
1285 1269
1286 #: rhodecode/model/validators.py:617
1270 #: rhodecode/model/validators.py:626
1287 1271 #, python-format
1288 1272 msgid "e-mail \"%(email)s\" does not exist."
1289 1273 msgstr "メールアドレス \"%(email)s\" は存在しません"
1290 1274
1291 #: rhodecode/model/validators.py:654
1275 #: rhodecode/model/validators.py:663
1292 1276 msgid ""
1293 1277 "The LDAP Login attribute of the CN must be specified - this is the name "
1294 1278 "of the attribute that is equivalent to \"username\""
1295 1279 msgstr "LDAPのこのCNに対するログイン属性は必須です。 - これは \"ユーザー名\" と同じです"
1296 1280
1297 #: rhodecode/model/validators.py:673
1281 #: rhodecode/model/validators.py:682
1298 1282 #, python-format
1299 1283 msgid "Revisions %(revs)s are already part of pull request or have set status"
1300 1284 msgstr ""
@@ -1310,7 +1294,8 b' msgstr "\xe3\x83\x80\xe3\x83\x83\xe3\x82\xb7\xe3\x83\xa5\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\x89"'
1310 1294 #: rhodecode/templates/admin/users/users.html:9
1311 1295 #: rhodecode/templates/bookmarks/bookmarks.html:10
1312 1296 #: rhodecode/templates/branches/branches.html:9
1313 #: rhodecode/templates/journal/journal.html:40
1297 #: rhodecode/templates/journal/journal.html:9
1298 #: rhodecode/templates/journal/journal.html:48
1314 1299 #: rhodecode/templates/tags/tags.html:10
1315 1300 msgid "quick filter..."
1316 1301 msgstr "クイックフィルタ..."
@@ -1376,8 +1361,8 b' msgstr "\xe3\x83\xaa\xe3\x83\x9d\xe3\x82\xb8\xe3\x83\x88\xe3\x83\xaa\xe3\x82\xb0\xe3\x83\xab\xe3\x83\xbc\xe3\x83\x97"'
1376 1361 #: rhodecode/templates/branches/branches.html:50
1377 1362 #: rhodecode/templates/branches/branches_data.html:6
1378 1363 #: rhodecode/templates/files/files_browser.html:47
1379 #: rhodecode/templates/journal/journal.html:62
1380 #: rhodecode/templates/journal/journal.html:168
1364 #: rhodecode/templates/journal/journal.html:70
1365 #: rhodecode/templates/journal/journal.html:196
1381 1366 #: rhodecode/templates/journal/journal_page_repos.html:7
1382 1367 #: rhodecode/templates/settings/repo_settings.html:31
1383 1368 #: rhodecode/templates/summary/summary.html:43
@@ -1394,7 +1379,7 b' msgstr "\xe6\x9c\x80\xe5\xbe\x8c\xe3\x81\xae\xe5\xa4\x89\xe6\x9b\xb4\xe6\x99\x82\xe5\x88\xbb"'
1394 1379 #: rhodecode/templates/index_base.html:74
1395 1380 #: rhodecode/templates/index_base.html:179
1396 1381 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1397 #: rhodecode/templates/journal/journal.html:170
1382 #: rhodecode/templates/journal/journal.html:198
1398 1383 msgid "Tip"
1399 1384 msgstr "Tip"
1400 1385
@@ -1424,7 +1409,7 b' msgstr "Atom"'
1424 1409 #: rhodecode/templates/admin/users/users.html:107
1425 1410 #: rhodecode/templates/bookmarks/bookmarks.html:60
1426 1411 #: rhodecode/templates/branches/branches.html:76
1427 #: rhodecode/templates/journal/journal.html:193
1412 #: rhodecode/templates/journal/journal.html:221
1428 1413 #: rhodecode/templates/tags/tags.html:77
1429 1414 msgid "Click to sort ascending"
1430 1415 msgstr "昇順で並び換え"
@@ -1437,7 +1422,7 b' msgstr "\xe6\x98\x87\xe9\xa0\x86\xe3\x81\xa7\xe4\xb8\xa6\xe3\x81\xb3\xe6\x8f\x9b\xe3\x81\x88"'
1437 1422 #: rhodecode/templates/admin/users/users.html:108
1438 1423 #: rhodecode/templates/bookmarks/bookmarks.html:61
1439 1424 #: rhodecode/templates/branches/branches.html:77
1440 #: rhodecode/templates/journal/journal.html:194
1425 #: rhodecode/templates/journal/journal.html:222
1441 1426 #: rhodecode/templates/tags/tags.html:78
1442 1427 msgid "Click to sort descending"
1443 1428 msgstr "降順で並び替え"
@@ -1454,7 +1439,7 b' msgstr "\xe6\x9c\x80\xe5\xbe\x8c\xe3\x81\xae\xe5\xa4\x89\xe6\x9b\xb4\xe7\x82\xb9"'
1454 1439 #: rhodecode/templates/admin/users/users.html:109
1455 1440 #: rhodecode/templates/bookmarks/bookmarks.html:62
1456 1441 #: rhodecode/templates/branches/branches.html:78
1457 #: rhodecode/templates/journal/journal.html:195
1442 #: rhodecode/templates/journal/journal.html:223
1458 1443 #: rhodecode/templates/tags/tags.html:79
1459 1444 msgid "No records found."
1460 1445 msgstr "レコードが見つかりません"
@@ -1466,7 +1451,7 b' msgstr "\xe3\x83\xac\xe3\x82\xb3\xe3\x83\xbc\xe3\x83\x89\xe3\x81\x8c\xe8\xa6\x8b\xe3\x81\xa4\xe3\x81\x8b\xe3\x82\x8a\xe3\x81\xbe\xe3\x81\x9b\xe3\x82\x93"'
1466 1451 #: rhodecode/templates/admin/users/users.html:110
1467 1452 #: rhodecode/templates/bookmarks/bookmarks.html:63
1468 1453 #: rhodecode/templates/branches/branches.html:79
1469 #: rhodecode/templates/journal/journal.html:196
1454 #: rhodecode/templates/journal/journal.html:224
1470 1455 #: rhodecode/templates/tags/tags.html:80
1471 1456 msgid "Data error."
1472 1457 msgstr "データエラー"
@@ -1478,8 +1463,8 b' msgstr "\xe3\x83\x87\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa8\xe3\x83\xa9\xe3\x83\xbc"'
1478 1463 #: rhodecode/templates/admin/users/users.html:111
1479 1464 #: rhodecode/templates/bookmarks/bookmarks.html:64
1480 1465 #: rhodecode/templates/branches/branches.html:80
1481 #: rhodecode/templates/journal/journal.html:54
1482 #: rhodecode/templates/journal/journal.html:197
1466 #: rhodecode/templates/journal/journal.html:62
1467 #: rhodecode/templates/journal/journal.html:225
1483 1468 #: rhodecode/templates/tags/tags.html:81
1484 1469 msgid "Loading..."
1485 1470 msgstr "読み込み中..."
@@ -1627,10 +1612,28 b' msgid "There are no bookmarks yet"'
1627 1612 msgstr "まだブックマークがありません"
1628 1613
1629 1614 #: rhodecode/templates/admin/admin.html:5
1630 #: rhodecode/templates/admin/admin.html:9
1615 #: rhodecode/templates/admin/admin.html:13
1631 1616 msgid "Admin journal"
1632 1617 msgstr "管理者ジャーナル"
1633 1618
1619 #: rhodecode/templates/admin/admin.html:10
1620 #, fuzzy
1621 msgid "journal filter..."
1622 msgstr "クイックフィルタ..."
1623
1624 #: rhodecode/templates/admin/admin.html:12
1625 #: rhodecode/templates/journal/journal.html:11
1626 #, fuzzy
1627 msgid "filter"
1628 msgstr "ファイル"
1629
1630 #: rhodecode/templates/admin/admin.html:13
1631 #: rhodecode/templates/journal/journal.html:12
1632 #, python-format
1633 msgid "%s entry"
1634 msgid_plural "%s entries"
1635 msgstr[0] ""
1636
1634 1637 #: rhodecode/templates/admin/admin_log.html:6
1635 1638 #: rhodecode/templates/admin/repos/repos.html:74
1636 1639 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1659,7 +1662,7 b' msgstr "\xe6\x97\xa5\xe6\x99\x82"'
1659 1662 msgid "From IP"
1660 1663 msgstr "アクセス元IPアドレス"
1661 1664
1662 #: rhodecode/templates/admin/admin_log.html:57
1665 #: rhodecode/templates/admin/admin_log.html:63
1663 1666 msgid "No actions yet"
1664 1667 msgstr "まだアクションがありません"
1665 1668
@@ -1730,7 +1733,7 b' msgstr ""'
1730 1733 #: rhodecode/templates/admin/users/user_edit.html:178
1731 1734 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1732 1735 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1733 #: rhodecode/templates/settings/repo_settings.html:93
1736 #: rhodecode/templates/settings/repo_settings.html:94
1734 1737 msgid "Save"
1735 1738 msgstr "保存"
1736 1739
@@ -2017,7 +2020,7 b' msgstr "\xe3\x83\xaa\xe3\x83\x9d\xe3\x82\xb8\xe3\x83\x88\xe3\x83\xaa\xe3\x81\xae\xe6\x89\x80\xe6\x9c\x89\xe8\x80\x85\xe3\x82\x92\xe5\xa4\x89\xe6\x9b\xb4"'
2017 2020 #: rhodecode/templates/files/files_add.html:82
2018 2021 #: rhodecode/templates/files/files_edit.html:68
2019 2022 #: rhodecode/templates/pullrequests/pullrequest.html:124
2020 #: rhodecode/templates/settings/repo_settings.html:94
2023 #: rhodecode/templates/settings/repo_settings.html:95
2021 2024 msgid "Reset"
2022 2025 msgstr "リセット"
2023 2026
@@ -2159,19 +2162,22 b' msgid "Delete"'
2159 2162 msgstr "削除"
2160 2163
2161 2164 #: rhodecode/templates/admin/repos/repo_edit.html:278
2165 #: rhodecode/templates/settings/repo_settings.html:115
2162 2166 msgid "Remove this repository"
2163 2167 msgstr "このリポジトリを削除"
2164 2168
2165 2169 #: rhodecode/templates/admin/repos/repo_edit.html:278
2170 #: rhodecode/templates/settings/repo_settings.html:115
2166 2171 msgid "Confirm to delete this repository"
2167 2172 msgstr "このリポジトリを削除しますか?"
2168 2173
2169 2174 #: rhodecode/templates/admin/repos/repo_edit.html:282
2175 #: rhodecode/templates/settings/repo_settings.html:119
2176 #, fuzzy
2170 2177 msgid ""
2171 2178 "This repository will be renamed in a special way in order to be "
2172 "unaccesible for RhodeCode and VCS systems.\n"
2173 " If you need fully delete it from filesystem "
2174 "please do it manually"
2179 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2180 "from file system please do it manually"
2175 2181 msgstr ""
2176 2182 "このリポジトリはRhodeCodeとVCSシステムからアクセスされないような名前に、特別な方法で変更されます。\n"
2177 2183 "もし、ファイルシステムから完全に削除したい場合、手動で行ってください"
@@ -2205,7 +2211,7 b' msgstr "\xe3\x83\xa1\xe3\x83\xb3\xe3\x83\x90\xe3\x83\xbc"'
2205 2211
2206 2212 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2207 2213 #: rhodecode/templates/data_table/_dt_elements.html:67
2208 #: rhodecode/templates/journal/journal.html:87
2214 #: rhodecode/templates/journal/journal.html:95
2209 2215 #: rhodecode/templates/summary/summary.html:85
2210 2216 msgid "private repository"
2211 2217 msgstr "非公開リポジトリ"
@@ -2710,7 +2716,7 b' msgid "My permissions"'
2710 2716 msgstr "権限"
2711 2717
2712 2718 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2713 #: rhodecode/templates/journal/journal.html:41
2719 #: rhodecode/templates/journal/journal.html:49
2714 2720 msgid "My repos"
2715 2721 msgstr "リポジトリ"
2716 2722
@@ -2924,7 +2930,6 b' msgstr "\xe5\x8f\x97\xe4\xbf\xa1\xe7\xae\xb1"'
2924 2930 #: rhodecode/templates/base/base.html:324
2925 2931 #: rhodecode/templates/base/base.html:326
2926 2932 #: rhodecode/templates/journal/journal.html:4
2927 #: rhodecode/templates/journal/journal.html:21
2928 2933 #: rhodecode/templates/journal/public_journal.html:4
2929 2934 msgid "Journal"
2930 2935 msgstr "ジャーナル"
@@ -3059,7 +3064,7 b' msgid "add another comment"'
3059 3064 msgstr "別のコメントを追加"
3060 3065
3061 3066 #: rhodecode/templates/base/root.html:43
3062 #: rhodecode/templates/journal/journal.html:75
3067 #: rhodecode/templates/journal/journal.html:83
3063 3068 #: rhodecode/templates/summary/summary.html:57
3064 3069 msgid "Stop following this repository"
3065 3070 msgstr "このリポジトリのフォローをやめる"
@@ -3167,7 +3172,7 b' msgid "Affected number of files, click t'
3167 3172 msgstr ""
3168 3173
3169 3174 #: rhodecode/templates/changelog/changelog.html:91
3170 #: rhodecode/templates/changeset/changeset.html:44
3175 #: rhodecode/templates/changeset/changeset.html:65
3171 3176 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3172 3177 #: rhodecode/templates/changeset/changeset_range.html:46
3173 3178 msgid "Changeset status"
@@ -3179,23 +3184,22 b' msgid "Click to open associated pull req'
3179 3184 msgstr "関連するプルリクエストを開く"
3180 3185
3181 3186 #: rhodecode/templates/changelog/changelog.html:104
3182 #: rhodecode/templates/changeset/changeset.html:85
3183 3187 msgid "Parent"
3184 3188 msgstr "親リビジョン"
3185 3189
3186 3190 #: rhodecode/templates/changelog/changelog.html:110
3187 #: rhodecode/templates/changeset/changeset.html:91
3191 #: rhodecode/templates/changeset/changeset.html:42
3188 3192 msgid "No parents"
3189 3193 msgstr "親リビジョンはありません"
3190 3194
3191 3195 #: rhodecode/templates/changelog/changelog.html:115
3192 #: rhodecode/templates/changeset/changeset.html:95
3196 #: rhodecode/templates/changeset/changeset.html:106
3193 3197 #: rhodecode/templates/changeset/changeset_range.html:79
3194 3198 msgid "merge"
3195 3199 msgstr "マージ"
3196 3200
3197 3201 #: rhodecode/templates/changelog/changelog.html:118
3198 #: rhodecode/templates/changeset/changeset.html:98
3202 #: rhodecode/templates/changeset/changeset.html:109
3199 3203 #: rhodecode/templates/changeset/changeset_range.html:82
3200 3204 #: rhodecode/templates/files/files.html:29
3201 3205 #: rhodecode/templates/files/files_add.html:33
@@ -3210,7 +3214,7 b' msgid "bookmark"'
3210 3214 msgstr "ブックマーク"
3211 3215
3212 3216 #: rhodecode/templates/changelog/changelog.html:130
3213 #: rhodecode/templates/changeset/changeset.html:103
3217 #: rhodecode/templates/changeset/changeset.html:114
3214 3218 #: rhodecode/templates/changeset/changeset_range.html:94
3215 3219 msgid "tag"
3216 3220 msgstr "タグ"
@@ -3220,26 +3224,26 b' msgid "There are no changes yet"'
3220 3224 msgstr "まだ変更がありません"
3221 3225
3222 3226 #: rhodecode/templates/changelog/changelog_details.html:4
3223 #: rhodecode/templates/changeset/changeset.html:73
3227 #: rhodecode/templates/changeset/changeset.html:94
3224 3228 msgid "removed"
3225 3229 msgstr "削除"
3226 3230
3227 3231 #: rhodecode/templates/changelog/changelog_details.html:5
3228 #: rhodecode/templates/changeset/changeset.html:74
3232 #: rhodecode/templates/changeset/changeset.html:95
3229 3233 msgid "changed"
3230 3234 msgstr "変更"
3231 3235
3232 3236 #: rhodecode/templates/changelog/changelog_details.html:6
3233 #: rhodecode/templates/changeset/changeset.html:75
3237 #: rhodecode/templates/changeset/changeset.html:96
3234 3238 msgid "added"
3235 3239 msgstr "追加"
3236 3240
3237 3241 #: rhodecode/templates/changelog/changelog_details.html:8
3238 3242 #: rhodecode/templates/changelog/changelog_details.html:9
3239 3243 #: rhodecode/templates/changelog/changelog_details.html:10
3240 #: rhodecode/templates/changeset/changeset.html:77
3241 #: rhodecode/templates/changeset/changeset.html:78
3242 #: rhodecode/templates/changeset/changeset.html:79
3244 #: rhodecode/templates/changeset/changeset.html:98
3245 #: rhodecode/templates/changeset/changeset.html:99
3246 #: rhodecode/templates/changeset/changeset.html:100
3243 3247 #, python-format
3244 3248 msgid "affected %s files"
3245 3249 msgstr "%s ファイルに影響"
@@ -3253,36 +3257,40 b' msgstr "%s \xe3\x83\x81\xe3\x82\xa7\xe3\x83\xb3\xe3\x82\xb8\xe3\x82\xbb\xe3\x83\x83\xe3\x83\x88"'
3253 3257 msgid "Changeset"
3254 3258 msgstr "チェンジセット"
3255 3259
3256 #: rhodecode/templates/changeset/changeset.html:49
3260 #: rhodecode/templates/changeset/changeset.html:52
3261 msgid "No children"
3262 msgstr ""
3263
3264 #: rhodecode/templates/changeset/changeset.html:70
3257 3265 #: rhodecode/templates/changeset/diff_block.html:20
3258 3266 msgid "raw diff"
3259 3267 msgstr "差分を表示"
3260 3268
3261 #: rhodecode/templates/changeset/changeset.html:50
3269 #: rhodecode/templates/changeset/changeset.html:71
3262 3270 #, fuzzy
3263 3271 msgid "patch diff"
3264 3272 msgstr "差分を表示"
3265 3273
3266 #: rhodecode/templates/changeset/changeset.html:51
3274 #: rhodecode/templates/changeset/changeset.html:72
3267 3275 #: rhodecode/templates/changeset/diff_block.html:21
3268 3276 msgid "download diff"
3269 3277 msgstr "差分をダウンロード"
3270 3278
3271 #: rhodecode/templates/changeset/changeset.html:55
3279 #: rhodecode/templates/changeset/changeset.html:76
3272 3280 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3273 3281 #, python-format
3274 3282 msgid "%d comment"
3275 3283 msgid_plural "%d comments"
3276 3284 msgstr[0] "%d コメント"
3277 3285
3278 #: rhodecode/templates/changeset/changeset.html:55
3286 #: rhodecode/templates/changeset/changeset.html:76
3279 3287 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3280 3288 #, python-format
3281 3289 msgid "(%d inline)"
3282 3290 msgid_plural "(%d inline)"
3283 3291 msgstr[0] "(%d インライン)"
3284 3292
3285 #: rhodecode/templates/changeset/changeset.html:111
3293 #: rhodecode/templates/changeset/changeset.html:122
3286 3294 #: rhodecode/templates/compare/compare_diff.html:44
3287 3295 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3288 3296 #, fuzzy, python-format
@@ -3290,7 +3298,7 b' msgid "%s file changed"'
3290 3298 msgid_plural "%s files changed"
3291 3299 msgstr[0] ""
3292 3300
3293 #: rhodecode/templates/changeset/changeset.html:113
3301 #: rhodecode/templates/changeset/changeset.html:124
3294 3302 #: rhodecode/templates/compare/compare_diff.html:46
3295 3303 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3296 3304 #, fuzzy, python-format
@@ -3318,7 +3326,7 b' msgid "Use @username inside this text to'
3318 3326 msgstr "テキスト内で @username を使うと、この RhodeCode のユーザーに通知を送信します"
3319 3327
3320 3328 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3321 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3329 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3322 3330 msgid "Comment"
3323 3331 msgstr "コメント"
3324 3332
@@ -3339,15 +3347,15 b' msgstr "\xe4\xbb\x8a\xe3\x81\x99\xe3\x81\x90\xe3\x83\xad\xe3\x82\xb0\xe3\x82\xa4\xe3\x83\xb3\xe3\x81\x99\xe3\x82\x8b"'
3339 3347 msgid "Leave a comment"
3340 3348 msgstr "コメントを残す"
3341 3349
3342 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3350 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3343 3351 msgid "Check this to change current status of code-review for this changeset"
3344 3352 msgstr ""
3345 3353
3346 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3354 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3347 3355 msgid "change status"
3348 3356 msgstr "ステータスを変更する"
3349 3357
3350 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3358 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3351 3359 msgid "Comment and close"
3352 3360 msgstr "コメントしてクローズ"
3353 3361
@@ -3402,19 +3410,19 b' msgid "Fork"'
3402 3410 msgstr "フォーク"
3403 3411
3404 3412 #: rhodecode/templates/data_table/_dt_elements.html:60
3405 #: rhodecode/templates/journal/journal.html:81
3413 #: rhodecode/templates/journal/journal.html:89
3406 3414 #: rhodecode/templates/summary/summary.html:77
3407 3415 msgid "Mercurial repository"
3408 3416 msgstr "Mercurialリポジトリ"
3409 3417
3410 3418 #: rhodecode/templates/data_table/_dt_elements.html:62
3411 #: rhodecode/templates/journal/journal.html:83
3419 #: rhodecode/templates/journal/journal.html:91
3412 3420 #: rhodecode/templates/summary/summary.html:80
3413 3421 msgid "Git repository"
3414 3422 msgstr "Gitリポジトリ"
3415 3423
3416 3424 #: rhodecode/templates/data_table/_dt_elements.html:69
3417 #: rhodecode/templates/journal/journal.html:89
3425 #: rhodecode/templates/journal/journal.html:97
3418 3426 #: rhodecode/templates/summary/summary.html:87
3419 3427 msgid "public repository"
3420 3428 msgstr "公開リポジトリ"
@@ -3792,50 +3800,50 b' msgstr "\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xbc\xe3\x82\xaf\xe3\x81\x97\xe3\x81\xbe\xe3\x81\x97\xe3\x81\x9f"'
3792 3800 msgid "There are no forks yet"
3793 3801 msgstr "まだフォークがありません"
3794 3802
3795 #: rhodecode/templates/journal/journal.html:13
3803 #: rhodecode/templates/journal/journal.html:21
3796 3804 msgid "ATOM journal feed"
3797 3805 msgstr "ATOM ジャーナルフィード"
3798 3806
3799 #: rhodecode/templates/journal/journal.html:14
3807 #: rhodecode/templates/journal/journal.html:22
3800 3808 msgid "RSS journal feed"
3801 3809 msgstr "RSS ジャーナルフィード"
3802 3810
3803 #: rhodecode/templates/journal/journal.html:24
3811 #: rhodecode/templates/journal/journal.html:32
3804 3812 #: rhodecode/templates/pullrequests/pullrequest.html:55
3805 3813 msgid "Refresh"
3806 3814 msgstr "更新"
3807 3815
3808 #: rhodecode/templates/journal/journal.html:27
3816 #: rhodecode/templates/journal/journal.html:35
3809 3817 #: rhodecode/templates/journal/public_journal.html:24
3810 3818 msgid "RSS feed"
3811 3819 msgstr "RSSフィード"
3812 3820
3813 #: rhodecode/templates/journal/journal.html:30
3821 #: rhodecode/templates/journal/journal.html:38
3814 3822 #: rhodecode/templates/journal/public_journal.html:27
3815 3823 msgid "ATOM feed"
3816 3824 msgstr "ATOMフィード"
3817 3825
3818 #: rhodecode/templates/journal/journal.html:41
3826 #: rhodecode/templates/journal/journal.html:49
3819 3827 msgid "Watched"
3820 3828 msgstr "ウォッチ"
3821 3829
3822 #: rhodecode/templates/journal/journal.html:46
3830 #: rhodecode/templates/journal/journal.html:54
3823 3831 msgid "ADD"
3824 3832 msgstr "追加"
3825 3833
3826 #: rhodecode/templates/journal/journal.html:69
3834 #: rhodecode/templates/journal/journal.html:77
3827 3835 msgid "following user"
3828 3836 msgstr "フォローしているユーザー"
3829 3837
3830 #: rhodecode/templates/journal/journal.html:69
3838 #: rhodecode/templates/journal/journal.html:77
3831 3839 msgid "user"
3832 3840 msgstr "ユーザー"
3833 3841
3834 #: rhodecode/templates/journal/journal.html:102
3842 #: rhodecode/templates/journal/journal.html:110
3835 3843 msgid "You are not following any users or repositories"
3836 3844 msgstr "まだどのユーザーもリポジトリもフォローしていません"
3837 3845
3838 #: rhodecode/templates/journal/journal_data.html:51
3846 #: rhodecode/templates/journal/journal_data.html:55
3839 3847 msgid "No entries yet"
3840 3848 msgstr "まだエントリがありません"
3841 3849
@@ -3934,6 +3942,11 b' msgstr "\xe4\xbd\x9c\xe6\x88\x90\xe6\x97\xa5"'
3934 3942 msgid "Compare view"
3935 3943 msgstr "比較ビュー"
3936 3944
3945 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
3946 #, fuzzy
3947 msgid "reviewer"
3948 msgstr "%d レビュアー"
3949
3937 3950 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
3938 3951 msgid "all pull requests"
3939 3952 msgstr "すべてのプルリクエスト"
@@ -3998,6 +4011,16 b' msgstr "\xe6\xa8\xa9\xe9\x99\x90\xe3\x81\x8c\xe3\x81\x82\xe3\x82\x8a\xe3\x81\xbe\xe3\x81\x9b\xe3\x82\x93"'
3998 4011 msgid "%s Settings"
3999 4012 msgstr "%s 設定"
4000 4013
4014 #: rhodecode/templates/settings/repo_settings.html:102
4015 #, fuzzy
4016 msgid "Delete repository"
4017 msgstr "リポジトリを[削除]"
4018
4019 #: rhodecode/templates/settings/repo_settings.html:109
4020 #, fuzzy
4021 msgid "Remove repo"
4022 msgstr "削除"
4023
4001 4024 #: rhodecode/templates/shortlog/shortlog.html:5
4002 4025 #, python-format
4003 4026 msgid "%s Shortlog"
@@ -4201,3 +4224,23 b' msgstr "%s \xe3\x82\xbf\xe3\x82\xb0"'
4201 4224 msgid "Compare tags"
4202 4225 msgstr "比較"
4203 4226
4227 #~ msgid ""
4228 #~ "%s repository is not mapped to db"
4229 #~ " perhaps it was created or renamed"
4230 #~ " from the file system please run "
4231 #~ "the application again in order to "
4232 #~ "rescan repositories"
4233 #~ msgstr ""
4234 #~ "%s "
4235 #~ "リポジトリはDB内に見つかりませんでした。おそらくファイルシステム上で作られたか名前が変更されたためです。リポジトリをもう一度チェックするためにアプリケーションを立ち上げ直してください。"
4236
4237 #~ msgid ""
4238 #~ "%s repository is not mapped to db"
4239 #~ " perhaps it was moved or renamed "
4240 #~ "from the filesystem please run the "
4241 #~ "application again in order to rescan "
4242 #~ "repositories"
4243 #~ msgstr ""
4244 #~ "%s "
4245 #~ "リポジトリはDB内に見つかりませんでした。おそらくファイルシステム上で作られたか名前が変更されたためです。リポジトリをもう一度チェックするためにアプリケーションを立ち上げ直してください。"
4246
@@ -8,7 +8,7 b' msgid ""'
8 8 msgstr ""
9 9 "Project-Id-Version: rhodecode 0.1\n"
10 10 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
11 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
12 12 "PO-Revision-Date: 2012-11-25 03:42+0200\n"
13 13 "Last-Translator: Nemo <areczek01@gmail.com>\n"
14 14 "Language-Team: Test\n"
@@ -23,26 +23,26 b' msgstr ""'
23 23 msgid "All Branches"
24 24 msgstr "Wszystkie gałęzie"
25 25
26 #: rhodecode/controllers/changeset.py:84
26 #: rhodecode/controllers/changeset.py:83
27 27 msgid "show white space"
28 28 msgstr "pokazuj spacje"
29 29
30 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
30 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
31 31 msgid "ignore white space"
32 32 msgstr "ignoruj pokazywanie spacji"
33 33
34 #: rhodecode/controllers/changeset.py:164
34 #: rhodecode/controllers/changeset.py:163
35 35 #, python-format
36 36 msgid "%s line context"
37 37 msgstr "%s linia w kontekście"
38 38
39 #: rhodecode/controllers/changeset.py:315
40 #: rhodecode/controllers/pullrequests.py:411
39 #: rhodecode/controllers/changeset.py:314
40 #: rhodecode/controllers/pullrequests.py:417
41 41 #, python-format
42 42 msgid "Status change -> %s"
43 43 msgstr "Zmiana statusu -> %s"
44 44
45 #: rhodecode/controllers/changeset.py:346
45 #: rhodecode/controllers/changeset.py:345
46 46 msgid ""
47 47 "Changing status on a changeset associated witha closed pull request is "
48 48 "not allowed"
@@ -51,7 +51,7 b' msgstr ""'
51 51 "niedozwolona"
52 52
53 53 #: rhodecode/controllers/compare.py:75
54 #: rhodecode/controllers/pullrequests.py:117
54 #: rhodecode/controllers/pullrequests.py:121
55 55 #: rhodecode/controllers/shortlog.py:100
56 56 msgid "There are no changesets yet"
57 57 msgstr "Brak zestawienia zmian"
@@ -97,8 +97,8 b' msgid "%s %s feed"'
97 97 msgstr "%s %s zasilać"
98 98
99 99 #: rhodecode/controllers/feed.py:86
100 #: rhodecode/templates/changeset/changeset.html:126
101 #: rhodecode/templates/changeset/changeset.html:138
100 #: rhodecode/templates/changeset/changeset.html:137
101 #: rhodecode/templates/changeset/changeset.html:149
102 102 #: rhodecode/templates/compare/compare_diff.html:62
103 103 #: rhodecode/templates/compare/compare_diff.html:73
104 104 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -178,54 +178,33 b' msgstr "Nieznany typ archiwum"'
178 178 msgid "Changesets"
179 179 msgstr "Różnice"
180 180
181 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
181 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
182 182 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
183 183 msgid "Branches"
184 184 msgstr "Gałęzie"
185 185
186 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
186 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
187 187 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
188 188 msgid "Tags"
189 189 msgstr "Etykiety"
190 190
191 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
192 #, python-format
193 msgid ""
194 "%s repository is not mapped to db perhaps it was created or renamed from "
195 "the filesystem please run the application again in order to rescan "
196 "repositories"
197 msgstr ""
198 "%s repozytorium nie jest mapowane do db może zostało utworzone lub "
199 "zmienione z systemie plików proszę uruchomić aplikację ponownie, aby "
200 "ponownie przeskanować repozytoria"
201
202 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
203 #, python-format
204 msgid ""
205 "%s repository is not mapped to db perhaps it was created or renamed from "
206 "the file system please run the application again in order to rescan "
207 "repositories"
208 msgstr ""
209 "%s repozytorium nie jest mapowane do db może zostało utworzone lub "
210 "zmienione z systemu plików proszę uruchomić aplikację ponownie, aby "
211 "ponownie przeskanować repozytoria"
212
213 #: rhodecode/controllers/forks.py:168
191 #: rhodecode/controllers/forks.py:158
214 192 #, python-format
215 193 msgid "forked %s repository as %s"
216 194 msgstr "gałęzi %s w repozytorium %s"
217 195
218 #: rhodecode/controllers/forks.py:182
196 #: rhodecode/controllers/forks.py:172
219 197 #, python-format
220 198 msgid "An error occurred during repository forking %s"
221 199 msgstr "Wystąpił błąd podczas rozgałęzienia %s repozytorium"
222 200
223 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
201 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
224 202 msgid "public journal"
225 203 msgstr "Dziennik publiczny"
226 204
227 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
205 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
228 206 #: rhodecode/templates/base/base.html:232
207 #: rhodecode/templates/journal/journal.html:12
229 208 msgid "journal"
230 209 msgstr "dziennik"
231 210
@@ -243,30 +222,34 b' msgid ""'
243 222 "email"
244 223 msgstr "Twoje hasło zostało zresetowane, nowe hasło zostanie wysłane na e-mail"
245 224
246 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
225 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
247 226 msgid "Bookmarks"
248 227 msgstr "Zakładki"
249 228
250 #: rhodecode/controllers/pullrequests.py:186
229 #: rhodecode/controllers/pullrequests.py:190
251 230 msgid "Pull request requires a title with min. 3 chars"
252 231 msgstr "Wniosek połączenia gałęzi wymaga tytułu z min. 3 znakami"
253 232
254 #: rhodecode/controllers/pullrequests.py:188
233 #: rhodecode/controllers/pullrequests.py:192
255 234 msgid "error during creation of pull request"
256 235 msgstr "błąd podczas tworzenia prośby o łączenie gałęzi"
257 236
258 #: rhodecode/controllers/pullrequests.py:220
237 #: rhodecode/controllers/pullrequests.py:224
259 238 msgid "Successfully opened new pull request"
260 239 msgstr "Prośba o wykonanie połączenia gałęzi została wykonana prawidłowo"
261 240
262 #: rhodecode/controllers/pullrequests.py:223
241 #: rhodecode/controllers/pullrequests.py:227
263 242 msgid "Error occurred during sending pull request"
264 243 msgstr "Wystąpił błąd podczas prośby o połączenie gałęzi"
265 244
266 #: rhodecode/controllers/pullrequests.py:256
245 #: rhodecode/controllers/pullrequests.py:260
267 246 msgid "Successfully deleted pull request"
268 247 msgstr "Prośba o skasowanie połączenia gałęzi została wykonana prawidłowo"
269 248
249 #: rhodecode/controllers/pullrequests.py:452
250 msgid "Closing pull request on other statuses than rejected or approved forbidden"
251 msgstr ""
252
270 253 #: rhodecode/controllers/search.py:134
271 254 msgid "Invalid search query. Try quoting it."
272 255 msgstr "Nieprawidłowe zapytania. Spróbuj zacytować go."
@@ -279,58 +262,46 b' msgstr "Nie ma szukanego indeksu. Prosz\xc4\x99 uruchomi\xc4\x87 indeksowanie whoosh"'
279 262 msgid "An error occurred during this search operation"
280 263 msgstr "Wystąpił błąd podczas wyszukiwania tej operacji"
281 264
282 #: rhodecode/controllers/settings.py:108
283 #: rhodecode/controllers/admin/repos.py:268
265 #: rhodecode/controllers/settings.py:119
266 #: rhodecode/controllers/admin/repos.py:272
284 267 #, python-format
285 268 msgid "Repository %s updated successfully"
286 269 msgstr "Repozytorium %s zostało pomyślnie zaktualizowane"
287 270
288 #: rhodecode/controllers/settings.py:126
289 #: rhodecode/controllers/admin/repos.py:286
271 #: rhodecode/controllers/settings.py:137
272 #: rhodecode/controllers/admin/repos.py:290
290 273 #, python-format
291 274 msgid "error occurred during update of repository %s"
292 275 msgstr "wystąpił błąd podczas aktualizacji repozytorium %s"
293 276
294 #: rhodecode/controllers/settings.py:144
295 #: rhodecode/controllers/admin/repos.py:304
296 #, python-format
297 msgid ""
298 "%s repository is not mapped to db perhaps it was moved or renamed from "
299 "the filesystem please run the application again in order to rescan "
300 "repositories"
301 msgstr ""
302 "%s repozytorium nie jest mapowane do db może zostało przeniesione lub "
303 "zmienione w systemie plików proszę uruchomić aplikację ponownie, aby "
304 "ponownie przeskanować repozytoria"
305
306 #: rhodecode/controllers/settings.py:156
307 #: rhodecode/controllers/admin/repos.py:316
277 #: rhodecode/controllers/settings.py:162
278 #: rhodecode/controllers/admin/repos.py:315
308 279 #, python-format
309 280 msgid "deleted repository %s"
310 281 msgstr "usunięte repozytorium %s"
311 282
312 #: rhodecode/controllers/settings.py:160
313 #: rhodecode/controllers/admin/repos.py:326
314 #: rhodecode/controllers/admin/repos.py:332
283 #: rhodecode/controllers/settings.py:166
284 #: rhodecode/controllers/admin/repos.py:325
285 #: rhodecode/controllers/admin/repos.py:331
315 286 #, python-format
316 287 msgid "An error occurred during deletion of %s"
317 288 msgstr "Wystąpił błąd podczas usuwania %s"
318 289
319 #: rhodecode/controllers/settings.py:179
290 #: rhodecode/controllers/settings.py:185
320 291 msgid "unlocked"
321 292 msgstr "Odblokowany"
322 293
323 #: rhodecode/controllers/settings.py:182
294 #: rhodecode/controllers/settings.py:188
324 295 msgid "locked"
325 296 msgstr "zablokowany"
326 297
327 #: rhodecode/controllers/settings.py:184
298 #: rhodecode/controllers/settings.py:190
328 299 #, python-format
329 300 msgid "Repository has been %s"
330 301 msgstr "Repozytoriów jest %s"
331 302
332 #: rhodecode/controllers/settings.py:188
333 #: rhodecode/controllers/admin/repos.py:424
303 #: rhodecode/controllers/settings.py:194
304 #: rhodecode/controllers/admin/repos.py:423
334 305 msgid "An error occurred during unlocking"
335 306 msgstr "Wystąpił błąd podczas odblokowywania"
336 307
@@ -481,76 +452,76 b' msgstr "Domy\xc5\x9blne uprawnienia zaktualizowane pomy\xc5\x9blnie"'
481 452 msgid "error occurred during update of permissions"
482 453 msgstr "wystąpił błąd podczas aktualizacji uprawnień"
483 454
484 #: rhodecode/controllers/admin/repos.py:125
455 #: rhodecode/controllers/admin/repos.py:121
485 456 msgid "--REMOVE FORK--"
486 457 msgstr "--USUŃ ROZGAŁĘZIENIE--"
487 458
488 #: rhodecode/controllers/admin/repos.py:194
459 #: rhodecode/controllers/admin/repos.py:190
489 460 #, python-format
490 461 msgid "created repository %s from %s"
491 462 msgstr "utworzone repozytorium %s z %s"
492 463
493 #: rhodecode/controllers/admin/repos.py:198
464 #: rhodecode/controllers/admin/repos.py:194
494 465 #, python-format
495 466 msgid "created repository %s"
496 467 msgstr "utworzone repozytorium %s"
497 468
498 #: rhodecode/controllers/admin/repos.py:229
469 #: rhodecode/controllers/admin/repos.py:225
499 470 #, python-format
500 471 msgid "error occurred during creation of repository %s"
501 472 msgstr "wystąpił błąd podczas tworzenia repozytorium %s"
502 473
503 #: rhodecode/controllers/admin/repos.py:321
474 #: rhodecode/controllers/admin/repos.py:320
504 475 #, python-format
505 476 msgid "Cannot delete %s it still contains attached forks"
506 477 msgstr "Nie można usunąć %s nadal zawiera załączniki rozgałęzienia"
507 478
508 #: rhodecode/controllers/admin/repos.py:350
479 #: rhodecode/controllers/admin/repos.py:349
509 480 msgid "An error occurred during deletion of repository user"
510 481 msgstr "Wystąpił błąd podczas usunięcia użytkownika z repozytorium"
511 482
512 #: rhodecode/controllers/admin/repos.py:369
483 #: rhodecode/controllers/admin/repos.py:368
513 484 msgid "An error occurred during deletion of repository users groups"
514 485 msgstr "Wystąpił błąd podczas usunięcia grupy użytkowników z repozytorium"
515 486
516 #: rhodecode/controllers/admin/repos.py:387
487 #: rhodecode/controllers/admin/repos.py:386
517 488 msgid "An error occurred during deletion of repository stats"
518 489 msgstr "Wystąpił błąd podczas usuwania z repozytorium statystyk"
519 490
520 #: rhodecode/controllers/admin/repos.py:404
491 #: rhodecode/controllers/admin/repos.py:403
521 492 msgid "An error occurred during cache invalidation"
522 493 msgstr "Wystąpił błąd podczas unieważniania cache"
523 494
524 #: rhodecode/controllers/admin/repos.py:444
495 #: rhodecode/controllers/admin/repos.py:443
525 496 msgid "Updated repository visibility in public journal"
526 497 msgstr "Zaktualizowano widoczność stron w publicznym dzienniku"
527 498
528 #: rhodecode/controllers/admin/repos.py:448
499 #: rhodecode/controllers/admin/repos.py:447
529 500 msgid "An error occurred during setting this repository in public journal"
530 501 msgstr "Wystąpił błąd podczas ustawiania tego repozytorium w dzienniku publicznym"
531 502
532 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
503 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
533 504 msgid "Token mismatch"
534 505 msgstr "Niezgodność tokenu"
535 506
536 #: rhodecode/controllers/admin/repos.py:466
507 #: rhodecode/controllers/admin/repos.py:465
537 508 msgid "Pulled from remote location"
538 509 msgstr "Pobieranie z lokalizacji zdalnej"
539 510
540 #: rhodecode/controllers/admin/repos.py:468
511 #: rhodecode/controllers/admin/repos.py:467
541 512 msgid "An error occurred during pull from remote location"
542 513 msgstr "Wystąpił błąd podczas pobierania z lokalizacji zdalnej"
543 514
544 #: rhodecode/controllers/admin/repos.py:484
515 #: rhodecode/controllers/admin/repos.py:483
545 516 msgid "Nothing"
546 517 msgstr "Brak"
547 518
548 #: rhodecode/controllers/admin/repos.py:486
519 #: rhodecode/controllers/admin/repos.py:485
549 520 #, python-format
550 521 msgid "Marked repo %s as fork of %s"
551 522 msgstr "Oznaczono %s repo jako rozwidlenie %s"
552 523
553 #: rhodecode/controllers/admin/repos.py:490
524 #: rhodecode/controllers/admin/repos.py:489
554 525 msgid "An error occurred during this operation"
555 526 msgstr "Wystąpił błąd podczas tej operacji"
556 527
@@ -792,152 +763,163 b' msgstr ""'
792 763 msgid "No changes detected"
793 764 msgstr "Nie wykryto zmian"
794 765
795 #: rhodecode/lib/helpers.py:373
766 #: rhodecode/lib/helpers.py:374
796 767 #, python-format
797 768 msgid "%a, %d %b %Y %H:%M:%S"
798 769 msgstr "%d.%m.%Y, %H:%M:%S"
799 770
800 #: rhodecode/lib/helpers.py:485
771 #: rhodecode/lib/helpers.py:486
801 772 msgid "True"
802 773 msgstr "Prawda"
803 774
804 #: rhodecode/lib/helpers.py:489
775 #: rhodecode/lib/helpers.py:490
805 776 msgid "False"
806 777 msgstr "Fałsz"
807 778
808 #: rhodecode/lib/helpers.py:529
779 #: rhodecode/lib/helpers.py:530
809 780 #, python-format
810 781 msgid "Deleted branch: %s"
811 782 msgstr "Usunięta gałąź: %s"
812 783
813 #: rhodecode/lib/helpers.py:532
784 #: rhodecode/lib/helpers.py:533
814 785 #, python-format
815 786 msgid "Created tag: %s"
816 787 msgstr "Utworzony tag: %s"
817 788
818 #: rhodecode/lib/helpers.py:545
789 #: rhodecode/lib/helpers.py:546
819 790 msgid "Changeset not found"
820 791 msgstr "Nie znaleziono changeset"
821 792
822 #: rhodecode/lib/helpers.py:588
793 #: rhodecode/lib/helpers.py:589
823 794 #, python-format
824 795 msgid "Show all combined changesets %s->%s"
825 796 msgstr "Pokaż wszystkie zestawienia zmian changesets %s->%s"
826 797
827 #: rhodecode/lib/helpers.py:594
798 #: rhodecode/lib/helpers.py:595
828 799 msgid "compare view"
829 800 msgstr "Wyświetl porównanie"
830 801
831 #: rhodecode/lib/helpers.py:614
802 #: rhodecode/lib/helpers.py:615
832 803 msgid "and"
833 804 msgstr "i"
834 805
835 #: rhodecode/lib/helpers.py:615
806 #: rhodecode/lib/helpers.py:616
836 807 #, python-format
837 808 msgid "%s more"
838 809 msgstr "%s więcej"
839 810
840 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
811 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
841 812 msgid "revisions"
842 813 msgstr "rewizja"
843 814
844 #: rhodecode/lib/helpers.py:640
815 #: rhodecode/lib/helpers.py:641
845 816 #, python-format
846 817 msgid "fork name %s"
847 818 msgstr "nazwa rozgałęzienia %s"
848 819
849 #: rhodecode/lib/helpers.py:653
820 #: rhodecode/lib/helpers.py:658
850 821 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
851 822 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
852 823 #, python-format
853 824 msgid "Pull request #%s"
854 825 msgstr "Połączonych gałęzi #%s"
855 826
856 #: rhodecode/lib/helpers.py:659
827 #: rhodecode/lib/helpers.py:664
857 828 msgid "[deleted] repository"
858 829 msgstr "[usunięte] repozytorium"
859 830
860 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
831 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
861 832 msgid "[created] repository"
862 833 msgstr "[utworzone] repozytorium"
863 834
864 #: rhodecode/lib/helpers.py:663
835 #: rhodecode/lib/helpers.py:668
865 836 msgid "[created] repository as fork"
866 837 msgstr "[utworzone] repozytorium jako rozgałęzienie"
867 838
868 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
839 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
869 840 msgid "[forked] repository"
870 841 msgstr "[rozgałęzione] repozytorium"
871 842
872 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
843 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
873 844 msgid "[updated] repository"
874 845 msgstr "[zaktualizowane] repozytorium"
875 846
876 #: rhodecode/lib/helpers.py:669
847 #: rhodecode/lib/helpers.py:674
877 848 msgid "[delete] repository"
878 849 msgstr "[skasowane] repozytorium"
879 850
880 #: rhodecode/lib/helpers.py:677
851 #: rhodecode/lib/helpers.py:682
881 852 msgid "[created] user"
882 853 msgstr "[utworzony] użytkownik"
883 854
884 #: rhodecode/lib/helpers.py:679
855 #: rhodecode/lib/helpers.py:684
885 856 msgid "[updated] user"
886 857 msgstr "[zaktualizowany] użytkownik"
887 858
888 #: rhodecode/lib/helpers.py:681
859 #: rhodecode/lib/helpers.py:686
889 860 msgid "[created] users group"
890 861 msgstr "[utworzona] grupa użytkowników"
891 862
892 #: rhodecode/lib/helpers.py:683
863 #: rhodecode/lib/helpers.py:688
893 864 msgid "[updated] users group"
894 865 msgstr "[zaktualizowana] grupa użytkowników"
895 866
896 #: rhodecode/lib/helpers.py:685
867 #: rhodecode/lib/helpers.py:690
897 868 msgid "[commented] on revision in repository"
898 869 msgstr "[komentarz] do zmiany w repozytorium"
899 870
900 #: rhodecode/lib/helpers.py:687
871 #: rhodecode/lib/helpers.py:692
901 872 msgid "[commented] on pull request for"
902 873 msgstr "[komentarz] wniosek o połączenie gałęzi"
903 874
904 #: rhodecode/lib/helpers.py:689
875 #: rhodecode/lib/helpers.py:694
905 876 msgid "[closed] pull request for"
906 877 msgstr "[zamknięty] wniosek o połączenie gałęzi"
907 878
908 #: rhodecode/lib/helpers.py:691
879 #: rhodecode/lib/helpers.py:696
909 880 msgid "[pushed] into"
910 881 msgstr "[wysłane zmiany] w"
911 882
912 #: rhodecode/lib/helpers.py:693
883 #: rhodecode/lib/helpers.py:698
913 884 msgid "[committed via RhodeCode] into repository"
914 885 msgstr "[committed przez RhodeCode] do repozytorium"
915 886
916 #: rhodecode/lib/helpers.py:695
887 #: rhodecode/lib/helpers.py:700
917 888 msgid "[pulled from remote] into repository"
918 889 msgstr "[pobieranie z zdalnego] do repozytorium"
919 890
920 #: rhodecode/lib/helpers.py:697
891 #: rhodecode/lib/helpers.py:702
921 892 msgid "[pulled] from"
922 893 msgstr "[pobrano] z"
923 894
924 #: rhodecode/lib/helpers.py:699
895 #: rhodecode/lib/helpers.py:704
925 896 msgid "[started following] repository"
926 897 msgstr "[start następnego] repozytorium"
927 898
928 #: rhodecode/lib/helpers.py:701
899 #: rhodecode/lib/helpers.py:706
929 900 msgid "[stopped following] repository"
930 901 msgstr "[zatrzymany po] repozytorium"
931 902
932 #: rhodecode/lib/helpers.py:877
903 #: rhodecode/lib/helpers.py:883
933 904 #, python-format
934 905 msgid " and %s more"
935 906 msgstr "i %s więcej"
936 907
937 #: rhodecode/lib/helpers.py:881
908 #: rhodecode/lib/helpers.py:887
938 909 msgid "No Files"
939 910 msgstr "Brak Plików"
940 911
912 #: rhodecode/lib/helpers.py:1163
913 #, python-format
914 msgid ""
915 "%s repository is not mapped to db perhaps it was created or renamed from "
916 "the filesystem please run the application again in order to rescan "
917 "repositories"
918 msgstr ""
919 "%s repozytorium nie jest mapowane do db może zostało utworzone lub "
920 "zmienione z systemie plików proszę uruchomić aplikację ponownie, aby "
921 "ponownie przeskanować repozytoria"
922
941 923 #: rhodecode/lib/utils2.py:403
942 924 #, python-format
943 925 msgid "%d year"
@@ -1014,83 +996,83 b' msgstr "przed chwil\xc4\x85"'
1014 996 msgid "password reset link"
1015 997 msgstr "łącze resetowania hasła"
1016 998
1017 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
1018 1000 msgid "Repository no access"
1019 1001 msgstr "Brak dostępu do repozytorium"
1020 1002
1021 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
1003 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
1022 1004 msgid "Repository read access"
1023 1005 msgstr "Repozytorium do odczytu"
1024 1006
1025 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
1007 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
1026 1008 msgid "Repository write access"
1027 1009 msgstr "Repozytorium do zapisu"
1028 1010
1029 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
1030 1012 msgid "Repository admin access"
1031 1013 msgstr "Administracja dostępu do repozytorium"
1032 1014
1033 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
1015 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1034 1016 msgid "Repositories Group no access"
1035 1017 msgstr "Grupy repozytoriów brak dostępu"
1036 1018
1037 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1038 1020 msgid "Repositories Group read access"
1039 1021 msgstr "Grupy repozytoriów dostęp do odczytu"
1040 1022
1041 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1042 1024 msgid "Repositories Group write access"
1043 1025 msgstr "Grupy repozytoriów dostęp do zapisu"
1044 1026
1045 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1046 1028 msgid "Repositories Group admin access"
1047 1029 msgstr "Repozytoria Grupy dostęp administratora"
1048 1030
1049 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1050 1032 msgid "RhodeCode Administrator"
1051 1033 msgstr "Administrator Repo"
1052 1034
1053 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1054 1036 msgid "Repository creation disabled"
1055 1037 msgstr "Repozytorium wyłączone"
1056 1038
1057 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1058 1040 msgid "Repository creation enabled"
1059 1041 msgstr "Repozytorium włączone"
1060 1042
1061 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1062 1044 msgid "Repository forking disabled"
1063 1045 msgstr "Rozwidlenie repozytorium wyłączone"
1064 1046
1065 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1066 1048 msgid "Repository forking enabled"
1067 1049 msgstr "Rozwidlenie repozytorium włączone"
1068 1050
1069 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1051 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1070 1052 msgid "Register disabled"
1071 1053 msgstr "Rejestracja wyłączona"
1072 1054
1073 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1055 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1074 1056 msgid "Register new user with RhodeCode with manual activation"
1075 1057 msgstr "Rejestracja nowego użytkownika na stronie z ręczną aktywacją"
1076 1058
1077 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1059 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1078 1060 msgid "Register new user with RhodeCode with auto activation"
1079 1061 msgstr "Rejestracja nowego użytkownika na stronie z automatyczną aktywacją"
1080 1062
1081 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1063 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1082 1064 msgid "Not Reviewed"
1083 1065 msgstr "Brak Korekty"
1084 1066
1085 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1067 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1086 1068 msgid "Approved"
1087 1069 msgstr "Zaakceptowano"
1088 1070
1089 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1071 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1090 1072 msgid "Rejected"
1091 1073 msgstr "Odrzucono"
1092 1074
1093 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1075 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1094 1076 msgid "Under Review"
1095 1077 msgstr "Objęty Przeglądem"
1096 1078
@@ -1160,24 +1142,24 b' msgstr "%(user)s chce \xc5\xbceby przejrze\xc4\x87 nowe ga\xc5\x82\xc4\x99zie #%(pr_id)s"'
1160 1142 msgid "latest tip"
1161 1143 msgstr "ostatni tip"
1162 1144
1163 #: rhodecode/model/user.py:230
1145 #: rhodecode/model/user.py:232
1164 1146 msgid "new user registration"
1165 1147 msgstr "nowy użytkownik się zarejestrował"
1166 1148
1167 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1168 #: rhodecode/model/user.py:301
1149 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1150 #: rhodecode/model/user.py:303
1169 1151 msgid "You can't Edit this user since it's crucial for entire application"
1170 1152 msgstr ""
1171 1153 "Nie możesz edytować tego użytkownika ponieważ jest kluczowy dla całej "
1172 1154 "aplikacji"
1173 1155
1174 #: rhodecode/model/user.py:325
1156 #: rhodecode/model/user.py:327
1175 1157 msgid "You can't remove this user since it's crucial for entire application"
1176 1158 msgstr ""
1177 1159 "Nie możesz usunąć tego użytkownika ponieważ jest kluczowy dla całej "
1178 1160 "aplikacji"
1179 1161
1180 #: rhodecode/model/user.py:331
1162 #: rhodecode/model/user.py:333
1181 1163 #, python-format
1182 1164 msgid ""
1183 1165 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1304,20 +1286,20 b' msgstr "Nie masz uprawnie\xc5\x84 do tworzenia repozytorium w tej grupie"'
1304 1286 msgid "This username or users group name is not valid"
1305 1287 msgstr "Ta nazwa użytkownika lub grupy użytkowników nie jest prawidłowa"
1306 1288
1307 #: rhodecode/model/validators.py:582
1289 #: rhodecode/model/validators.py:591
1308 1290 msgid "This is not a valid path"
1309 1291 msgstr "To nie jest prawidłowa ścieżka"
1310 1292
1311 #: rhodecode/model/validators.py:597
1293 #: rhodecode/model/validators.py:606
1312 1294 msgid "This e-mail address is already taken"
1313 1295 msgstr "Ten adres e-mail jest już zajęty"
1314 1296
1315 #: rhodecode/model/validators.py:617
1297 #: rhodecode/model/validators.py:626
1316 1298 #, python-format
1317 1299 msgid "e-mail \"%(email)s\" does not exist."
1318 1300 msgstr "e-mail \"%(email)s\" nie istnieje."
1319 1301
1320 #: rhodecode/model/validators.py:654
1302 #: rhodecode/model/validators.py:663
1321 1303 msgid ""
1322 1304 "The LDAP Login attribute of the CN must be specified - this is the name "
1323 1305 "of the attribute that is equivalent to \"username\""
@@ -1325,7 +1307,7 b' msgstr ""'
1325 1307 "Atrybut logowania CN do LDAP należy określić, jest to nazwa atrybutu, "
1326 1308 "który jest odpowiednikiem \"username\""
1327 1309
1328 #: rhodecode/model/validators.py:673
1310 #: rhodecode/model/validators.py:682
1329 1311 #, python-format
1330 1312 msgid "Revisions %(revs)s are already part of pull request or have set status"
1331 1313 msgstr "Rewizja %(revs)s jest już częścią nowej gałęzi więc określ jego status"
@@ -1341,7 +1323,8 b' msgstr "Repozytorium"'
1341 1323 #: rhodecode/templates/admin/users/users.html:9
1342 1324 #: rhodecode/templates/bookmarks/bookmarks.html:10
1343 1325 #: rhodecode/templates/branches/branches.html:9
1344 #: rhodecode/templates/journal/journal.html:40
1326 #: rhodecode/templates/journal/journal.html:9
1327 #: rhodecode/templates/journal/journal.html:48
1345 1328 #: rhodecode/templates/tags/tags.html:10
1346 1329 msgid "quick filter..."
1347 1330 msgstr "szybki filtr..."
@@ -1407,8 +1390,8 b' msgstr "Grupy w repozytorium"'
1407 1390 #: rhodecode/templates/branches/branches.html:50
1408 1391 #: rhodecode/templates/branches/branches_data.html:6
1409 1392 #: rhodecode/templates/files/files_browser.html:47
1410 #: rhodecode/templates/journal/journal.html:62
1411 #: rhodecode/templates/journal/journal.html:168
1393 #: rhodecode/templates/journal/journal.html:70
1394 #: rhodecode/templates/journal/journal.html:196
1412 1395 #: rhodecode/templates/journal/journal_page_repos.html:7
1413 1396 #: rhodecode/templates/settings/repo_settings.html:31
1414 1397 #: rhodecode/templates/summary/summary.html:43
@@ -1425,7 +1408,7 b' msgstr "Ostatnia aktywno\xc5\x9b\xc4\x87"'
1425 1408 #: rhodecode/templates/index_base.html:74
1426 1409 #: rhodecode/templates/index_base.html:179
1427 1410 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1428 #: rhodecode/templates/journal/journal.html:170
1411 #: rhodecode/templates/journal/journal.html:198
1429 1412 msgid "Tip"
1430 1413 msgstr "Ostatnia zmiana"
1431 1414
@@ -1455,7 +1438,7 b' msgstr "Atom"'
1455 1438 #: rhodecode/templates/admin/users/users.html:107
1456 1439 #: rhodecode/templates/bookmarks/bookmarks.html:60
1457 1440 #: rhodecode/templates/branches/branches.html:76
1458 #: rhodecode/templates/journal/journal.html:193
1441 #: rhodecode/templates/journal/journal.html:221
1459 1442 #: rhodecode/templates/tags/tags.html:77
1460 1443 msgid "Click to sort ascending"
1461 1444 msgstr "Kliknij, aby posortować rosnąco"
@@ -1468,7 +1451,7 b' msgstr "Kliknij, aby posortowa\xc4\x87 rosn\xc4\x85co"'
1468 1451 #: rhodecode/templates/admin/users/users.html:108
1469 1452 #: rhodecode/templates/bookmarks/bookmarks.html:61
1470 1453 #: rhodecode/templates/branches/branches.html:77
1471 #: rhodecode/templates/journal/journal.html:194
1454 #: rhodecode/templates/journal/journal.html:222
1472 1455 #: rhodecode/templates/tags/tags.html:78
1473 1456 msgid "Click to sort descending"
1474 1457 msgstr "Kliknij, aby posortować malejąco"
@@ -1485,7 +1468,7 b' msgstr "Ostatnia akytwno\xc5\x9b\xc4\x87"'
1485 1468 #: rhodecode/templates/admin/users/users.html:109
1486 1469 #: rhodecode/templates/bookmarks/bookmarks.html:62
1487 1470 #: rhodecode/templates/branches/branches.html:78
1488 #: rhodecode/templates/journal/journal.html:195
1471 #: rhodecode/templates/journal/journal.html:223
1489 1472 #: rhodecode/templates/tags/tags.html:79
1490 1473 msgid "No records found."
1491 1474 msgstr "Nie znaleziono rekordów."
@@ -1497,7 +1480,7 b' msgstr "Nie znaleziono rekord\xc3\xb3w."'
1497 1480 #: rhodecode/templates/admin/users/users.html:110
1498 1481 #: rhodecode/templates/bookmarks/bookmarks.html:63
1499 1482 #: rhodecode/templates/branches/branches.html:79
1500 #: rhodecode/templates/journal/journal.html:196
1483 #: rhodecode/templates/journal/journal.html:224
1501 1484 #: rhodecode/templates/tags/tags.html:80
1502 1485 msgid "Data error."
1503 1486 msgstr "Błąd danych."
@@ -1509,8 +1492,8 b' msgstr "B\xc5\x82\xc4\x85d danych."'
1509 1492 #: rhodecode/templates/admin/users/users.html:111
1510 1493 #: rhodecode/templates/bookmarks/bookmarks.html:64
1511 1494 #: rhodecode/templates/branches/branches.html:80
1512 #: rhodecode/templates/journal/journal.html:54
1513 #: rhodecode/templates/journal/journal.html:197
1495 #: rhodecode/templates/journal/journal.html:62
1496 #: rhodecode/templates/journal/journal.html:225
1514 1497 #: rhodecode/templates/tags/tags.html:81
1515 1498 msgid "Loading..."
1516 1499 msgstr "Wczytywanie..."
@@ -1658,10 +1641,30 b' msgid "There are no bookmarks yet"'
1658 1641 msgstr "Nie ma jeszcze zakładek"
1659 1642
1660 1643 #: rhodecode/templates/admin/admin.html:5
1661 #: rhodecode/templates/admin/admin.html:9
1644 #: rhodecode/templates/admin/admin.html:13
1662 1645 msgid "Admin journal"
1663 1646 msgstr "Dziennik administratora"
1664 1647
1648 #: rhodecode/templates/admin/admin.html:10
1649 #, fuzzy
1650 msgid "journal filter..."
1651 msgstr "szybki filtr..."
1652
1653 #: rhodecode/templates/admin/admin.html:12
1654 #: rhodecode/templates/journal/journal.html:11
1655 #, fuzzy
1656 msgid "filter"
1657 msgstr "pliki"
1658
1659 #: rhodecode/templates/admin/admin.html:13
1660 #: rhodecode/templates/journal/journal.html:12
1661 #, python-format
1662 msgid "%s entry"
1663 msgid_plural "%s entries"
1664 msgstr[0] ""
1665 msgstr[1] ""
1666 msgstr[2] ""
1667
1665 1668 #: rhodecode/templates/admin/admin_log.html:6
1666 1669 #: rhodecode/templates/admin/repos/repos.html:74
1667 1670 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1690,7 +1693,7 b' msgstr "Data"'
1690 1693 msgid "From IP"
1691 1694 msgstr "z IP"
1692 1695
1693 #: rhodecode/templates/admin/admin_log.html:57
1696 #: rhodecode/templates/admin/admin_log.html:63
1694 1697 msgid "No actions yet"
1695 1698 msgstr "Brak akcji"
1696 1699
@@ -1763,7 +1766,7 b' msgstr "W\xc5\x82\xc4\x85cz blokowanie pobierania w repozytorium."'
1763 1766 #: rhodecode/templates/admin/users/user_edit.html:178
1764 1767 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1765 1768 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1766 #: rhodecode/templates/settings/repo_settings.html:93
1769 #: rhodecode/templates/settings/repo_settings.html:94
1767 1770 msgid "Save"
1768 1771 msgstr "Zapisz"
1769 1772
@@ -2056,7 +2059,7 b' msgstr "Zmiana w\xc5\x82a\xc5\x9bciciela tego repozytorium."'
2056 2059 #: rhodecode/templates/files/files_add.html:82
2057 2060 #: rhodecode/templates/files/files_edit.html:68
2058 2061 #: rhodecode/templates/pullrequests/pullrequest.html:124
2059 #: rhodecode/templates/settings/repo_settings.html:94
2062 #: rhodecode/templates/settings/repo_settings.html:95
2060 2063 msgid "Reset"
2061 2064 msgstr "Zresetuj"
2062 2065
@@ -2204,24 +2207,26 b' msgid "Delete"'
2204 2207 msgstr "Usuń"
2205 2208
2206 2209 #: rhodecode/templates/admin/repos/repo_edit.html:278
2210 #: rhodecode/templates/settings/repo_settings.html:115
2207 2211 msgid "Remove this repository"
2208 2212 msgstr "Usuń to repozytorium"
2209 2213
2210 2214 #: rhodecode/templates/admin/repos/repo_edit.html:278
2215 #: rhodecode/templates/settings/repo_settings.html:115
2211 2216 msgid "Confirm to delete this repository"
2212 2217 msgstr "Potwierdź, aby usunąć repozytorium"
2213 2218
2214 2219 #: rhodecode/templates/admin/repos/repo_edit.html:282
2220 #: rhodecode/templates/settings/repo_settings.html:119
2221 #, fuzzy
2215 2222 msgid ""
2216 2223 "This repository will be renamed in a special way in order to be "
2217 "unaccesible for RhodeCode and VCS systems.\n"
2218 " If you need fully delete it from filesystem "
2219 "please do it manually"
2224 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2225 "from file system please do it manually"
2220 2226 msgstr ""
2221 2227 "To repozytorium zostanie zmienione w sposób szczególny, żeby było "
2222 "niedostępne dla strony i systemów VCS.\n"
2223 " Jeśli chcesz całkowicie usunąć go z systemu "
2224 "plików prosimy zrobić to ręcznie"
2228 "niedostępne dla strony i systemów VCS. Jeśli chcesz całkowicie usunąć go "
2229 "z systemu plików prosimy zrobić to ręcznie"
2225 2230
2226 2231 #: rhodecode/templates/admin/repos/repo_edit_perms.html:3
2227 2232 #: rhodecode/templates/admin/repos_groups/repos_group_edit_perms.html:3
@@ -2252,7 +2257,7 b' msgstr "u\xc5\xbcytkownik"'
2252 2257
2253 2258 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2254 2259 #: rhodecode/templates/data_table/_dt_elements.html:67
2255 #: rhodecode/templates/journal/journal.html:87
2260 #: rhodecode/templates/journal/journal.html:95
2256 2261 #: rhodecode/templates/summary/summary.html:85
2257 2262 msgid "private repository"
2258 2263 msgstr "prywatne repozytorium"
@@ -2777,7 +2782,7 b' msgid "My permissions"'
2777 2782 msgstr "Moje uprawnienia"
2778 2783
2779 2784 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2780 #: rhodecode/templates/journal/journal.html:41
2785 #: rhodecode/templates/journal/journal.html:49
2781 2786 msgid "My repos"
2782 2787 msgstr "Moje repo"
2783 2788
@@ -2988,7 +2993,6 b' msgstr "Odebrana poczta"'
2988 2993 #: rhodecode/templates/base/base.html:324
2989 2994 #: rhodecode/templates/base/base.html:326
2990 2995 #: rhodecode/templates/journal/journal.html:4
2991 #: rhodecode/templates/journal/journal.html:21
2992 2996 #: rhodecode/templates/journal/public_journal.html:4
2993 2997 msgid "Journal"
2994 2998 msgstr "Dziennik"
@@ -3121,7 +3125,7 b' msgid "add another comment"'
3121 3125 msgstr "dodaj kolejny komentarz"
3122 3126
3123 3127 #: rhodecode/templates/base/root.html:43
3124 #: rhodecode/templates/journal/journal.html:75
3128 #: rhodecode/templates/journal/journal.html:83
3125 3129 #: rhodecode/templates/summary/summary.html:57
3126 3130 msgid "Stop following this repository"
3127 3131 msgstr "Zakończyć obserwację tego repozytorium"
@@ -3229,7 +3233,7 b' msgid "Affected number of files, click t'
3229 3233 msgstr "Dotyczy liczby plików, kliknij, aby zobaczyć więcej szczegółów"
3230 3234
3231 3235 #: rhodecode/templates/changelog/changelog.html:91
3232 #: rhodecode/templates/changeset/changeset.html:44
3236 #: rhodecode/templates/changeset/changeset.html:65
3233 3237 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3234 3238 #: rhodecode/templates/changeset/changeset_range.html:46
3235 3239 msgid "Changeset status"
@@ -3241,23 +3245,22 b' msgid "Click to open associated pull req'
3241 3245 msgstr "Kliknij żeby otworzyć prośbę o połączenie gałęzi"
3242 3246
3243 3247 #: rhodecode/templates/changelog/changelog.html:104
3244 #: rhodecode/templates/changeset/changeset.html:85
3245 3248 msgid "Parent"
3246 3249 msgstr "Rewizja"
3247 3250
3248 3251 #: rhodecode/templates/changelog/changelog.html:110
3249 #: rhodecode/templates/changeset/changeset.html:91
3252 #: rhodecode/templates/changeset/changeset.html:42
3250 3253 msgid "No parents"
3251 3254 msgstr "Brak rewizji"
3252 3255
3253 3256 #: rhodecode/templates/changelog/changelog.html:115
3254 #: rhodecode/templates/changeset/changeset.html:95
3257 #: rhodecode/templates/changeset/changeset.html:106
3255 3258 #: rhodecode/templates/changeset/changeset_range.html:79
3256 3259 msgid "merge"
3257 3260 msgstr "połącz"
3258 3261
3259 3262 #: rhodecode/templates/changelog/changelog.html:118
3260 #: rhodecode/templates/changeset/changeset.html:98
3263 #: rhodecode/templates/changeset/changeset.html:109
3261 3264 #: rhodecode/templates/changeset/changeset_range.html:82
3262 3265 #: rhodecode/templates/files/files.html:29
3263 3266 #: rhodecode/templates/files/files_add.html:33
@@ -3272,7 +3275,7 b' msgid "bookmark"'
3272 3275 msgstr "zakładka"
3273 3276
3274 3277 #: rhodecode/templates/changelog/changelog.html:130
3275 #: rhodecode/templates/changeset/changeset.html:103
3278 #: rhodecode/templates/changeset/changeset.html:114
3276 3279 #: rhodecode/templates/changeset/changeset_range.html:94
3277 3280 msgid "tag"
3278 3281 msgstr "etykieta"
@@ -3282,26 +3285,26 b' msgid "There are no changes yet"'
3282 3285 msgstr "Nie ma jeszcze zmian"
3283 3286
3284 3287 #: rhodecode/templates/changelog/changelog_details.html:4
3285 #: rhodecode/templates/changeset/changeset.html:73
3288 #: rhodecode/templates/changeset/changeset.html:94
3286 3289 msgid "removed"
3287 3290 msgstr "usunięto"
3288 3291
3289 3292 #: rhodecode/templates/changelog/changelog_details.html:5
3290 #: rhodecode/templates/changeset/changeset.html:74
3293 #: rhodecode/templates/changeset/changeset.html:95
3291 3294 msgid "changed"
3292 3295 msgstr "zmiana"
3293 3296
3294 3297 #: rhodecode/templates/changelog/changelog_details.html:6
3295 #: rhodecode/templates/changeset/changeset.html:75
3298 #: rhodecode/templates/changeset/changeset.html:96
3296 3299 msgid "added"
3297 3300 msgstr "dodana"
3298 3301
3299 3302 #: rhodecode/templates/changelog/changelog_details.html:8
3300 3303 #: rhodecode/templates/changelog/changelog_details.html:9
3301 3304 #: rhodecode/templates/changelog/changelog_details.html:10
3302 #: rhodecode/templates/changeset/changeset.html:77
3303 #: rhodecode/templates/changeset/changeset.html:78
3304 #: rhodecode/templates/changeset/changeset.html:79
3305 #: rhodecode/templates/changeset/changeset.html:98
3306 #: rhodecode/templates/changeset/changeset.html:99
3307 #: rhodecode/templates/changeset/changeset.html:100
3305 3308 #, python-format
3306 3309 msgid "affected %s files"
3307 3310 msgstr "zarażone pliki %s"
@@ -3315,21 +3318,25 b' msgstr "%s Grupy zmian"'
3315 3318 msgid "Changeset"
3316 3319 msgstr "Grupy zmian"
3317 3320
3318 #: rhodecode/templates/changeset/changeset.html:49
3321 #: rhodecode/templates/changeset/changeset.html:52
3322 msgid "No children"
3323 msgstr ""
3324
3325 #: rhodecode/templates/changeset/changeset.html:70
3319 3326 #: rhodecode/templates/changeset/diff_block.html:20
3320 3327 msgid "raw diff"
3321 3328 msgstr "raw różnic"
3322 3329
3323 #: rhodecode/templates/changeset/changeset.html:50
3330 #: rhodecode/templates/changeset/changeset.html:71
3324 3331 msgid "patch diff"
3325 3332 msgstr "poprawka różnic"
3326 3333
3327 #: rhodecode/templates/changeset/changeset.html:51
3334 #: rhodecode/templates/changeset/changeset.html:72
3328 3335 #: rhodecode/templates/changeset/diff_block.html:21
3329 3336 msgid "download diff"
3330 3337 msgstr "pobierz różnice"
3331 3338
3332 #: rhodecode/templates/changeset/changeset.html:55
3339 #: rhodecode/templates/changeset/changeset.html:76
3333 3340 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3334 3341 #, python-format
3335 3342 msgid "%d comment"
@@ -3338,7 +3345,7 b' msgstr[0] "%d komentarz"'
3338 3345 msgstr[1] "%d komentarzy"
3339 3346 msgstr[2] "%d komentarzy"
3340 3347
3341 #: rhodecode/templates/changeset/changeset.html:55
3348 #: rhodecode/templates/changeset/changeset.html:76
3342 3349 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3343 3350 #, python-format
3344 3351 msgid "(%d inline)"
@@ -3347,7 +3354,7 b' msgstr[0] "(%d linii)"'
3347 3354 msgstr[1] "(%d linii)"
3348 3355 msgstr[2] "(%d linii)"
3349 3356
3350 #: rhodecode/templates/changeset/changeset.html:111
3357 #: rhodecode/templates/changeset/changeset.html:122
3351 3358 #: rhodecode/templates/compare/compare_diff.html:44
3352 3359 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3353 3360 #, fuzzy, python-format
@@ -3357,7 +3364,7 b' msgstr[0] "%s plik zmieniony"'
3357 3364 msgstr[1] "%s plików zmienionych"
3358 3365 msgstr[2] "%s plików zmienionych"
3359 3366
3360 #: rhodecode/templates/changeset/changeset.html:113
3367 #: rhodecode/templates/changeset/changeset.html:124
3361 3368 #: rhodecode/templates/compare/compare_diff.html:46
3362 3369 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3363 3370 #, fuzzy, python-format
@@ -3389,7 +3396,7 b' msgstr ""'
3389 3396 "użytkownika strony"
3390 3397
3391 3398 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3392 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3399 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3393 3400 msgid "Comment"
3394 3401 msgstr "Komentarz"
3395 3402
@@ -3410,15 +3417,15 b' msgstr "Zaloguj si\xc4\x99 teraz"'
3410 3417 msgid "Leave a comment"
3411 3418 msgstr "Napisz komentarz"
3412 3419
3413 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3420 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3414 3421 msgid "Check this to change current status of code-review for this changeset"
3415 3422 msgstr "Zaznacz to, aby zmienić bieżący stan code przeglądu tego zestawienia zmian"
3416 3423
3417 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3424 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3418 3425 msgid "change status"
3419 3426 msgstr "zmień status"
3420 3427
3421 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3428 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3422 3429 msgid "Comment and close"
3423 3430 msgstr "Skomentuj i zamknij"
3424 3431
@@ -3475,19 +3482,19 b' msgid "Fork"'
3475 3482 msgstr "Gałąź"
3476 3483
3477 3484 #: rhodecode/templates/data_table/_dt_elements.html:60
3478 #: rhodecode/templates/journal/journal.html:81
3485 #: rhodecode/templates/journal/journal.html:89
3479 3486 #: rhodecode/templates/summary/summary.html:77
3480 3487 msgid "Mercurial repository"
3481 3488 msgstr "Repozytorium mercurial"
3482 3489
3483 3490 #: rhodecode/templates/data_table/_dt_elements.html:62
3484 #: rhodecode/templates/journal/journal.html:83
3491 #: rhodecode/templates/journal/journal.html:91
3485 3492 #: rhodecode/templates/summary/summary.html:80
3486 3493 msgid "Git repository"
3487 3494 msgstr "Repozytorium git"
3488 3495
3489 3496 #: rhodecode/templates/data_table/_dt_elements.html:69
3490 #: rhodecode/templates/journal/journal.html:89
3497 #: rhodecode/templates/journal/journal.html:97
3491 3498 #: rhodecode/templates/summary/summary.html:87
3492 3499 msgid "public repository"
3493 3500 msgstr "Publiczne repozytorium"
@@ -3869,50 +3876,50 b' msgstr "rozga\xc5\x82\xc4\x99ziony"'
3869 3876 msgid "There are no forks yet"
3870 3877 msgstr "Nie ma jeszcze gałęzi"
3871 3878
3872 #: rhodecode/templates/journal/journal.html:13
3879 #: rhodecode/templates/journal/journal.html:21
3873 3880 msgid "ATOM journal feed"
3874 3881 msgstr "Dziennik kanału ATOM"
3875 3882
3876 #: rhodecode/templates/journal/journal.html:14
3883 #: rhodecode/templates/journal/journal.html:22
3877 3884 msgid "RSS journal feed"
3878 3885 msgstr "Dziennik kanału RSS"
3879 3886
3880 #: rhodecode/templates/journal/journal.html:24
3887 #: rhodecode/templates/journal/journal.html:32
3881 3888 #: rhodecode/templates/pullrequests/pullrequest.html:55
3882 3889 msgid "Refresh"
3883 3890 msgstr "Odśwież"
3884 3891
3885 #: rhodecode/templates/journal/journal.html:27
3892 #: rhodecode/templates/journal/journal.html:35
3886 3893 #: rhodecode/templates/journal/public_journal.html:24
3887 3894 msgid "RSS feed"
3888 3895 msgstr "Kanał RSS"
3889 3896
3890 #: rhodecode/templates/journal/journal.html:30
3897 #: rhodecode/templates/journal/journal.html:38
3891 3898 #: rhodecode/templates/journal/public_journal.html:27
3892 3899 msgid "ATOM feed"
3893 3900 msgstr "Kanał ATOM"
3894 3901
3895 #: rhodecode/templates/journal/journal.html:41
3902 #: rhodecode/templates/journal/journal.html:49
3896 3903 msgid "Watched"
3897 3904 msgstr "Obserwowane"
3898 3905
3899 #: rhodecode/templates/journal/journal.html:46
3906 #: rhodecode/templates/journal/journal.html:54
3900 3907 msgid "ADD"
3901 3908 msgstr "DODAJ"
3902 3909
3903 #: rhodecode/templates/journal/journal.html:69
3910 #: rhodecode/templates/journal/journal.html:77
3904 3911 msgid "following user"
3905 3912 msgstr "następujący użytkownik"
3906 3913
3907 #: rhodecode/templates/journal/journal.html:69
3914 #: rhodecode/templates/journal/journal.html:77
3908 3915 msgid "user"
3909 3916 msgstr "użytkownik"
3910 3917
3911 #: rhodecode/templates/journal/journal.html:102
3918 #: rhodecode/templates/journal/journal.html:110
3912 3919 msgid "You are not following any users or repositories"
3913 3920 msgstr "Nie obserwujesz żadnych użytkowników lub repozytoriów"
3914 3921
3915 #: rhodecode/templates/journal/journal_data.html:51
3922 #: rhodecode/templates/journal/journal_data.html:55
3916 3923 msgid "No entries yet"
3917 3924 msgstr "Brak wpisów jeszcze"
3918 3925
@@ -4012,6 +4019,11 b' msgstr "Utworzono"'
4012 4019 msgid "Compare view"
4013 4020 msgstr "Wyświetl porównanie"
4014 4021
4022 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
4023 #, fuzzy
4024 msgid "reviewer"
4025 msgstr "%d recenzent"
4026
4015 4027 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
4016 4028 msgid "all pull requests"
4017 4029 msgstr "wszystkie prośby połączenia gałęzi"
@@ -4076,6 +4088,16 b' msgstr "Brak uprawnie\xc5\x84"'
4076 4088 msgid "%s Settings"
4077 4089 msgstr "Ustawienia %s"
4078 4090
4091 #: rhodecode/templates/settings/repo_settings.html:102
4092 #, fuzzy
4093 msgid "Delete repository"
4094 msgstr "[skasowane] repozytorium"
4095
4096 #: rhodecode/templates/settings/repo_settings.html:109
4097 #, fuzzy
4098 msgid "Remove repo"
4099 msgstr "usuń"
4100
4079 4101 #: rhodecode/templates/shortlog/shortlog.html:5
4080 4102 #, python-format
4081 4103 msgid "%s Shortlog"
@@ -4278,3 +4300,29 b' msgstr "Etykiety pliku %s"'
4278 4300 msgid "Compare tags"
4279 4301 msgstr "porównanie"
4280 4302
4303 #~ msgid ""
4304 #~ "%s repository is not mapped to db"
4305 #~ " perhaps it was created or renamed"
4306 #~ " from the file system please run "
4307 #~ "the application again in order to "
4308 #~ "rescan repositories"
4309 #~ msgstr ""
4310 #~ "%s repozytorium nie jest mapowane do "
4311 #~ "db może zostało utworzone lub zmienione"
4312 #~ " z systemu plików proszę uruchomić "
4313 #~ "aplikację ponownie, aby ponownie przeskanować"
4314 #~ " repozytoria"
4315
4316 #~ msgid ""
4317 #~ "%s repository is not mapped to db"
4318 #~ " perhaps it was moved or renamed "
4319 #~ "from the filesystem please run the "
4320 #~ "application again in order to rescan "
4321 #~ "repositories"
4322 #~ msgstr ""
4323 #~ "%s repozytorium nie jest mapowane do "
4324 #~ "db może zostało przeniesione lub "
4325 #~ "zmienione w systemie plików proszę "
4326 #~ "uruchomić aplikację ponownie, aby ponownie "
4327 #~ "przeskanować repozytoria"
4328
@@ -7,7 +7,7 b' msgid ""'
7 7 msgstr ""
8 8 "Project-Id-Version: RhodeCode 1.2.0\n"
9 9 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
10 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
11 11 "PO-Revision-Date: 2012-05-22 16:47-0300\n"
12 12 "Last-Translator: Augusto Herrmann <augusto.herrmann@gmail.com>\n"
13 13 "Language-Team: pt_BR <LL@li.org>\n"
@@ -21,33 +21,33 b' msgstr ""'
21 21 msgid "All Branches"
22 22 msgstr "Todos os Ramos"
23 23
24 #: rhodecode/controllers/changeset.py:84
24 #: rhodecode/controllers/changeset.py:83
25 25 msgid "show white space"
26 26 msgstr "mostrar espaços em branco"
27 27
28 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
28 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
29 29 msgid "ignore white space"
30 30 msgstr "ignorar espaços em branco"
31 31
32 #: rhodecode/controllers/changeset.py:164
32 #: rhodecode/controllers/changeset.py:163
33 33 #, python-format
34 34 msgid "%s line context"
35 35 msgstr "contexto de %s linhas"
36 36
37 #: rhodecode/controllers/changeset.py:315
38 #: rhodecode/controllers/pullrequests.py:411
37 #: rhodecode/controllers/changeset.py:314
38 #: rhodecode/controllers/pullrequests.py:417
39 39 #, fuzzy, python-format
40 40 msgid "Status change -> %s"
41 41 msgstr "Última alteração"
42 42
43 #: rhodecode/controllers/changeset.py:346
43 #: rhodecode/controllers/changeset.py:345
44 44 msgid ""
45 45 "Changing status on a changeset associated witha closed pull request is "
46 46 "not allowed"
47 47 msgstr ""
48 48
49 49 #: rhodecode/controllers/compare.py:75
50 #: rhodecode/controllers/pullrequests.py:117
50 #: rhodecode/controllers/pullrequests.py:121
51 51 #: rhodecode/controllers/shortlog.py:100
52 52 #, fuzzy
53 53 msgid "There are no changesets yet"
@@ -94,8 +94,8 b' msgid "%s %s feed"'
94 94 msgstr "%s - feed %s"
95 95
96 96 #: rhodecode/controllers/feed.py:86
97 #: rhodecode/templates/changeset/changeset.html:126
98 #: rhodecode/templates/changeset/changeset.html:138
97 #: rhodecode/templates/changeset/changeset.html:137
98 #: rhodecode/templates/changeset/changeset.html:149
99 99 #: rhodecode/templates/compare/compare_diff.html:62
100 100 #: rhodecode/templates/compare/compare_diff.html:73
101 101 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -177,55 +177,34 b' msgstr "Arquivo de tipo desconhecido"'
177 177 msgid "Changesets"
178 178 msgstr "Conjuntos de mudanças"
179 179
180 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
180 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
181 181 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
182 182 msgid "Branches"
183 183 msgstr "Ramos"
184 184
185 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
185 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
186 186 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
187 187 msgid "Tags"
188 188 msgstr "Etiquetas"
189 189
190 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
191 #, python-format
192 msgid ""
193 "%s repository is not mapped to db perhaps it was created or renamed from "
194 "the filesystem please run the application again in order to rescan "
195 "repositories"
196 msgstr ""
197 "repositório %s não está mapeado ao bd. Talvez ele tenha sido criado ou "
198 "renomeado a partir do sistema de arquivos. Por favor execute a aplicação "
199 "outra vez para varrer novamente por repositórios"
200
201 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
202 #, python-format
203 msgid ""
204 "%s repository is not mapped to db perhaps it was created or renamed from "
205 "the file system please run the application again in order to rescan "
206 "repositories"
207 msgstr ""
208 "repositório %s não está mapeado ao bd. Talvez ele tenha sido criado ou "
209 "renomeado a partir do sistema de arquivos. Por favor execute a aplicação "
210 "outra vez para varrer novamente por repositórios"
211
212 #: rhodecode/controllers/forks.py:168
190 #: rhodecode/controllers/forks.py:158
213 191 #, python-format
214 192 msgid "forked %s repository as %s"
215 193 msgstr "bifurcado repositório %s como %s"
216 194
217 #: rhodecode/controllers/forks.py:182
195 #: rhodecode/controllers/forks.py:172
218 196 #, python-format
219 197 msgid "An error occurred during repository forking %s"
220 198 msgstr "Ocorreu um erro ao bifurcar o repositório %s"
221 199
222 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
200 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
223 201 #, fuzzy
224 202 msgid "public journal"
225 203 msgstr "Diário público"
226 204
227 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
205 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
228 206 #: rhodecode/templates/base/base.html:232
207 #: rhodecode/templates/journal/journal.html:12
229 208 msgid "journal"
230 209 msgstr "diário"
231 210
@@ -245,34 +224,38 b' msgstr ""'
245 224 "Sua reinicialização de senha foi bem sucedida, sua senha foi enviada ao "
246 225 "seu e-mail"
247 226
248 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
227 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
249 228 msgid "Bookmarks"
250 229 msgstr "Marcadores"
251 230
252 #: rhodecode/controllers/pullrequests.py:186
231 #: rhodecode/controllers/pullrequests.py:190
253 232 msgid "Pull request requires a title with min. 3 chars"
254 233 msgstr ""
255 234
256 #: rhodecode/controllers/pullrequests.py:188
235 #: rhodecode/controllers/pullrequests.py:192
257 236 #, fuzzy
258 237 msgid "error during creation of pull request"
259 238 msgstr "ocorreu um erro ao criar o usuário %s"
260 239
261 #: rhodecode/controllers/pullrequests.py:220
240 #: rhodecode/controllers/pullrequests.py:224
262 241 #, fuzzy
263 242 msgid "Successfully opened new pull request"
264 243 msgstr "usuário excluído com sucesso"
265 244
266 #: rhodecode/controllers/pullrequests.py:223
245 #: rhodecode/controllers/pullrequests.py:227
267 246 #, fuzzy
268 247 msgid "Error occurred during sending pull request"
269 248 msgstr "ocorreu um erro ao criar o repositório %s"
270 249
271 #: rhodecode/controllers/pullrequests.py:256
250 #: rhodecode/controllers/pullrequests.py:260
272 251 #, fuzzy
273 252 msgid "Successfully deleted pull request"
274 253 msgstr "usuário excluído com sucesso"
275 254
255 #: rhodecode/controllers/pullrequests.py:452
256 msgid "Closing pull request on other statuses than rejected or approved forbidden"
257 msgstr ""
258
276 259 #: rhodecode/controllers/search.py:134
277 260 msgid "Invalid search query. Try quoting it."
278 261 msgstr "Consulta de busca inválida. Tente usar aspas."
@@ -285,60 +268,48 b' msgstr "N\xc3\xa3o h\xc3\xa1 \xc3\xadndice onde pesquisa. Por favor execute o indexador whoosh"'
285 268 msgid "An error occurred during this search operation"
286 269 msgstr "Ocorreu um erro durante essa operação de busca"
287 270
288 #: rhodecode/controllers/settings.py:108
289 #: rhodecode/controllers/admin/repos.py:268
271 #: rhodecode/controllers/settings.py:119
272 #: rhodecode/controllers/admin/repos.py:272
290 273 #, python-format
291 274 msgid "Repository %s updated successfully"
292 275 msgstr "Repositório %s atualizado com sucesso"
293 276
294 #: rhodecode/controllers/settings.py:126
295 #: rhodecode/controllers/admin/repos.py:286
277 #: rhodecode/controllers/settings.py:137
278 #: rhodecode/controllers/admin/repos.py:290
296 279 #, python-format
297 280 msgid "error occurred during update of repository %s"
298 281 msgstr "ocorreu um erro ao atualizar o repositório %s"
299 282
300 #: rhodecode/controllers/settings.py:144
301 #: rhodecode/controllers/admin/repos.py:304
302 #, python-format
303 msgid ""
304 "%s repository is not mapped to db perhaps it was moved or renamed from "
305 "the filesystem please run the application again in order to rescan "
306 "repositories"
307 msgstr ""
308 "repositório %s não está mapeado ao bd. Talvez ele tenha sido movido ou "
309 "renomeado a partir do sistema de arquivos. Por favor execute a aplicação "
310 "outra vez para varrer novamente por repositórios"
311
312 #: rhodecode/controllers/settings.py:156
313 #: rhodecode/controllers/admin/repos.py:316
283 #: rhodecode/controllers/settings.py:162
284 #: rhodecode/controllers/admin/repos.py:315
314 285 #, python-format
315 286 msgid "deleted repository %s"
316 287 msgstr "excluído o repositório %s"
317 288
318 #: rhodecode/controllers/settings.py:160
319 #: rhodecode/controllers/admin/repos.py:326
320 #: rhodecode/controllers/admin/repos.py:332
289 #: rhodecode/controllers/settings.py:166
290 #: rhodecode/controllers/admin/repos.py:325
291 #: rhodecode/controllers/admin/repos.py:331
321 292 #, python-format
322 293 msgid "An error occurred during deletion of %s"
323 294 msgstr "Ocorreu um erro durante a exclusão de %s"
324 295
325 #: rhodecode/controllers/settings.py:179
296 #: rhodecode/controllers/settings.py:185
326 297 #, fuzzy
327 298 msgid "unlocked"
328 299 msgstr "destravar"
329 300
330 #: rhodecode/controllers/settings.py:182
301 #: rhodecode/controllers/settings.py:188
331 302 #, fuzzy
332 303 msgid "locked"
333 304 msgstr "destravar"
334 305
335 #: rhodecode/controllers/settings.py:184
306 #: rhodecode/controllers/settings.py:190
336 307 #, fuzzy, python-format
337 308 msgid "Repository has been %s"
338 309 msgstr "bifurcado repositório %s como %s"
339 310
340 #: rhodecode/controllers/settings.py:188
341 #: rhodecode/controllers/admin/repos.py:424
311 #: rhodecode/controllers/settings.py:194
312 #: rhodecode/controllers/admin/repos.py:423
342 313 #, fuzzy
343 314 msgid "An error occurred during unlocking"
344 315 msgstr "Ocorreu um erro durante essa operação"
@@ -490,76 +461,76 b' msgstr "Permiss\xc3\xb5es padr\xc3\xb5es atualizadas com sucesso"'
490 461 msgid "error occurred during update of permissions"
491 462 msgstr "ocorreu um erro ao atualizar as permissões"
492 463
493 #: rhodecode/controllers/admin/repos.py:125
464 #: rhodecode/controllers/admin/repos.py:121
494 465 msgid "--REMOVE FORK--"
495 466 msgstr "--REMOVER BIFURCAÇÂO--"
496 467
497 #: rhodecode/controllers/admin/repos.py:194
468 #: rhodecode/controllers/admin/repos.py:190
498 469 #, python-format
499 470 msgid "created repository %s from %s"
500 471 msgstr "repositório %s criado a partir de %s"
501 472
502 #: rhodecode/controllers/admin/repos.py:198
473 #: rhodecode/controllers/admin/repos.py:194
503 474 #, python-format
504 475 msgid "created repository %s"
505 476 msgstr "repositório %s criado"
506 477
507 #: rhodecode/controllers/admin/repos.py:229
478 #: rhodecode/controllers/admin/repos.py:225
508 479 #, python-format
509 480 msgid "error occurred during creation of repository %s"
510 481 msgstr "ocorreu um erro ao criar o repositório %s"
511 482
512 #: rhodecode/controllers/admin/repos.py:321
483 #: rhodecode/controllers/admin/repos.py:320
513 484 #, python-format
514 485 msgid "Cannot delete %s it still contains attached forks"
515 486 msgstr "Nao é possível excluir %s pois ele ainda contém bifurcações vinculadas"
516 487
517 #: rhodecode/controllers/admin/repos.py:350
488 #: rhodecode/controllers/admin/repos.py:349
518 489 msgid "An error occurred during deletion of repository user"
519 490 msgstr "Ocorreu um erro ao excluir usuário de repositório"
520 491
521 #: rhodecode/controllers/admin/repos.py:369
492 #: rhodecode/controllers/admin/repos.py:368
522 493 msgid "An error occurred during deletion of repository users groups"
523 494 msgstr "Ocorreu um erro ao excluir grupo de usuário de repositório"
524 495
525 #: rhodecode/controllers/admin/repos.py:387
496 #: rhodecode/controllers/admin/repos.py:386
526 497 msgid "An error occurred during deletion of repository stats"
527 498 msgstr "Ocorreu um erro ao excluir estatísticas de repositório"
528 499
529 #: rhodecode/controllers/admin/repos.py:404
500 #: rhodecode/controllers/admin/repos.py:403
530 501 msgid "An error occurred during cache invalidation"
531 502 msgstr "Ocorreu um erro ao invalidar o cache"
532 503
533 #: rhodecode/controllers/admin/repos.py:444
504 #: rhodecode/controllers/admin/repos.py:443
534 505 msgid "Updated repository visibility in public journal"
535 506 msgstr "Atualizada a visibilidade do repositório no diário público"
536 507
537 #: rhodecode/controllers/admin/repos.py:448
508 #: rhodecode/controllers/admin/repos.py:447
538 509 msgid "An error occurred during setting this repository in public journal"
539 510 msgstr "Ocorreu um erro ao ajustar esse repositório no diário público"
540 511
541 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
512 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
542 513 msgid "Token mismatch"
543 514 msgstr "Descompasso de Token"
544 515
545 #: rhodecode/controllers/admin/repos.py:466
516 #: rhodecode/controllers/admin/repos.py:465
546 517 msgid "Pulled from remote location"
547 518 msgstr "Realizado pull de localização remota"
548 519
549 #: rhodecode/controllers/admin/repos.py:468
520 #: rhodecode/controllers/admin/repos.py:467
550 521 msgid "An error occurred during pull from remote location"
551 522 msgstr "Ocorreu um erro ao realizar pull de localização remota"
552 523
553 #: rhodecode/controllers/admin/repos.py:484
524 #: rhodecode/controllers/admin/repos.py:483
554 525 msgid "Nothing"
555 526 msgstr "Nada"
556 527
557 #: rhodecode/controllers/admin/repos.py:486
528 #: rhodecode/controllers/admin/repos.py:485
558 529 #, python-format
559 530 msgid "Marked repo %s as fork of %s"
560 531 msgstr "Marcado repositório %s como bifurcação de %s"
561 532
562 #: rhodecode/controllers/admin/repos.py:490
533 #: rhodecode/controllers/admin/repos.py:489
563 534 msgid "An error occurred during this operation"
564 535 msgstr "Ocorreu um erro durante essa operação"
565 536
@@ -809,161 +780,172 b' msgstr ""'
809 780 msgid "No changes detected"
810 781 msgstr "Nenhuma alteração detectada"
811 782
812 #: rhodecode/lib/helpers.py:373
783 #: rhodecode/lib/helpers.py:374
813 784 #, python-format
814 785 msgid "%a, %d %b %Y %H:%M:%S"
815 786 msgstr ""
816 787
817 #: rhodecode/lib/helpers.py:485
788 #: rhodecode/lib/helpers.py:486
818 789 msgid "True"
819 790 msgstr "Verdadeiro"
820 791
821 #: rhodecode/lib/helpers.py:489
792 #: rhodecode/lib/helpers.py:490
822 793 msgid "False"
823 794 msgstr "Falso"
824 795
825 #: rhodecode/lib/helpers.py:529
796 #: rhodecode/lib/helpers.py:530
826 797 #, fuzzy, python-format
827 798 msgid "Deleted branch: %s"
828 799 msgstr "excluído o repositório %s"
829 800
830 #: rhodecode/lib/helpers.py:532
801 #: rhodecode/lib/helpers.py:533
831 802 #, fuzzy, python-format
832 803 msgid "Created tag: %s"
833 804 msgstr "usuário %s criado"
834 805
835 #: rhodecode/lib/helpers.py:545
806 #: rhodecode/lib/helpers.py:546
836 807 msgid "Changeset not found"
837 808 msgstr "Conjunto de alterações não encontrado"
838 809
839 #: rhodecode/lib/helpers.py:588
810 #: rhodecode/lib/helpers.py:589
840 811 #, python-format
841 812 msgid "Show all combined changesets %s->%s"
842 813 msgstr "Ver todos os conjuntos de mudanças combinados %s->%s"
843 814
844 #: rhodecode/lib/helpers.py:594
815 #: rhodecode/lib/helpers.py:595
845 816 msgid "compare view"
846 817 msgstr "comparar exibir"
847 818
848 #: rhodecode/lib/helpers.py:614
819 #: rhodecode/lib/helpers.py:615
849 820 msgid "and"
850 821 msgstr "e"
851 822
852 #: rhodecode/lib/helpers.py:615
823 #: rhodecode/lib/helpers.py:616
853 824 #, python-format
854 825 msgid "%s more"
855 826 msgstr "%s mais"
856 827
857 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
828 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
858 829 msgid "revisions"
859 830 msgstr "revisões"
860 831
861 #: rhodecode/lib/helpers.py:640
832 #: rhodecode/lib/helpers.py:641
862 833 #, fuzzy, python-format
863 834 msgid "fork name %s"
864 835 msgstr "nome da bifurcação"
865 836
866 #: rhodecode/lib/helpers.py:653
837 #: rhodecode/lib/helpers.py:658
867 838 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
868 839 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
869 840 #, python-format
870 841 msgid "Pull request #%s"
871 842 msgstr ""
872 843
873 #: rhodecode/lib/helpers.py:659
844 #: rhodecode/lib/helpers.py:664
874 845 msgid "[deleted] repository"
875 846 msgstr "repositório [excluído]"
876 847
877 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
848 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
878 849 msgid "[created] repository"
879 850 msgstr "repositório [criado]"
880 851
881 #: rhodecode/lib/helpers.py:663
852 #: rhodecode/lib/helpers.py:668
882 853 msgid "[created] repository as fork"
883 854 msgstr "repositório [criado] como uma bifurcação"
884 855
885 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
856 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
886 857 msgid "[forked] repository"
887 858 msgstr "repositório [bifurcado]"
888 859
889 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
860 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
890 861 msgid "[updated] repository"
891 862 msgstr "repositório [atualizado]"
892 863
893 #: rhodecode/lib/helpers.py:669
864 #: rhodecode/lib/helpers.py:674
894 865 msgid "[delete] repository"
895 866 msgstr "[excluir] repositório"
896 867
897 #: rhodecode/lib/helpers.py:677
868 #: rhodecode/lib/helpers.py:682
898 869 #, fuzzy
899 870 msgid "[created] user"
900 871 msgstr "usuário %s criado"
901 872
902 #: rhodecode/lib/helpers.py:679
873 #: rhodecode/lib/helpers.py:684
903 874 #, fuzzy
904 875 msgid "[updated] user"
905 876 msgstr "grupo de usuários %s atualizado"
906 877
907 #: rhodecode/lib/helpers.py:681
878 #: rhodecode/lib/helpers.py:686
908 879 #, fuzzy
909 880 msgid "[created] users group"
910 881 msgstr "criado grupo de usuários %s"
911 882
912 #: rhodecode/lib/helpers.py:683
883 #: rhodecode/lib/helpers.py:688
913 884 #, fuzzy
914 885 msgid "[updated] users group"
915 886 msgstr "grupo de usuários %s atualizado"
916 887
917 #: rhodecode/lib/helpers.py:685
888 #: rhodecode/lib/helpers.py:690
918 889 #, fuzzy
919 890 msgid "[commented] on revision in repository"
920 891 msgstr "repositório [criado]"
921 892
922 #: rhodecode/lib/helpers.py:687
893 #: rhodecode/lib/helpers.py:692
923 894 #, fuzzy
924 895 msgid "[commented] on pull request for"
925 896 msgstr "repositório [criado]"
926 897
927 #: rhodecode/lib/helpers.py:689
898 #: rhodecode/lib/helpers.py:694
928 899 #, fuzzy
929 900 msgid "[closed] pull request for"
930 901 msgstr "repositório [criado]"
931 902
932 #: rhodecode/lib/helpers.py:691
903 #: rhodecode/lib/helpers.py:696
933 904 msgid "[pushed] into"
934 905 msgstr "[realizado push] para"
935 906
936 #: rhodecode/lib/helpers.py:693
907 #: rhodecode/lib/helpers.py:698
937 908 #, fuzzy
938 909 msgid "[committed via RhodeCode] into repository"
939 910 msgstr "[realizado commit via RhodeCode] para"
940 911
941 #: rhodecode/lib/helpers.py:695
912 #: rhodecode/lib/helpers.py:700
942 913 #, fuzzy
943 914 msgid "[pulled from remote] into repository"
944 915 msgstr "[realizado pull remoto] para"
945 916
946 #: rhodecode/lib/helpers.py:697
917 #: rhodecode/lib/helpers.py:702
947 918 msgid "[pulled] from"
948 919 msgstr "[realizado pull] a partir de"
949 920
950 #: rhodecode/lib/helpers.py:699
921 #: rhodecode/lib/helpers.py:704
951 922 msgid "[started following] repository"
952 923 msgstr "[passou a seguir] o repositório"
953 924
954 #: rhodecode/lib/helpers.py:701
925 #: rhodecode/lib/helpers.py:706
955 926 msgid "[stopped following] repository"
956 927 msgstr "[parou de seguir] o repositório"
957 928
958 #: rhodecode/lib/helpers.py:877
929 #: rhodecode/lib/helpers.py:883
959 930 #, python-format
960 931 msgid " and %s more"
961 932 msgstr " e mais %s"
962 933
963 #: rhodecode/lib/helpers.py:881
934 #: rhodecode/lib/helpers.py:887
964 935 msgid "No Files"
965 936 msgstr "Nenhum Arquivo"
966 937
938 #: rhodecode/lib/helpers.py:1163
939 #, python-format
940 msgid ""
941 "%s repository is not mapped to db perhaps it was created or renamed from "
942 "the filesystem please run the application again in order to rescan "
943 "repositories"
944 msgstr ""
945 "repositório %s não está mapeado ao bd. Talvez ele tenha sido criado ou "
946 "renomeado a partir do sistema de arquivos. Por favor execute a aplicação "
947 "outra vez para varrer novamente por repositórios"
948
967 949 #: rhodecode/lib/utils2.py:403
968 950 #, python-format
969 951 msgid "%d year"
@@ -1034,98 +1016,98 b' msgstr "agora h\xc3\xa1 pouco"'
1034 1016 msgid "password reset link"
1035 1017 msgstr "link de reinicialização de senha"
1036 1018
1037 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
1038 1020 #, fuzzy
1039 1021 msgid "Repository no access"
1040 1022 msgstr "repositórios"
1041 1023
1042 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
1024 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
1043 1025 #, fuzzy
1044 1026 msgid "Repository read access"
1045 1027 msgstr "Esse repositório já existe"
1046 1028
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
1029 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
1048 1030 #, fuzzy
1049 1031 msgid "Repository write access"
1050 1032 msgstr "repositórios"
1051 1033
1052 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
1034 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
1053 1035 #, fuzzy
1054 1036 msgid "Repository admin access"
1055 1037 msgstr "repositórios"
1056 1038
1057 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1058 1040 #, fuzzy
1059 1041 msgid "Repositories Group no access"
1060 1042 msgstr "grupos de repositórios"
1061 1043
1062 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
1044 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1063 1045 #, fuzzy
1064 1046 msgid "Repositories Group read access"
1065 1047 msgstr "grupos de repositórios"
1066 1048
1067 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
1049 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1068 1050 #, fuzzy
1069 1051 msgid "Repositories Group write access"
1070 1052 msgstr "grupos de repositórios"
1071 1053
1072 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
1054 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1073 1055 #, fuzzy
1074 1056 msgid "Repositories Group admin access"
1075 1057 msgstr "grupos de repositórios"
1076 1058
1077 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1059 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1078 1060 #, fuzzy
1079 1061 msgid "RhodeCode Administrator"
1080 1062 msgstr "Administração de usuários"
1081 1063
1082 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1064 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1083 1065 #, fuzzy
1084 1066 msgid "Repository creation disabled"
1085 1067 msgstr "Criação de repositório"
1086 1068
1087 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1069 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1088 1070 #, fuzzy
1089 1071 msgid "Repository creation enabled"
1090 1072 msgstr "Criação de repositório"
1091 1073
1092 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1074 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1093 1075 #, fuzzy
1094 1076 msgid "Repository forking disabled"
1095 1077 msgstr "Criação de repositório"
1096 1078
1097 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1079 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1098 1080 #, fuzzy
1099 1081 msgid "Repository forking enabled"
1100 1082 msgstr "Criação de repositório"
1101 1083
1102 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1084 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1103 1085 #, fuzzy
1104 1086 msgid "Register disabled"
1105 1087 msgstr "desabilitado"
1106 1088
1107 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1089 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1108 1090 msgid "Register new user with RhodeCode with manual activation"
1109 1091 msgstr ""
1110 1092
1111 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1093 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1112 1094 msgid "Register new user with RhodeCode with auto activation"
1113 1095 msgstr ""
1114 1096
1115 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1097 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1116 1098 msgid "Not Reviewed"
1117 1099 msgstr ""
1118 1100
1119 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1101 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1120 1102 #, fuzzy
1121 1103 msgid "Approved"
1122 1104 msgstr "removidos"
1123 1105
1124 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1106 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1125 1107 msgid "Rejected"
1126 1108 msgstr ""
1127 1109
1128 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1110 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1129 1111 msgid "Under Review"
1130 1112 msgstr ""
1131 1113
@@ -1196,24 +1178,24 b' msgstr ""'
1196 1178 msgid "latest tip"
1197 1179 msgstr "último login"
1198 1180
1199 #: rhodecode/model/user.py:230
1181 #: rhodecode/model/user.py:232
1200 1182 msgid "new user registration"
1201 1183 msgstr "registro de novo usuário"
1202 1184
1203 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1204 #: rhodecode/model/user.py:301
1185 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1186 #: rhodecode/model/user.py:303
1205 1187 msgid "You can't Edit this user since it's crucial for entire application"
1206 1188 msgstr ""
1207 1189 "Você não pode Editar esse usuário, pois ele é crucial para toda a "
1208 1190 "aplicação"
1209 1191
1210 #: rhodecode/model/user.py:325
1192 #: rhodecode/model/user.py:327
1211 1193 msgid "You can't remove this user since it's crucial for entire application"
1212 1194 msgstr ""
1213 1195 "Você não pode remover esse usuário, pois ele é crucial para toda a "
1214 1196 "aplicação"
1215 1197
1216 #: rhodecode/model/user.py:331
1198 #: rhodecode/model/user.py:333
1217 1199 #, python-format
1218 1200 msgid ""
1219 1201 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1346,20 +1328,20 b' msgstr "Voc\xc3\xaa n\xc3\xa3o tem permiss\xc3\xa3o para ver esta p\xc3\xa1gina"'
1346 1328 msgid "This username or users group name is not valid"
1347 1329 msgstr "Esse nome de usuário ou nome de grupo de usuários não é válido"
1348 1330
1349 #: rhodecode/model/validators.py:582
1331 #: rhodecode/model/validators.py:591
1350 1332 msgid "This is not a valid path"
1351 1333 msgstr "Esse não é um caminho válido"
1352 1334
1353 #: rhodecode/model/validators.py:597
1335 #: rhodecode/model/validators.py:606
1354 1336 msgid "This e-mail address is already taken"
1355 1337 msgstr "Esse endereço de e-mail já está tomado"
1356 1338
1357 #: rhodecode/model/validators.py:617
1339 #: rhodecode/model/validators.py:626
1358 1340 #, fuzzy, python-format
1359 1341 msgid "e-mail \"%(email)s\" does not exist."
1360 1342 msgstr "Esse endereço de e-mail não existe."
1361 1343
1362 #: rhodecode/model/validators.py:654
1344 #: rhodecode/model/validators.py:663
1363 1345 msgid ""
1364 1346 "The LDAP Login attribute of the CN must be specified - this is the name "
1365 1347 "of the attribute that is equivalent to \"username\""
@@ -1367,7 +1349,7 b' msgstr ""'
1367 1349 "O atributo de login LDAP do CN deve ser especificado - isto é o nome do "
1368 1350 "atributo que é equivalente ao 'nome de usuário'"
1369 1351
1370 #: rhodecode/model/validators.py:673
1352 #: rhodecode/model/validators.py:682
1371 1353 #, python-format
1372 1354 msgid "Revisions %(revs)s are already part of pull request or have set status"
1373 1355 msgstr ""
@@ -1383,7 +1365,8 b' msgstr "Painel de Controle"'
1383 1365 #: rhodecode/templates/admin/users/users.html:9
1384 1366 #: rhodecode/templates/bookmarks/bookmarks.html:10
1385 1367 #: rhodecode/templates/branches/branches.html:9
1386 #: rhodecode/templates/journal/journal.html:40
1368 #: rhodecode/templates/journal/journal.html:9
1369 #: rhodecode/templates/journal/journal.html:48
1387 1370 #: rhodecode/templates/tags/tags.html:10
1388 1371 msgid "quick filter..."
1389 1372 msgstr "filtro rápido..."
@@ -1449,8 +1432,8 b' msgstr "Grupo de reposit\xc3\xb3rios"'
1449 1432 #: rhodecode/templates/branches/branches.html:50
1450 1433 #: rhodecode/templates/branches/branches_data.html:6
1451 1434 #: rhodecode/templates/files/files_browser.html:47
1452 #: rhodecode/templates/journal/journal.html:62
1453 #: rhodecode/templates/journal/journal.html:168
1435 #: rhodecode/templates/journal/journal.html:70
1436 #: rhodecode/templates/journal/journal.html:196
1454 1437 #: rhodecode/templates/journal/journal_page_repos.html:7
1455 1438 #: rhodecode/templates/settings/repo_settings.html:31
1456 1439 #: rhodecode/templates/summary/summary.html:43
@@ -1467,7 +1450,7 b' msgstr "\xc3\x9altima altera\xc3\xa7\xc3\xa3o"'
1467 1450 #: rhodecode/templates/index_base.html:74
1468 1451 #: rhodecode/templates/index_base.html:179
1469 1452 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1470 #: rhodecode/templates/journal/journal.html:170
1453 #: rhodecode/templates/journal/journal.html:198
1471 1454 msgid "Tip"
1472 1455 msgstr "Ponta"
1473 1456
@@ -1497,7 +1480,7 b' msgstr "Atom"'
1497 1480 #: rhodecode/templates/admin/users/users.html:107
1498 1481 #: rhodecode/templates/bookmarks/bookmarks.html:60
1499 1482 #: rhodecode/templates/branches/branches.html:76
1500 #: rhodecode/templates/journal/journal.html:193
1483 #: rhodecode/templates/journal/journal.html:221
1501 1484 #: rhodecode/templates/tags/tags.html:77
1502 1485 msgid "Click to sort ascending"
1503 1486 msgstr "Clique para ordenar em ordem crescente"
@@ -1510,7 +1493,7 b' msgstr "Clique para ordenar em ordem cre'
1510 1493 #: rhodecode/templates/admin/users/users.html:108
1511 1494 #: rhodecode/templates/bookmarks/bookmarks.html:61
1512 1495 #: rhodecode/templates/branches/branches.html:77
1513 #: rhodecode/templates/journal/journal.html:194
1496 #: rhodecode/templates/journal/journal.html:222
1514 1497 #: rhodecode/templates/tags/tags.html:78
1515 1498 msgid "Click to sort descending"
1516 1499 msgstr "Clique para ordenar em ordem descrescente"
@@ -1527,7 +1510,7 b' msgstr "\xc3\x9altima Altera\xc3\xa7\xc3\xa3o"'
1527 1510 #: rhodecode/templates/admin/users/users.html:109
1528 1511 #: rhodecode/templates/bookmarks/bookmarks.html:62
1529 1512 #: rhodecode/templates/branches/branches.html:78
1530 #: rhodecode/templates/journal/journal.html:195
1513 #: rhodecode/templates/journal/journal.html:223
1531 1514 #: rhodecode/templates/tags/tags.html:79
1532 1515 msgid "No records found."
1533 1516 msgstr "Nenhum registro encontrado."
@@ -1539,7 +1522,7 b' msgstr "Nenhum registro encontrado."'
1539 1522 #: rhodecode/templates/admin/users/users.html:110
1540 1523 #: rhodecode/templates/bookmarks/bookmarks.html:63
1541 1524 #: rhodecode/templates/branches/branches.html:79
1542 #: rhodecode/templates/journal/journal.html:196
1525 #: rhodecode/templates/journal/journal.html:224
1543 1526 #: rhodecode/templates/tags/tags.html:80
1544 1527 msgid "Data error."
1545 1528 msgstr "Erro de dados."
@@ -1551,8 +1534,8 b' msgstr "Erro de dados."'
1551 1534 #: rhodecode/templates/admin/users/users.html:111
1552 1535 #: rhodecode/templates/bookmarks/bookmarks.html:64
1553 1536 #: rhodecode/templates/branches/branches.html:80
1554 #: rhodecode/templates/journal/journal.html:54
1555 #: rhodecode/templates/journal/journal.html:197
1537 #: rhodecode/templates/journal/journal.html:62
1538 #: rhodecode/templates/journal/journal.html:225
1556 1539 #: rhodecode/templates/tags/tags.html:81
1557 1540 msgid "Loading..."
1558 1541 msgstr "Carregando..."
@@ -1702,10 +1685,29 b' msgid "There are no bookmarks yet"'
1702 1685 msgstr "Ainda não há marcadores"
1703 1686
1704 1687 #: rhodecode/templates/admin/admin.html:5
1705 #: rhodecode/templates/admin/admin.html:9
1688 #: rhodecode/templates/admin/admin.html:13
1706 1689 msgid "Admin journal"
1707 1690 msgstr "Diário do administrador"
1708 1691
1692 #: rhodecode/templates/admin/admin.html:10
1693 #, fuzzy
1694 msgid "journal filter..."
1695 msgstr "filtro rápido..."
1696
1697 #: rhodecode/templates/admin/admin.html:12
1698 #: rhodecode/templates/journal/journal.html:11
1699 #, fuzzy
1700 msgid "filter"
1701 msgstr "arquivos"
1702
1703 #: rhodecode/templates/admin/admin.html:13
1704 #: rhodecode/templates/journal/journal.html:12
1705 #, python-format
1706 msgid "%s entry"
1707 msgid_plural "%s entries"
1708 msgstr[0] ""
1709 msgstr[1] ""
1710
1709 1711 #: rhodecode/templates/admin/admin_log.html:6
1710 1712 #: rhodecode/templates/admin/repos/repos.html:74
1711 1713 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1734,7 +1736,7 b' msgstr "Data"'
1734 1736 msgid "From IP"
1735 1737 msgstr "A partir do IP"
1736 1738
1737 #: rhodecode/templates/admin/admin_log.html:57
1739 #: rhodecode/templates/admin/admin_log.html:63
1738 1740 msgid "No actions yet"
1739 1741 msgstr "Ainda não há ações"
1740 1742
@@ -1808,7 +1810,7 b' msgstr ""'
1808 1810 #: rhodecode/templates/admin/users/user_edit.html:178
1809 1811 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1810 1812 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1811 #: rhodecode/templates/settings/repo_settings.html:93
1813 #: rhodecode/templates/settings/repo_settings.html:94
1812 1814 msgid "Save"
1813 1815 msgstr "Salvar"
1814 1816
@@ -2108,7 +2110,7 b' msgstr "Mudar o dono desse reposit\xc3\xb3rio."'
2108 2110 #: rhodecode/templates/files/files_add.html:82
2109 2111 #: rhodecode/templates/files/files_edit.html:68
2110 2112 #: rhodecode/templates/pullrequests/pullrequest.html:124
2111 #: rhodecode/templates/settings/repo_settings.html:94
2113 #: rhodecode/templates/settings/repo_settings.html:95
2112 2114 msgid "Reset"
2113 2115 msgstr "Limpar"
2114 2116
@@ -2258,19 +2260,22 b' msgid "Delete"'
2258 2260 msgstr "Excluir"
2259 2261
2260 2262 #: rhodecode/templates/admin/repos/repo_edit.html:278
2263 #: rhodecode/templates/settings/repo_settings.html:115
2261 2264 msgid "Remove this repository"
2262 2265 msgstr "Remover deste repositório"
2263 2266
2264 2267 #: rhodecode/templates/admin/repos/repo_edit.html:278
2268 #: rhodecode/templates/settings/repo_settings.html:115
2265 2269 msgid "Confirm to delete this repository"
2266 2270 msgstr "Confirma excluir este repositório"
2267 2271
2268 2272 #: rhodecode/templates/admin/repos/repo_edit.html:282
2273 #: rhodecode/templates/settings/repo_settings.html:119
2274 #, fuzzy
2269 2275 msgid ""
2270 2276 "This repository will be renamed in a special way in order to be "
2271 "unaccesible for RhodeCode and VCS systems.\n"
2272 " If you need fully delete it from filesystem "
2273 "please do it manually"
2277 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2278 "from file system please do it manually"
2274 2279 msgstr ""
2275 2280 "Este repositório será renomeado de uma maneira especial, de forma a ser "
2276 2281 "inacessível ao RhodeCode e sistemas de controle de versão.\n"
@@ -2306,7 +2311,7 b' msgstr "membro"'
2306 2311
2307 2312 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2308 2313 #: rhodecode/templates/data_table/_dt_elements.html:67
2309 #: rhodecode/templates/journal/journal.html:87
2314 #: rhodecode/templates/journal/journal.html:95
2310 2315 #: rhodecode/templates/summary/summary.html:85
2311 2316 msgid "private repository"
2312 2317 msgstr "repositório privado"
@@ -2833,7 +2838,7 b' msgid "My permissions"'
2833 2838 msgstr "Minhas permissões"
2834 2839
2835 2840 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2836 #: rhodecode/templates/journal/journal.html:41
2841 #: rhodecode/templates/journal/journal.html:49
2837 2842 msgid "My repos"
2838 2843 msgstr "Meus repositórios"
2839 2844
@@ -3051,7 +3056,6 b' msgstr "Caixa de Entrada"'
3051 3056 #: rhodecode/templates/base/base.html:324
3052 3057 #: rhodecode/templates/base/base.html:326
3053 3058 #: rhodecode/templates/journal/journal.html:4
3054 #: rhodecode/templates/journal/journal.html:21
3055 3059 #: rhodecode/templates/journal/public_journal.html:4
3056 3060 msgid "Journal"
3057 3061 msgstr "Diário"
@@ -3187,7 +3191,7 b' msgid "add another comment"'
3187 3191 msgstr "adicionar outro comentário"
3188 3192
3189 3193 #: rhodecode/templates/base/root.html:43
3190 #: rhodecode/templates/journal/journal.html:75
3194 #: rhodecode/templates/journal/journal.html:83
3191 3195 #: rhodecode/templates/summary/summary.html:57
3192 3196 msgid "Stop following this repository"
3193 3197 msgstr "Parar de seguir este repositório"
@@ -3297,7 +3301,7 b' msgid "Affected number of files, click t'
3297 3301 msgstr "Número de arquivos afetados, clique para mostrar mais detalhes"
3298 3302
3299 3303 #: rhodecode/templates/changelog/changelog.html:91
3300 #: rhodecode/templates/changeset/changeset.html:44
3304 #: rhodecode/templates/changeset/changeset.html:65
3301 3305 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3302 3306 #: rhodecode/templates/changeset/changeset_range.html:46
3303 3307 #, fuzzy
@@ -3310,23 +3314,22 b' msgid "Click to open associated pull req'
3310 3314 msgstr ""
3311 3315
3312 3316 #: rhodecode/templates/changelog/changelog.html:104
3313 #: rhodecode/templates/changeset/changeset.html:85
3314 3317 msgid "Parent"
3315 3318 msgstr "Progenitor"
3316 3319
3317 3320 #: rhodecode/templates/changelog/changelog.html:110
3318 #: rhodecode/templates/changeset/changeset.html:91
3321 #: rhodecode/templates/changeset/changeset.html:42
3319 3322 msgid "No parents"
3320 3323 msgstr "Sem progenitores"
3321 3324
3322 3325 #: rhodecode/templates/changelog/changelog.html:115
3323 #: rhodecode/templates/changeset/changeset.html:95
3326 #: rhodecode/templates/changeset/changeset.html:106
3324 3327 #: rhodecode/templates/changeset/changeset_range.html:79
3325 3328 msgid "merge"
3326 3329 msgstr "mesclar"
3327 3330
3328 3331 #: rhodecode/templates/changelog/changelog.html:118
3329 #: rhodecode/templates/changeset/changeset.html:98
3332 #: rhodecode/templates/changeset/changeset.html:109
3330 3333 #: rhodecode/templates/changeset/changeset_range.html:82
3331 3334 #: rhodecode/templates/files/files.html:29
3332 3335 #: rhodecode/templates/files/files_add.html:33
@@ -3341,7 +3344,7 b' msgid "bookmark"'
3341 3344 msgstr "marcador"
3342 3345
3343 3346 #: rhodecode/templates/changelog/changelog.html:130
3344 #: rhodecode/templates/changeset/changeset.html:103
3347 #: rhodecode/templates/changeset/changeset.html:114
3345 3348 #: rhodecode/templates/changeset/changeset_range.html:94
3346 3349 msgid "tag"
3347 3350 msgstr "etiqueta"
@@ -3351,26 +3354,26 b' msgid "There are no changes yet"'
3351 3354 msgstr "Ainda não há alteações"
3352 3355
3353 3356 #: rhodecode/templates/changelog/changelog_details.html:4
3354 #: rhodecode/templates/changeset/changeset.html:73
3357 #: rhodecode/templates/changeset/changeset.html:94
3355 3358 msgid "removed"
3356 3359 msgstr "removidos"
3357 3360
3358 3361 #: rhodecode/templates/changelog/changelog_details.html:5
3359 #: rhodecode/templates/changeset/changeset.html:74
3362 #: rhodecode/templates/changeset/changeset.html:95
3360 3363 msgid "changed"
3361 3364 msgstr "alterados"
3362 3365
3363 3366 #: rhodecode/templates/changelog/changelog_details.html:6
3364 #: rhodecode/templates/changeset/changeset.html:75
3367 #: rhodecode/templates/changeset/changeset.html:96
3365 3368 msgid "added"
3366 3369 msgstr "adicionados"
3367 3370
3368 3371 #: rhodecode/templates/changelog/changelog_details.html:8
3369 3372 #: rhodecode/templates/changelog/changelog_details.html:9
3370 3373 #: rhodecode/templates/changelog/changelog_details.html:10
3371 #: rhodecode/templates/changeset/changeset.html:77
3372 #: rhodecode/templates/changeset/changeset.html:78
3373 #: rhodecode/templates/changeset/changeset.html:79
3374 #: rhodecode/templates/changeset/changeset.html:98
3375 #: rhodecode/templates/changeset/changeset.html:99
3376 #: rhodecode/templates/changeset/changeset.html:100
3374 3377 #, python-format
3375 3378 msgid "affected %s files"
3376 3379 msgstr "%s arquivos afetados"
@@ -3384,22 +3387,26 b' msgstr "Conjunto de Mudan\xc3\xa7as"'
3384 3387 msgid "Changeset"
3385 3388 msgstr "Conjunto de Mudanças"
3386 3389
3387 #: rhodecode/templates/changeset/changeset.html:49
3390 #: rhodecode/templates/changeset/changeset.html:52
3391 msgid "No children"
3392 msgstr ""
3393
3394 #: rhodecode/templates/changeset/changeset.html:70
3388 3395 #: rhodecode/templates/changeset/diff_block.html:20
3389 3396 msgid "raw diff"
3390 3397 msgstr "diff bruto"
3391 3398
3392 #: rhodecode/templates/changeset/changeset.html:50
3399 #: rhodecode/templates/changeset/changeset.html:71
3393 3400 #, fuzzy
3394 3401 msgid "patch diff"
3395 3402 msgstr "diff bruto"
3396 3403
3397 #: rhodecode/templates/changeset/changeset.html:51
3404 #: rhodecode/templates/changeset/changeset.html:72
3398 3405 #: rhodecode/templates/changeset/diff_block.html:21
3399 3406 msgid "download diff"
3400 3407 msgstr "descarregar diff"
3401 3408
3402 #: rhodecode/templates/changeset/changeset.html:55
3409 #: rhodecode/templates/changeset/changeset.html:76
3403 3410 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3404 3411 #, python-format
3405 3412 msgid "%d comment"
@@ -3407,7 +3414,7 b' msgid_plural "%d comments"'
3407 3414 msgstr[0] "%d comentário"
3408 3415 msgstr[1] "%d comentários"
3409 3416
3410 #: rhodecode/templates/changeset/changeset.html:55
3417 #: rhodecode/templates/changeset/changeset.html:76
3411 3418 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3412 3419 #, python-format
3413 3420 msgid "(%d inline)"
@@ -3415,7 +3422,7 b' msgid_plural "(%d inline)"'
3415 3422 msgstr[0] "(%d em linha)"
3416 3423 msgstr[1] "(%d em linha)"
3417 3424
3418 #: rhodecode/templates/changeset/changeset.html:111
3425 #: rhodecode/templates/changeset/changeset.html:122
3419 3426 #: rhodecode/templates/compare/compare_diff.html:44
3420 3427 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3421 3428 #, fuzzy, python-format
@@ -3424,7 +3431,7 b' msgid_plural "%s files changed"'
3424 3431 msgstr[0] "arquivo alterado"
3425 3432 msgstr[1] ""
3426 3433
3427 #: rhodecode/templates/changeset/changeset.html:113
3434 #: rhodecode/templates/changeset/changeset.html:124
3428 3435 #: rhodecode/templates/compare/compare_diff.html:46
3429 3436 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3430 3437 #, fuzzy, python-format
@@ -3455,7 +3462,7 b' msgstr ""'
3455 3462 "usuário do RhodeCode"
3456 3463
3457 3464 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3458 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3465 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3459 3466 msgid "Comment"
3460 3467 msgstr "Comentário"
3461 3468
@@ -3476,16 +3483,16 b' msgstr "Entrar agora"'
3476 3483 msgid "Leave a comment"
3477 3484 msgstr "Deixar um comentário"
3478 3485
3479 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3486 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3480 3487 msgid "Check this to change current status of code-review for this changeset"
3481 3488 msgstr ""
3482 3489
3483 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3490 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3484 3491 #, fuzzy
3485 3492 msgid "change status"
3486 3493 msgstr "Conjuntos de mudanças"
3487 3494
3488 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3495 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3489 3496 msgid "Comment and close"
3490 3497 msgstr ""
3491 3498
@@ -3542,19 +3549,19 b' msgid "Fork"'
3542 3549 msgstr "Bifurcação"
3543 3550
3544 3551 #: rhodecode/templates/data_table/_dt_elements.html:60
3545 #: rhodecode/templates/journal/journal.html:81
3552 #: rhodecode/templates/journal/journal.html:89
3546 3553 #: rhodecode/templates/summary/summary.html:77
3547 3554 msgid "Mercurial repository"
3548 3555 msgstr "Repositório Mercurial"
3549 3556
3550 3557 #: rhodecode/templates/data_table/_dt_elements.html:62
3551 #: rhodecode/templates/journal/journal.html:83
3558 #: rhodecode/templates/journal/journal.html:91
3552 3559 #: rhodecode/templates/summary/summary.html:80
3553 3560 msgid "Git repository"
3554 3561 msgstr "Repositório Git"
3555 3562
3556 3563 #: rhodecode/templates/data_table/_dt_elements.html:69
3557 #: rhodecode/templates/journal/journal.html:89
3564 #: rhodecode/templates/journal/journal.html:97
3558 3565 #: rhodecode/templates/summary/summary.html:87
3559 3566 msgid "public repository"
3560 3567 msgstr "repositório público"
@@ -3937,53 +3944,53 b' msgstr "bifurcado"'
3937 3944 msgid "There are no forks yet"
3938 3945 msgstr "Ainda não há bifurcações"
3939 3946
3940 #: rhodecode/templates/journal/journal.html:13
3947 #: rhodecode/templates/journal/journal.html:21
3941 3948 #, fuzzy
3942 3949 msgid "ATOM journal feed"
3943 3950 msgstr "diário público de %s - feed %s"
3944 3951
3945 #: rhodecode/templates/journal/journal.html:14
3952 #: rhodecode/templates/journal/journal.html:22
3946 3953 #, fuzzy
3947 3954 msgid "RSS journal feed"
3948 3955 msgstr "diário público de %s - feed %s"
3949 3956
3950 #: rhodecode/templates/journal/journal.html:24
3957 #: rhodecode/templates/journal/journal.html:32
3951 3958 #: rhodecode/templates/pullrequests/pullrequest.html:55
3952 3959 msgid "Refresh"
3953 3960 msgstr "Atualizar"
3954 3961
3955 #: rhodecode/templates/journal/journal.html:27
3962 #: rhodecode/templates/journal/journal.html:35
3956 3963 #: rhodecode/templates/journal/public_journal.html:24
3957 3964 #, fuzzy
3958 3965 msgid "RSS feed"
3959 3966 msgstr "%s - feed %s"
3960 3967
3961 #: rhodecode/templates/journal/journal.html:30
3968 #: rhodecode/templates/journal/journal.html:38
3962 3969 #: rhodecode/templates/journal/public_journal.html:27
3963 3970 msgid "ATOM feed"
3964 3971 msgstr ""
3965 3972
3966 #: rhodecode/templates/journal/journal.html:41
3973 #: rhodecode/templates/journal/journal.html:49
3967 3974 msgid "Watched"
3968 3975 msgstr "Seguindo"
3969 3976
3970 #: rhodecode/templates/journal/journal.html:46
3977 #: rhodecode/templates/journal/journal.html:54
3971 3978 msgid "ADD"
3972 3979 msgstr "ADICIONAR"
3973 3980
3974 #: rhodecode/templates/journal/journal.html:69
3981 #: rhodecode/templates/journal/journal.html:77
3975 3982 msgid "following user"
3976 3983 msgstr "seguindo usuário"
3977 3984
3978 #: rhodecode/templates/journal/journal.html:69
3985 #: rhodecode/templates/journal/journal.html:77
3979 3986 msgid "user"
3980 3987 msgstr "usuário"
3981 3988
3982 #: rhodecode/templates/journal/journal.html:102
3989 #: rhodecode/templates/journal/journal.html:110
3983 3990 msgid "You are not following any users or repositories"
3984 3991 msgstr "Você não está seguindo quaisquer usuários ou repositórios"
3985 3992
3986 #: rhodecode/templates/journal/journal_data.html:51
3993 #: rhodecode/templates/journal/journal_data.html:55
3987 3994 msgid "No entries yet"
3988 3995 msgstr "Ainda não há entradas"
3989 3996
@@ -4091,6 +4098,11 b' msgstr "criar um agora"'
4091 4098 msgid "Compare view"
4092 4099 msgstr "comparar exibir"
4093 4100
4101 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
4102 #, fuzzy
4103 msgid "reviewer"
4104 msgstr ""
4105
4094 4106 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
4095 4107 #, fuzzy
4096 4108 msgid "all pull requests"
@@ -4158,6 +4170,16 b' msgstr "Permiss\xc3\xa3o negada"'
4158 4170 msgid "%s Settings"
4159 4171 msgstr "configurações"
4160 4172
4173 #: rhodecode/templates/settings/repo_settings.html:102
4174 #, fuzzy
4175 msgid "Delete repository"
4176 msgstr "[excluir] repositório"
4177
4178 #: rhodecode/templates/settings/repo_settings.html:109
4179 #, fuzzy
4180 msgid "Remove repo"
4181 msgstr "remover"
4182
4161 4183 #: rhodecode/templates/shortlog/shortlog.html:5
4162 4184 #, fuzzy, python-format
4163 4185 msgid "%s Shortlog"
@@ -4362,3 +4384,31 b' msgstr "%s atr\xc3\xa1s"'
4362 4384 msgid "Compare tags"
4363 4385 msgstr "comparar exibir"
4364 4386
4387 #~ msgid ""
4388 #~ "%s repository is not mapped to db"
4389 #~ " perhaps it was created or renamed"
4390 #~ " from the file system please run "
4391 #~ "the application again in order to "
4392 #~ "rescan repositories"
4393 #~ msgstr ""
4394 #~ "repositório %s não está mapeado ao "
4395 #~ "bd. Talvez ele tenha sido criado "
4396 #~ "ou renomeado a partir do sistema "
4397 #~ "de arquivos. Por favor execute a "
4398 #~ "aplicação outra vez para varrer "
4399 #~ "novamente por repositórios"
4400
4401 #~ msgid ""
4402 #~ "%s repository is not mapped to db"
4403 #~ " perhaps it was moved or renamed "
4404 #~ "from the filesystem please run the "
4405 #~ "application again in order to rescan "
4406 #~ "repositories"
4407 #~ msgstr ""
4408 #~ "repositório %s não está mapeado ao "
4409 #~ "bd. Talvez ele tenha sido movido "
4410 #~ "ou renomeado a partir do sistema "
4411 #~ "de arquivos. Por favor execute a "
4412 #~ "aplicação outra vez para varrer "
4413 #~ "novamente por repositórios"
4414
@@ -6,9 +6,9 b''
6 6 #, fuzzy
7 7 msgid ""
8 8 msgstr ""
9 "Project-Id-Version: RhodeCode 1.5.0b\n"
9 "Project-Id-Version: RhodeCode 1.5.1b\n"
10 10 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
11 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -21,31 +21,31 b' msgstr ""'
21 21 msgid "All Branches"
22 22 msgstr ""
23 23
24 #: rhodecode/controllers/changeset.py:84
24 #: rhodecode/controllers/changeset.py:83
25 25 msgid "show white space"
26 26 msgstr ""
27 27
28 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
28 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
29 29 msgid "ignore white space"
30 30 msgstr ""
31 31
32 #: rhodecode/controllers/changeset.py:164
32 #: rhodecode/controllers/changeset.py:163
33 33 #, python-format
34 34 msgid "%s line context"
35 35 msgstr ""
36 36
37 #: rhodecode/controllers/changeset.py:315 rhodecode/controllers/pullrequests.py:411
37 #: rhodecode/controllers/changeset.py:314 rhodecode/controllers/pullrequests.py:417
38 38 #, python-format
39 39 msgid "Status change -> %s"
40 40 msgstr ""
41 41
42 #: rhodecode/controllers/changeset.py:346
42 #: rhodecode/controllers/changeset.py:345
43 43 msgid ""
44 44 "Changing status on a changeset associated witha closed pull request is not "
45 45 "allowed"
46 46 msgstr ""
47 47
48 #: rhodecode/controllers/compare.py:75 rhodecode/controllers/pullrequests.py:117
48 #: rhodecode/controllers/compare.py:75 rhodecode/controllers/pullrequests.py:121
49 49 #: rhodecode/controllers/shortlog.py:100
50 50 msgid "There are no changesets yet"
51 51 msgstr ""
@@ -87,8 +87,8 b' msgid "%s %s feed"'
87 87 msgstr ""
88 88
89 89 #: rhodecode/controllers/feed.py:86
90 #: rhodecode/templates/changeset/changeset.html:126
91 #: rhodecode/templates/changeset/changeset.html:138
90 #: rhodecode/templates/changeset/changeset.html:137
91 #: rhodecode/templates/changeset/changeset.html:149
92 92 #: rhodecode/templates/compare/compare_diff.html:62
93 93 #: rhodecode/templates/compare/compare_diff.html:73
94 94 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -168,46 +168,33 b' msgstr ""'
168 168 msgid "Changesets"
169 169 msgstr ""
170 170
171 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
171 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
172 172 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
173 173 msgid "Branches"
174 174 msgstr ""
175 175
176 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
176 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
177 177 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
178 178 msgid "Tags"
179 179 msgstr ""
180 180
181 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
182 #, python-format
183 msgid ""
184 "%s repository is not mapped to db perhaps it was created or renamed from the "
185 "filesystem please run the application again in order to rescan repositories"
186 msgstr ""
187
188 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
189 #, python-format
190 msgid ""
191 "%s repository is not mapped to db perhaps it was created or renamed from the "
192 "file system please run the application again in order to rescan repositories"
193 msgstr ""
194
195 #: rhodecode/controllers/forks.py:168
181 #: rhodecode/controllers/forks.py:158
196 182 #, python-format
197 183 msgid "forked %s repository as %s"
198 184 msgstr ""
199 185
200 #: rhodecode/controllers/forks.py:182
186 #: rhodecode/controllers/forks.py:172
201 187 #, python-format
202 188 msgid "An error occurred during repository forking %s"
203 189 msgstr ""
204 190
205 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
191 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
206 192 msgid "public journal"
207 193 msgstr ""
208 194
209 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
195 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
210 196 #: rhodecode/templates/base/base.html:232
197 #: rhodecode/templates/journal/journal.html:12
211 198 msgid "journal"
212 199 msgstr ""
213 200
@@ -223,30 +210,34 b' msgstr ""'
223 210 msgid "Your password reset was successful, new password has been sent to your email"
224 211 msgstr ""
225 212
226 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
213 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
227 214 msgid "Bookmarks"
228 215 msgstr ""
229 216
230 #: rhodecode/controllers/pullrequests.py:186
217 #: rhodecode/controllers/pullrequests.py:190
231 218 msgid "Pull request requires a title with min. 3 chars"
232 219 msgstr ""
233 220
234 #: rhodecode/controllers/pullrequests.py:188
221 #: rhodecode/controllers/pullrequests.py:192
235 222 msgid "error during creation of pull request"
236 223 msgstr ""
237 224
238 #: rhodecode/controllers/pullrequests.py:220
225 #: rhodecode/controllers/pullrequests.py:224
239 226 msgid "Successfully opened new pull request"
240 227 msgstr ""
241 228
242 #: rhodecode/controllers/pullrequests.py:223
229 #: rhodecode/controllers/pullrequests.py:227
243 230 msgid "Error occurred during sending pull request"
244 231 msgstr ""
245 232
246 #: rhodecode/controllers/pullrequests.py:256
233 #: rhodecode/controllers/pullrequests.py:260
247 234 msgid "Successfully deleted pull request"
248 235 msgstr ""
249 236
237 #: rhodecode/controllers/pullrequests.py:452
238 msgid "Closing pull request on other statuses than rejected or approved forbidden"
239 msgstr ""
240
250 241 #: rhodecode/controllers/search.py:134
251 242 msgid "Invalid search query. Try quoting it."
252 243 msgstr ""
@@ -259,48 +250,41 b' msgstr ""'
259 250 msgid "An error occurred during this search operation"
260 251 msgstr ""
261 252
262 #: rhodecode/controllers/settings.py:108 rhodecode/controllers/admin/repos.py:268
253 #: rhodecode/controllers/settings.py:119 rhodecode/controllers/admin/repos.py:272
263 254 #, python-format
264 255 msgid "Repository %s updated successfully"
265 256 msgstr ""
266 257
267 #: rhodecode/controllers/settings.py:126 rhodecode/controllers/admin/repos.py:286
258 #: rhodecode/controllers/settings.py:137 rhodecode/controllers/admin/repos.py:290
268 259 #, python-format
269 260 msgid "error occurred during update of repository %s"
270 261 msgstr ""
271 262
272 #: rhodecode/controllers/settings.py:144 rhodecode/controllers/admin/repos.py:304
273 #, python-format
274 msgid ""
275 "%s repository is not mapped to db perhaps it was moved or renamed from the "
276 "filesystem please run the application again in order to rescan repositories"
277 msgstr ""
278
279 #: rhodecode/controllers/settings.py:156 rhodecode/controllers/admin/repos.py:316
263 #: rhodecode/controllers/settings.py:162 rhodecode/controllers/admin/repos.py:315
280 264 #, python-format
281 265 msgid "deleted repository %s"
282 266 msgstr ""
283 267
284 #: rhodecode/controllers/settings.py:160 rhodecode/controllers/admin/repos.py:326
285 #: rhodecode/controllers/admin/repos.py:332
268 #: rhodecode/controllers/settings.py:166 rhodecode/controllers/admin/repos.py:325
269 #: rhodecode/controllers/admin/repos.py:331
286 270 #, python-format
287 271 msgid "An error occurred during deletion of %s"
288 272 msgstr ""
289 273
290 #: rhodecode/controllers/settings.py:179
274 #: rhodecode/controllers/settings.py:185
291 275 msgid "unlocked"
292 276 msgstr ""
293 277
294 #: rhodecode/controllers/settings.py:182
278 #: rhodecode/controllers/settings.py:188
295 279 msgid "locked"
296 280 msgstr ""
297 281
298 #: rhodecode/controllers/settings.py:184
282 #: rhodecode/controllers/settings.py:190
299 283 #, python-format
300 284 msgid "Repository has been %s"
301 285 msgstr ""
302 286
303 #: rhodecode/controllers/settings.py:188 rhodecode/controllers/admin/repos.py:424
287 #: rhodecode/controllers/settings.py:194 rhodecode/controllers/admin/repos.py:423
304 288 msgid "An error occurred during unlocking"
305 289 msgstr ""
306 290
@@ -447,76 +431,76 b' msgstr ""'
447 431 msgid "error occurred during update of permissions"
448 432 msgstr ""
449 433
450 #: rhodecode/controllers/admin/repos.py:125
434 #: rhodecode/controllers/admin/repos.py:121
451 435 msgid "--REMOVE FORK--"
452 436 msgstr ""
453 437
438 #: rhodecode/controllers/admin/repos.py:190
439 #, python-format
440 msgid "created repository %s from %s"
441 msgstr ""
442
454 443 #: rhodecode/controllers/admin/repos.py:194
455 444 #, python-format
456 msgid "created repository %s from %s"
457 msgstr ""
458
459 #: rhodecode/controllers/admin/repos.py:198
460 #, python-format
461 445 msgid "created repository %s"
462 446 msgstr ""
463 447
464 #: rhodecode/controllers/admin/repos.py:229
448 #: rhodecode/controllers/admin/repos.py:225
465 449 #, python-format
466 450 msgid "error occurred during creation of repository %s"
467 451 msgstr ""
468 452
469 #: rhodecode/controllers/admin/repos.py:321
453 #: rhodecode/controllers/admin/repos.py:320
470 454 #, python-format
471 455 msgid "Cannot delete %s it still contains attached forks"
472 456 msgstr ""
473 457
474 #: rhodecode/controllers/admin/repos.py:350
458 #: rhodecode/controllers/admin/repos.py:349
475 459 msgid "An error occurred during deletion of repository user"
476 460 msgstr ""
477 461
478 #: rhodecode/controllers/admin/repos.py:369
462 #: rhodecode/controllers/admin/repos.py:368
479 463 msgid "An error occurred during deletion of repository users groups"
480 464 msgstr ""
481 465
482 #: rhodecode/controllers/admin/repos.py:387
466 #: rhodecode/controllers/admin/repos.py:386
483 467 msgid "An error occurred during deletion of repository stats"
484 468 msgstr ""
485 469
486 #: rhodecode/controllers/admin/repos.py:404
470 #: rhodecode/controllers/admin/repos.py:403
487 471 msgid "An error occurred during cache invalidation"
488 472 msgstr ""
489 473
490 #: rhodecode/controllers/admin/repos.py:444
474 #: rhodecode/controllers/admin/repos.py:443
491 475 msgid "Updated repository visibility in public journal"
492 476 msgstr ""
493 477
494 #: rhodecode/controllers/admin/repos.py:448
478 #: rhodecode/controllers/admin/repos.py:447
495 479 msgid "An error occurred during setting this repository in public journal"
496 480 msgstr ""
497 481
498 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
482 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
499 483 msgid "Token mismatch"
500 484 msgstr ""
501 485
502 #: rhodecode/controllers/admin/repos.py:466
486 #: rhodecode/controllers/admin/repos.py:465
503 487 msgid "Pulled from remote location"
504 488 msgstr ""
505 489
506 #: rhodecode/controllers/admin/repos.py:468
490 #: rhodecode/controllers/admin/repos.py:467
507 491 msgid "An error occurred during pull from remote location"
508 492 msgstr ""
509 493
510 #: rhodecode/controllers/admin/repos.py:484
494 #: rhodecode/controllers/admin/repos.py:483
511 495 msgid "Nothing"
512 496 msgstr ""
513 497
514 #: rhodecode/controllers/admin/repos.py:486
498 #: rhodecode/controllers/admin/repos.py:485
515 499 #, python-format
516 500 msgid "Marked repo %s as fork of %s"
517 501 msgstr ""
518 502
519 #: rhodecode/controllers/admin/repos.py:490
503 #: rhodecode/controllers/admin/repos.py:489
520 504 msgid "An error occurred during this operation"
521 505 msgstr ""
522 506
@@ -752,152 +736,159 b' msgstr ""'
752 736 msgid "No changes detected"
753 737 msgstr ""
754 738
755 #: rhodecode/lib/helpers.py:373
739 #: rhodecode/lib/helpers.py:374
756 740 #, python-format
757 741 msgid "%a, %d %b %Y %H:%M:%S"
758 742 msgstr ""
759 743
760 #: rhodecode/lib/helpers.py:485
744 #: rhodecode/lib/helpers.py:486
761 745 msgid "True"
762 746 msgstr ""
763 747
764 #: rhodecode/lib/helpers.py:489
748 #: rhodecode/lib/helpers.py:490
765 749 msgid "False"
766 750 msgstr ""
767 751
768 #: rhodecode/lib/helpers.py:529
752 #: rhodecode/lib/helpers.py:530
769 753 #, python-format
770 754 msgid "Deleted branch: %s"
771 755 msgstr ""
772 756
773 #: rhodecode/lib/helpers.py:532
757 #: rhodecode/lib/helpers.py:533
774 758 #, python-format
775 759 msgid "Created tag: %s"
776 760 msgstr ""
777 761
778 #: rhodecode/lib/helpers.py:545
762 #: rhodecode/lib/helpers.py:546
779 763 msgid "Changeset not found"
780 764 msgstr ""
781 765
782 #: rhodecode/lib/helpers.py:588
766 #: rhodecode/lib/helpers.py:589
783 767 #, python-format
784 768 msgid "Show all combined changesets %s->%s"
785 769 msgstr ""
786 770
787 #: rhodecode/lib/helpers.py:594
771 #: rhodecode/lib/helpers.py:595
788 772 msgid "compare view"
789 773 msgstr ""
790 774
791 #: rhodecode/lib/helpers.py:614
792 msgid "and"
793 msgstr ""
794
795 775 #: rhodecode/lib/helpers.py:615
776 msgid "and"
777 msgstr ""
778
779 #: rhodecode/lib/helpers.py:616
796 780 #, python-format
797 781 msgid "%s more"
798 782 msgstr ""
799 783
800 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
784 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
801 785 msgid "revisions"
802 786 msgstr ""
803 787
804 #: rhodecode/lib/helpers.py:640
788 #: rhodecode/lib/helpers.py:641
805 789 #, python-format
806 790 msgid "fork name %s"
807 791 msgstr ""
808 792
809 #: rhodecode/lib/helpers.py:653
793 #: rhodecode/lib/helpers.py:658
810 794 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
811 795 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
812 796 #, python-format
813 797 msgid "Pull request #%s"
814 798 msgstr ""
815 799
816 #: rhodecode/lib/helpers.py:659
800 #: rhodecode/lib/helpers.py:664
817 801 msgid "[deleted] repository"
818 802 msgstr ""
819 803
820 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
804 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
821 805 msgid "[created] repository"
822 806 msgstr ""
823 807
824 #: rhodecode/lib/helpers.py:663
808 #: rhodecode/lib/helpers.py:668
825 809 msgid "[created] repository as fork"
826 810 msgstr ""
827 811
828 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
812 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
829 813 msgid "[forked] repository"
830 814 msgstr ""
831 815
832 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
816 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
833 817 msgid "[updated] repository"
834 818 msgstr ""
835 819
836 #: rhodecode/lib/helpers.py:669
820 #: rhodecode/lib/helpers.py:674
837 821 msgid "[delete] repository"
838 822 msgstr ""
839 823
840 #: rhodecode/lib/helpers.py:677
824 #: rhodecode/lib/helpers.py:682
841 825 msgid "[created] user"
842 826 msgstr ""
843 827
844 #: rhodecode/lib/helpers.py:679
828 #: rhodecode/lib/helpers.py:684
845 829 msgid "[updated] user"
846 830 msgstr ""
847 831
848 #: rhodecode/lib/helpers.py:681
832 #: rhodecode/lib/helpers.py:686
849 833 msgid "[created] users group"
850 834 msgstr ""
851 835
852 #: rhodecode/lib/helpers.py:683
836 #: rhodecode/lib/helpers.py:688
853 837 msgid "[updated] users group"
854 838 msgstr ""
855 839
856 #: rhodecode/lib/helpers.py:685
840 #: rhodecode/lib/helpers.py:690
857 841 msgid "[commented] on revision in repository"
858 842 msgstr ""
859 843
860 #: rhodecode/lib/helpers.py:687
844 #: rhodecode/lib/helpers.py:692
861 845 msgid "[commented] on pull request for"
862 846 msgstr ""
863 847
864 #: rhodecode/lib/helpers.py:689
848 #: rhodecode/lib/helpers.py:694
865 849 msgid "[closed] pull request for"
866 850 msgstr ""
867 851
868 #: rhodecode/lib/helpers.py:691
852 #: rhodecode/lib/helpers.py:696
869 853 msgid "[pushed] into"
870 854 msgstr ""
871 855
872 #: rhodecode/lib/helpers.py:693
856 #: rhodecode/lib/helpers.py:698
873 857 msgid "[committed via RhodeCode] into repository"
874 858 msgstr ""
875 859
876 #: rhodecode/lib/helpers.py:695
860 #: rhodecode/lib/helpers.py:700
877 861 msgid "[pulled from remote] into repository"
878 862 msgstr ""
879 863
880 #: rhodecode/lib/helpers.py:697
864 #: rhodecode/lib/helpers.py:702
881 865 msgid "[pulled] from"
882 866 msgstr ""
883 867
884 #: rhodecode/lib/helpers.py:699
868 #: rhodecode/lib/helpers.py:704
885 869 msgid "[started following] repository"
886 870 msgstr ""
887 871
888 #: rhodecode/lib/helpers.py:701
872 #: rhodecode/lib/helpers.py:706
889 873 msgid "[stopped following] repository"
890 874 msgstr ""
891 875
892 #: rhodecode/lib/helpers.py:877
876 #: rhodecode/lib/helpers.py:883
893 877 #, python-format
894 878 msgid " and %s more"
895 879 msgstr ""
896 880
897 #: rhodecode/lib/helpers.py:881
881 #: rhodecode/lib/helpers.py:887
898 882 msgid "No Files"
899 883 msgstr ""
900 884
885 #: rhodecode/lib/helpers.py:1163
886 #, python-format
887 msgid ""
888 "%s repository is not mapped to db perhaps it was created or renamed from the "
889 "filesystem please run the application again in order to rescan repositories"
890 msgstr ""
891
901 892 #: rhodecode/lib/utils2.py:403
902 893 #, python-format
903 894 msgid "%d year"
@@ -968,83 +959,83 b' msgstr ""'
968 959 msgid "password reset link"
969 960 msgstr ""
970 961
971 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
962 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
972 963 msgid "Repository no access"
973 964 msgstr ""
974 965
975 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
966 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
976 967 msgid "Repository read access"
977 968 msgstr ""
978 969
979 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
970 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
980 971 msgid "Repository write access"
981 972 msgstr ""
982 973
983 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
974 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
984 975 msgid "Repository admin access"
985 976 msgstr ""
986 977
987 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
978 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
988 979 msgid "Repositories Group no access"
989 980 msgstr ""
990 981
991 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
982 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
992 983 msgid "Repositories Group read access"
993 984 msgstr ""
994 985
995 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
986 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
996 987 msgid "Repositories Group write access"
997 988 msgstr ""
998 989
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
990 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1000 991 msgid "Repositories Group admin access"
1001 992 msgstr ""
1002 993
1003 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
994 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1004 995 msgid "RhodeCode Administrator"
1005 996 msgstr ""
1006 997
1007 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
998 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1008 999 msgid "Repository creation disabled"
1009 1000 msgstr ""
1010 1001
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1002 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1012 1003 msgid "Repository creation enabled"
1013 1004 msgstr ""
1014 1005
1015 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1006 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1016 1007 msgid "Repository forking disabled"
1017 1008 msgstr ""
1018 1009
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1010 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1020 1011 msgid "Repository forking enabled"
1021 1012 msgstr ""
1022 1013
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1014 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1024 1015 msgid "Register disabled"
1025 1016 msgstr ""
1026 1017
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1018 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1028 1019 msgid "Register new user with RhodeCode with manual activation"
1029 1020 msgstr ""
1030 1021
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1022 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1032 1023 msgid "Register new user with RhodeCode with auto activation"
1033 1024 msgstr ""
1034 1025
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1026 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1036 1027 msgid "Not Reviewed"
1037 1028 msgstr ""
1038 1029
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1030 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1040 1031 msgid "Approved"
1041 1032 msgstr ""
1042 1033
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1034 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1044 1035 msgid "Rejected"
1045 1036 msgstr ""
1046 1037
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1038 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1048 1039 msgid "Under Review"
1049 1040 msgstr ""
1050 1041
@@ -1114,20 +1105,20 b' msgstr ""'
1114 1105 msgid "latest tip"
1115 1106 msgstr ""
1116 1107
1117 #: rhodecode/model/user.py:230
1108 #: rhodecode/model/user.py:232
1118 1109 msgid "new user registration"
1119 1110 msgstr ""
1120 1111
1121 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1122 #: rhodecode/model/user.py:301
1112 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1113 #: rhodecode/model/user.py:303
1123 1114 msgid "You can't Edit this user since it's crucial for entire application"
1124 1115 msgstr ""
1125 1116
1126 #: rhodecode/model/user.py:325
1117 #: rhodecode/model/user.py:327
1127 1118 msgid "You can't remove this user since it's crucial for entire application"
1128 1119 msgstr ""
1129 1120
1130 #: rhodecode/model/user.py:331
1121 #: rhodecode/model/user.py:333
1131 1122 #, python-format
1132 1123 msgid ""
1133 1124 "user \"%s\" still owns %s repositories and cannot be removed. Switch owners "
@@ -1248,26 +1239,26 b' msgstr ""'
1248 1239 msgid "This username or users group name is not valid"
1249 1240 msgstr ""
1250 1241
1251 #: rhodecode/model/validators.py:582
1242 #: rhodecode/model/validators.py:591
1252 1243 msgid "This is not a valid path"
1253 1244 msgstr ""
1254 1245
1255 #: rhodecode/model/validators.py:597
1246 #: rhodecode/model/validators.py:606
1256 1247 msgid "This e-mail address is already taken"
1257 1248 msgstr ""
1258 1249
1259 #: rhodecode/model/validators.py:617
1250 #: rhodecode/model/validators.py:626
1260 1251 #, python-format
1261 1252 msgid "e-mail \"%(email)s\" does not exist."
1262 1253 msgstr ""
1263 1254
1264 #: rhodecode/model/validators.py:654
1255 #: rhodecode/model/validators.py:663
1265 1256 msgid ""
1266 1257 "The LDAP Login attribute of the CN must be specified - this is the name of "
1267 1258 "the attribute that is equivalent to \"username\""
1268 1259 msgstr ""
1269 1260
1270 #: rhodecode/model/validators.py:673
1261 #: rhodecode/model/validators.py:682
1271 1262 #, python-format
1272 1263 msgid "Revisions %(revs)s are already part of pull request or have set status"
1273 1264 msgstr ""
@@ -1283,7 +1274,8 b' msgstr ""'
1283 1274 #: rhodecode/templates/admin/users/users.html:9
1284 1275 #: rhodecode/templates/bookmarks/bookmarks.html:10
1285 1276 #: rhodecode/templates/branches/branches.html:9
1286 #: rhodecode/templates/journal/journal.html:40
1277 #: rhodecode/templates/journal/journal.html:9
1278 #: rhodecode/templates/journal/journal.html:48
1287 1279 #: rhodecode/templates/tags/tags.html:10
1288 1280 msgid "quick filter..."
1289 1281 msgstr ""
@@ -1344,8 +1336,8 b' msgstr ""'
1344 1336 #: rhodecode/templates/branches/branches.html:50
1345 1337 #: rhodecode/templates/branches/branches_data.html:6
1346 1338 #: rhodecode/templates/files/files_browser.html:47
1347 #: rhodecode/templates/journal/journal.html:62
1348 #: rhodecode/templates/journal/journal.html:168
1339 #: rhodecode/templates/journal/journal.html:70
1340 #: rhodecode/templates/journal/journal.html:196
1349 1341 #: rhodecode/templates/journal/journal_page_repos.html:7
1350 1342 #: rhodecode/templates/settings/repo_settings.html:31
1351 1343 #: rhodecode/templates/summary/summary.html:43
@@ -1360,7 +1352,7 b' msgstr ""'
1360 1352
1361 1353 #: rhodecode/templates/index_base.html:74 rhodecode/templates/index_base.html:179
1362 1354 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1363 #: rhodecode/templates/journal/journal.html:170
1355 #: rhodecode/templates/journal/journal.html:198
1364 1356 msgid "Tip"
1365 1357 msgstr ""
1366 1358
@@ -1388,7 +1380,7 b' msgstr ""'
1388 1380 #: rhodecode/templates/admin/users/users.html:107
1389 1381 #: rhodecode/templates/bookmarks/bookmarks.html:60
1390 1382 #: rhodecode/templates/branches/branches.html:76
1391 #: rhodecode/templates/journal/journal.html:193
1383 #: rhodecode/templates/journal/journal.html:221
1392 1384 #: rhodecode/templates/tags/tags.html:77
1393 1385 msgid "Click to sort ascending"
1394 1386 msgstr ""
@@ -1400,7 +1392,7 b' msgstr ""'
1400 1392 #: rhodecode/templates/admin/users/users.html:108
1401 1393 #: rhodecode/templates/bookmarks/bookmarks.html:61
1402 1394 #: rhodecode/templates/branches/branches.html:77
1403 #: rhodecode/templates/journal/journal.html:194
1395 #: rhodecode/templates/journal/journal.html:222
1404 1396 #: rhodecode/templates/tags/tags.html:78
1405 1397 msgid "Click to sort descending"
1406 1398 msgstr ""
@@ -1415,7 +1407,7 b' msgstr ""'
1415 1407 #: rhodecode/templates/admin/users/users.html:109
1416 1408 #: rhodecode/templates/bookmarks/bookmarks.html:62
1417 1409 #: rhodecode/templates/branches/branches.html:78
1418 #: rhodecode/templates/journal/journal.html:195
1410 #: rhodecode/templates/journal/journal.html:223
1419 1411 #: rhodecode/templates/tags/tags.html:79
1420 1412 msgid "No records found."
1421 1413 msgstr ""
@@ -1426,7 +1418,7 b' msgstr ""'
1426 1418 #: rhodecode/templates/admin/users/users.html:110
1427 1419 #: rhodecode/templates/bookmarks/bookmarks.html:63
1428 1420 #: rhodecode/templates/branches/branches.html:79
1429 #: rhodecode/templates/journal/journal.html:196
1421 #: rhodecode/templates/journal/journal.html:224
1430 1422 #: rhodecode/templates/tags/tags.html:80
1431 1423 msgid "Data error."
1432 1424 msgstr ""
@@ -1437,8 +1429,8 b' msgstr ""'
1437 1429 #: rhodecode/templates/admin/users/users.html:111
1438 1430 #: rhodecode/templates/bookmarks/bookmarks.html:64
1439 1431 #: rhodecode/templates/branches/branches.html:80
1440 #: rhodecode/templates/journal/journal.html:54
1441 #: rhodecode/templates/journal/journal.html:197
1432 #: rhodecode/templates/journal/journal.html:62
1433 #: rhodecode/templates/journal/journal.html:225
1442 1434 #: rhodecode/templates/tags/tags.html:81
1443 1435 msgid "Loading..."
1444 1436 msgstr ""
@@ -1585,10 +1577,27 b' msgstr ""'
1585 1577 msgid "There are no bookmarks yet"
1586 1578 msgstr ""
1587 1579
1588 #: rhodecode/templates/admin/admin.html:5 rhodecode/templates/admin/admin.html:9
1580 #: rhodecode/templates/admin/admin.html:5 rhodecode/templates/admin/admin.html:13
1589 1581 msgid "Admin journal"
1590 1582 msgstr ""
1591 1583
1584 #: rhodecode/templates/admin/admin.html:10
1585 msgid "journal filter..."
1586 msgstr ""
1587
1588 #: rhodecode/templates/admin/admin.html:12
1589 #: rhodecode/templates/journal/journal.html:11
1590 msgid "filter"
1591 msgstr ""
1592
1593 #: rhodecode/templates/admin/admin.html:13
1594 #: rhodecode/templates/journal/journal.html:12
1595 #, python-format
1596 msgid "%s entry"
1597 msgid_plural "%s entries"
1598 msgstr[0] ""
1599 msgstr[1] ""
1600
1592 1601 #: rhodecode/templates/admin/admin_log.html:6
1593 1602 #: rhodecode/templates/admin/repos/repos.html:74
1594 1603 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1616,7 +1625,7 b' msgstr ""'
1616 1625 msgid "From IP"
1617 1626 msgstr ""
1618 1627
1619 #: rhodecode/templates/admin/admin_log.html:57
1628 #: rhodecode/templates/admin/admin_log.html:63
1620 1629 msgid "No actions yet"
1621 1630 msgstr ""
1622 1631
@@ -1685,7 +1694,7 b' msgstr ""'
1685 1694 #: rhodecode/templates/admin/users/user_edit.html:178
1686 1695 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1687 1696 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1688 #: rhodecode/templates/settings/repo_settings.html:93
1697 #: rhodecode/templates/settings/repo_settings.html:94
1689 1698 msgid "Save"
1690 1699 msgstr ""
1691 1700
@@ -1971,7 +1980,7 b' msgstr ""'
1971 1980 #: rhodecode/templates/files/files_add.html:82
1972 1981 #: rhodecode/templates/files/files_edit.html:68
1973 1982 #: rhodecode/templates/pullrequests/pullrequest.html:124
1974 #: rhodecode/templates/settings/repo_settings.html:94
1983 #: rhodecode/templates/settings/repo_settings.html:95
1975 1984 msgid "Reset"
1976 1985 msgstr ""
1977 1986
@@ -2111,19 +2120,21 b' msgid "Delete"'
2111 2120 msgstr ""
2112 2121
2113 2122 #: rhodecode/templates/admin/repos/repo_edit.html:278
2123 #: rhodecode/templates/settings/repo_settings.html:115
2114 2124 msgid "Remove this repository"
2115 2125 msgstr ""
2116 2126
2117 2127 #: rhodecode/templates/admin/repos/repo_edit.html:278
2128 #: rhodecode/templates/settings/repo_settings.html:115
2118 2129 msgid "Confirm to delete this repository"
2119 2130 msgstr ""
2120 2131
2121 2132 #: rhodecode/templates/admin/repos/repo_edit.html:282
2133 #: rhodecode/templates/settings/repo_settings.html:119
2122 2134 msgid ""
2123 2135 "This repository will be renamed in a special way in order to be unaccesible "
2124 "for RhodeCode and VCS systems.\n"
2125 " If you need fully delete it from filesystem please "
2126 "do it manually"
2136 "for RhodeCode and VCS systems. If you need fully delete it from file system "
2137 "please do it manually"
2127 2138 msgstr ""
2128 2139
2129 2140 #: rhodecode/templates/admin/repos/repo_edit_perms.html:3
@@ -2155,7 +2166,7 b' msgstr ""'
2155 2166
2156 2167 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2157 2168 #: rhodecode/templates/data_table/_dt_elements.html:67
2158 #: rhodecode/templates/journal/journal.html:87
2169 #: rhodecode/templates/journal/journal.html:95
2159 2170 #: rhodecode/templates/summary/summary.html:85
2160 2171 msgid "private repository"
2161 2172 msgstr ""
@@ -2657,7 +2668,7 b' msgid "My permissions"'
2657 2668 msgstr ""
2658 2669
2659 2670 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2660 #: rhodecode/templates/journal/journal.html:41
2671 #: rhodecode/templates/journal/journal.html:49
2661 2672 msgid "My repos"
2662 2673 msgstr ""
2663 2674
@@ -2865,7 +2876,6 b' msgstr ""'
2865 2876 #: rhodecode/templates/base/base.html:123 rhodecode/templates/base/base.html:322
2866 2877 #: rhodecode/templates/base/base.html:324 rhodecode/templates/base/base.html:326
2867 2878 #: rhodecode/templates/journal/journal.html:4
2868 #: rhodecode/templates/journal/journal.html:21
2869 2879 #: rhodecode/templates/journal/public_journal.html:4
2870 2880 msgid "Journal"
2871 2881 msgstr ""
@@ -2987,7 +2997,7 b' msgid "add another comment"'
2987 2997 msgstr ""
2988 2998
2989 2999 #: rhodecode/templates/base/root.html:43
2990 #: rhodecode/templates/journal/journal.html:75
3000 #: rhodecode/templates/journal/journal.html:83
2991 3001 #: rhodecode/templates/summary/summary.html:57
2992 3002 msgid "Stop following this repository"
2993 3003 msgstr ""
@@ -3091,7 +3101,7 b' msgid "Affected number of files, click t'
3091 3101 msgstr ""
3092 3102
3093 3103 #: rhodecode/templates/changelog/changelog.html:91
3094 #: rhodecode/templates/changeset/changeset.html:44
3104 #: rhodecode/templates/changeset/changeset.html:65
3095 3105 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3096 3106 #: rhodecode/templates/changeset/changeset_range.html:46
3097 3107 msgid "Changeset status"
@@ -3103,23 +3113,22 b' msgid "Click to open associated pull req'
3103 3113 msgstr ""
3104 3114
3105 3115 #: rhodecode/templates/changelog/changelog.html:104
3106 #: rhodecode/templates/changeset/changeset.html:85
3107 3116 msgid "Parent"
3108 3117 msgstr ""
3109 3118
3110 3119 #: rhodecode/templates/changelog/changelog.html:110
3111 #: rhodecode/templates/changeset/changeset.html:91
3120 #: rhodecode/templates/changeset/changeset.html:42
3112 3121 msgid "No parents"
3113 3122 msgstr ""
3114 3123
3115 3124 #: rhodecode/templates/changelog/changelog.html:115
3116 #: rhodecode/templates/changeset/changeset.html:95
3125 #: rhodecode/templates/changeset/changeset.html:106
3117 3126 #: rhodecode/templates/changeset/changeset_range.html:79
3118 3127 msgid "merge"
3119 3128 msgstr ""
3120 3129
3121 3130 #: rhodecode/templates/changelog/changelog.html:118
3122 #: rhodecode/templates/changeset/changeset.html:98
3131 #: rhodecode/templates/changeset/changeset.html:109
3123 3132 #: rhodecode/templates/changeset/changeset_range.html:82
3124 3133 #: rhodecode/templates/files/files.html:29
3125 3134 #: rhodecode/templates/files/files_add.html:33
@@ -3134,7 +3143,7 b' msgid "bookmark"'
3134 3143 msgstr ""
3135 3144
3136 3145 #: rhodecode/templates/changelog/changelog.html:130
3137 #: rhodecode/templates/changeset/changeset.html:103
3146 #: rhodecode/templates/changeset/changeset.html:114
3138 3147 #: rhodecode/templates/changeset/changeset_range.html:94
3139 3148 msgid "tag"
3140 3149 msgstr ""
@@ -3144,26 +3153,26 b' msgid "There are no changes yet"'
3144 3153 msgstr ""
3145 3154
3146 3155 #: rhodecode/templates/changelog/changelog_details.html:4
3147 #: rhodecode/templates/changeset/changeset.html:73
3156 #: rhodecode/templates/changeset/changeset.html:94
3148 3157 msgid "removed"
3149 3158 msgstr ""
3150 3159
3151 3160 #: rhodecode/templates/changelog/changelog_details.html:5
3152 #: rhodecode/templates/changeset/changeset.html:74
3161 #: rhodecode/templates/changeset/changeset.html:95
3153 3162 msgid "changed"
3154 3163 msgstr ""
3155 3164
3156 3165 #: rhodecode/templates/changelog/changelog_details.html:6
3157 #: rhodecode/templates/changeset/changeset.html:75
3166 #: rhodecode/templates/changeset/changeset.html:96
3158 3167 msgid "added"
3159 3168 msgstr ""
3160 3169
3161 3170 #: rhodecode/templates/changelog/changelog_details.html:8
3162 3171 #: rhodecode/templates/changelog/changelog_details.html:9
3163 3172 #: rhodecode/templates/changelog/changelog_details.html:10
3164 #: rhodecode/templates/changeset/changeset.html:77
3165 #: rhodecode/templates/changeset/changeset.html:78
3166 #: rhodecode/templates/changeset/changeset.html:79
3173 #: rhodecode/templates/changeset/changeset.html:98
3174 #: rhodecode/templates/changeset/changeset.html:99
3175 #: rhodecode/templates/changeset/changeset.html:100
3167 3176 #, python-format
3168 3177 msgid "affected %s files"
3169 3178 msgstr ""
@@ -3177,21 +3186,25 b' msgstr ""'
3177 3186 msgid "Changeset"
3178 3187 msgstr ""
3179 3188
3180 #: rhodecode/templates/changeset/changeset.html:49
3189 #: rhodecode/templates/changeset/changeset.html:52
3190 msgid "No children"
3191 msgstr ""
3192
3193 #: rhodecode/templates/changeset/changeset.html:70
3181 3194 #: rhodecode/templates/changeset/diff_block.html:20
3182 3195 msgid "raw diff"
3183 3196 msgstr ""
3184 3197
3185 #: rhodecode/templates/changeset/changeset.html:50
3198 #: rhodecode/templates/changeset/changeset.html:71
3186 3199 msgid "patch diff"
3187 3200 msgstr ""
3188 3201
3189 #: rhodecode/templates/changeset/changeset.html:51
3202 #: rhodecode/templates/changeset/changeset.html:72
3190 3203 #: rhodecode/templates/changeset/diff_block.html:21
3191 3204 msgid "download diff"
3192 3205 msgstr ""
3193 3206
3194 #: rhodecode/templates/changeset/changeset.html:55
3207 #: rhodecode/templates/changeset/changeset.html:76
3195 3208 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3196 3209 #, python-format
3197 3210 msgid "%d comment"
@@ -3199,7 +3212,7 b' msgid_plural "%d comments"'
3199 3212 msgstr[0] ""
3200 3213 msgstr[1] ""
3201 3214
3202 #: rhodecode/templates/changeset/changeset.html:55
3215 #: rhodecode/templates/changeset/changeset.html:76
3203 3216 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3204 3217 #, python-format
3205 3218 msgid "(%d inline)"
@@ -3207,7 +3220,7 b' msgid_plural "(%d inline)"'
3207 3220 msgstr[0] ""
3208 3221 msgstr[1] ""
3209 3222
3210 #: rhodecode/templates/changeset/changeset.html:111
3223 #: rhodecode/templates/changeset/changeset.html:122
3211 3224 #: rhodecode/templates/compare/compare_diff.html:44
3212 3225 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3213 3226 #, python-format
@@ -3216,7 +3229,7 b' msgid_plural "%s files changed"'
3216 3229 msgstr[0] ""
3217 3230 msgstr[1] ""
3218 3231
3219 #: rhodecode/templates/changeset/changeset.html:113
3232 #: rhodecode/templates/changeset/changeset.html:124
3220 3233 #: rhodecode/templates/compare/compare_diff.html:46
3221 3234 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3222 3235 #, python-format
@@ -3245,7 +3258,7 b' msgid "Use @username inside this text to'
3245 3258 msgstr ""
3246 3259
3247 3260 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3248 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3261 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3249 3262 msgid "Comment"
3250 3263 msgstr ""
3251 3264
@@ -3266,15 +3279,15 b' msgstr ""'
3266 3279 msgid "Leave a comment"
3267 3280 msgstr ""
3268 3281
3269 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3282 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3270 3283 msgid "Check this to change current status of code-review for this changeset"
3271 3284 msgstr ""
3272 3285
3273 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3286 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3274 3287 msgid "change status"
3275 3288 msgstr ""
3276 3289
3277 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3290 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3278 3291 msgid "Comment and close"
3279 3292 msgstr ""
3280 3293
@@ -3328,19 +3341,19 b' msgid "Fork"'
3328 3341 msgstr ""
3329 3342
3330 3343 #: rhodecode/templates/data_table/_dt_elements.html:60
3331 #: rhodecode/templates/journal/journal.html:81
3344 #: rhodecode/templates/journal/journal.html:89
3332 3345 #: rhodecode/templates/summary/summary.html:77
3333 3346 msgid "Mercurial repository"
3334 3347 msgstr ""
3335 3348
3336 3349 #: rhodecode/templates/data_table/_dt_elements.html:62
3337 #: rhodecode/templates/journal/journal.html:83
3350 #: rhodecode/templates/journal/journal.html:91
3338 3351 #: rhodecode/templates/summary/summary.html:80
3339 3352 msgid "Git repository"
3340 3353 msgstr ""
3341 3354
3342 3355 #: rhodecode/templates/data_table/_dt_elements.html:69
3343 #: rhodecode/templates/journal/journal.html:89
3356 #: rhodecode/templates/journal/journal.html:97
3344 3357 #: rhodecode/templates/summary/summary.html:87
3345 3358 msgid "public repository"
3346 3359 msgstr ""
@@ -3708,50 +3721,50 b' msgstr ""'
3708 3721 msgid "There are no forks yet"
3709 3722 msgstr ""
3710 3723
3711 #: rhodecode/templates/journal/journal.html:13
3724 #: rhodecode/templates/journal/journal.html:21
3712 3725 msgid "ATOM journal feed"
3713 3726 msgstr ""
3714 3727
3715 #: rhodecode/templates/journal/journal.html:14
3728 #: rhodecode/templates/journal/journal.html:22
3716 3729 msgid "RSS journal feed"
3717 3730 msgstr ""
3718 3731
3719 #: rhodecode/templates/journal/journal.html:24
3732 #: rhodecode/templates/journal/journal.html:32
3720 3733 #: rhodecode/templates/pullrequests/pullrequest.html:55
3721 3734 msgid "Refresh"
3722 3735 msgstr ""
3723 3736
3724 #: rhodecode/templates/journal/journal.html:27
3737 #: rhodecode/templates/journal/journal.html:35
3725 3738 #: rhodecode/templates/journal/public_journal.html:24
3726 3739 msgid "RSS feed"
3727 3740 msgstr ""
3728 3741
3729 #: rhodecode/templates/journal/journal.html:30
3742 #: rhodecode/templates/journal/journal.html:38
3730 3743 #: rhodecode/templates/journal/public_journal.html:27
3731 3744 msgid "ATOM feed"
3732 3745 msgstr ""
3733 3746
3734 #: rhodecode/templates/journal/journal.html:41
3747 #: rhodecode/templates/journal/journal.html:49
3735 3748 msgid "Watched"
3736 3749 msgstr ""
3737 3750
3738 #: rhodecode/templates/journal/journal.html:46
3751 #: rhodecode/templates/journal/journal.html:54
3739 3752 msgid "ADD"
3740 3753 msgstr ""
3741 3754
3742 #: rhodecode/templates/journal/journal.html:69
3755 #: rhodecode/templates/journal/journal.html:77
3743 3756 msgid "following user"
3744 3757 msgstr ""
3745 3758
3746 #: rhodecode/templates/journal/journal.html:69
3759 #: rhodecode/templates/journal/journal.html:77
3747 3760 msgid "user"
3748 3761 msgstr ""
3749 3762
3750 #: rhodecode/templates/journal/journal.html:102
3763 #: rhodecode/templates/journal/journal.html:110
3751 3764 msgid "You are not following any users or repositories"
3752 3765 msgstr ""
3753 3766
3754 #: rhodecode/templates/journal/journal_data.html:51
3767 #: rhodecode/templates/journal/journal_data.html:55
3755 3768 msgid "No entries yet"
3756 3769 msgstr ""
3757 3770
@@ -3850,6 +3863,10 b' msgstr ""'
3850 3863 msgid "Compare view"
3851 3864 msgstr ""
3852 3865
3866 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
3867 msgid "reviewer"
3868 msgstr ""
3869
3853 3870 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
3854 3871 msgid "all pull requests"
3855 3872 msgstr ""
@@ -3914,6 +3931,14 b' msgstr ""'
3914 3931 msgid "%s Settings"
3915 3932 msgstr ""
3916 3933
3934 #: rhodecode/templates/settings/repo_settings.html:102
3935 msgid "Delete repository"
3936 msgstr ""
3937
3938 #: rhodecode/templates/settings/repo_settings.html:109
3939 msgid "Remove repo"
3940 msgstr ""
3941
3917 3942 #: rhodecode/templates/shortlog/shortlog.html:5
3918 3943 #, python-format
3919 3944 msgid "%s Shortlog"
@@ -8,7 +8,7 b' msgid ""'
8 8 msgstr ""
9 9 "Project-Id-Version: RhodeCode 1.4.4\n"
10 10 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
11 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
11 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
12 12 "PO-Revision-Date: 2012-11-26 15:19+0800\n"
13 13 "Last-Translator: xpol <xpolife@gmail.com>\n"
14 14 "Language-Team: mikespook\n"
@@ -22,33 +22,33 b' msgstr ""'
22 22 msgid "All Branches"
23 23 msgstr "所有分支"
24 24
25 #: rhodecode/controllers/changeset.py:84
25 #: rhodecode/controllers/changeset.py:83
26 26 msgid "show white space"
27 27 msgstr "显示空白字符"
28 28
29 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
29 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
30 30 msgid "ignore white space"
31 31 msgstr "忽略空白字符"
32 32
33 #: rhodecode/controllers/changeset.py:164
33 #: rhodecode/controllers/changeset.py:163
34 34 #, python-format
35 35 msgid "%s line context"
36 36 msgstr "%s行上下文"
37 37
38 #: rhodecode/controllers/changeset.py:315
39 #: rhodecode/controllers/pullrequests.py:411
38 #: rhodecode/controllers/changeset.py:314
39 #: rhodecode/controllers/pullrequests.py:417
40 40 #, python-format
41 41 msgid "Status change -> %s"
42 42 msgstr "状态修改为%s"
43 43
44 #: rhodecode/controllers/changeset.py:346
44 #: rhodecode/controllers/changeset.py:345
45 45 msgid ""
46 46 "Changing status on a changeset associated witha closed pull request is "
47 47 "not allowed"
48 48 msgstr "不允许修改已关闭拉取请求的修订集状态"
49 49
50 50 #: rhodecode/controllers/compare.py:75
51 #: rhodecode/controllers/pullrequests.py:117
51 #: rhodecode/controllers/pullrequests.py:121
52 52 #: rhodecode/controllers/shortlog.py:100
53 53 msgid "There are no changesets yet"
54 54 msgstr "还没有修订集"
@@ -90,8 +90,8 b' msgid "%s %s feed"'
90 90 msgstr "%s %s订阅"
91 91
92 92 #: rhodecode/controllers/feed.py:86
93 #: rhodecode/templates/changeset/changeset.html:126
94 #: rhodecode/templates/changeset/changeset.html:138
93 #: rhodecode/templates/changeset/changeset.html:137
94 #: rhodecode/templates/changeset/changeset.html:149
95 95 #: rhodecode/templates/compare/compare_diff.html:62
96 96 #: rhodecode/templates/compare/compare_diff.html:73
97 97 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -171,48 +171,33 b' msgstr "\xe6\x9c\xaa\xe7\x9f\xa5\xe5\x8c\x85\xe7\xb1\xbb\xe5\x9e\x8b"'
171 171 msgid "Changesets"
172 172 msgstr "修订集"
173 173
174 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
174 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
175 175 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
176 176 msgid "Branches"
177 177 msgstr "分支"
178 178
179 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
179 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
180 180 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
181 181 msgid "Tags"
182 182 msgstr "标签"
183 183
184 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
185 #, python-format
186 msgid ""
187 "%s repository is not mapped to db perhaps it was created or renamed from "
188 "the filesystem please run the application again in order to rescan "
189 "repositories"
190 msgstr "版本库%s没有映射到数据库,可能是从文件系统创建或者重命名,请重启RhodeCode以重新扫描版本库"
191
192 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
193 #, python-format
194 msgid ""
195 "%s repository is not mapped to db perhaps it was created or renamed from "
196 "the file system please run the application again in order to rescan "
197 "repositories"
198 msgstr " 版本库%s没有映射到数据库,可能是从文件系统创建或者重命名,请重启RhodeCode以重新扫描版本库"
199
200 #: rhodecode/controllers/forks.py:168
184 #: rhodecode/controllers/forks.py:158
201 185 #, python-format
202 186 msgid "forked %s repository as %s"
203 187 msgstr "版本库%s被复刻到%s"
204 188
205 #: rhodecode/controllers/forks.py:182
189 #: rhodecode/controllers/forks.py:172
206 190 #, python-format
207 191 msgid "An error occurred during repository forking %s"
208 192 msgstr "在复刻版本库%s的时候发生错误"
209 193
210 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
194 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
211 195 msgid "public journal"
212 196 msgstr "公共日志"
213 197
214 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
198 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
215 199 #: rhodecode/templates/base/base.html:232
200 #: rhodecode/templates/journal/journal.html:12
216 201 msgid "journal"
217 202 msgstr "日志"
218 203
@@ -230,30 +215,34 b' msgid ""'
230 215 "email"
231 216 msgstr "密码已经成功重置,新密码已经发送到你的邮箱"
232 217
233 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
218 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
234 219 msgid "Bookmarks"
235 220 msgstr "书签"
236 221
237 #: rhodecode/controllers/pullrequests.py:186
222 #: rhodecode/controllers/pullrequests.py:190
238 223 msgid "Pull request requires a title with min. 3 chars"
239 224 msgstr "拉取请求的标题至少3个字符"
240 225
241 #: rhodecode/controllers/pullrequests.py:188
226 #: rhodecode/controllers/pullrequests.py:192
242 227 msgid "error during creation of pull request"
243 228 msgstr "提交拉取请求时发生错误"
244 229
245 #: rhodecode/controllers/pullrequests.py:220
230 #: rhodecode/controllers/pullrequests.py:224
246 231 msgid "Successfully opened new pull request"
247 232 msgstr "成功提交拉取请求"
248 233
249 #: rhodecode/controllers/pullrequests.py:223
234 #: rhodecode/controllers/pullrequests.py:227
250 235 msgid "Error occurred during sending pull request"
251 236 msgstr "提交拉取请求时发生错误"
252 237
253 #: rhodecode/controllers/pullrequests.py:256
238 #: rhodecode/controllers/pullrequests.py:260
254 239 msgid "Successfully deleted pull request"
255 240 msgstr "成功删除拉取请求"
256 241
242 #: rhodecode/controllers/pullrequests.py:452
243 msgid "Closing pull request on other statuses than rejected or approved forbidden"
244 msgstr ""
245
257 246 #: rhodecode/controllers/search.py:134
258 247 msgid "Invalid search query. Try quoting it."
259 248 msgstr "错误的搜索。请尝试用引号包含它。"
@@ -266,55 +255,46 b' msgstr "\xe6\xb2\xa1\xe6\x9c\x89\xe7\xb4\xa2\xe5\xbc\x95\xe7\x94\xa8\xe4\xba\x8e\xe6\x90\x9c\xe7\xb4\xa2\xe3\x80\x82\xe8\xaf\xb7\xe8\xbf\x90\xe8\xa1\x8cwhoosh\xe7\xb4\xa2\xe5\xbc\x95\xe5\x99\xa8"'
266 255 msgid "An error occurred during this search operation"
267 256 msgstr "在搜索操作中发生异常"
268 257
269 #: rhodecode/controllers/settings.py:108
270 #: rhodecode/controllers/admin/repos.py:268
258 #: rhodecode/controllers/settings.py:119
259 #: rhodecode/controllers/admin/repos.py:272
271 260 #, python-format
272 261 msgid "Repository %s updated successfully"
273 262 msgstr "版本库%s成功更新"
274 263
275 #: rhodecode/controllers/settings.py:126
276 #: rhodecode/controllers/admin/repos.py:286
264 #: rhodecode/controllers/settings.py:137
265 #: rhodecode/controllers/admin/repos.py:290
277 266 #, python-format
278 267 msgid "error occurred during update of repository %s"
279 268 msgstr "在更新版本库%s的时候发生错误"
280 269
281 #: rhodecode/controllers/settings.py:144
282 #: rhodecode/controllers/admin/repos.py:304
283 #, python-format
284 msgid ""
285 "%s repository is not mapped to db perhaps it was moved or renamed from "
286 "the filesystem please run the application again in order to rescan "
287 "repositories"
288 msgstr "版本库%s没有映射到数据库,可能是从文件系统创建或者重命名,请重启RhodeCode以重新扫描版本库"
289
290 #: rhodecode/controllers/settings.py:156
291 #: rhodecode/controllers/admin/repos.py:316
270 #: rhodecode/controllers/settings.py:162
271 #: rhodecode/controllers/admin/repos.py:315
292 272 #, python-format
293 273 msgid "deleted repository %s"
294 274 msgstr "已经删除版本库%s"
295 275
296 #: rhodecode/controllers/settings.py:160
297 #: rhodecode/controllers/admin/repos.py:326
298 #: rhodecode/controllers/admin/repos.py:332
276 #: rhodecode/controllers/settings.py:166
277 #: rhodecode/controllers/admin/repos.py:325
278 #: rhodecode/controllers/admin/repos.py:331
299 279 #, python-format
300 280 msgid "An error occurred during deletion of %s"
301 281 msgstr "在删除%s的时候发生错误"
302 282
303 #: rhodecode/controllers/settings.py:179
283 #: rhodecode/controllers/settings.py:185
304 284 msgid "unlocked"
305 285 msgstr "未锁"
306 286
307 #: rhodecode/controllers/settings.py:182
287 #: rhodecode/controllers/settings.py:188
308 288 msgid "locked"
309 289 msgstr "已锁"
310 290
311 #: rhodecode/controllers/settings.py:184
291 #: rhodecode/controllers/settings.py:190
312 292 #, python-format
313 293 msgid "Repository has been %s"
314 294 msgstr "版本库已被%s"
315 295
316 #: rhodecode/controllers/settings.py:188
317 #: rhodecode/controllers/admin/repos.py:424
296 #: rhodecode/controllers/settings.py:194
297 #: rhodecode/controllers/admin/repos.py:423
318 298 msgid "An error occurred during unlocking"
319 299 msgstr "解锁时发生错误"
320 300
@@ -465,76 +445,76 b' msgstr "\xe6\x88\x90\xe5\x8a\x9f\xe6\x9b\xb4\xe6\x96\xb0\xe9\xbb\x98\xe8\xae\xa4\xe6\x9d\x83\xe9\x99\x90"'
465 445 msgid "error occurred during update of permissions"
466 446 msgstr "更新权限时发生错误"
467 447
468 #: rhodecode/controllers/admin/repos.py:125
448 #: rhodecode/controllers/admin/repos.py:121
469 449 msgid "--REMOVE FORK--"
470 450 msgstr "-- 移除复刻 --"
471 451
472 #: rhodecode/controllers/admin/repos.py:194
452 #: rhodecode/controllers/admin/repos.py:190
473 453 #, python-format
474 454 msgid "created repository %s from %s"
475 455 msgstr "新版本库%s基于%s建立。"
476 456
477 #: rhodecode/controllers/admin/repos.py:198
457 #: rhodecode/controllers/admin/repos.py:194
478 458 #, python-format
479 459 msgid "created repository %s"
480 460 msgstr "建立版本库%s"
481 461
482 #: rhodecode/controllers/admin/repos.py:229
462 #: rhodecode/controllers/admin/repos.py:225
483 463 #, python-format
484 464 msgid "error occurred during creation of repository %s"
485 465 msgstr "创建版本库时发生错误%s"
486 466
487 #: rhodecode/controllers/admin/repos.py:321
467 #: rhodecode/controllers/admin/repos.py:320
488 468 #, python-format
489 469 msgid "Cannot delete %s it still contains attached forks"
490 470 msgstr "无法删除%s因为它还有其他分复刻本库"
491 471
492 #: rhodecode/controllers/admin/repos.py:350
472 #: rhodecode/controllers/admin/repos.py:349
493 473 msgid "An error occurred during deletion of repository user"
494 474 msgstr "删除版本库用户时发生错误"
495 475
496 #: rhodecode/controllers/admin/repos.py:369
476 #: rhodecode/controllers/admin/repos.py:368
497 477 msgid "An error occurred during deletion of repository users groups"
498 478 msgstr "删除版本库用户组时发生错误"
499 479
500 #: rhodecode/controllers/admin/repos.py:387
480 #: rhodecode/controllers/admin/repos.py:386
501 481 msgid "An error occurred during deletion of repository stats"
502 482 msgstr "删除版本库统计时发生错误"
503 483
504 #: rhodecode/controllers/admin/repos.py:404
484 #: rhodecode/controllers/admin/repos.py:403
505 485 msgid "An error occurred during cache invalidation"
506 486 msgstr "清除缓存时发生错误"
507 487
508 #: rhodecode/controllers/admin/repos.py:444
488 #: rhodecode/controllers/admin/repos.py:443
509 489 msgid "Updated repository visibility in public journal"
510 490 msgstr "成功更新在公共日志中的可见性"
511 491
512 #: rhodecode/controllers/admin/repos.py:448
492 #: rhodecode/controllers/admin/repos.py:447
513 493 msgid "An error occurred during setting this repository in public journal"
514 494 msgstr "设置版本库到公共日志时发生错误"
515 495
516 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
496 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
517 497 msgid "Token mismatch"
518 498 msgstr "令牌不匹配"
519 499
520 #: rhodecode/controllers/admin/repos.py:466
500 #: rhodecode/controllers/admin/repos.py:465
521 501 msgid "Pulled from remote location"
522 502 msgstr "成功拉取自远程路径"
523 503
524 #: rhodecode/controllers/admin/repos.py:468
504 #: rhodecode/controllers/admin/repos.py:467
525 505 msgid "An error occurred during pull from remote location"
526 506 msgstr "从远程路径拉取时发生错误"
527 507
528 #: rhodecode/controllers/admin/repos.py:484
508 #: rhodecode/controllers/admin/repos.py:483
529 509 msgid "Nothing"
530 510 msgstr "无"
531 511
532 #: rhodecode/controllers/admin/repos.py:486
512 #: rhodecode/controllers/admin/repos.py:485
533 513 #, python-format
534 514 msgid "Marked repo %s as fork of %s"
535 515 msgstr "成功将版本库%s标记为复刻自%s"
536 516
537 #: rhodecode/controllers/admin/repos.py:490
517 #: rhodecode/controllers/admin/repos.py:489
538 518 msgid "An error occurred during this operation"
539 519 msgstr "在搜索操作中发生错误"
540 520
@@ -770,152 +750,160 b' msgstr "\xe4\xbf\xae\xe8\xae\xa2\xe9\x9b\x86\xe5\x9b\xa0\xe8\xbf\x87\xe5\xa4\xa7\xe8\x80\x8c\xe8\xa2\xab\xe6\x88\xaa\xe6\x96\xad\xef\xbc\x8c\xe5\x8f\xaf\xe6\x9f\xa5\xe7\x9c\x8b\xe5\x8e\x9f\xe5\xa7\x8b\xe4\xbf\xae\xe8\xae\xa2\xe9\x9b\x86\xe4\xbd\x9c\xe4\xb8\xba\xe6\x9b\xbf\xe4\xbb\xa3"'
770 750 msgid "No changes detected"
771 751 msgstr "未发现差异"
772 752
773 #: rhodecode/lib/helpers.py:373
753 #: rhodecode/lib/helpers.py:374
774 754 #, python-format
775 755 msgid "%a, %d %b %Y %H:%M:%S"
776 756 msgstr "%Y/%m/%d %H:%M:%S"
777 757
778 #: rhodecode/lib/helpers.py:485
758 #: rhodecode/lib/helpers.py:486
779 759 msgid "True"
780 760 msgstr "是"
781 761
782 #: rhodecode/lib/helpers.py:489
762 #: rhodecode/lib/helpers.py:490
783 763 msgid "False"
784 764 msgstr "否"
785 765
786 #: rhodecode/lib/helpers.py:529
766 #: rhodecode/lib/helpers.py:530
787 767 #, python-format
788 768 msgid "Deleted branch: %s"
789 769 msgstr "已经删除分支%s"
790 770
791 #: rhodecode/lib/helpers.py:532
771 #: rhodecode/lib/helpers.py:533
792 772 #, python-format
793 773 msgid "Created tag: %s"
794 774 msgstr "创建标签%s"
795 775
796 #: rhodecode/lib/helpers.py:545
776 #: rhodecode/lib/helpers.py:546
797 777 msgid "Changeset not found"
798 778 msgstr "未找到修订集"
799 779
800 #: rhodecode/lib/helpers.py:588
780 #: rhodecode/lib/helpers.py:589
801 781 #, python-format
802 782 msgid "Show all combined changesets %s->%s"
803 783 msgstr "显示合并的修订集%s->%s"
804 784
805 #: rhodecode/lib/helpers.py:594
785 #: rhodecode/lib/helpers.py:595
806 786 msgid "compare view"
807 787 msgstr "比较显示"
808 788
809 #: rhodecode/lib/helpers.py:614
789 #: rhodecode/lib/helpers.py:615
810 790 msgid "and"
811 791 msgstr "还有"
812 792
813 #: rhodecode/lib/helpers.py:615
793 #: rhodecode/lib/helpers.py:616
814 794 #, python-format
815 795 msgid "%s more"
816 796 msgstr "%s个"
817 797
818 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
798 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
819 799 msgid "revisions"
820 800 msgstr "修订"
821 801
822 #: rhodecode/lib/helpers.py:640
802 #: rhodecode/lib/helpers.py:641
823 803 #, python-format
824 804 msgid "fork name %s"
825 805 msgstr "复刻名称%s"
826 806
827 #: rhodecode/lib/helpers.py:653
807 #: rhodecode/lib/helpers.py:658
828 808 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
829 809 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
830 810 #, python-format
831 811 msgid "Pull request #%s"
832 812 msgstr "拉取请求#%s"
833 813
834 #: rhodecode/lib/helpers.py:659
814 #: rhodecode/lib/helpers.py:664
835 815 msgid "[deleted] repository"
836 816 msgstr "[删除]版本库"
837 817
838 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
818 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
839 819 msgid "[created] repository"
840 820 msgstr "[创建]版本库"
841 821
842 #: rhodecode/lib/helpers.py:663
822 #: rhodecode/lib/helpers.py:668
843 823 msgid "[created] repository as fork"
844 824 msgstr "[创建]复刻版本库"
845 825
846 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
826 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
847 827 msgid "[forked] repository"
848 828 msgstr "[复刻]版本库"
849 829
850 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
830 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
851 831 msgid "[updated] repository"
852 832 msgstr "[更新]版本库"
853 833
854 #: rhodecode/lib/helpers.py:669
834 #: rhodecode/lib/helpers.py:674
855 835 msgid "[delete] repository"
856 836 msgstr "[删除]版本库"
857 837
858 #: rhodecode/lib/helpers.py:677
838 #: rhodecode/lib/helpers.py:682
859 839 msgid "[created] user"
860 840 msgstr "[创建]用户"
861 841
862 #: rhodecode/lib/helpers.py:679
842 #: rhodecode/lib/helpers.py:684
863 843 msgid "[updated] user"
864 844 msgstr "[更新]用户"
865 845
866 #: rhodecode/lib/helpers.py:681
846 #: rhodecode/lib/helpers.py:686
867 847 msgid "[created] users group"
868 848 msgstr "[创建]用户组"
869 849
870 #: rhodecode/lib/helpers.py:683
850 #: rhodecode/lib/helpers.py:688
871 851 msgid "[updated] users group"
872 852 msgstr "[更新]用户组"
873 853
874 #: rhodecode/lib/helpers.py:685
854 #: rhodecode/lib/helpers.py:690
875 855 msgid "[commented] on revision in repository"
876 856 msgstr "[评论]了版本库中的修订"
877 857
878 #: rhodecode/lib/helpers.py:687
858 #: rhodecode/lib/helpers.py:692
879 859 msgid "[commented] on pull request for"
880 860 msgstr "[评论]拉取请求"
881 861
882 #: rhodecode/lib/helpers.py:689
862 #: rhodecode/lib/helpers.py:694
883 863 msgid "[closed] pull request for"
884 864 msgstr "[关闭] 拉取请求"
885 865
886 #: rhodecode/lib/helpers.py:691
866 #: rhodecode/lib/helpers.py:696
887 867 msgid "[pushed] into"
888 868 msgstr "[推送]到"
889 869
890 #: rhodecode/lib/helpers.py:693
870 #: rhodecode/lib/helpers.py:698
891 871 msgid "[committed via RhodeCode] into repository"
892 872 msgstr "[通过RhodeCode提交]到版本库"
893 873
894 #: rhodecode/lib/helpers.py:695
874 #: rhodecode/lib/helpers.py:700
895 875 msgid "[pulled from remote] into repository"
896 876 msgstr "[远程拉取]到版本库"
897 877
898 #: rhodecode/lib/helpers.py:697
878 #: rhodecode/lib/helpers.py:702
899 879 msgid "[pulled] from"
900 880 msgstr "[拉取]自"
901 881
902 #: rhodecode/lib/helpers.py:699
882 #: rhodecode/lib/helpers.py:704
903 883 msgid "[started following] repository"
904 884 msgstr "[开始关注]版本库"
905 885
906 #: rhodecode/lib/helpers.py:701
886 #: rhodecode/lib/helpers.py:706
907 887 msgid "[stopped following] repository"
908 888 msgstr "[停止关注]版本库"
909 889
910 #: rhodecode/lib/helpers.py:877
890 #: rhodecode/lib/helpers.py:883
911 891 #, python-format
912 892 msgid " and %s more"
913 893 msgstr "还有%s个"
914 894
915 #: rhodecode/lib/helpers.py:881
895 #: rhodecode/lib/helpers.py:887
916 896 msgid "No Files"
917 897 msgstr "没有文件"
918 898
899 #: rhodecode/lib/helpers.py:1163
900 #, python-format
901 msgid ""
902 "%s repository is not mapped to db perhaps it was created or renamed from "
903 "the filesystem please run the application again in order to rescan "
904 "repositories"
905 msgstr "版本库%s没有映射到数据库,可能是从文件系统创建或者重命名,请重启RhodeCode以重新扫描版本库"
906
919 907 #: rhodecode/lib/utils2.py:403
920 908 #, python-format
921 909 msgid "%d year"
@@ -980,83 +968,83 b' msgstr "\xe5\x88\x9a\xe6\x89\x8d"'
980 968 msgid "password reset link"
981 969 msgstr "密码重置链接"
982 970
983 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
971 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
984 972 msgid "Repository no access"
985 973 msgstr "无版本库访问权限"
986 974
987 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
975 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
988 976 msgid "Repository read access"
989 977 msgstr "版本库读取权限"
990 978
991 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
979 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
992 980 msgid "Repository write access"
993 981 msgstr "版本库写入权限"
994 982
995 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
983 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
996 984 msgid "Repository admin access"
997 985 msgstr "版本库管理权限"
998 986
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
987 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1000 988 msgid "Repositories Group no access"
1001 989 msgstr "无版本库组访问权限"
1002 990
1003 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
991 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1004 992 msgid "Repositories Group read access"
1005 993 msgstr "版本库组读取权限"
1006 994
1007 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
995 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1008 996 msgid "Repositories Group write access"
1009 997 msgstr "版本库组写入"
1010 998
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1012 1000 msgid "Repositories Group admin access"
1013 1001 msgstr "版本库组管理权限"
1014 1002
1015 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1003 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1016 1004 msgid "RhodeCode Administrator"
1017 1005 msgstr "RhodeCode 管理员"
1018 1006
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1007 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1020 1008 msgid "Repository creation disabled"
1021 1009 msgstr "禁用创建版本库"
1022 1010
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1024 1012 msgid "Repository creation enabled"
1025 1013 msgstr "允许创建版本库"
1026 1014
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1015 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1028 1016 msgid "Repository forking disabled"
1029 1017 msgstr "禁用复刻版本库"
1030 1018
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1032 1020 msgid "Repository forking enabled"
1033 1021 msgstr "允许复刻版本库"
1034 1022
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1023 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1036 1024 msgid "Register disabled"
1037 1025 msgstr "禁用注册"
1038 1026
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1027 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1040 1028 msgid "Register new user with RhodeCode with manual activation"
1041 1029 msgstr "用手动激活注册新用户"
1042 1030
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1044 1032 msgid "Register new user with RhodeCode with auto activation"
1045 1033 msgstr "用自动激活注册新用户"
1046 1034
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1035 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1048 1036 msgid "Not Reviewed"
1049 1037 msgstr "未检视"
1050 1038
1051 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1052 1040 msgid "Approved"
1053 1041 msgstr "已批准"
1054 1042
1055 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1043 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1056 1044 msgid "Rejected"
1057 1045 msgstr "驳回"
1058 1046
1059 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1047 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1060 1048 msgid "Under Review"
1061 1049 msgstr "检视中"
1062 1050
@@ -1126,20 +1114,20 b' msgstr "%(user)s\xe6\x83\xb3\xe8\xa6\x81\xe4\xbd\xa0\xe6\xa3\x80\xe8\xa7\x86\xe6\x8b\x89\xe5\x8f\x96\xe8\xaf\xb7\xe6\xb1\x82#%(pr_id)s"'
1126 1114 msgid "latest tip"
1127 1115 msgstr "最新tip版本"
1128 1116
1129 #: rhodecode/model/user.py:230
1117 #: rhodecode/model/user.py:232
1130 1118 msgid "new user registration"
1131 1119 msgstr "[RhodeCode]新用户注册"
1132 1120
1133 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1134 #: rhodecode/model/user.py:301
1121 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1122 #: rhodecode/model/user.py:303
1135 1123 msgid "You can't Edit this user since it's crucial for entire application"
1136 1124 msgstr "由于是系统帐号,无法编辑该用户"
1137 1125
1138 #: rhodecode/model/user.py:325
1126 #: rhodecode/model/user.py:327
1139 1127 msgid "You can't remove this user since it's crucial for entire application"
1140 1128 msgstr "由于是系统帐号,无法删除该用户"
1141 1129
1142 #: rhodecode/model/user.py:331
1130 #: rhodecode/model/user.py:333
1143 1131 #, python-format
1144 1132 msgid ""
1145 1133 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1260,26 +1248,26 b' msgstr "\xe6\xb2\xa1\xe6\x9c\x89\xe5\x9c\xa8\xe8\xaf\xa5\xe7\x89\x88\xe6\x9c\xac\xe5\xba\x93\xe7\xbb\x84\xe4\xb8\xad\xe5\x88\x9b\xe5\xbb\xba\xe7\x89\x88\xe6\x9c\xac\xe5\xba\x93\xe7\x9a\x84\xe6\x9d\x83\xe9\x99\x90"'
1260 1248 msgid "This username or users group name is not valid"
1261 1249 msgstr "用户或用户组名称无效"
1262 1250
1263 #: rhodecode/model/validators.py:582
1251 #: rhodecode/model/validators.py:591
1264 1252 msgid "This is not a valid path"
1265 1253 msgstr "不是一个合法的路径"
1266 1254
1267 #: rhodecode/model/validators.py:597
1255 #: rhodecode/model/validators.py:606
1268 1256 msgid "This e-mail address is already taken"
1269 1257 msgstr "该邮件地址已被使用"
1270 1258
1271 #: rhodecode/model/validators.py:617
1259 #: rhodecode/model/validators.py:626
1272 1260 #, python-format
1273 1261 msgid "e-mail \"%(email)s\" does not exist."
1274 1262 msgstr "邮件地址\"%(email)s\"不存在"
1275 1263
1276 #: rhodecode/model/validators.py:654
1264 #: rhodecode/model/validators.py:663
1277 1265 msgid ""
1278 1266 "The LDAP Login attribute of the CN must be specified - this is the name "
1279 1267 "of the attribute that is equivalent to \"username\""
1280 1268 msgstr "LDAP 登陆属性的 CN 必须指定 - 这个名字作为用户名"
1281 1269
1282 #: rhodecode/model/validators.py:673
1270 #: rhodecode/model/validators.py:682
1283 1271 #, python-format
1284 1272 msgid "Revisions %(revs)s are already part of pull request or have set status"
1285 1273 msgstr "修订%(revs)s已经包含在拉取请求中或者或者已经设置状态"
@@ -1295,7 +1283,8 b' msgstr "\xe6\x8e\xa7\xe5\x88\xb6\xe9\x9d\xa2\xe6\x9d\xbf"'
1295 1283 #: rhodecode/templates/admin/users/users.html:9
1296 1284 #: rhodecode/templates/bookmarks/bookmarks.html:10
1297 1285 #: rhodecode/templates/branches/branches.html:9
1298 #: rhodecode/templates/journal/journal.html:40
1286 #: rhodecode/templates/journal/journal.html:9
1287 #: rhodecode/templates/journal/journal.html:48
1299 1288 #: rhodecode/templates/tags/tags.html:10
1300 1289 msgid "quick filter..."
1301 1290 msgstr "快速过滤..."
@@ -1361,8 +1350,8 b' msgstr "\xe7\x89\x88\xe6\x9c\xac\xe5\xba\x93\xe7\xbb\x84"'
1361 1350 #: rhodecode/templates/branches/branches.html:50
1362 1351 #: rhodecode/templates/branches/branches_data.html:6
1363 1352 #: rhodecode/templates/files/files_browser.html:47
1364 #: rhodecode/templates/journal/journal.html:62
1365 #: rhodecode/templates/journal/journal.html:168
1353 #: rhodecode/templates/journal/journal.html:70
1354 #: rhodecode/templates/journal/journal.html:196
1366 1355 #: rhodecode/templates/journal/journal_page_repos.html:7
1367 1356 #: rhodecode/templates/settings/repo_settings.html:31
1368 1357 #: rhodecode/templates/summary/summary.html:43
@@ -1379,7 +1368,7 b' msgstr "\xe6\x9c\x80\xe5\x90\x8e\xe4\xbf\xae\xe6\x94\xb9"'
1379 1368 #: rhodecode/templates/index_base.html:74
1380 1369 #: rhodecode/templates/index_base.html:179
1381 1370 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1382 #: rhodecode/templates/journal/journal.html:170
1371 #: rhodecode/templates/journal/journal.html:198
1383 1372 msgid "Tip"
1384 1373 msgstr "Tip"
1385 1374
@@ -1409,7 +1398,7 b' msgstr "Atom"'
1409 1398 #: rhodecode/templates/admin/users/users.html:107
1410 1399 #: rhodecode/templates/bookmarks/bookmarks.html:60
1411 1400 #: rhodecode/templates/branches/branches.html:76
1412 #: rhodecode/templates/journal/journal.html:193
1401 #: rhodecode/templates/journal/journal.html:221
1413 1402 #: rhodecode/templates/tags/tags.html:77
1414 1403 msgid "Click to sort ascending"
1415 1404 msgstr "点击以升序排列"
@@ -1422,7 +1411,7 b' msgstr "\xe7\x82\xb9\xe5\x87\xbb\xe4\xbb\xa5\xe5\x8d\x87\xe5\xba\x8f\xe6\x8e\x92\xe5\x88\x97"'
1422 1411 #: rhodecode/templates/admin/users/users.html:108
1423 1412 #: rhodecode/templates/bookmarks/bookmarks.html:61
1424 1413 #: rhodecode/templates/branches/branches.html:77
1425 #: rhodecode/templates/journal/journal.html:194
1414 #: rhodecode/templates/journal/journal.html:222
1426 1415 #: rhodecode/templates/tags/tags.html:78
1427 1416 msgid "Click to sort descending"
1428 1417 msgstr "点击以降序排列"
@@ -1439,7 +1428,7 b' msgstr "\xe6\x9c\x80\xe5\x90\x8e\xe4\xbf\xae\xe6\x94\xb9"'
1439 1428 #: rhodecode/templates/admin/users/users.html:109
1440 1429 #: rhodecode/templates/bookmarks/bookmarks.html:62
1441 1430 #: rhodecode/templates/branches/branches.html:78
1442 #: rhodecode/templates/journal/journal.html:195
1431 #: rhodecode/templates/journal/journal.html:223
1443 1432 #: rhodecode/templates/tags/tags.html:79
1444 1433 msgid "No records found."
1445 1434 msgstr "没有找到记录"
@@ -1451,7 +1440,7 b' msgstr "\xe6\xb2\xa1\xe6\x9c\x89\xe6\x89\xbe\xe5\x88\xb0\xe8\xae\xb0\xe5\xbd\x95"'
1451 1440 #: rhodecode/templates/admin/users/users.html:110
1452 1441 #: rhodecode/templates/bookmarks/bookmarks.html:63
1453 1442 #: rhodecode/templates/branches/branches.html:79
1454 #: rhodecode/templates/journal/journal.html:196
1443 #: rhodecode/templates/journal/journal.html:224
1455 1444 #: rhodecode/templates/tags/tags.html:80
1456 1445 msgid "Data error."
1457 1446 msgstr "数据错误"
@@ -1463,8 +1452,8 b' msgstr "\xe6\x95\xb0\xe6\x8d\xae\xe9\x94\x99\xe8\xaf\xaf"'
1463 1452 #: rhodecode/templates/admin/users/users.html:111
1464 1453 #: rhodecode/templates/bookmarks/bookmarks.html:64
1465 1454 #: rhodecode/templates/branches/branches.html:80
1466 #: rhodecode/templates/journal/journal.html:54
1467 #: rhodecode/templates/journal/journal.html:197
1455 #: rhodecode/templates/journal/journal.html:62
1456 #: rhodecode/templates/journal/journal.html:225
1468 1457 #: rhodecode/templates/tags/tags.html:81
1469 1458 msgid "Loading..."
1470 1459 msgstr "载入中..."
@@ -1612,10 +1601,28 b' msgid "There are no bookmarks yet"'
1612 1601 msgstr "无书签"
1613 1602
1614 1603 #: rhodecode/templates/admin/admin.html:5
1615 #: rhodecode/templates/admin/admin.html:9
1604 #: rhodecode/templates/admin/admin.html:13
1616 1605 msgid "Admin journal"
1617 1606 msgstr "系统日志"
1618 1607
1608 #: rhodecode/templates/admin/admin.html:10
1609 #, fuzzy
1610 msgid "journal filter..."
1611 msgstr "快速过滤..."
1612
1613 #: rhodecode/templates/admin/admin.html:12
1614 #: rhodecode/templates/journal/journal.html:11
1615 #, fuzzy
1616 msgid "filter"
1617 msgstr "文件"
1618
1619 #: rhodecode/templates/admin/admin.html:13
1620 #: rhodecode/templates/journal/journal.html:12
1621 #, python-format
1622 msgid "%s entry"
1623 msgid_plural "%s entries"
1624 msgstr[0] ""
1625
1619 1626 #: rhodecode/templates/admin/admin_log.html:6
1620 1627 #: rhodecode/templates/admin/repos/repos.html:74
1621 1628 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1644,7 +1651,7 b' msgstr "\xe6\x97\xa5\xe6\x9c\x9f"'
1644 1651 msgid "From IP"
1645 1652 msgstr "来源IP"
1646 1653
1647 #: rhodecode/templates/admin/admin_log.html:57
1654 #: rhodecode/templates/admin/admin_log.html:63
1648 1655 msgid "No actions yet"
1649 1656 msgstr "无操作"
1650 1657
@@ -1715,7 +1722,7 b' msgstr "\xe5\x90\xaf\xe7\x94\xa8\xe7\x89\x88\xe6\x9c\xac\xe5\xba\x93\xe7\x9a\x84\xe6\x8b\x89\xe5\x8f\x96\xe9\x94\x81\xe5\xae\x9a"'
1715 1722 #: rhodecode/templates/admin/users/user_edit.html:178
1716 1723 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1717 1724 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1718 #: rhodecode/templates/settings/repo_settings.html:93
1725 #: rhodecode/templates/settings/repo_settings.html:94
1719 1726 msgid "Save"
1720 1727 msgstr "保存"
1721 1728
@@ -2003,7 +2010,7 b' msgstr "\xe4\xbf\xae\xe6\x94\xb9\xe8\xbf\x99\xe4\xb8\xaa\xe7\x89\x88\xe6\x9c\xac\xe5\xba\x93\xe7\x9a\x84\xe6\x89\x80\xe6\x9c\x89\xe8\x80\x85"'
2003 2010 #: rhodecode/templates/files/files_add.html:82
2004 2011 #: rhodecode/templates/files/files_edit.html:68
2005 2012 #: rhodecode/templates/pullrequests/pullrequest.html:124
2006 #: rhodecode/templates/settings/repo_settings.html:94
2013 #: rhodecode/templates/settings/repo_settings.html:95
2007 2014 msgid "Reset"
2008 2015 msgstr "重置"
2009 2016
@@ -2144,19 +2151,22 b' msgid "Delete"'
2144 2151 msgstr "删除"
2145 2152
2146 2153 #: rhodecode/templates/admin/repos/repo_edit.html:278
2154 #: rhodecode/templates/settings/repo_settings.html:115
2147 2155 msgid "Remove this repository"
2148 2156 msgstr "删除版本库"
2149 2157
2150 2158 #: rhodecode/templates/admin/repos/repo_edit.html:278
2159 #: rhodecode/templates/settings/repo_settings.html:115
2151 2160 msgid "Confirm to delete this repository"
2152 2161 msgstr "确认删除版本库"
2153 2162
2154 2163 #: rhodecode/templates/admin/repos/repo_edit.html:282
2164 #: rhodecode/templates/settings/repo_settings.html:119
2165 #, fuzzy
2155 2166 msgid ""
2156 2167 "This repository will be renamed in a special way in order to be "
2157 "unaccesible for RhodeCode and VCS systems.\n"
2158 " If you need fully delete it from filesystem "
2159 "please do it manually"
2168 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2169 "from file system please do it manually"
2160 2170 msgstr ""
2161 2171 "这个版本库将以特殊的方式重命名这样RhodeCode和版本控制系统将不能访问它。\n"
2162 2172 " 如果需要从文件系统完全删除,你需要手动操作"
@@ -2190,7 +2200,7 b' msgstr "\xe6\x88\x90\xe5\x91\x98"'
2190 2200
2191 2201 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2192 2202 #: rhodecode/templates/data_table/_dt_elements.html:67
2193 #: rhodecode/templates/journal/journal.html:87
2203 #: rhodecode/templates/journal/journal.html:95
2194 2204 #: rhodecode/templates/summary/summary.html:85
2195 2205 msgid "private repository"
2196 2206 msgstr "私有版本库"
@@ -2694,7 +2704,7 b' msgid "My permissions"'
2694 2704 msgstr "我的权限"
2695 2705
2696 2706 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2697 #: rhodecode/templates/journal/journal.html:41
2707 #: rhodecode/templates/journal/journal.html:49
2698 2708 msgid "My repos"
2699 2709 msgstr "我的版本库"
2700 2710
@@ -2905,7 +2915,6 b' msgstr "\xe6\x94\xb6\xe4\xbb\xb6\xe7\xae\xb1"'
2905 2915 #: rhodecode/templates/base/base.html:324
2906 2916 #: rhodecode/templates/base/base.html:326
2907 2917 #: rhodecode/templates/journal/journal.html:4
2908 #: rhodecode/templates/journal/journal.html:21
2909 2918 #: rhodecode/templates/journal/public_journal.html:4
2910 2919 msgid "Journal"
2911 2920 msgstr "日志"
@@ -3038,7 +3047,7 b' msgid "add another comment"'
3038 3047 msgstr "添加新的评论"
3039 3048
3040 3049 #: rhodecode/templates/base/root.html:43
3041 #: rhodecode/templates/journal/journal.html:75
3050 #: rhodecode/templates/journal/journal.html:83
3042 3051 #: rhodecode/templates/summary/summary.html:57
3043 3052 msgid "Stop following this repository"
3044 3053 msgstr "停止关注该版本库"
@@ -3143,7 +3152,7 b' msgid "Affected number of files, click t'
3143 3152 msgstr "影响的文件数,点击显示详细信息"
3144 3153
3145 3154 #: rhodecode/templates/changelog/changelog.html:91
3146 #: rhodecode/templates/changeset/changeset.html:44
3155 #: rhodecode/templates/changeset/changeset.html:65
3147 3156 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3148 3157 #: rhodecode/templates/changeset/changeset_range.html:46
3149 3158 msgid "Changeset status"
@@ -3155,23 +3164,22 b' msgid "Click to open associated pull req'
3155 3164 msgstr "点击建立相关的拉取请求"
3156 3165
3157 3166 #: rhodecode/templates/changelog/changelog.html:104
3158 #: rhodecode/templates/changeset/changeset.html:85
3159 3167 msgid "Parent"
3160 3168 msgstr "父版本"
3161 3169
3162 3170 #: rhodecode/templates/changelog/changelog.html:110
3163 #: rhodecode/templates/changeset/changeset.html:91
3171 #: rhodecode/templates/changeset/changeset.html:42
3164 3172 msgid "No parents"
3165 3173 msgstr "无父版本"
3166 3174
3167 3175 #: rhodecode/templates/changelog/changelog.html:115
3168 #: rhodecode/templates/changeset/changeset.html:95
3176 #: rhodecode/templates/changeset/changeset.html:106
3169 3177 #: rhodecode/templates/changeset/changeset_range.html:79
3170 3178 msgid "merge"
3171 3179 msgstr "合并"
3172 3180
3173 3181 #: rhodecode/templates/changelog/changelog.html:118
3174 #: rhodecode/templates/changeset/changeset.html:98
3182 #: rhodecode/templates/changeset/changeset.html:109
3175 3183 #: rhodecode/templates/changeset/changeset_range.html:82
3176 3184 #: rhodecode/templates/files/files.html:29
3177 3185 #: rhodecode/templates/files/files_add.html:33
@@ -3186,7 +3194,7 b' msgid "bookmark"'
3186 3194 msgstr "书签"
3187 3195
3188 3196 #: rhodecode/templates/changelog/changelog.html:130
3189 #: rhodecode/templates/changeset/changeset.html:103
3197 #: rhodecode/templates/changeset/changeset.html:114
3190 3198 #: rhodecode/templates/changeset/changeset_range.html:94
3191 3199 msgid "tag"
3192 3200 msgstr "标签"
@@ -3196,26 +3204,26 b' msgid "There are no changes yet"'
3196 3204 msgstr "没有任何变更"
3197 3205
3198 3206 #: rhodecode/templates/changelog/changelog_details.html:4
3199 #: rhodecode/templates/changeset/changeset.html:73
3207 #: rhodecode/templates/changeset/changeset.html:94
3200 3208 msgid "removed"
3201 3209 msgstr "移除"
3202 3210
3203 3211 #: rhodecode/templates/changelog/changelog_details.html:5
3204 #: rhodecode/templates/changeset/changeset.html:74
3212 #: rhodecode/templates/changeset/changeset.html:95
3205 3213 msgid "changed"
3206 3214 msgstr "修改"
3207 3215
3208 3216 #: rhodecode/templates/changelog/changelog_details.html:6
3209 #: rhodecode/templates/changeset/changeset.html:75
3217 #: rhodecode/templates/changeset/changeset.html:96
3210 3218 msgid "added"
3211 3219 msgstr "添加"
3212 3220
3213 3221 #: rhodecode/templates/changelog/changelog_details.html:8
3214 3222 #: rhodecode/templates/changelog/changelog_details.html:9
3215 3223 #: rhodecode/templates/changelog/changelog_details.html:10
3216 #: rhodecode/templates/changeset/changeset.html:77
3217 #: rhodecode/templates/changeset/changeset.html:78
3218 #: rhodecode/templates/changeset/changeset.html:79
3224 #: rhodecode/templates/changeset/changeset.html:98
3225 #: rhodecode/templates/changeset/changeset.html:99
3226 #: rhodecode/templates/changeset/changeset.html:100
3219 3227 #, python-format
3220 3228 msgid "affected %s files"
3221 3229 msgstr "影响%s文件"
@@ -3229,35 +3237,40 b' msgstr "%s\xe4\xbf\xae\xe8\xae\xa2\xe9\x9b\x86"'
3229 3237 msgid "Changeset"
3230 3238 msgstr "修订集"
3231 3239
3232 #: rhodecode/templates/changeset/changeset.html:49
3240 #: rhodecode/templates/changeset/changeset.html:52
3241 #, fuzzy
3242 msgid "No children"
3243 msgstr "应用到成员"
3244
3245 #: rhodecode/templates/changeset/changeset.html:70
3233 3246 #: rhodecode/templates/changeset/diff_block.html:20
3234 3247 msgid "raw diff"
3235 3248 msgstr "原始diff"
3236 3249
3237 #: rhodecode/templates/changeset/changeset.html:50
3250 #: rhodecode/templates/changeset/changeset.html:71
3238 3251 msgid "patch diff"
3239 3252 msgstr "原始diff"
3240 3253
3241 #: rhodecode/templates/changeset/changeset.html:51
3254 #: rhodecode/templates/changeset/changeset.html:72
3242 3255 #: rhodecode/templates/changeset/diff_block.html:21
3243 3256 msgid "download diff"
3244 3257 msgstr "下载diff"
3245 3258
3246 #: rhodecode/templates/changeset/changeset.html:55
3259 #: rhodecode/templates/changeset/changeset.html:76
3247 3260 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3248 3261 #, python-format
3249 3262 msgid "%d comment"
3250 3263 msgid_plural "%d comments"
3251 3264 msgstr[0] "%d条评论"
3252 3265
3253 #: rhodecode/templates/changeset/changeset.html:55
3266 #: rhodecode/templates/changeset/changeset.html:76
3254 3267 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3255 3268 #, python-format
3256 3269 msgid "(%d inline)"
3257 3270 msgid_plural "(%d inline)"
3258 3271 msgstr[0] "(%d内嵌)"
3259 3272
3260 #: rhodecode/templates/changeset/changeset.html:111
3273 #: rhodecode/templates/changeset/changeset.html:122
3261 3274 #: rhodecode/templates/compare/compare_diff.html:44
3262 3275 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3263 3276 #, python-format
@@ -3265,7 +3278,7 b' msgid "%s file changed"'
3265 3278 msgid_plural "%s files changed"
3266 3279 msgstr[0] "修改%s个文件"
3267 3280
3268 #: rhodecode/templates/changeset/changeset.html:113
3281 #: rhodecode/templates/changeset/changeset.html:124
3269 3282 #: rhodecode/templates/compare/compare_diff.html:46
3270 3283 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3271 3284 #, python-format
@@ -3293,7 +3306,7 b' msgid "Use @username inside this text to'
3293 3306 msgstr "在文本中使用 @用户名 以发送通知到该RhodeCode用户"
3294 3307
3295 3308 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3296 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3309 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3297 3310 msgid "Comment"
3298 3311 msgstr "评论"
3299 3312
@@ -3314,15 +3327,15 b' msgstr "\xe7\x8e\xb0\xe5\x9c\xa8\xe7\x99\xbb\xe9\x99\x86"'
3314 3327 msgid "Leave a comment"
3315 3328 msgstr "发表评论"
3316 3329
3317 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3330 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3318 3331 msgid "Check this to change current status of code-review for this changeset"
3319 3332 msgstr "勾选以改变这个修订集的代码审查状态"
3320 3333
3321 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3334 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3322 3335 msgid "change status"
3323 3336 msgstr "改变状态"
3324 3337
3325 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3338 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3326 3339 msgid "Comment and close"
3327 3340 msgstr "评论并关闭"
3328 3341
@@ -3375,19 +3388,19 b' msgid "Fork"'
3375 3388 msgstr "复刻"
3376 3389
3377 3390 #: rhodecode/templates/data_table/_dt_elements.html:60
3378 #: rhodecode/templates/journal/journal.html:81
3391 #: rhodecode/templates/journal/journal.html:89
3379 3392 #: rhodecode/templates/summary/summary.html:77
3380 3393 msgid "Mercurial repository"
3381 3394 msgstr "Mercurial版本库"
3382 3395
3383 3396 #: rhodecode/templates/data_table/_dt_elements.html:62
3384 #: rhodecode/templates/journal/journal.html:83
3397 #: rhodecode/templates/journal/journal.html:91
3385 3398 #: rhodecode/templates/summary/summary.html:80
3386 3399 msgid "Git repository"
3387 3400 msgstr "Git版本库"
3388 3401
3389 3402 #: rhodecode/templates/data_table/_dt_elements.html:69
3390 #: rhodecode/templates/journal/journal.html:89
3403 #: rhodecode/templates/journal/journal.html:97
3391 3404 #: rhodecode/templates/summary/summary.html:87
3392 3405 msgid "public repository"
3393 3406 msgstr "公共版本库"
@@ -3763,50 +3776,50 b' msgstr "\xe5\xb7\xb2\xe6\x9c\x89\xe5\xa4\x8d\xe5\x88\xbb"'
3763 3776 msgid "There are no forks yet"
3764 3777 msgstr "无复刻"
3765 3778
3766 #: rhodecode/templates/journal/journal.html:13
3779 #: rhodecode/templates/journal/journal.html:21
3767 3780 msgid "ATOM journal feed"
3768 3781 msgstr "订阅日志ATOM"
3769 3782
3770 #: rhodecode/templates/journal/journal.html:14
3783 #: rhodecode/templates/journal/journal.html:22
3771 3784 msgid "RSS journal feed"
3772 3785 msgstr "订阅日志RSS"
3773 3786
3774 #: rhodecode/templates/journal/journal.html:24
3787 #: rhodecode/templates/journal/journal.html:32
3775 3788 #: rhodecode/templates/pullrequests/pullrequest.html:55
3776 3789 msgid "Refresh"
3777 3790 msgstr "刷新"
3778 3791
3779 #: rhodecode/templates/journal/journal.html:27
3792 #: rhodecode/templates/journal/journal.html:35
3780 3793 #: rhodecode/templates/journal/public_journal.html:24
3781 3794 msgid "RSS feed"
3782 3795 msgstr "订阅RSS"
3783 3796
3784 #: rhodecode/templates/journal/journal.html:30
3797 #: rhodecode/templates/journal/journal.html:38
3785 3798 #: rhodecode/templates/journal/public_journal.html:27
3786 3799 msgid "ATOM feed"
3787 3800 msgstr "订阅ATOM"
3788 3801
3789 #: rhodecode/templates/journal/journal.html:41
3802 #: rhodecode/templates/journal/journal.html:49
3790 3803 msgid "Watched"
3791 3804 msgstr "关注的"
3792 3805
3793 #: rhodecode/templates/journal/journal.html:46
3806 #: rhodecode/templates/journal/journal.html:54
3794 3807 msgid "ADD"
3795 3808 msgstr "新建版本库"
3796 3809
3797 #: rhodecode/templates/journal/journal.html:69
3810 #: rhodecode/templates/journal/journal.html:77
3798 3811 msgid "following user"
3799 3812 msgstr "关注用户"
3800 3813
3801 #: rhodecode/templates/journal/journal.html:69
3814 #: rhodecode/templates/journal/journal.html:77
3802 3815 msgid "user"
3803 3816 msgstr "用户"
3804 3817
3805 #: rhodecode/templates/journal/journal.html:102
3818 #: rhodecode/templates/journal/journal.html:110
3806 3819 msgid "You are not following any users or repositories"
3807 3820 msgstr "未关注任何用户或版本库"
3808 3821
3809 #: rhodecode/templates/journal/journal_data.html:51
3822 #: rhodecode/templates/journal/journal_data.html:55
3810 3823 msgid "No entries yet"
3811 3824 msgstr "没有条目"
3812 3825
@@ -3904,6 +3917,11 b' msgstr "\xe5\x88\x9b\xe5\xbb\xba\xe4\xba\x8e"'
3904 3917 msgid "Compare view"
3905 3918 msgstr "比较显示"
3906 3919
3920 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
3921 #, fuzzy
3922 msgid "reviewer"
3923 msgstr "%d个检视者"
3924
3907 3925 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
3908 3926 msgid "all pull requests"
3909 3927 msgstr "所有拉取请求"
@@ -3968,6 +3986,16 b' msgstr "\xe6\x9d\x83\xe9\x99\x90\xe4\xb8\x8d\xe8\xb6\xb3"'
3968 3986 msgid "%s Settings"
3969 3987 msgstr "%s设置"
3970 3988
3989 #: rhodecode/templates/settings/repo_settings.html:102
3990 #, fuzzy
3991 msgid "Delete repository"
3992 msgstr "[删除]版本库"
3993
3994 #: rhodecode/templates/settings/repo_settings.html:109
3995 #, fuzzy
3996 msgid "Remove repo"
3997 msgstr "删除"
3998
3971 3999 #: rhodecode/templates/shortlog/shortlog.html:5
3972 4000 #, python-format
3973 4001 msgid "%s Shortlog"
@@ -4169,3 +4197,19 b' msgstr "%s\xe6\xa0\x87\xe7\xad\xbe"'
4169 4197 msgid "Compare tags"
4170 4198 msgstr "比较标签"
4171 4199
4200 #~ msgid ""
4201 #~ "%s repository is not mapped to db"
4202 #~ " perhaps it was created or renamed"
4203 #~ " from the file system please run "
4204 #~ "the application again in order to "
4205 #~ "rescan repositories"
4206 #~ msgstr " 版本库%s没有映射到数据库,可能是从文件系统创建或者重命名,请重启RhodeCode以重新扫描版本库"
4207
4208 #~ msgid ""
4209 #~ "%s repository is not mapped to db"
4210 #~ " perhaps it was moved or renamed "
4211 #~ "from the filesystem please run the "
4212 #~ "application again in order to rescan "
4213 #~ "repositories"
4214 #~ msgstr "版本库%s没有映射到数据库,可能是从文件系统创建或者重命名,请重启RhodeCode以重新扫描版本库"
4215
@@ -7,7 +7,7 b' msgid ""'
7 7 msgstr ""
8 8 "Project-Id-Version: RhodeCode 1.2.0\n"
9 9 "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
10 "POT-Creation-Date: 2012-12-03 03:21+0100\n"
10 "POT-Creation-Date: 2012-12-14 04:19+0100\n"
11 11 "PO-Revision-Date: 2012-05-09 22:23+0800\n"
12 12 "Last-Translator: Nansen <nansenat16@gmail.com>\n"
13 13 "Language-Team: zh_TW <LL@li.org>\n"
@@ -22,33 +22,33 b' msgstr ""'
22 22 msgid "All Branches"
23 23 msgstr "分支"
24 24
25 #: rhodecode/controllers/changeset.py:84
25 #: rhodecode/controllers/changeset.py:83
26 26 msgid "show white space"
27 27 msgstr ""
28 28
29 #: rhodecode/controllers/changeset.py:91 rhodecode/controllers/changeset.py:98
29 #: rhodecode/controllers/changeset.py:90 rhodecode/controllers/changeset.py:97
30 30 msgid "ignore white space"
31 31 msgstr ""
32 32
33 #: rhodecode/controllers/changeset.py:164
33 #: rhodecode/controllers/changeset.py:163
34 34 #, fuzzy, python-format
35 35 msgid "%s line context"
36 36 msgstr "文件內容"
37 37
38 #: rhodecode/controllers/changeset.py:315
39 #: rhodecode/controllers/pullrequests.py:411
38 #: rhodecode/controllers/changeset.py:314
39 #: rhodecode/controllers/pullrequests.py:417
40 40 #, fuzzy, python-format
41 41 msgid "Status change -> %s"
42 42 msgstr "最後修改"
43 43
44 #: rhodecode/controllers/changeset.py:346
44 #: rhodecode/controllers/changeset.py:345
45 45 msgid ""
46 46 "Changing status on a changeset associated witha closed pull request is "
47 47 "not allowed"
48 48 msgstr ""
49 49
50 50 #: rhodecode/controllers/compare.py:75
51 #: rhodecode/controllers/pullrequests.py:117
51 #: rhodecode/controllers/pullrequests.py:121
52 52 #: rhodecode/controllers/shortlog.py:100
53 53 #, fuzzy
54 54 msgid "There are no changesets yet"
@@ -91,8 +91,8 b' msgid "%s %s feed"'
91 91 msgstr ""
92 92
93 93 #: rhodecode/controllers/feed.py:86
94 #: rhodecode/templates/changeset/changeset.html:126
95 #: rhodecode/templates/changeset/changeset.html:138
94 #: rhodecode/templates/changeset/changeset.html:137
95 #: rhodecode/templates/changeset/changeset.html:149
96 96 #: rhodecode/templates/compare/compare_diff.html:62
97 97 #: rhodecode/templates/compare/compare_diff.html:73
98 98 #: rhodecode/templates/pullrequests/pullrequest_show.html:94
@@ -176,49 +176,34 b' msgstr "\xe6\x9c\xaa\xe7\x9f\xa5\xe7\x9a\x84\xe5\xad\x98\xe6\xaa\x94\xe9\xa1\x9e\xe5\x9e\x8b"'
176 176 msgid "Changesets"
177 177 msgstr "變更"
178 178
179 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:76
179 #: rhodecode/controllers/files.py:565 rhodecode/controllers/pullrequests.py:74
180 180 #: rhodecode/controllers/summary.py:236 rhodecode/model/scm.py:550
181 181 msgid "Branches"
182 182 msgstr "分支"
183 183
184 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:80
184 #: rhodecode/controllers/files.py:566 rhodecode/controllers/pullrequests.py:78
185 185 #: rhodecode/controllers/summary.py:237 rhodecode/model/scm.py:561
186 186 msgid "Tags"
187 187 msgstr "標籤"
188 188
189 #: rhodecode/controllers/forks.py:74 rhodecode/controllers/admin/repos.py:92
190 #, python-format
191 msgid ""
192 "%s repository is not mapped to db perhaps it was created or renamed from "
193 "the filesystem please run the application again in order to rescan "
194 "repositories"
195 msgstr ""
196
197 #: rhodecode/controllers/forks.py:134 rhodecode/controllers/settings.py:73
198 #, python-format
199 msgid ""
200 "%s repository is not mapped to db perhaps it was created or renamed from "
201 "the file system please run the application again in order to rescan "
202 "repositories"
203 msgstr ""
204
205 #: rhodecode/controllers/forks.py:168
189 #: rhodecode/controllers/forks.py:158
206 190 #, python-format
207 191 msgid "forked %s repository as %s"
208 192 msgstr "forked %s 版本庫為 %s"
209 193
210 #: rhodecode/controllers/forks.py:182
194 #: rhodecode/controllers/forks.py:172
211 195 #, python-format
212 196 msgid "An error occurred during repository forking %s"
213 197 msgstr ""
214 198
215 #: rhodecode/controllers/journal.py:206 rhodecode/controllers/journal.py:243
199 #: rhodecode/controllers/journal.py:218 rhodecode/controllers/journal.py:261
216 200 #, fuzzy
217 201 msgid "public journal"
218 202 msgstr "公開日誌"
219 203
220 #: rhodecode/controllers/journal.py:210 rhodecode/controllers/journal.py:247
204 #: rhodecode/controllers/journal.py:222 rhodecode/controllers/journal.py:265
221 205 #: rhodecode/templates/base/base.html:232
206 #: rhodecode/templates/journal/journal.html:12
222 207 msgid "journal"
223 208 msgstr "日誌"
224 209
@@ -236,33 +221,37 b' msgid ""'
236 221 "email"
237 222 msgstr "您的密碼重設動作已完成,新的密碼已寄至您的信箱"
238 223
239 #: rhodecode/controllers/pullrequests.py:78 rhodecode/model/scm.py:556
224 #: rhodecode/controllers/pullrequests.py:76 rhodecode/model/scm.py:556
240 225 msgid "Bookmarks"
241 226 msgstr ""
242 227
243 #: rhodecode/controllers/pullrequests.py:186
228 #: rhodecode/controllers/pullrequests.py:190
244 229 msgid "Pull request requires a title with min. 3 chars"
245 230 msgstr ""
246 231
247 #: rhodecode/controllers/pullrequests.py:188
232 #: rhodecode/controllers/pullrequests.py:192
248 233 #, fuzzy
249 234 msgid "error during creation of pull request"
250 235 msgstr "建立使用者 %s"
251 236
252 #: rhodecode/controllers/pullrequests.py:220
237 #: rhodecode/controllers/pullrequests.py:224
253 238 #, fuzzy
254 239 msgid "Successfully opened new pull request"
255 240 msgstr "成功刪除使用者"
256 241
257 #: rhodecode/controllers/pullrequests.py:223
242 #: rhodecode/controllers/pullrequests.py:227
258 243 msgid "Error occurred during sending pull request"
259 244 msgstr ""
260 245
261 #: rhodecode/controllers/pullrequests.py:256
246 #: rhodecode/controllers/pullrequests.py:260
262 247 #, fuzzy
263 248 msgid "Successfully deleted pull request"
264 249 msgstr "成功刪除使用者"
265 250
251 #: rhodecode/controllers/pullrequests.py:452
252 msgid "Closing pull request on other statuses than rejected or approved forbidden"
253 msgstr ""
254
266 255 #: rhodecode/controllers/search.py:134
267 256 msgid "Invalid search query. Try quoting it."
268 257 msgstr "無效的查詢。請使用跳脫字元"
@@ -275,57 +264,48 b' msgstr "\xe6\xb2\x92\xe6\x9c\x89\xe4\xbb\xbb\xe4\xbd\x95\xe7\xb4\xa2\xe5\xbc\x95\xe5\x8f\xaf\xe4\xbb\xa5\xe6\x90\x9c\xe5\xb0\x8b\xe3\x80\x82\xe8\xab\x8b\xe5\x9f\xb7\xe8\xa1\x8c whoosh \xe5\xbb\xba\xe7\xab\x8b\xe7\xb4\xa2\xe5\xbc\x95"'
275 264 msgid "An error occurred during this search operation"
276 265 msgstr ""
277 266
278 #: rhodecode/controllers/settings.py:108
279 #: rhodecode/controllers/admin/repos.py:268
267 #: rhodecode/controllers/settings.py:119
268 #: rhodecode/controllers/admin/repos.py:272
280 269 #, python-format
281 270 msgid "Repository %s updated successfully"
282 271 msgstr "版本庫 %s 更新完成"
283 272
284 #: rhodecode/controllers/settings.py:126
285 #: rhodecode/controllers/admin/repos.py:286
273 #: rhodecode/controllers/settings.py:137
274 #: rhodecode/controllers/admin/repos.py:290
286 275 #, python-format
287 276 msgid "error occurred during update of repository %s"
288 277 msgstr ""
289 278
290 #: rhodecode/controllers/settings.py:144
291 #: rhodecode/controllers/admin/repos.py:304
292 #, python-format
293 msgid ""
294 "%s repository is not mapped to db perhaps it was moved or renamed from "
295 "the filesystem please run the application again in order to rescan "
296 "repositories"
297 msgstr ""
298
299 #: rhodecode/controllers/settings.py:156
300 #: rhodecode/controllers/admin/repos.py:316
279 #: rhodecode/controllers/settings.py:162
280 #: rhodecode/controllers/admin/repos.py:315
301 281 #, python-format
302 282 msgid "deleted repository %s"
303 283 msgstr "刪除版本庫 %s"
304 284
305 #: rhodecode/controllers/settings.py:160
306 #: rhodecode/controllers/admin/repos.py:326
307 #: rhodecode/controllers/admin/repos.py:332
285 #: rhodecode/controllers/settings.py:166
286 #: rhodecode/controllers/admin/repos.py:325
287 #: rhodecode/controllers/admin/repos.py:331
308 288 #, python-format
309 289 msgid "An error occurred during deletion of %s"
310 290 msgstr ""
311 291
312 #: rhodecode/controllers/settings.py:179
292 #: rhodecode/controllers/settings.py:185
313 293 #, fuzzy
314 294 msgid "unlocked"
315 295 msgstr "解鎖"
316 296
317 #: rhodecode/controllers/settings.py:182
297 #: rhodecode/controllers/settings.py:188
318 298 #, fuzzy
319 299 msgid "locked"
320 300 msgstr "解鎖"
321 301
322 #: rhodecode/controllers/settings.py:184
302 #: rhodecode/controllers/settings.py:190
323 303 #, fuzzy, python-format
324 304 msgid "Repository has been %s"
325 305 msgstr "forked %s 版本庫為 %s"
326 306
327 #: rhodecode/controllers/settings.py:188
328 #: rhodecode/controllers/admin/repos.py:424
307 #: rhodecode/controllers/settings.py:194
308 #: rhodecode/controllers/admin/repos.py:423
329 309 msgid "An error occurred during unlocking"
330 310 msgstr ""
331 311
@@ -475,76 +455,76 b' msgstr "\xe9\xa0\x90\xe8\xa8\xad\xe6\xac\x8a\xe9\x99\x90\xe6\x9b\xb4\xe6\x96\xb0\xe5\xae\x8c\xe6\x88\x90"'
475 455 msgid "error occurred during update of permissions"
476 456 msgstr ""
477 457
478 #: rhodecode/controllers/admin/repos.py:125
458 #: rhodecode/controllers/admin/repos.py:121
479 459 msgid "--REMOVE FORK--"
480 460 msgstr ""
481 461
482 #: rhodecode/controllers/admin/repos.py:194
462 #: rhodecode/controllers/admin/repos.py:190
483 463 #, python-format
484 464 msgid "created repository %s from %s"
485 465 msgstr "建立版本庫 %s 到 %s"
486 466
487 #: rhodecode/controllers/admin/repos.py:198
467 #: rhodecode/controllers/admin/repos.py:194
488 468 #, python-format
489 469 msgid "created repository %s"
490 470 msgstr "建立版本庫 %s"
491 471
492 #: rhodecode/controllers/admin/repos.py:229
472 #: rhodecode/controllers/admin/repos.py:225
493 473 #, python-format
494 474 msgid "error occurred during creation of repository %s"
495 475 msgstr ""
496 476
497 #: rhodecode/controllers/admin/repos.py:321
477 #: rhodecode/controllers/admin/repos.py:320
498 478 #, python-format
499 479 msgid "Cannot delete %s it still contains attached forks"
500 480 msgstr ""
501 481
502 #: rhodecode/controllers/admin/repos.py:350
482 #: rhodecode/controllers/admin/repos.py:349
503 483 msgid "An error occurred during deletion of repository user"
504 484 msgstr ""
505 485
506 #: rhodecode/controllers/admin/repos.py:369
486 #: rhodecode/controllers/admin/repos.py:368
507 487 msgid "An error occurred during deletion of repository users groups"
508 488 msgstr ""
509 489
510 #: rhodecode/controllers/admin/repos.py:387
490 #: rhodecode/controllers/admin/repos.py:386
511 491 msgid "An error occurred during deletion of repository stats"
512 492 msgstr ""
513 493
514 #: rhodecode/controllers/admin/repos.py:404
494 #: rhodecode/controllers/admin/repos.py:403
515 495 msgid "An error occurred during cache invalidation"
516 496 msgstr ""
517 497
518 #: rhodecode/controllers/admin/repos.py:444
498 #: rhodecode/controllers/admin/repos.py:443
519 499 msgid "Updated repository visibility in public journal"
520 500 msgstr ""
521 501
522 #: rhodecode/controllers/admin/repos.py:448
502 #: rhodecode/controllers/admin/repos.py:447
523 503 msgid "An error occurred during setting this repository in public journal"
524 504 msgstr ""
525 505
526 #: rhodecode/controllers/admin/repos.py:453 rhodecode/model/validators.py:300
506 #: rhodecode/controllers/admin/repos.py:452 rhodecode/model/validators.py:300
527 507 msgid "Token mismatch"
528 508 msgstr ""
529 509
530 #: rhodecode/controllers/admin/repos.py:466
510 #: rhodecode/controllers/admin/repos.py:465
531 511 msgid "Pulled from remote location"
532 512 msgstr ""
533 513
534 #: rhodecode/controllers/admin/repos.py:468
514 #: rhodecode/controllers/admin/repos.py:467
535 515 msgid "An error occurred during pull from remote location"
536 516 msgstr ""
537 517
538 #: rhodecode/controllers/admin/repos.py:484
518 #: rhodecode/controllers/admin/repos.py:483
539 519 msgid "Nothing"
540 520 msgstr ""
541 521
542 #: rhodecode/controllers/admin/repos.py:486
522 #: rhodecode/controllers/admin/repos.py:485
543 523 #, fuzzy, python-format
544 524 msgid "Marked repo %s as fork of %s"
545 525 msgstr "建立版本庫 %s 到 %s"
546 526
547 #: rhodecode/controllers/admin/repos.py:490
527 #: rhodecode/controllers/admin/repos.py:489
548 528 msgid "An error occurred during this operation"
549 529 msgstr ""
550 530
@@ -785,159 +765,167 b' msgstr ""'
785 765 msgid "No changes detected"
786 766 msgstr "尚未有任何變更"
787 767
788 #: rhodecode/lib/helpers.py:373
768 #: rhodecode/lib/helpers.py:374
789 769 #, python-format
790 770 msgid "%a, %d %b %Y %H:%M:%S"
791 771 msgstr ""
792 772
793 #: rhodecode/lib/helpers.py:485
773 #: rhodecode/lib/helpers.py:486
794 774 msgid "True"
795 775 msgstr "真"
796 776
797 #: rhodecode/lib/helpers.py:489
777 #: rhodecode/lib/helpers.py:490
798 778 msgid "False"
799 779 msgstr "假"
800 780
801 #: rhodecode/lib/helpers.py:529
781 #: rhodecode/lib/helpers.py:530
802 782 #, fuzzy, python-format
803 783 msgid "Deleted branch: %s"
804 784 msgstr "刪除版本庫 %s"
805 785
806 #: rhodecode/lib/helpers.py:532
786 #: rhodecode/lib/helpers.py:533
807 787 #, fuzzy, python-format
808 788 msgid "Created tag: %s"
809 789 msgstr "建立使用者 %s"
810 790
811 #: rhodecode/lib/helpers.py:545
791 #: rhodecode/lib/helpers.py:546
812 792 #, fuzzy
813 793 msgid "Changeset not found"
814 794 msgstr "修改"
815 795
816 #: rhodecode/lib/helpers.py:588
796 #: rhodecode/lib/helpers.py:589
817 797 #, python-format
818 798 msgid "Show all combined changesets %s->%s"
819 799 msgstr ""
820 800
821 #: rhodecode/lib/helpers.py:594
801 #: rhodecode/lib/helpers.py:595
822 802 msgid "compare view"
823 803 msgstr ""
824 804
825 #: rhodecode/lib/helpers.py:614
805 #: rhodecode/lib/helpers.py:615
826 806 msgid "and"
827 807 msgstr "和"
828 808
829 #: rhodecode/lib/helpers.py:615
809 #: rhodecode/lib/helpers.py:616
830 810 #, python-format
831 811 msgid "%s more"
832 812 msgstr ""
833 813
834 #: rhodecode/lib/helpers.py:616 rhodecode/templates/changelog/changelog.html:51
814 #: rhodecode/lib/helpers.py:617 rhodecode/templates/changelog/changelog.html:51
835 815 msgid "revisions"
836 816 msgstr "修訂"
837 817
838 #: rhodecode/lib/helpers.py:640
818 #: rhodecode/lib/helpers.py:641
839 819 #, fuzzy, python-format
840 820 msgid "fork name %s"
841 821 msgstr "fork 名稱"
842 822
843 #: rhodecode/lib/helpers.py:653
823 #: rhodecode/lib/helpers.py:658
844 824 #: rhodecode/templates/pullrequests/pullrequest_show.html:4
845 825 #: rhodecode/templates/pullrequests/pullrequest_show.html:12
846 826 #, python-format
847 827 msgid "Pull request #%s"
848 828 msgstr ""
849 829
850 #: rhodecode/lib/helpers.py:659
830 #: rhodecode/lib/helpers.py:664
851 831 msgid "[deleted] repository"
852 832 msgstr ""
853 833
854 #: rhodecode/lib/helpers.py:661 rhodecode/lib/helpers.py:671
834 #: rhodecode/lib/helpers.py:666 rhodecode/lib/helpers.py:676
855 835 msgid "[created] repository"
856 836 msgstr ""
857 837
858 #: rhodecode/lib/helpers.py:663
838 #: rhodecode/lib/helpers.py:668
859 839 #, fuzzy
860 840 msgid "[created] repository as fork"
861 841 msgstr "建立版本庫 %s"
862 842
863 #: rhodecode/lib/helpers.py:665 rhodecode/lib/helpers.py:673
843 #: rhodecode/lib/helpers.py:670 rhodecode/lib/helpers.py:678
864 844 msgid "[forked] repository"
865 845 msgstr ""
866 846
867 #: rhodecode/lib/helpers.py:667 rhodecode/lib/helpers.py:675
847 #: rhodecode/lib/helpers.py:672 rhodecode/lib/helpers.py:680
868 848 msgid "[updated] repository"
869 849 msgstr ""
870 850
871 #: rhodecode/lib/helpers.py:669
851 #: rhodecode/lib/helpers.py:674
872 852 msgid "[delete] repository"
873 853 msgstr ""
874 854
875 #: rhodecode/lib/helpers.py:677
855 #: rhodecode/lib/helpers.py:682
876 856 #, fuzzy
877 857 msgid "[created] user"
878 858 msgstr "建立使用者 %s"
879 859
880 #: rhodecode/lib/helpers.py:679
860 #: rhodecode/lib/helpers.py:684
881 861 #, fuzzy
882 862 msgid "[updated] user"
883 863 msgstr "更新使用者群組 %s"
884 864
885 #: rhodecode/lib/helpers.py:681
865 #: rhodecode/lib/helpers.py:686
886 866 #, fuzzy
887 867 msgid "[created] users group"
888 868 msgstr "建立使用者群組 %s"
889 869
890 #: rhodecode/lib/helpers.py:683
870 #: rhodecode/lib/helpers.py:688
891 871 #, fuzzy
892 872 msgid "[updated] users group"
893 873 msgstr "更新使用者群組 %s"
894 874
895 #: rhodecode/lib/helpers.py:685
875 #: rhodecode/lib/helpers.py:690
896 876 msgid "[commented] on revision in repository"
897 877 msgstr ""
898 878
899 #: rhodecode/lib/helpers.py:687
879 #: rhodecode/lib/helpers.py:692
900 880 #, fuzzy
901 881 msgid "[commented] on pull request for"
902 882 msgstr "建立使用者 %s"
903 883
904 #: rhodecode/lib/helpers.py:689
884 #: rhodecode/lib/helpers.py:694
905 885 msgid "[closed] pull request for"
906 886 msgstr ""
907 887
908 #: rhodecode/lib/helpers.py:691
888 #: rhodecode/lib/helpers.py:696
909 889 msgid "[pushed] into"
910 890 msgstr ""
911 891
912 #: rhodecode/lib/helpers.py:693
892 #: rhodecode/lib/helpers.py:698
913 893 msgid "[committed via RhodeCode] into repository"
914 894 msgstr ""
915 895
916 #: rhodecode/lib/helpers.py:695
896 #: rhodecode/lib/helpers.py:700
917 897 msgid "[pulled from remote] into repository"
918 898 msgstr ""
919 899
920 #: rhodecode/lib/helpers.py:697
900 #: rhodecode/lib/helpers.py:702
921 901 msgid "[pulled] from"
922 902 msgstr ""
923 903
924 #: rhodecode/lib/helpers.py:699
904 #: rhodecode/lib/helpers.py:704
925 905 msgid "[started following] repository"
926 906 msgstr ""
927 907
928 #: rhodecode/lib/helpers.py:701
908 #: rhodecode/lib/helpers.py:706
929 909 msgid "[stopped following] repository"
930 910 msgstr ""
931 911
932 #: rhodecode/lib/helpers.py:877
912 #: rhodecode/lib/helpers.py:883
933 913 #, python-format
934 914 msgid " and %s more"
935 915 msgstr ""
936 916
937 #: rhodecode/lib/helpers.py:881
917 #: rhodecode/lib/helpers.py:887
938 918 msgid "No Files"
939 919 msgstr "沒有檔案"
940 920
921 #: rhodecode/lib/helpers.py:1163
922 #, python-format
923 msgid ""
924 "%s repository is not mapped to db perhaps it was created or renamed from "
925 "the filesystem please run the application again in order to rescan "
926 "repositories"
927 msgstr ""
928
941 929 #: rhodecode/lib/utils2.py:403
942 930 #, fuzzy, python-format
943 931 msgid "%d year"
@@ -1003,98 +991,98 b' msgstr "\xe7\x8f\xbe\xe5\x9c\xa8"'
1003 991 msgid "password reset link"
1004 992 msgstr "您的密碼重設連結已寄出"
1005 993
1006 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1180
994 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1163 rhodecode/model/db.py:1183
1007 995 #, fuzzy
1008 996 msgid "Repository no access"
1009 997 msgstr "個版本庫"
1010 998
1011 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1181
999 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1164 rhodecode/model/db.py:1184
1012 1000 #, fuzzy
1013 1001 msgid "Repository read access"
1014 1002 msgstr "這個版本庫已經存在"
1015 1003
1016 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1182
1004 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1165 rhodecode/model/db.py:1185
1017 1005 #, fuzzy
1018 1006 msgid "Repository write access"
1019 1007 msgstr "個版本庫"
1020 1008
1021 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1183
1009 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1166 rhodecode/model/db.py:1186
1022 1010 #, fuzzy
1023 1011 msgid "Repository admin access"
1024 1012 msgstr "個版本庫"
1025 1013
1026 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1185
1014 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1168 rhodecode/model/db.py:1188
1027 1015 #, fuzzy
1028 1016 msgid "Repositories Group no access"
1029 1017 msgstr "版本庫群組"
1030 1018
1031 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1186
1019 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1169 rhodecode/model/db.py:1189
1032 1020 #, fuzzy
1033 1021 msgid "Repositories Group read access"
1034 1022 msgstr "版本庫群組"
1035 1023
1036 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1187
1024 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1170 rhodecode/model/db.py:1190
1037 1025 #, fuzzy
1038 1026 msgid "Repositories Group write access"
1039 1027 msgstr "版本庫群組"
1040 1028
1041 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1188
1029 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1171 rhodecode/model/db.py:1191
1042 1030 #, fuzzy
1043 1031 msgid "Repositories Group admin access"
1044 1032 msgstr "版本庫群組"
1045 1033
1046 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1190
1034 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1173 rhodecode/model/db.py:1193
1047 1035 #, fuzzy
1048 1036 msgid "RhodeCode Administrator"
1049 1037 msgstr "使用者管理員"
1050 1038
1051 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1191
1039 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1174 rhodecode/model/db.py:1194
1052 1040 #, fuzzy
1053 1041 msgid "Repository creation disabled"
1054 1042 msgstr "版本庫建立"
1055 1043
1056 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1192
1044 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1175 rhodecode/model/db.py:1195
1057 1045 #, fuzzy
1058 1046 msgid "Repository creation enabled"
1059 1047 msgstr "版本庫建立"
1060 1048
1061 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1193
1049 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1176 rhodecode/model/db.py:1196
1062 1050 #, fuzzy
1063 1051 msgid "Repository forking disabled"
1064 1052 msgstr "版本庫建立"
1065 1053
1066 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1194
1054 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1177 rhodecode/model/db.py:1197
1067 1055 #, fuzzy
1068 1056 msgid "Repository forking enabled"
1069 1057 msgstr "版本庫建立"
1070 1058
1071 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1195
1059 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1178 rhodecode/model/db.py:1198
1072 1060 #, fuzzy
1073 1061 msgid "Register disabled"
1074 1062 msgstr "停用"
1075 1063
1076 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1196
1064 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1179 rhodecode/model/db.py:1199
1077 1065 msgid "Register new user with RhodeCode with manual activation"
1078 1066 msgstr ""
1079 1067
1080 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1199
1068 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1182 rhodecode/model/db.py:1202
1081 1069 msgid "Register new user with RhodeCode with auto activation"
1082 1070 msgstr ""
1083 1071
1084 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1640
1072 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1623 rhodecode/model/db.py:1643
1085 1073 msgid "Not Reviewed"
1086 1074 msgstr ""
1087 1075
1088 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1641
1076 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1624 rhodecode/model/db.py:1644
1089 1077 #, fuzzy
1090 1078 msgid "Approved"
1091 1079 msgstr "移除"
1092 1080
1093 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1642
1081 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1625 rhodecode/model/db.py:1645
1094 1082 msgid "Rejected"
1095 1083 msgstr ""
1096 1084
1097 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1643
1085 #: rhodecode/lib/dbmigrate/schema/db_1_4_0.py:1626 rhodecode/model/db.py:1646
1098 1086 msgid "Under Review"
1099 1087 msgstr ""
1100 1088
@@ -1165,21 +1153,21 b' msgstr ""'
1165 1153 msgid "latest tip"
1166 1154 msgstr "最後登入"
1167 1155
1168 #: rhodecode/model/user.py:230
1156 #: rhodecode/model/user.py:232
1169 1157 #, fuzzy
1170 1158 msgid "new user registration"
1171 1159 msgstr "[RhodeCode] 新使用者註冊"
1172 1160
1173 #: rhodecode/model/user.py:255 rhodecode/model/user.py:279
1174 #: rhodecode/model/user.py:301
1161 #: rhodecode/model/user.py:257 rhodecode/model/user.py:281
1162 #: rhodecode/model/user.py:303
1175 1163 msgid "You can't Edit this user since it's crucial for entire application"
1176 1164 msgstr "您無法編輯這個使用者,因為他是系統帳號"
1177 1165
1178 #: rhodecode/model/user.py:325
1166 #: rhodecode/model/user.py:327
1179 1167 msgid "You can't remove this user since it's crucial for entire application"
1180 1168 msgstr "您無法移除這個使用者,因為他是系統帳號"
1181 1169
1182 #: rhodecode/model/user.py:331
1170 #: rhodecode/model/user.py:333
1183 1171 #, fuzzy, python-format
1184 1172 msgid ""
1185 1173 "user \"%s\" still owns %s repositories and cannot be removed. Switch "
@@ -1304,26 +1292,26 b' msgstr "\xe6\x82\xa8\xe6\xb2\x92\xe6\x9c\x89\xe6\xac\x8a\xe9\x99\x90\xe7\x80\x8f\xe8\xa6\xbd\xe9\x80\x99\xe5\x80\x8b\xe9\xa0\x81\xe9\x9d\xa2"'
1304 1292 msgid "This username or users group name is not valid"
1305 1293 msgstr "使用者名稱或群組名稱無效"
1306 1294
1307 #: rhodecode/model/validators.py:582
1295 #: rhodecode/model/validators.py:591
1308 1296 msgid "This is not a valid path"
1309 1297 msgstr "不是一個有效的路徑"
1310 1298
1311 #: rhodecode/model/validators.py:597
1299 #: rhodecode/model/validators.py:606
1312 1300 msgid "This e-mail address is already taken"
1313 1301 msgstr "這個郵件位址已經使用了"
1314 1302
1315 #: rhodecode/model/validators.py:617
1303 #: rhodecode/model/validators.py:626
1316 1304 #, fuzzy, python-format
1317 1305 msgid "e-mail \"%(email)s\" does not exist."
1318 1306 msgstr "這個郵件位址不存在"
1319 1307
1320 #: rhodecode/model/validators.py:654
1308 #: rhodecode/model/validators.py:663
1321 1309 msgid ""
1322 1310 "The LDAP Login attribute of the CN must be specified - this is the name "
1323 1311 "of the attribute that is equivalent to \"username\""
1324 1312 msgstr ""
1325 1313
1326 #: rhodecode/model/validators.py:673
1314 #: rhodecode/model/validators.py:682
1327 1315 #, python-format
1328 1316 msgid "Revisions %(revs)s are already part of pull request or have set status"
1329 1317 msgstr ""
@@ -1339,7 +1327,8 b' msgstr "\xe5\x84\x80\xe8\xa1\xa8\xe6\x9d\xbf"'
1339 1327 #: rhodecode/templates/admin/users/users.html:9
1340 1328 #: rhodecode/templates/bookmarks/bookmarks.html:10
1341 1329 #: rhodecode/templates/branches/branches.html:9
1342 #: rhodecode/templates/journal/journal.html:40
1330 #: rhodecode/templates/journal/journal.html:9
1331 #: rhodecode/templates/journal/journal.html:48
1343 1332 #: rhodecode/templates/tags/tags.html:10
1344 1333 msgid "quick filter..."
1345 1334 msgstr "快速過濾..."
@@ -1405,8 +1394,8 b' msgstr "\xe7\x89\x88\xe6\x9c\xac\xe5\xba\xab\xe7\xbe\xa4\xe7\xb5\x84"'
1405 1394 #: rhodecode/templates/branches/branches.html:50
1406 1395 #: rhodecode/templates/branches/branches_data.html:6
1407 1396 #: rhodecode/templates/files/files_browser.html:47
1408 #: rhodecode/templates/journal/journal.html:62
1409 #: rhodecode/templates/journal/journal.html:168
1397 #: rhodecode/templates/journal/journal.html:70
1398 #: rhodecode/templates/journal/journal.html:196
1410 1399 #: rhodecode/templates/journal/journal_page_repos.html:7
1411 1400 #: rhodecode/templates/settings/repo_settings.html:31
1412 1401 #: rhodecode/templates/summary/summary.html:43
@@ -1423,7 +1412,7 b' msgstr "\xe6\x9c\x80\xe5\xbe\x8c\xe4\xbf\xae\xe6\x94\xb9"'
1423 1412 #: rhodecode/templates/index_base.html:74
1424 1413 #: rhodecode/templates/index_base.html:179
1425 1414 #: rhodecode/templates/admin/users/user_edit_my_account.html:182
1426 #: rhodecode/templates/journal/journal.html:170
1415 #: rhodecode/templates/journal/journal.html:198
1427 1416 msgid "Tip"
1428 1417 msgstr ""
1429 1418
@@ -1453,7 +1442,7 b' msgstr ""'
1453 1442 #: rhodecode/templates/admin/users/users.html:107
1454 1443 #: rhodecode/templates/bookmarks/bookmarks.html:60
1455 1444 #: rhodecode/templates/branches/branches.html:76
1456 #: rhodecode/templates/journal/journal.html:193
1445 #: rhodecode/templates/journal/journal.html:221
1457 1446 #: rhodecode/templates/tags/tags.html:77
1458 1447 msgid "Click to sort ascending"
1459 1448 msgstr ""
@@ -1466,7 +1455,7 b' msgstr ""'
1466 1455 #: rhodecode/templates/admin/users/users.html:108
1467 1456 #: rhodecode/templates/bookmarks/bookmarks.html:61
1468 1457 #: rhodecode/templates/branches/branches.html:77
1469 #: rhodecode/templates/journal/journal.html:194
1458 #: rhodecode/templates/journal/journal.html:222
1470 1459 #: rhodecode/templates/tags/tags.html:78
1471 1460 msgid "Click to sort descending"
1472 1461 msgstr ""
@@ -1484,7 +1473,7 b' msgstr "\xe6\x9c\x80\xe5\xbe\x8c\xe4\xbf\xae\xe6\x94\xb9"'
1484 1473 #: rhodecode/templates/admin/users/users.html:109
1485 1474 #: rhodecode/templates/bookmarks/bookmarks.html:62
1486 1475 #: rhodecode/templates/branches/branches.html:78
1487 #: rhodecode/templates/journal/journal.html:195
1476 #: rhodecode/templates/journal/journal.html:223
1488 1477 #: rhodecode/templates/tags/tags.html:79
1489 1478 msgid "No records found."
1490 1479 msgstr ""
@@ -1496,7 +1485,7 b' msgstr ""'
1496 1485 #: rhodecode/templates/admin/users/users.html:110
1497 1486 #: rhodecode/templates/bookmarks/bookmarks.html:63
1498 1487 #: rhodecode/templates/branches/branches.html:79
1499 #: rhodecode/templates/journal/journal.html:196
1488 #: rhodecode/templates/journal/journal.html:224
1500 1489 #: rhodecode/templates/tags/tags.html:80
1501 1490 msgid "Data error."
1502 1491 msgstr ""
@@ -1508,8 +1497,8 b' msgstr ""'
1508 1497 #: rhodecode/templates/admin/users/users.html:111
1509 1498 #: rhodecode/templates/bookmarks/bookmarks.html:64
1510 1499 #: rhodecode/templates/branches/branches.html:80
1511 #: rhodecode/templates/journal/journal.html:54
1512 #: rhodecode/templates/journal/journal.html:197
1500 #: rhodecode/templates/journal/journal.html:62
1501 #: rhodecode/templates/journal/journal.html:225
1513 1502 #: rhodecode/templates/tags/tags.html:81
1514 1503 #, fuzzy
1515 1504 msgid "Loading..."
@@ -1660,10 +1649,28 b' msgid "There are no bookmarks yet"'
1660 1649 msgstr "尚未有任何 fork"
1661 1650
1662 1651 #: rhodecode/templates/admin/admin.html:5
1663 #: rhodecode/templates/admin/admin.html:9
1652 #: rhodecode/templates/admin/admin.html:13
1664 1653 msgid "Admin journal"
1665 1654 msgstr "管理員日誌"
1666 1655
1656 #: rhodecode/templates/admin/admin.html:10
1657 #, fuzzy
1658 msgid "journal filter..."
1659 msgstr "快速過濾..."
1660
1661 #: rhodecode/templates/admin/admin.html:12
1662 #: rhodecode/templates/journal/journal.html:11
1663 #, fuzzy
1664 msgid "filter"
1665 msgstr "檔案"
1666
1667 #: rhodecode/templates/admin/admin.html:13
1668 #: rhodecode/templates/journal/journal.html:12
1669 #, python-format
1670 msgid "%s entry"
1671 msgid_plural "%s entries"
1672 msgstr[0] ""
1673
1667 1674 #: rhodecode/templates/admin/admin_log.html:6
1668 1675 #: rhodecode/templates/admin/repos/repos.html:74
1669 1676 #: rhodecode/templates/admin/users/user_edit_my_account_repos.html:8
@@ -1692,7 +1699,7 b' msgstr "\xe6\x99\x82\xe9\x96\x93"'
1692 1699 msgid "From IP"
1693 1700 msgstr "來源IP"
1694 1701
1695 #: rhodecode/templates/admin/admin_log.html:57
1702 #: rhodecode/templates/admin/admin_log.html:63
1696 1703 msgid "No actions yet"
1697 1704 msgstr ""
1698 1705
@@ -1764,7 +1771,7 b' msgstr ""'
1764 1771 #: rhodecode/templates/admin/users/user_edit.html:178
1765 1772 #: rhodecode/templates/admin/users/user_edit_my_account_form.html:79
1766 1773 #: rhodecode/templates/admin/users_groups/users_group_edit.html:135
1767 #: rhodecode/templates/settings/repo_settings.html:93
1774 #: rhodecode/templates/settings/repo_settings.html:94
1768 1775 msgid "Save"
1769 1776 msgstr "儲存"
1770 1777
@@ -2058,7 +2065,7 b' msgstr "\xe4\xbf\xae\xe6\x94\xb9\xe6\x96\xbc\xe7\x89\x88\xe6\x9c\xac\xe5\xba\xab %s"'
2058 2065 #: rhodecode/templates/files/files_add.html:82
2059 2066 #: rhodecode/templates/files/files_edit.html:68
2060 2067 #: rhodecode/templates/pullrequests/pullrequest.html:124
2061 #: rhodecode/templates/settings/repo_settings.html:94
2068 #: rhodecode/templates/settings/repo_settings.html:95
2062 2069 msgid "Reset"
2063 2070 msgstr "重設"
2064 2071
@@ -2203,19 +2210,21 b' msgid "Delete"'
2203 2210 msgstr "移除"
2204 2211
2205 2212 #: rhodecode/templates/admin/repos/repo_edit.html:278
2213 #: rhodecode/templates/settings/repo_settings.html:115
2206 2214 msgid "Remove this repository"
2207 2215 msgstr "移除版本庫"
2208 2216
2209 2217 #: rhodecode/templates/admin/repos/repo_edit.html:278
2218 #: rhodecode/templates/settings/repo_settings.html:115
2210 2219 msgid "Confirm to delete this repository"
2211 2220 msgstr "確認移除這個版本庫"
2212 2221
2213 2222 #: rhodecode/templates/admin/repos/repo_edit.html:282
2223 #: rhodecode/templates/settings/repo_settings.html:119
2214 2224 msgid ""
2215 2225 "This repository will be renamed in a special way in order to be "
2216 "unaccesible for RhodeCode and VCS systems.\n"
2217 " If you need fully delete it from filesystem "
2218 "please do it manually"
2226 "unaccesible for RhodeCode and VCS systems. If you need fully delete it "
2227 "from file system please do it manually"
2219 2228 msgstr ""
2220 2229
2221 2230 #: rhodecode/templates/admin/repos/repo_edit_perms.html:3
@@ -2247,7 +2256,7 b' msgstr "\xe6\x88\x90\xe5\x93\xa1"'
2247 2256
2248 2257 #: rhodecode/templates/admin/repos/repo_edit_perms.html:16
2249 2258 #: rhodecode/templates/data_table/_dt_elements.html:67
2250 #: rhodecode/templates/journal/journal.html:87
2259 #: rhodecode/templates/journal/journal.html:95
2251 2260 #: rhodecode/templates/summary/summary.html:85
2252 2261 msgid "private repository"
2253 2262 msgstr "私有版本庫"
@@ -2774,7 +2783,7 b' msgid "My permissions"'
2774 2783 msgstr "權限"
2775 2784
2776 2785 #: rhodecode/templates/admin/users/user_edit_my_account.html:38
2777 #: rhodecode/templates/journal/journal.html:41
2786 #: rhodecode/templates/journal/journal.html:49
2778 2787 #, fuzzy
2779 2788 msgid "My repos"
2780 2789 msgstr "空的版本庫"
@@ -2995,7 +3004,6 b' msgstr ""'
2995 3004 #: rhodecode/templates/base/base.html:324
2996 3005 #: rhodecode/templates/base/base.html:326
2997 3006 #: rhodecode/templates/journal/journal.html:4
2998 #: rhodecode/templates/journal/journal.html:21
2999 3007 #: rhodecode/templates/journal/public_journal.html:4
3000 3008 msgid "Journal"
3001 3009 msgstr "日誌"
@@ -3131,7 +3139,7 b' msgid "add another comment"'
3131 3139 msgstr "新增另ㄧ位成員"
3132 3140
3133 3141 #: rhodecode/templates/base/root.html:43
3134 #: rhodecode/templates/journal/journal.html:75
3142 #: rhodecode/templates/journal/journal.html:83
3135 3143 #: rhodecode/templates/summary/summary.html:57
3136 3144 msgid "Stop following this repository"
3137 3145 msgstr "停止追蹤這個版本庫"
@@ -3240,7 +3248,7 b' msgid "Affected number of files, click t'
3240 3248 msgstr ""
3241 3249
3242 3250 #: rhodecode/templates/changelog/changelog.html:91
3243 #: rhodecode/templates/changeset/changeset.html:44
3251 #: rhodecode/templates/changeset/changeset.html:65
3244 3252 #: rhodecode/templates/changeset/changeset_file_comment.html:20
3245 3253 #: rhodecode/templates/changeset/changeset_range.html:46
3246 3254 #, fuzzy
@@ -3253,23 +3261,22 b' msgid "Click to open associated pull req'
3253 3261 msgstr ""
3254 3262
3255 3263 #: rhodecode/templates/changelog/changelog.html:104
3256 #: rhodecode/templates/changeset/changeset.html:85
3257 3264 msgid "Parent"
3258 3265 msgstr ""
3259 3266
3260 3267 #: rhodecode/templates/changelog/changelog.html:110
3261 #: rhodecode/templates/changeset/changeset.html:91
3268 #: rhodecode/templates/changeset/changeset.html:42
3262 3269 msgid "No parents"
3263 3270 msgstr ""
3264 3271
3265 3272 #: rhodecode/templates/changelog/changelog.html:115
3266 #: rhodecode/templates/changeset/changeset.html:95
3273 #: rhodecode/templates/changeset/changeset.html:106
3267 3274 #: rhodecode/templates/changeset/changeset_range.html:79
3268 3275 msgid "merge"
3269 3276 msgstr "合併"
3270 3277
3271 3278 #: rhodecode/templates/changelog/changelog.html:118
3272 #: rhodecode/templates/changeset/changeset.html:98
3279 #: rhodecode/templates/changeset/changeset.html:109
3273 3280 #: rhodecode/templates/changeset/changeset_range.html:82
3274 3281 #: rhodecode/templates/files/files.html:29
3275 3282 #: rhodecode/templates/files/files_add.html:33
@@ -3284,7 +3291,7 b' msgid "bookmark"'
3284 3291 msgstr ""
3285 3292
3286 3293 #: rhodecode/templates/changelog/changelog.html:130
3287 #: rhodecode/templates/changeset/changeset.html:103
3294 #: rhodecode/templates/changeset/changeset.html:114
3288 3295 #: rhodecode/templates/changeset/changeset_range.html:94
3289 3296 msgid "tag"
3290 3297 msgstr "標籤"
@@ -3294,26 +3301,26 b' msgid "There are no changes yet"'
3294 3301 msgstr "尚未有任何變更"
3295 3302
3296 3303 #: rhodecode/templates/changelog/changelog_details.html:4
3297 #: rhodecode/templates/changeset/changeset.html:73
3304 #: rhodecode/templates/changeset/changeset.html:94
3298 3305 msgid "removed"
3299 3306 msgstr "移除"
3300 3307
3301 3308 #: rhodecode/templates/changelog/changelog_details.html:5
3302 #: rhodecode/templates/changeset/changeset.html:74
3309 #: rhodecode/templates/changeset/changeset.html:95
3303 3310 msgid "changed"
3304 3311 msgstr "修改"
3305 3312
3306 3313 #: rhodecode/templates/changelog/changelog_details.html:6
3307 #: rhodecode/templates/changeset/changeset.html:75
3314 #: rhodecode/templates/changeset/changeset.html:96
3308 3315 msgid "added"
3309 3316 msgstr "新增"
3310 3317
3311 3318 #: rhodecode/templates/changelog/changelog_details.html:8
3312 3319 #: rhodecode/templates/changelog/changelog_details.html:9
3313 3320 #: rhodecode/templates/changelog/changelog_details.html:10
3314 #: rhodecode/templates/changeset/changeset.html:77
3315 #: rhodecode/templates/changeset/changeset.html:78
3316 #: rhodecode/templates/changeset/changeset.html:79
3321 #: rhodecode/templates/changeset/changeset.html:98
3322 #: rhodecode/templates/changeset/changeset.html:99
3323 #: rhodecode/templates/changeset/changeset.html:100
3317 3324 #, python-format
3318 3325 msgid "affected %s files"
3319 3326 msgstr ""
@@ -3327,36 +3334,40 b' msgstr "\xe6\xb2\x92\xe6\x9c\x89\xe4\xbf\xae\xe6\x94\xb9"'
3327 3334 msgid "Changeset"
3328 3335 msgstr ""
3329 3336
3330 #: rhodecode/templates/changeset/changeset.html:49
3337 #: rhodecode/templates/changeset/changeset.html:52
3338 msgid "No children"
3339 msgstr ""
3340
3341 #: rhodecode/templates/changeset/changeset.html:70
3331 3342 #: rhodecode/templates/changeset/diff_block.html:20
3332 3343 msgid "raw diff"
3333 3344 msgstr "原始差異"
3334 3345
3335 #: rhodecode/templates/changeset/changeset.html:50
3346 #: rhodecode/templates/changeset/changeset.html:71
3336 3347 #, fuzzy
3337 3348 msgid "patch diff"
3338 3349 msgstr "原始差異"
3339 3350
3340 #: rhodecode/templates/changeset/changeset.html:51
3351 #: rhodecode/templates/changeset/changeset.html:72
3341 3352 #: rhodecode/templates/changeset/diff_block.html:21
3342 3353 msgid "download diff"
3343 3354 msgstr "下載差異"
3344 3355
3345 #: rhodecode/templates/changeset/changeset.html:55
3356 #: rhodecode/templates/changeset/changeset.html:76
3346 3357 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3347 3358 #, fuzzy, python-format
3348 3359 msgid "%d comment"
3349 3360 msgid_plural "%d comments"
3350 3361 msgstr[0] "遞交"
3351 3362
3352 #: rhodecode/templates/changeset/changeset.html:55
3363 #: rhodecode/templates/changeset/changeset.html:76
3353 3364 #: rhodecode/templates/changeset/changeset_file_comment.html:82
3354 3365 #, python-format
3355 3366 msgid "(%d inline)"
3356 3367 msgid_plural "(%d inline)"
3357 3368 msgstr[0] ""
3358 3369
3359 #: rhodecode/templates/changeset/changeset.html:111
3370 #: rhodecode/templates/changeset/changeset.html:122
3360 3371 #: rhodecode/templates/compare/compare_diff.html:44
3361 3372 #: rhodecode/templates/pullrequests/pullrequest_show.html:76
3362 3373 #, fuzzy, python-format
@@ -3364,7 +3375,7 b' msgid "%s file changed"'
3364 3375 msgid_plural "%s files changed"
3365 3376 msgstr[0] "檔案修改"
3366 3377
3367 #: rhodecode/templates/changeset/changeset.html:113
3378 #: rhodecode/templates/changeset/changeset.html:124
3368 3379 #: rhodecode/templates/compare/compare_diff.html:46
3369 3380 #: rhodecode/templates/pullrequests/pullrequest_show.html:78
3370 3381 #, python-format
@@ -3392,7 +3403,7 b' msgid "Use @username inside this text to'
3392 3403 msgstr ""
3393 3404
3394 3405 #: rhodecode/templates/changeset/changeset_file_comment.html:59
3395 #: rhodecode/templates/changeset/changeset_file_comment.html:138
3406 #: rhodecode/templates/changeset/changeset_file_comment.html:143
3396 3407 #, fuzzy
3397 3408 msgid "Comment"
3398 3409 msgstr "遞交"
@@ -3415,16 +3426,16 b' msgstr ""'
3415 3426 msgid "Leave a comment"
3416 3427 msgstr ""
3417 3428
3418 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3429 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3419 3430 msgid "Check this to change current status of code-review for this changeset"
3420 3431 msgstr ""
3421 3432
3422 #: rhodecode/templates/changeset/changeset_file_comment.html:124
3433 #: rhodecode/templates/changeset/changeset_file_comment.html:125
3423 3434 #, fuzzy
3424 3435 msgid "change status"
3425 3436 msgstr "變更"
3426 3437
3427 #: rhodecode/templates/changeset/changeset_file_comment.html:140
3438 #: rhodecode/templates/changeset/changeset_file_comment.html:145
3428 3439 msgid "Comment and close"
3429 3440 msgstr ""
3430 3441
@@ -3481,19 +3492,19 b' msgid "Fork"'
3481 3492 msgstr "分支"
3482 3493
3483 3494 #: rhodecode/templates/data_table/_dt_elements.html:60
3484 #: rhodecode/templates/journal/journal.html:81
3495 #: rhodecode/templates/journal/journal.html:89
3485 3496 #: rhodecode/templates/summary/summary.html:77
3486 3497 msgid "Mercurial repository"
3487 3498 msgstr "Mercurial 版本庫"
3488 3499
3489 3500 #: rhodecode/templates/data_table/_dt_elements.html:62
3490 #: rhodecode/templates/journal/journal.html:83
3501 #: rhodecode/templates/journal/journal.html:91
3491 3502 #: rhodecode/templates/summary/summary.html:80
3492 3503 msgid "Git repository"
3493 3504 msgstr "Git 版本庫"
3494 3505
3495 3506 #: rhodecode/templates/data_table/_dt_elements.html:69
3496 #: rhodecode/templates/journal/journal.html:89
3507 #: rhodecode/templates/journal/journal.html:97
3497 3508 #: rhodecode/templates/summary/summary.html:87
3498 3509 msgid "public repository"
3499 3510 msgstr "公開版本庫"
@@ -3886,54 +3897,54 b' msgstr "\xe5\xb7\xb2\xe5\xbb\xba\xe7\xab\x8b\xe5\x88\x86\xe6\x94\xaf"'
3886 3897 msgid "There are no forks yet"
3887 3898 msgstr "尚未有任何 fork"
3888 3899
3889 #: rhodecode/templates/journal/journal.html:13
3900 #: rhodecode/templates/journal/journal.html:21
3890 3901 #, fuzzy
3891 3902 msgid "ATOM journal feed"
3892 3903 msgstr "%s 公開日誌 %s feed"
3893 3904
3894 #: rhodecode/templates/journal/journal.html:14
3905 #: rhodecode/templates/journal/journal.html:22
3895 3906 #, fuzzy
3896 3907 msgid "RSS journal feed"
3897 3908 msgstr "%s 公開日誌 %s feed"
3898 3909
3899 #: rhodecode/templates/journal/journal.html:24
3910 #: rhodecode/templates/journal/journal.html:32
3900 3911 #: rhodecode/templates/pullrequests/pullrequest.html:55
3901 3912 msgid "Refresh"
3902 3913 msgstr ""
3903 3914
3904 #: rhodecode/templates/journal/journal.html:27
3915 #: rhodecode/templates/journal/journal.html:35
3905 3916 #: rhodecode/templates/journal/public_journal.html:24
3906 3917 msgid "RSS feed"
3907 3918 msgstr ""
3908 3919
3909 #: rhodecode/templates/journal/journal.html:30
3920 #: rhodecode/templates/journal/journal.html:38
3910 3921 #: rhodecode/templates/journal/public_journal.html:27
3911 3922 msgid "ATOM feed"
3912 3923 msgstr ""
3913 3924
3914 #: rhodecode/templates/journal/journal.html:41
3925 #: rhodecode/templates/journal/journal.html:49
3915 3926 #, fuzzy
3916 3927 msgid "Watched"
3917 3928 msgstr "快取"
3918 3929
3919 #: rhodecode/templates/journal/journal.html:46
3930 #: rhodecode/templates/journal/journal.html:54
3920 3931 #, fuzzy
3921 3932 msgid "ADD"
3922 3933 msgstr "新增"
3923 3934
3924 #: rhodecode/templates/journal/journal.html:69
3935 #: rhodecode/templates/journal/journal.html:77
3925 3936 msgid "following user"
3926 3937 msgstr "追蹤使用者"
3927 3938
3928 #: rhodecode/templates/journal/journal.html:69
3939 #: rhodecode/templates/journal/journal.html:77
3929 3940 msgid "user"
3930 3941 msgstr "使用者"
3931 3942
3932 #: rhodecode/templates/journal/journal.html:102
3943 #: rhodecode/templates/journal/journal.html:110
3933 3944 msgid "You are not following any users or repositories"
3934 3945 msgstr "您尚未追蹤任何使用者或版本庫"
3935 3946
3936 #: rhodecode/templates/journal/journal_data.html:51
3947 #: rhodecode/templates/journal/journal_data.html:55
3937 3948 msgid "No entries yet"
3938 3949 msgstr ""
3939 3950
@@ -4040,6 +4051,11 b' msgstr "\xe5\xbb\xba\xe7\xab\x8b\xe4\xbd\xbf\xe7\x94\xa8\xe8\x80\x85 %s"'
4040 4051 msgid "Compare view"
4041 4052 msgstr "比較顯示"
4042 4053
4054 #: rhodecode/templates/pullrequests/pullrequest_show.html:112
4055 #, fuzzy
4056 msgid "reviewer"
4057 msgstr ""
4058
4043 4059 #: rhodecode/templates/pullrequests/pullrequest_show_all.html:4
4044 4060 #, fuzzy
4045 4061 msgid "all pull requests"
@@ -4107,6 +4123,16 b' msgstr "\xe6\xac\x8a\xe9\x99\x90\xe4\xb8\x8d\xe8\xb6\xb3"'
4107 4123 msgid "%s Settings"
4108 4124 msgstr "設定"
4109 4125
4126 #: rhodecode/templates/settings/repo_settings.html:102
4127 #, fuzzy
4128 msgid "Delete repository"
4129 msgstr "刪除版本庫 %s"
4130
4131 #: rhodecode/templates/settings/repo_settings.html:109
4132 #, fuzzy
4133 msgid "Remove repo"
4134 msgstr "移除"
4135
4110 4136 #: rhodecode/templates/shortlog/shortlog.html:5
4111 4137 #, fuzzy, python-format
4112 4138 msgid "%s Shortlog"
@@ -4316,3 +4342,19 b' msgstr "\xe4\xb9\x8b\xe5\x89\x8d"'
4316 4342 msgid "Compare tags"
4317 4343 msgstr "比較顯示"
4318 4344
4345 #~ msgid ""
4346 #~ "%s repository is not mapped to db"
4347 #~ " perhaps it was created or renamed"
4348 #~ " from the file system please run "
4349 #~ "the application again in order to "
4350 #~ "rescan repositories"
4351 #~ msgstr ""
4352
4353 #~ msgid ""
4354 #~ "%s repository is not mapped to db"
4355 #~ " perhaps it was moved or renamed "
4356 #~ "from the filesystem please run the "
4357 #~ "application again in order to rescan "
4358 #~ "repositories"
4359 #~ msgstr ""
4360
@@ -276,6 +276,16 b' class DbManage(object):'
276 276 self.klass.create_default_options(skip_existing=True)
277 277 Session().commit()
278 278
279 def step_9(self):
280 perm_fixes = self.klass.reset_permissions(User.DEFAULT_USER)
281 Session().commit()
282 if perm_fixes:
283 notify('There was an inconsistent state of permissions '
284 'detected for default user. Permissions are now '
285 'reset to the default value for default user. '
286 'Please validate and check default permissions '
287 'in admin panel')
288
279 289 upgrade_steps = [0] + range(curr_version + 1, __dbversion__ + 1)
280 290
281 291 # CALL THE PROPER ORDER OF STEPS TO PERFORM FULL UPGRADE
@@ -1157,3 +1157,10 b' def journal_filter_help():'
1157 1157 "repository:vcs OR repository:test"
1158 1158 "username:test AND repository:test*"
1159 1159 '''))
1160
1161
1162 def not_mapped_error(repo_name):
1163 flash(_('%s repository is not mapped to db perhaps'
1164 ' it was created or renamed from the filesystem'
1165 ' please run the application again'
1166 ' in order to rescan repositories') % repo_name, category='error')
@@ -3619,6 +3619,10 b' div.gravatar img {'
3619 3619 border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
3620 3620 }
3621 3621
3622 .ui-btn.blue.hidden{
3623 display: none;
3624 }
3625
3622 3626 .ui-btn.active{
3623 3627 font-weight: bold;
3624 3628 }
@@ -712,6 +712,14 b' var deleteComment = function(comment_id)'
712 712 }
713 713
714 714 var updateReviewers = function(reviewers_ids){
715 if (reviewers_ids === undefined){
716 var reviewers_ids = [];
717 var ids = YUQ('#review_members input');
718 for(var i=0; i<ids.length;i++){
719 var id = ids[i].value
720 reviewers_ids.push(id);
721 }
722 }
715 723 var url = AJAX_UPDATE_PULLREQUEST;
716 724 var postData = {'_method':'put',
717 725 'reviewers_ids': reviewers_ids};
@@ -852,6 +860,7 b' var removeReviewer = function(reviewer_i'
852 860 if (el.parentNode !== undefined){
853 861 el.parentNode.removeChild(el);
854 862 }
863 updateReviewers();
855 864 }
856 865
857 866 var fileBrowserListeners = function(current_url, node_list_url, url_base){
@@ -279,9 +279,7 b''
279 279 </div>
280 280 <div class="field" style="border:none;color:#888">
281 281 <ul>
282 <li>${_('''This repository will be renamed in a special way in order to be unaccesible for RhodeCode and VCS systems.
283 If you need fully delete it from file system please do it manually''')}
284 </li>
282 <li>${_('This repository will be renamed in a special way in order to be unaccesible for RhodeCode and VCS systems. If you need fully delete it from file system please do it manually')}</li>
285 283 </ul>
286 284 </div>
287 285 </div>
@@ -109,7 +109,7 b''
109 109 </%def>
110 110
111 111 ## MAIN COMMENT FORM
112 <%def name="comments(post_url, cur_status, close_btn=False)">
112 <%def name="comments(post_url, cur_status, close_btn=False, change_status=True)">
113 113
114 114 <div class="comments">
115 115 %if c.rhodecode_user.username != 'default':
@@ -121,23 +121,28 b''
121 121 ${(_('Comments parsed using %s syntax with %s support.') % (('<a href="%s">RST</a>' % h.url('rst_help')),
122 122 '<span style="color:#003367" class="tooltip" title="%s">@mention</span>' %
123 123 _('Use @username inside this text to send notification to this RhodeCode user')))|n}
124 %if change_status:
124 125 | <label for="show_changeset_status_box" class="tooltip" title="${_('Check this to change current status of code-review for this changeset')}"> ${_('change status')}</label>
125 126 <input style="vertical-align: bottom;margin-bottom:-2px" id="show_changeset_status_box" type="checkbox" name="change_changeset_status" />
127 %endif
126 128 </div>
129 %if change_status:
127 130 <div id="status_block_container" class="status-block" style="display:none">
128 131 %for status,lbl in c.changeset_statuses:
129 132 <div class="">
130 <img src="${h.url('/images/icons/flag_status_%s.png' % status)}" /> <input ${'checked="checked"' if status == cur_status else ''}" type="radio" name="changeset_status" value="${status}"> <label>${lbl}</label>
133 <img src="${h.url('/images/icons/flag_status_%s.png' % status)}" /> <input ${'checked="checked"' if status == cur_status else ''}" type="radio" class="status_change_radio" name="changeset_status" id="${status}" value="${status}">
134 <label for="${status}">${lbl}</label>
131 135 </div>
132 136 %endfor
133 137 </div>
138 %endif
134 139 <div class="mentions-container" id="mentions_container"></div>
135 140 ${h.textarea('text')}
136 141 </div>
137 142 <div class="comment-button">
138 143 ${h.submit('save', _('Comment'), class_="ui-btn large")}
139 %if close_btn:
140 ${h.submit('save_close', _('Comment and close'), class_='ui-btn blue large')}
144 %if close_btn and change_status:
145 ${h.submit('save_close', _('Comment and close'), class_='ui-btn blue large %s' % ('hidden' if cur_status in ['not_reviewed','under_review'] else ''))}
141 146 %endif
142 147 </div>
143 148 ${h.end_form()}
@@ -157,6 +162,14 b' YUE.onDOMReady(function () {'
157 162 YUD.setStyle('status_block_container','display','none');
158 163 }
159 164 })
165 YUE.on(YUQ('.status_change_radio'), 'change',function(e){
166 var val = e.currentTarget.value;
167 if (val == 'approved' || val == 'rejected') {
168 YUD.removeClass('save_close', 'hidden');
169 }else{
170 YUD.addClass('save_close', 'hidden');
171 }
172 })
160 173
161 174 });
162 175 </script>
@@ -109,9 +109,9 b''
109 109 <img src="${h.url(str('/images/icons/flag_status_%s.png' % (status[0][1].status if status else 'not_reviewed')))}"/>
110 110 </div>
111 111 <div class="gravatar"><img alt="gravatar" src="${h.gravatar_url(member.email,14)}"/> </div>
112 <div style="float:left">${member.full_name} (${_('owner')})</div>
112 <div style="float:left">${member.full_name} (${_('owner') if c.pull_request.user_id == member.user_id else _('reviewer')})</div>
113 113 <input type="hidden" value="${member.user_id}" name="review_members" />
114 %if not c.pull_request.is_closed() and (h.HasPermissionAny('hg.admin', 'repository.admin')() or c.pull_request.author.user_id == c.rhodecode_user.user_id):
114 %if not c.pull_request.is_closed() and (h.HasPermissionAny('hg.admin', 'repository.admin')() or c.pull_request.user_id == c.rhodecode_user.user_id):
115 115 <span class="delete_icon action_button" onclick="removeReviewer(${member.user_id})"></span>
116 116 %endif
117 117 </div>
@@ -166,7 +166,7 b''
166 166 ${comment.comments(h.url('pullrequest_comment', repo_name=c.repo_name,
167 167 pull_request_id=c.pull_request.pull_request_id),
168 168 c.current_changeset_status,
169 close_btn=True)}
169 close_btn=True, change_status=c.allowed_to_change_status)}
170 170 %endif
171 171
172 172 <script type="text/javascript">
@@ -198,16 +198,9 b''
198 198 // inject comments into they proper positions
199 199 var file_comments = YUQ('.inline-comment-placeholder');
200 200 renderInlineComments(file_comments);
201
201
202 202 YUE.on(YUD.get('update_pull_request'),'click',function(e){
203
204 var reviewers_ids = [];
205 var ids = YUQ('#review_members input');
206 for(var i=0; i<ids.length;i++){
207 var id = ids[i].value
208 reviewers_ids.push(id);
209 }
210 updateReviewers(reviewers_ids);
203 updateReviewers();
211 204 })
212 205 })
213 206 </script>
@@ -116,9 +116,7 b''
116 116 </div>
117 117 <div class="field" style="border:none;color:#888">
118 118 <ul>
119 <li>${_('''This repository will be renamed in a special way in order to be unaccesible for RhodeCode and VCS systems.
120 If you need fully delete it from file system please do it manually''')}
121 </li>
119 <li>${_('This repository will be renamed in a special way in order to be unaccesible for RhodeCode and VCS systems. If you need fully delete it from file system please do it manually')}</li>
122 120 </ul>
123 121 </div>
124 122 </div>
General Comments 0
You need to be logged in to leave comments. Login now