Skip to content
Snippets Groups Projects
Commit 8d3aee36 authored by GitLab Bot's avatar GitLab Bot
Browse files

Add latest changes from gitlab-org/gitlab@master

parent 98420be3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1826,9 +1826,15 @@ msgstr ""
msgid "Any Milestone"
msgstr ""
 
msgid "Any eligible user"
msgstr ""
msgid "Any encrypted tokens"
msgstr ""
 
msgid "Any member with Developer or higher permissions to the project."
msgstr ""
msgid "Any namespace"
msgstr ""
 
Loading
Loading
@@ -1936,9 +1942,6 @@ msgid_plural "ApprovalRuleSummary|%{count} approvals required from %{membersCoun
msgstr[0] ""
msgstr[1] ""
 
msgid "ApprovalRule|All members with Developer role or higher and code owners (if any)"
msgstr ""
msgid "ApprovalRule|Approvers"
msgstr ""
 
Loading
Loading
@@ -4307,6 +4310,9 @@ msgstr ""
msgid "Code Owners"
msgstr ""
 
msgid "Code Owners to the merge request changes."
msgstr ""
msgid "Code owner approval is required"
msgstr ""
 
Loading
Loading
@@ -4737,9 +4743,6 @@ msgstr ""
msgid "Control the maximum concurrency of repository backfill for this secondary node"
msgstr ""
 
msgid "ConvDev Index"
msgstr ""
msgid "Cookie domain"
msgstr ""
 
Loading
Loading
@@ -4860,6 +4863,9 @@ msgstr ""
msgid "Could not remove the trigger."
msgstr ""
 
msgid "Could not restore the group"
msgstr ""
msgid "Could not revoke impersonation token %{token_name}."
msgstr ""
 
Loading
Loading
@@ -5910,6 +5916,9 @@ msgstr ""
msgid "Detect host keys"
msgstr ""
 
msgid "DevOps Score"
msgstr ""
msgid "Diff content limits"
msgstr ""
 
Loading
Loading
@@ -6012,10 +6021,10 @@ msgstr ""
msgid "Dismiss"
msgstr ""
 
msgid "Dismiss ConvDev introduction"
msgid "Dismiss Cycle Analytics introduction box"
msgstr ""
 
msgid "Dismiss Cycle Analytics introduction box"
msgid "Dismiss DevOps Score introduction"
msgstr ""
 
msgid "Dismiss Merge Request promotion"
Loading
Loading
@@ -8675,6 +8684,12 @@ msgstr ""
msgid "Group details"
msgstr ""
 
msgid "Group has been already marked for deletion"
msgstr ""
msgid "Group has not been marked for deletion"
msgstr ""
msgid "Group info:"
msgstr ""
 
Loading
Loading
@@ -9579,7 +9594,7 @@ msgstr ""
msgid "Introducing Cycle Analytics"
msgstr ""
 
msgid "Introducing Your Conversational Development Index"
msgid "Introducing Your DevOps Score"
msgstr ""
 
msgid "Invalid Git ref"
Loading
Loading
@@ -19351,6 +19366,9 @@ msgstr ""
msgid "Users"
msgstr ""
 
msgid "Users or groups set as approvers in the project's or merge request's settings."
msgstr ""
msgid "Users outside of license"
msgstr ""
 
Loading
Loading
@@ -19748,6 +19766,9 @@ msgstr ""
msgid "Whitelist to allow requests to the local network from hooks and services"
msgstr ""
 
msgid "Who can be an approver?"
msgstr ""
msgid "Who can see this group?"
msgstr ""
 
Loading
Loading
@@ -19973,6 +19994,9 @@ msgstr ""
msgid "You are not allowed to unlink your primary login account"
msgstr ""
 
msgid "You are not authorized to perform this action"
msgstr ""
msgid "You are now impersonating %{username}"
msgstr ""
 
Loading
Loading
@@ -20300,10 +20324,10 @@ msgstr ""
msgid "Your Commit Email will be used for web based operations, such as edits and merges."
msgstr ""
 
msgid "Your Conversational Development Index gives an overview of how you are using GitLab from a feature perspective. View how you compare with other organizations, discover features you are not using, and learn best practices through blog posts and white papers."
msgid "Your Default Notification Email will be used for account notifications if a %{openingTag}group-specific email address%{closingTag} is not set."
msgstr ""
 
msgid "Your Default Notification Email will be used for account notifications if a %{openingTag}group-specific email address%{closingTag} is not set."
msgid "Your DevOps Score gives an overview of how you are using GitLab from a feature perspective. View how you compare with other organizations, discover features you are not using, and learn best practices through blog posts and white papers."
msgstr ""
 
msgid "Your GPG keys (%{count})"
Loading
Loading
Loading
Loading
@@ -2,7 +2,7 @@
 
require 'spec_helper'
 
describe 'Dev Ops Score' do
describe 'DevOps Score' do
before do
sign_in(create(:admin))
end
Loading
Loading
@@ -10,11 +10,11 @@ describe 'Dev Ops Score' do
it 'has dismissable intro callout', :js do
visit instance_statistics_dev_ops_score_index_path
 
expect(page).to have_content 'Introducing Your Conversational Development Index'
expect(page).to have_content 'Introducing Your DevOps Score'
 
find('.js-close-callout').click
 
expect(page).not_to have_content 'Introducing Your Conversational Development Index'
expect(page).not_to have_content 'Introducing Your DevOps Score'
end
 
context 'when usage ping is disabled' do
Loading
Loading
@@ -31,7 +31,7 @@ describe 'Dev Ops Score' do
it 'hides the intro callout' do
visit instance_statistics_dev_ops_score_index_path
 
expect(page).not_to have_content 'Introducing Your Conversational Development Index'
expect(page).not_to have_content 'Introducing Your DevOps Score'
end
end
 
Loading
Loading
import BoardService from '~/boards/services/board_service';
import boardsStore from '~/boards/stores/boards_store';
 
export const setMockEndpoints = (opts = {}) => {
Loading
Loading
@@ -87,22 +86,6 @@ export const boardsMockInterceptor = config => {
return [200, body];
};
 
export const mockBoardService = (opts = {}) => {
const boardsEndpoint = opts.boardsEndpoint || '/test/issue-boards/-/boards.json';
const listsEndpoint = opts.listsEndpoint || '/test/-/boards/1/lists';
const bulkUpdatePath = opts.bulkUpdatePath || '';
const boardId = opts.boardId || '1';
boardsStore.setEndpoints({
boardsEndpoint,
listsEndpoint,
bulkUpdatePath,
boardId,
});
return new BoardService();
};
export const mockAssigneesList = [
{
id: 2,
Loading
Loading
Loading
Loading
@@ -42,7 +42,7 @@ describe SubmitUsagePingService do
subject.execute
end
 
it 'saves conversational development index data from the response' do
it 'saves DevOps Score data from the response' do
stub_response(with_conv_index_params)
 
expect { subject.execute }
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment