Commit 5608c861 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'vue-i18n-js-notes-directory' into 'master'

Vue-i18n: autofix for app/assets/javascripts/notes directory

See merge request gitlab-org/gitlab-ce!29973
parents e049fe0d 0c028a81
...@@ -65,14 +65,12 @@ export default { ...@@ -65,14 +65,12 @@ export default {
return this.getUserData.id; return this.getUserData.id;
}, },
commentButtonTitle() { commentButtonTitle() {
return this.noteType === constants.COMMENT ? 'Comment' : 'Start thread'; return this.noteType === constants.COMMENT ? __('Comment') : __('Start thread');
}, },
startDiscussionDescription() { startDiscussionDescription() {
let text = 'Discuss a specific suggestion or question'; return this.getNoteableData.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE
if (this.getNoteableData.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE) { ? __('Discuss a specific suggestion or question that needs to be resolved.')
text += ' that needs to be resolved'; : __('Discuss a specific suggestion or question.');
}
return `${text}.`;
}, },
isOpen() { isOpen() {
return this.openState === constants.OPENED || this.openState === constants.REOPENED; return this.openState === constants.OPENED || this.openState === constants.REOPENED;
...@@ -127,8 +125,8 @@ export default { ...@@ -127,8 +125,8 @@ export default {
}, },
issuableTypeTitle() { issuableTypeTitle() {
return this.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE return this.noteableType === constants.MERGE_REQUEST_NOTEABLE_TYPE
? 'merge request' ? __('merge request')
: 'issue'; : __('issue');
}, },
trackingLabel() { trackingLabel() {
return slugifyWithUnderscore(`${this.commentButtonTitle} button`); return slugifyWithUnderscore(`${this.commentButtonTitle} button`);
...@@ -203,7 +201,7 @@ export default { ...@@ -203,7 +201,7 @@ export default {
this.discard(); this.discard();
} else { } else {
Flash( Flash(
'Something went wrong while adding your comment. Please try again.', __('Something went wrong while adding your comment. Please try again.'),
'alert', 'alert',
this.$refs.commentForm, this.$refs.commentForm,
); );
...@@ -219,8 +217,9 @@ export default { ...@@ -219,8 +217,9 @@ export default {
.catch(() => { .catch(() => {
this.enableButton(); this.enableButton();
this.discard(false); this.discard(false);
const msg = `Your comment could not be submitted! const msg = __(
Please check your network connection and try again.`; 'Your comment could not be submitted! Please check your network connection and try again.',
);
Flash(msg, 'alert', this.$el); Flash(msg, 'alert', this.$el);
this.note = noteData.data.note.note; // Restore textarea content. this.note = noteData.data.note.note; // Restore textarea content.
this.removePlaceholderNotes(); this.removePlaceholderNotes();
...@@ -298,7 +297,7 @@ Please check your network connection and try again.`; ...@@ -298,7 +297,7 @@ Please check your network connection and try again.`;
const noteableType = capitalizeFirstCharacter(convertToCamelCase(this.noteableType)); const noteableType = capitalizeFirstCharacter(convertToCamelCase(this.noteableType));
this.autosave = new Autosave($(this.$refs.textarea), [ this.autosave = new Autosave($(this.$refs.textarea), [
'Note', __('Note'),
noteableType, noteableType,
this.getNoteableData.id, this.getNoteableData.id,
]); ]);
...@@ -359,8 +358,8 @@ Please check your network connection and try again.`; ...@@ -359,8 +358,8 @@ Please check your network connection and try again.`;
class="note-textarea js-vue-comment-form js-note-text class="note-textarea js-vue-comment-form js-note-text
js-gfm-input js-autosize markdown-area js-vue-textarea qa-comment-input" js-gfm-input js-autosize markdown-area js-vue-textarea qa-comment-input"
data-supports-quick-actions="true" data-supports-quick-actions="true"
aria-label="Description" :aria-label="__('Description')"
placeholder="Write a comment or drag your files here…" :placeholder="__('Write a comment or drag your files here…')"
@keydown.up="editCurrentUserLastNote()" @keydown.up="editCurrentUserLastNote()"
@keydown.meta.enter="handleSave()" @keydown.meta.enter="handleSave()"
@keydown.ctrl.enter="handleSave()" @keydown.ctrl.enter="handleSave()"
...@@ -381,7 +380,7 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown" ...@@ -381,7 +380,7 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown"
data-track-event="click_button" data-track-event="click_button"
@click.prevent="handleSave()" @click.prevent="handleSave()"
> >
{{ __(commentButtonTitle) }} {{ commentButtonTitle }}
</button> </button>
<button <button
:disabled="isSubmitButtonDisabled" :disabled="isSubmitButtonDisabled"
...@@ -390,7 +389,7 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown" ...@@ -390,7 +389,7 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown"
class="btn btn-success note-type-toggle js-note-new-discussion dropdown-toggle qa-note-dropdown" class="btn btn-success note-type-toggle js-note-new-discussion dropdown-toggle qa-note-dropdown"
data-display="static" data-display="static"
data-toggle="dropdown" data-toggle="dropdown"
aria-label="Open comment type dropdown" :aria-label="__('Open comment type dropdown')"
> >
<i aria-hidden="true" class="fa fa-caret-down toggle-icon"> </i> <i aria-hidden="true" class="fa fa-caret-down toggle-icon"> </i>
</button> </button>
...@@ -404,8 +403,14 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown" ...@@ -404,8 +403,14 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown"
> >
<i aria-hidden="true" class="fa fa-check icon"> </i> <i aria-hidden="true" class="fa fa-check icon"> </i>
<div class="description"> <div class="description">
<strong>Comment</strong> <strong>{{ __('Comment') }}</strong>
<p>Add a general comment to this {{ noteableDisplayName }}.</p> <p>
{{
sprintf(__('Add a general comment to this %{noteableDisplayName}.'), {
noteableDisplayName,
})
}}
</p>
</div> </div>
</button> </button>
</li> </li>
...@@ -418,7 +423,7 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown" ...@@ -418,7 +423,7 @@ append-right-10 comment-type-dropdown js-comment-type-dropdown droplab-dropdown"
> >
<i aria-hidden="true" class="fa fa-check icon"> </i> <i aria-hidden="true" class="fa fa-check icon"> </i>
<div class="description"> <div class="description">
<strong>Start thread</strong> <strong>{{ __('Start thread') }}</strong>
<p>{{ startDiscussionDescription }}</p> <p>{{ startDiscussionDescription }}</p>
</div> </div>
</button> </button>
......
...@@ -100,7 +100,7 @@ export default { ...@@ -100,7 +100,7 @@ export default {
class="btn-link btn-link-retry btn-no-padding js-toggle-lazy-diff-retry-button" class="btn-link btn-link-retry btn-no-padding js-toggle-lazy-diff-retry-button"
@click="fetchDiff" @click="fetchDiff"
> >
Try again {{ __('Try again') }}
</button> </button>
</td> </td>
<td v-else class="line_content js-success-lazy-load"> <td v-else class="line_content js-success-lazy-load">
......
...@@ -4,6 +4,7 @@ import tooltip from '~/vue_shared/directives/tooltip'; ...@@ -4,6 +4,7 @@ import tooltip from '~/vue_shared/directives/tooltip';
import Icon from '~/vue_shared/components/icon.vue'; import Icon from '~/vue_shared/components/icon.vue';
import Flash from '../../flash'; import Flash from '../../flash';
import { glEmojiTag } from '../../emoji'; import { glEmojiTag } from '../../emoji';
import { __, sprintf } from '~/locale';
export default { export default {
components: { components: {
...@@ -108,23 +109,26 @@ export default { ...@@ -108,23 +109,26 @@ export default {
// Add myself to the beginning of the list so title will start with You. // Add myself to the beginning of the list so title will start with You.
if (hasReactionByCurrentUser) { if (hasReactionByCurrentUser) {
namesToShow.unshift('You'); namesToShow.unshift(__('You'));
} }
let title = ''; let title = '';
// We have 10+ awarded user, join them with comma and add `and x more`. // We have 10+ awarded user, join them with comma and add `and x more`.
if (remainingAwardList.length) { if (remainingAwardList.length) {
title = `${namesToShow.join(', ')}, and ${remainingAwardList.length} more.`; title = sprintf(__(`%{listToShow}, and %{awardsListLength} more.`), {
listToShow: namesToShow.join(', '),
awardsListLength: remainingAwardList.length,
});
} else if (namesToShow.length > 1) { } else if (namesToShow.length > 1) {
// Join all names with comma but not the last one, it will be added with and text. // Join all names with comma but not the last one, it will be added with and text.
title = namesToShow.slice(0, namesToShow.length - 1).join(', '); title = namesToShow.slice(0, namesToShow.length - 1).join(', ');
// If we have more than 2 users we need an extra comma before and text. // If we have more than 2 users we need an extra comma before and text.
title += namesToShow.length > 2 ? ',' : ''; title += namesToShow.length > 2 ? ',' : '';
title += ` and ${namesToShow.slice(-1)}`; // Append and text title += sprintf(__(` and %{sliced}`), { sliced: namesToShow.slice(-1) }); // Append and text
} else { } else {
// We have only 2 users so join them with and. // We have only 2 users so join them with and.
title = namesToShow.join(' and '); title = namesToShow.join(__(' and '));
} }
return title; return title;
...@@ -155,7 +159,7 @@ export default { ...@@ -155,7 +159,7 @@ export default {
awardName: parsedName, awardName: parsedName,
}; };
this.toggleAwardRequest(data).catch(() => Flash('Something went wrong on our end.')); this.toggleAwardRequest(data).catch(() => Flash(__('Something went wrong on our end.')));
}, },
}, },
}; };
...@@ -184,7 +188,7 @@ export default { ...@@ -184,7 +188,7 @@ export default {
:class="{ 'js-user-authored': isAuthoredByMe }" :class="{ 'js-user-authored': isAuthoredByMe }"
class="award-control btn js-add-award" class="award-control btn js-add-award"
title="Add reaction" title="Add reaction"
aria-label="Add reaction" :aria-label="__('Add reaction')"
data-boundary="viewport" data-boundary="viewport"
type="button" type="button"
> >
......
<script> <script>
import { mergeUrlParams } from '~/lib/utils/url_utility'; import { mergeUrlParams } from '~/lib/utils/url_utility';
import { mapGetters, mapActions } from 'vuex'; import { mapGetters, mapActions } from 'vuex';
import noteFormMixin from 'ee_else_ce/notes/mixins/note_form';
import eventHub from '../event_hub'; import eventHub from '../event_hub';
import issueWarning from '../../vue_shared/components/issue/issue_warning.vue'; import issueWarning from '../../vue_shared/components/issue/issue_warning.vue';
import markdownField from '../../vue_shared/components/markdown/field.vue'; import markdownField from '../../vue_shared/components/markdown/field.vue';
import issuableStateMixin from '../mixins/issuable_state'; import issuableStateMixin from '../mixins/issuable_state';
import resolvable from '../mixins/resolvable'; import resolvable from '../mixins/resolvable';
import { __ } from '~/locale'; import { __, sprintf } from '~/locale';
import { getDraft, updateDraft } from '~/lib/utils/autosave'; import { getDraft, updateDraft } from '~/lib/utils/autosave';
import noteFormMixin from 'ee_else_ce/notes/mixins/note_form';
export default { export default {
name: 'NoteForm', name: 'NoteForm',
...@@ -174,6 +174,18 @@ export default { ...@@ -174,6 +174,18 @@ export default {
(this.line && this.line.can_receive_suggestion) (this.line && this.line.can_receive_suggestion)
); );
}, },
changedCommentText() {
return sprintf(
__(
'This comment has changed since you started editing, please review the %{startTag}updated comment%{endTag} to ensure information is not lost.',
),
{
startTag: `<a href="${this.noteHash}" target="_blank" rel="noopener noreferrer">`,
endTag: '</a>',
},
false,
);
},
}, },
watch: { watch: {
noteBody() { noteBody() {
...@@ -228,11 +240,11 @@ export default { ...@@ -228,11 +240,11 @@ export default {
<template> <template>
<div ref="editNoteForm" class="note-edit-form current-note-edit-form js-discussion-note-form"> <div ref="editNoteForm" class="note-edit-form current-note-edit-form js-discussion-note-form">
<div v-if="conflictWhileEditing" class="js-conflict-edit-warning alert alert-danger"> <div
This comment has changed since you started editing, please review the v-if="conflictWhileEditing"
<a :href="noteHash" target="_blank" rel="noopener noreferrer">updated comment</a> to ensure class="js-conflict-edit-warning alert alert-danger"
information is not lost. v-html="changedCommentText"
</div> ></div>
<div class="flash-container timeline-content"></div> <div class="flash-container timeline-content"></div>
<form :data-line-code="lineCode" class="edit-note common-note-form js-quick-submit gfm-form"> <form :data-line-code="lineCode" class="edit-note common-note-form js-quick-submit gfm-form">
<issue-warning <issue-warning
...@@ -264,8 +276,8 @@ export default { ...@@ -264,8 +276,8 @@ export default {
name="note[note]" name="note[note]"
class="note-textarea js-gfm-input js-note-text js-autosize markdown-area js-vue-issue-note-form js-vue-textarea qa-reply-input" class="note-textarea js-gfm-input js-note-text js-autosize markdown-area js-vue-issue-note-form js-vue-textarea qa-reply-input"
dir="auto" dir="auto"
aria-label="Description" :aria-label="__('Description')"
placeholder="Write a comment or drag your files here…" :placeholder="__('Write a comment or drag your files here…')"
@keydown.meta.enter="handleKeySubmit()" @keydown.meta.enter="handleKeySubmit()"
@keydown.ctrl.enter="handleKeySubmit()" @keydown.ctrl.enter="handleKeySubmit()"
@keydown.exact.up="editMyLastNote()" @keydown.exact.up="editMyLastNote()"
...@@ -339,7 +351,7 @@ export default { ...@@ -339,7 +351,7 @@ export default {
type="button" type="button"
@click="cancelHandler()" @click="cancelHandler()"
> >
Cancel {{ __('Cancel') }}
</button> </button>
</template> </template>
</div> </div>
......
...@@ -103,7 +103,7 @@ export default { ...@@ -103,7 +103,7 @@ export default {
</template> </template>
<i <i
class="fa fa-spinner fa-spin editing-spinner" class="fa fa-spinner fa-spin editing-spinner"
aria-label="Comment is being updated" :aria-label="__('Comment is being updated')"
aria-hidden="true" aria-hidden="true"
></i> ></i>
</span> </span>
......
<script> <script>
import { mapGetters } from 'vuex'; import { mapGetters } from 'vuex';
import { __, sprintf } from '~/locale';
export default { export default {
computed: { computed: {
...@@ -10,12 +11,24 @@ export default { ...@@ -10,12 +11,24 @@ export default {
signInLink() { signInLink() {
return this.getNotesDataByProp('newSessionPath'); return this.getNotesDataByProp('newSessionPath');
}, },
signedOutText() {
return sprintf(
__(
'Please %{startTagRegister}register%{endRegisterTag} or %{startTagSignIn}sign in%{endSignInTag} to reply',
),
{
startTagRegister: `<a href="${this.registerLink}">`,
startTagSignIn: `<a href="${this.signInLink}">`,
endRegisterTag: '</a>',
endSignInTag: '</a>',
},
false,
);
},
}, },
}; };
</script> </script>
<template> <template>
<div class="disabled-comment text-center"> <div class="disabled-comment text-center" v-html="signedOutText"></div>
Please <a :href="registerLink">register</a> or <a :href="signInLink">sign in</a> to reply
</div>
</template> </template>
...@@ -283,8 +283,9 @@ export default { ...@@ -283,8 +283,9 @@ export default {
this.removePlaceholderNotes(); this.removePlaceholderNotes();
this.isReplying = true; this.isReplying = true;
this.$nextTick(() => { this.$nextTick(() => {
const msg = `Your comment could not be submitted! const msg = __(
Please check your network connection and try again.`; 'Your comment could not be submitted! Please check your network connection and try again.',
);
Flash(msg, 'alert', this.$el); Flash(msg, 'alert', this.$el);
this.$refs.noteForm.note = noteText; this.$refs.noteForm.note = noteText;
callback(err); callback(err);
......
...@@ -5,7 +5,7 @@ import { escape } from 'underscore'; ...@@ -5,7 +5,7 @@ import { escape } from 'underscore';
import { truncateSha } from '~/lib/utils/text_utility'; import { truncateSha } from '~/lib/utils/text_utility';
import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue'; import TimelineEntryItem from '~/vue_shared/components/notes/timeline_entry_item.vue';
import draftMixin from 'ee_else_ce/notes/mixins/draft'; import draftMixin from 'ee_else_ce/notes/mixins/draft';
import { s__, sprintf } from '../../locale'; import { __, s__, sprintf } from '../../locale';
import Flash from '../../flash'; import Flash from '../../flash';
import userAvatarLink from '../../vue_shared/components/user_avatar/user_avatar_link.vue'; import userAvatarLink from '../../vue_shared/components/user_avatar/user_avatar_link.vue';
import noteHeader from './note_header.vue'; import noteHeader from './note_header.vue';
...@@ -128,9 +128,13 @@ export default { ...@@ -128,9 +128,13 @@ export default {
this.$emit('handleEdit'); this.$emit('handleEdit');
}, },
deleteHandler() { deleteHandler() {
const typeOfComment = this.note.isDraft ? 'pending comment' : 'comment'; const typeOfComment = this.note.isDraft ? __('pending comment') : __('comment');
// eslint-disable-next-line no-alert if (
if (window.confirm(`Are you sure you want to delete this ${typeOfComment}?`)) { // eslint-disable-next-line no-alert
window.confirm(
sprintf(__('Are you sure you want to delete this %{typeOfComment}?'), { typeOfComment }),
)
) {
this.isDeleting = true; this.isDeleting = true;
this.$emit('handleDeleteNote', this.note); this.$emit('handleDeleteNote', this.note);
...@@ -141,7 +145,7 @@ export default { ...@@ -141,7 +145,7 @@ export default {
this.isDeleting = false; this.isDeleting = false;
}) })
.catch(() => { .catch(() => {
Flash('Something went wrong while deleting your note. Please try again.'); Flash(__('Something went wrong while deleting your note. Please try again.'));
this.isDeleting = false; this.isDeleting = false;
}); });
} }
...@@ -185,7 +189,7 @@ export default { ...@@ -185,7 +189,7 @@ export default {
this.isRequesting = false; this.isRequesting = false;
this.isEditing = true; this.isEditing = true;
this.$nextTick(() => { this.$nextTick(() => {
const msg = 'Something went wrong while editing your comment. Please try again.'; const msg = __('Something went wrong while editing your comment. Please try again.');
Flash(msg, 'alert', this.$el); Flash(msg, 'alert', this.$el);
this.recoverNoteContent(noteText); this.recoverNoteContent(noteText);
callback(); callback();
...@@ -195,7 +199,7 @@ export default { ...@@ -195,7 +199,7 @@ export default {
formCancelHandler(shouldConfirm, isDirty) { formCancelHandler(shouldConfirm, isDirty) {
if (shouldConfirm && isDirty) { if (shouldConfirm && isDirty) {
// eslint-disable-next-line no-alert // eslint-disable-next-line no-alert
if (!window.confirm('Are you sure you want to cancel editing this comment?')) return; if (!window.confirm(__('Are you sure you want to cancel editing this comment?'))) return;
} }
this.$refs.noteBody.resetAutoSave(); this.$refs.noteBody.resetAutoSave();
if (this.oldContent) { if (this.oldContent) {
......
<script> <script>
import { __ } from '~/locale';
import { mapGetters, mapActions } from 'vuex'; import { mapGetters, mapActions } from 'vuex';
import { getLocationHash } from '../../lib/utils/url_utility'; import { getLocationHash } from '../../lib/utils/url_utility';
import Flash from '../../flash'; import Flash from '../../flash';
...@@ -170,7 +171,7 @@ export default { ...@@ -170,7 +171,7 @@ export default {
.catch(() => { .catch(() => {
this.setLoadingState(false); this.setLoadingState(false);
this.setNotesFetchedState(true); this.setNotesFetchedState(true);
Flash('Something went wrong while fetching comments. Please try again.'); Flash(__('Something went wrong while fetching comments. Please try again.'));
}); });
}, },
initPolling() { initPolling() {
......
...@@ -28,6 +28,12 @@ msgstr "" ...@@ -28,6 +28,12 @@ msgstr ""
msgid " You need to do this before %{grace_period_deadline}." msgid " You need to do this before %{grace_period_deadline}."
msgstr "" msgstr ""
msgid " and "
msgstr ""
msgid " and %{sliced}"
msgstr ""
msgid " or " msgid " or "
msgstr "" msgstr ""
...@@ -168,6 +174,9 @@ msgstr "" ...@@ -168,6 +174,9 @@ msgstr ""
msgid "%{link_start}Read more%{link_end} about role permissions" msgid "%{link_start}Read more%{link_end} about role permissions"
msgstr "" msgstr ""
msgid "%{listToShow}, and %{awardsListLength} more."
msgstr ""
msgid "%{loadingIcon} Started" msgid "%{loadingIcon} Started"
msgstr "" msgstr ""
...@@ -611,6 +620,9 @@ msgstr "" ...@@ -611,6 +620,9 @@ msgstr ""
msgid "Add a bullet list" msgid "Add a bullet list"
msgstr "" msgstr ""
msgid "Add a general comment to this %{noteableDisplayName}."
msgstr ""
msgid "Add a general comment to this %{noteable_name}." msgid "Add a general comment to this %{noteable_name}."
msgstr "" msgstr ""
...@@ -1202,6 +1214,9 @@ msgstr "" ...@@ -1202,6 +1214,9 @@ msgstr ""
msgid "Are you sure you want to cancel editing this comment?" msgid "Are you sure you want to cancel editing this comment?"
msgstr "" msgstr ""
msgid "Are you sure you want to delete this %{typeOfComment}?"
msgstr ""
msgid "Are you sure you want to delete this device? This action cannot be undone." msgid "Are you sure you want to delete this device? This action cannot be undone."
msgstr "" msgstr ""
...@@ -3722,6 +3737,12 @@ msgstr "" ...@@ -3722,6 +3737,12 @@ msgstr ""
msgid "Discuss a specific suggestion or question that needs to be resolved" msgid "Discuss a specific suggestion or question that needs to be resolved"
msgstr "" msgstr ""
msgid "Discuss a specific suggestion or question that needs to be resolved."
msgstr ""
msgid "Discuss a specific suggestion or question."
msgstr ""
msgid "Discussion" msgid "Discussion"
msgstr "" msgstr ""
...@@ -6906,6 +6927,9 @@ msgstr "" ...@@ -6906,6 +6927,9 @@ msgstr ""
msgid "Not started" msgid "Not started"
msgstr "" msgstr ""
msgid "Note"
msgstr ""
msgid "Note that this invitation was sent to %{mail_to_invite_email}, but you are signed in as %{link_to_current_user} with email %{mail_to_current_user}." msgid "Note that this invitation was sent to %{mail_to_invite_email}, but you are signed in as %{link_to_current_user} with email %{mail_to_current_user}."
msgstr "" msgstr ""
...@@ -7532,6 +7556,9 @@ msgstr "" ...@@ -7532,6 +7556,9 @@ msgstr ""
msgid "Please %{link_to_register} or %{link_to_sign_in} to comment" msgid "Please %{link_to_register} or %{link_to_sign_in} to comment"
msgstr "" msgstr ""
msgid "Please %{startTagRegister}register%{endRegisterTag} or %{startTagSignIn}sign in%{endSignInTag} to reply"
msgstr ""
msgid "Please accept the Terms of Service before continuing." msgid "Please accept the Terms of Service before continuing."
msgstr "" msgstr ""
...@@ -9593,6 +9620,9 @@ msgstr "" ...@@ -9593,6 +9620,9 @@ msgstr ""
msgid "Something went wrong while adding your award. Please try again." msgid "Something went wrong while adding your award. Please try again."
msgstr "" msgstr ""
msgid "Something went wrong while adding your comment. Please try again."
msgstr ""
msgid "Something went wrong while applying the suggestion. Please try again." msgid "Something went wrong while applying the suggestion. Please try again."
msgstr "" msgstr ""
...@@ -9602,6 +9632,12 @@ msgstr "" ...@@ -9602,6 +9632,12 @@ msgstr ""
msgid "Something went wrong while deleting the source branch. Please try again." msgid "Something went wrong while deleting the source branch. Please try again."
msgstr "" msgstr ""
msgid "Something went wrong while deleting your note. Please try again."
msgstr ""
msgid "Something went wrong while editing your comment. Please try again."
msgstr ""
msgid "Something went wrong while fetching comments. Please try again." msgid "Something went wrong while fetching comments. Please try again."
msgstr "" msgstr ""
...@@ -10618,6 +10654,9 @@ msgstr "" ...@@ -10618,6 +10654,9 @@ msgstr ""
msgid "This branch has changed since you started editing. Would you like to create a new branch?" msgid "This branch has changed since you started editing. Would you like to create a new branch?"
msgstr "" msgstr ""
msgid "This comment has changed since you started editing, please review the %{startTag}updated comment%{endTag} to ensure information is not lost."
msgstr ""
msgid "This commit is part of merge request %{link_to_merge_request}. Comments created here will be created in the context of that merge request." msgid "This commit is part of merge request %{link_to_merge_request}. Comments created here will be created in the context of that merge request."
msgstr "" msgstr ""
...@@ -12472,6 +12511,9 @@ msgstr "" ...@@ -12472,6 +12511,9 @@ msgstr ""
msgid "cannot include leading slash or directory traversal." msgid "cannot include leading slash or directory traversal."
msgstr "" msgstr ""
msgid "comment"
msgstr ""
msgid "commented on %{link_to_project}" msgid "commented on %{link_to_project}"
msgstr "" msgstr ""
...@@ -12597,6 +12639,9 @@ msgstr "" ...@@ -12597,6 +12639,9 @@ msgstr ""
msgid "is not an email you own" msgid "is not an email you own"
msgstr "" msgstr ""
msgid "issue"
msgstr ""
msgid "issue boards" msgid "issue boards"
msgstr "" msgstr ""
...@@ -12897,6 +12942,9 @@ msgstr[1] "" ...@@ -12897,6 +12942,9 @@ msgstr[1] ""
msgid "password" msgid "password"
msgstr "" msgstr ""
msgid "pending comment"
msgstr ""
msgid "private" msgid "private"
msgstr "" msgstr ""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment