Files
reddit/r2/r2/templates/commentvisitsbox.html
Keith Mitchell eafe67b0ea revert: Fix i18n issue with 'ago' translations
Since 'ago' is commonly used, the translations should
be migrated first/in-conjunction
2011-12-15 14:37:23 -08:00

57 lines
2.1 KiB
HTML

## The contents of this file are subject to the Common Public Attribution
## License Version 1.0. (the "License"); you may not use this file except in
## compliance with the License. You may obtain a copy of the License at
## http://code.reddit.com/LICENSE. The License is based on the Mozilla Public
## License Version 1.1, but Sections 14 and 15 have been added to cover use of
## software over a computer network and provide for limited attribution for the
## Original Developer. In addition, Exhibit A has been modified to be consistent
## with Exhibit B.
##
## Software distributed under the License is distributed on an "AS IS" basis,
## WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
## the specific language governing rights and limitations under the License.
##
## The Original Code is Reddit.
##
## The Original Developer is the Initial Developer. The Initial Developer of
## the Original Code is CondeNet, Inc.
##
## All portions of the code written by CondeNet are Copyright (c) 2006-2010
## CondeNet, Inc. All Rights Reserved.
################################################################################
<div class="rounded gold-accent comment-visits-box">
<div class="title">
${_("You've been here before. To highlight comments that were posted since one of your visits, select it below:")}
</div>
%for i, visit in enumerate(thing.visits):
<div>
<input id="comment-visits-${i}" name="comment-visits"
type="radio" value="${i}"
onclick="highlight_new_comments(this.value)"
%if i + 1 == len(thing.visits):
class="last-comment-visit"
%endif
/>
<label for="comment-visits-${i}">
${visit} ${_("ago")}
</label>
</div>
%endfor
<div>
<input id="comment-visits-none" name="comment-visits"
type="radio" value="-1"
onclick="highlight_new_comments(-1)" />
<label for="comment-visits-none">
${_("no highlighting")}
</label>
</div>
</div>
<script type="text/javascript">
$(function() { $(".last-comment-visit").click() })
</script>