Change "Close" button to "Resolve" in notes popup
This commit is contained in:
parent
d1aa084d28
commit
9f025130fd
3 changed files with 5 additions and 5 deletions
|
@ -145,10 +145,10 @@ $(document).ready(function () {
|
|||
var form = e.target.form;
|
||||
|
||||
if ($(e.target).val() == "") {
|
||||
$(form.close).val(I18n.t("javascripts.notes.show.close"));
|
||||
$(form.close).val(I18n.t("javascripts.notes.show.resolve"));
|
||||
$(form.comment).prop("disabled", true);
|
||||
} else {
|
||||
$(form.close).val(I18n.t("javascripts.notes.show.comment_and_close"));
|
||||
$(form.close).val(I18n.t("javascripts.notes.show.comment_and_resolve"));
|
||||
$(form.comment).prop("disabled", false);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
<textarea class="comment" name="text" cols="40" rows="5"></textarea>
|
||||
<br/>
|
||||
<div class="buttons">
|
||||
<input type="submit" name="close" value="<%- I18n.t('javascripts.notes.show.close') %>" data-url="<%- note.close_url %>">
|
||||
<input type="submit" name="close" value="<%- I18n.t('javascripts.notes.show.resolve') %>" data-url="<%- note.close_url %>">
|
||||
<input type="submit" name="comment" value="<%- I18n.t('javascripts.notes.show.comment') %>" data-url="<%- note.comment_url %>" disabled="1">
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -2041,8 +2041,8 @@ en:
|
|||
closed_by_anonymous: "resolved by anonymous at %{time}"
|
||||
reopened_by: "reactivated by <a href='%{user_url}'>%{user}</a> at %{time}"
|
||||
reopened_by_anonymous: "reactivated by anonymous at %{time}"
|
||||
close: Close
|
||||
comment_and_close: Comment & Close
|
||||
resolve: Resolve
|
||||
comment_and_resolve: Comment & Resolve
|
||||
comment: Comment
|
||||
redaction:
|
||||
edit:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue