...@@ -563,7 +563,7 @@ GitLabDropdown = (function() { ...@@ -563,7 +563,7 @@ GitLabDropdown = (function() {
e.stopPropagation(); e.stopPropagation();
// This prevents automatic scrolling to the top // This prevents automatic scrolling to the top
if ($target.is('a')) { if ($target.closest('a').length) {
return false; return false;
} }
} }
... ...
......
...@@ -56,7 +56,13 @@ export default { ...@@ -56,7 +56,13 @@ export default {
return Api.branchSingle(projectId, currentBranchId); return Api.branchSingle(projectId, currentBranchId);
}, },
commit(projectId, payload) { commit(projectId, payload) {
return Api.commitMultiple(projectId, payload); // Currently the `commit` endpoint does not support `start_sha` so we
// have to make the request in the FE. This is not ideal and will be
// resolved soon. https://gitlab.com/gitlab-org/gitlab-ce/issues/59023
const { branch, start_sha: ref } = payload;
const branchPromise = ref ? Api.createBranch(projectId, { ref, branch }) : Promise.resolve();
return branchPromise.then(() => Api.commitMultiple(projectId, payload));
}, },
getFiles(projectUrl, branchId) { getFiles(projectUrl, branchId) {
const url = `${projectUrl}/files/${branchId}`; const url = `${projectUrl}/files/${branchId}`;
... ...
......
...@@ -123,6 +123,7 @@ export const commitChanges = ({ commit, state, getters, dispatch, rootState, roo ...@@ -123,6 +123,7 @@ export const commitChanges = ({ commit, state, getters, dispatch, rootState, roo
getters, getters,
state, state,
rootState, rootState,
rootGetters,
}); });
return service.commit(rootState.currentProjectId, payload); return service.commit(rootState.currentProjectId, payload);
... ...
......
...@@ -135,7 +135,14 @@ export const getCommitFiles = stagedFiles => ...@@ -135,7 +135,14 @@ export const getCommitFiles = stagedFiles =>
}); });
}, []); }, []);
export const createCommitPayload = ({ branch, getters, newBranch, state, rootState }) => ({ export const createCommitPayload = ({
branch,
getters,
newBranch,
state,
rootState,
rootGetters,
}) => ({
branch, branch,
commit_message: state.commitMessage || getters.preBuiltCommitMessage, commit_message: state.commitMessage || getters.preBuiltCommitMessage,
actions: getCommitFiles(rootState.stagedFiles).map(f => ({ actions: getCommitFiles(rootState.stagedFiles).map(f => ({
...@@ -146,7 +153,7 @@ export const createCommitPayload = ({ branch, getters, newBranch, state, rootSta ...@@ -146,7 +153,7 @@ export const createCommitPayload = ({ branch, getters, newBranch, state, rootSta
encoding: f.base64 ? 'base64' : 'text', encoding: f.base64 ? 'base64' : 'text',
last_commit_id: newBranch || f.deleted || f.prevPath ? undefined : f.lastCommitSha, last_commit_id: newBranch || f.deleted || f.prevPath ? undefined : f.lastCommitSha,
})), })),
start_branch: newBranch ? rootState.currentBranchId : undefined, start_sha: newBranch ? rootGetters.lastCommit.short_id : undefined,
}); });
export const createNewMergeRequestUrl = (projectUrl, source, target) => export const createNewMergeRequestUrl = (projectUrl, source, target) =>
... ...
......
...@@ -11,7 +11,7 @@ class Import::FogbugzController < Import::BaseController ...@@ -11,7 +11,7 @@ class Import::FogbugzController < Import::BaseController
def callback def callback
begin begin
res = Gitlab::FogbugzImport::Client.new(import_params.symbolize_keys) res = Gitlab::FogbugzImport::Client.new(import_params.to_h.symbolize_keys)
rescue rescue
# If the URI is invalid various errors can occur # If the URI is invalid various errors can occur
return redirect_to new_import_fogbugz_path, alert: _('Could not connect to FogBugz, check your URL') return redirect_to new_import_fogbugz_path, alert: _('Could not connect to FogBugz, check your URL')
...@@ -26,7 +26,7 @@ class Import::FogbugzController < Import::BaseController ...@@ -26,7 +26,7 @@ class Import::FogbugzController < Import::BaseController
end end
def create_user_map def create_user_map
user_map = params[:users] user_map = user_map_params.to_h[:users]
unless user_map.is_a?(Hash) && user_map.all? { |k, v| !v[:name].blank? } unless user_map.is_a?(Hash) && user_map.all? { |k, v| !v[:name].blank? }
flash.now[:alert] = _('All users must have a name.') flash.now[:alert] = _('All users must have a name.')
...@@ -99,6 +99,10 @@ class Import::FogbugzController < Import::BaseController ...@@ -99,6 +99,10 @@ class Import::FogbugzController < Import::BaseController
params.permit(:uri, :email, :password) params.permit(:uri, :email, :password)
end end
def user_map_params
params.permit(users: %w(name email gitlab_user))
end
def verify_fogbugz_import_enabled def verify_fogbugz_import_enabled
render_404 unless fogbugz_import_enabled? render_404 unless fogbugz_import_enabled?
end end
... ...
......
...@@ -6,7 +6,7 @@ module Ci ...@@ -6,7 +6,7 @@ module Ci
class RegisterJobService class RegisterJobService
attr_reader :runner attr_reader :runner
JOB_QUEUE_DURATION_SECONDS_BUCKETS = [1, 3, 10, 30].freeze JOB_QUEUE_DURATION_SECONDS_BUCKETS = [1, 3, 10, 30, 60, 300].freeze
JOBS_RUNNING_FOR_PROJECT_MAX_BUCKET = 5.freeze JOBS_RUNNING_FOR_PROJECT_MAX_BUCKET = 5.freeze
Result = Struct.new(:build, :valid?) Result = Struct.new(:build, :valid?)
... ...
......
---
title: Fix IDE commit using latest ref in branch and overriding contents
merge_request: 29769
author:
type: fixed
---
title: Fix scrolling to top on assignee change
merge_request: 29500
author:
type: fixed
---
title: Fix Fogbugz Importer not working
merge_request: 29383
author:
type: fixed
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: ar\n" "X-Crowdin-Language: ar\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:34\n" "PO-Revision-Date: 2019-06-14 19:58\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5664,6 +5664,9 @@ msgstr "" ...@@ -5664,6 +5664,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -6099,6 +6102,9 @@ msgstr "" ...@@ -6099,6 +6102,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6570,6 +6576,9 @@ msgstr "" ...@@ -6570,6 +6576,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6927,6 +6936,9 @@ msgstr "" ...@@ -6927,6 +6936,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7218,6 +7230,9 @@ msgstr "" ...@@ -7218,6 +7230,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7635,6 +7650,9 @@ msgstr "" ...@@ -7635,6 +7650,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -8097,6 +8115,21 @@ msgstr "" ...@@ -8097,6 +8115,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10971,6 +11004,9 @@ msgstr "" ...@@ -10971,6 +11004,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: bg\n" "X-Crowdin-Language: bg\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:35\n" "PO-Revision-Date: 2019-06-14 19:59\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "Нов етикет" ...@@ -7443,6 +7458,9 @@ msgstr "Нов етикет"
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: bn\n" "X-Crowdin-Language: bn\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:35\n" "PO-Revision-Date: 2019-06-14 19:59\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "" ...@@ -7443,6 +7458,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: bn-IN\n" "X-Crowdin-Language: bn-IN\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:35\n" "PO-Revision-Date: 2019-06-14 19:59\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "" ...@@ -7443,6 +7458,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: ca\n" "X-Crowdin-Language: ca\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:36\n" "PO-Revision-Date: 2019-06-14 19:59\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "" ...@@ -7443,6 +7458,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: cs\n" "X-Crowdin-Language: cs\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:35\n" "PO-Revision-Date: 2019-06-14 19:58\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5578,6 +5578,9 @@ msgstr "" ...@@ -5578,6 +5578,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -6011,6 +6014,9 @@ msgstr "" ...@@ -6011,6 +6014,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6480,6 +6486,9 @@ msgstr "" ...@@ -6480,6 +6486,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6833,6 +6842,9 @@ msgstr "" ...@@ -6833,6 +6842,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7124,6 +7136,9 @@ msgstr "" ...@@ -7124,6 +7136,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7539,6 +7554,9 @@ msgstr "" ...@@ -7539,6 +7554,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7999,6 +8017,21 @@ msgstr "" ...@@ -7999,6 +8017,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10863,6 +10896,9 @@ msgstr "" ...@@ -10863,6 +10896,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: cy\n" "X-Crowdin-Language: cy\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:40\n" "PO-Revision-Date: 2019-06-14 20:03\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5664,6 +5664,9 @@ msgstr "" ...@@ -5664,6 +5664,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -6099,6 +6102,9 @@ msgstr "" ...@@ -6099,6 +6102,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6570,6 +6576,9 @@ msgstr "" ...@@ -6570,6 +6576,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6927,6 +6936,9 @@ msgstr "" ...@@ -6927,6 +6936,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7218,6 +7230,9 @@ msgstr "" ...@@ -7218,6 +7230,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7635,6 +7650,9 @@ msgstr "" ...@@ -7635,6 +7650,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -8097,6 +8115,21 @@ msgstr "" ...@@ -8097,6 +8115,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10971,6 +11004,9 @@ msgstr "" ...@@ -10971,6 +11004,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: da\n" "X-Crowdin-Language: da\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:37\n" "PO-Revision-Date: 2019-06-14 20:01\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "" ...@@ -7443,6 +7458,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: de\n" "X-Crowdin-Language: de\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:39\n" "PO-Revision-Date: 2019-06-14 20:03\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "Google Takeout" ...@@ -5492,6 +5492,9 @@ msgstr "Google Takeout"
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "Google-Authentifizierung ist nicht %{link_to_documentation}. Frage deinen GitLab Administrator, wenn du diesen Service nutzen möchtest." msgstr "Google-Authentifizierung ist nicht %{link_to_documentation}. Frage deinen GitLab Administrator, wenn du diesen Service nutzen möchtest."
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "Verstanden!" msgstr "Verstanden!"
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "Wenn diese Option deaktiviert ist, wird ein abweichender lokaler Branch nicht automatisch mit Commits von seinem remote Gegenstück aktualisiert, um lokalen Datenverlust zu verhindern. Wenn der Standardbranch (%{default_branch}) abweicht und nicht aktualisiert werden kann, schlägt die Spiegelung fehl. Andere abweichende Branches werden ohne Meldung ignoriert." msgstr "Wenn diese Option deaktiviert ist, wird ein abweichender lokaler Branch nicht automatisch mit Commits von seinem remote Gegenstück aktualisiert, um lokalen Datenverlust zu verhindern. Wenn der Standardbranch (%{default_branch}) abweicht und nicht aktualisiert werden kann, schlägt die Spiegelung fehl. Andere abweichende Branches werden ohne Meldung ignoriert."
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "Juli" msgstr "Juli"
...@@ -6739,6 +6748,9 @@ msgstr "Sperren" ...@@ -6739,6 +6748,9 @@ msgstr "Sperren"
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "Sperre %{issuableDisplayName}" msgstr "Sperre %{issuableDisplayName}"
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "Sperrung nicht gefunden" msgstr "Sperrung nicht gefunden"
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "%{paragraphStart}hat die Beschreibung %{descriptionChangedTimes} Mal %{timeDifferenceMinutes} geändert%{paragraphEnd}" msgstr "%{paragraphStart}hat die Beschreibung %{descriptionChangedTimes} Mal %{timeDifferenceMinutes} geändert%{paragraphEnd}"
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "Neuer Tag" ...@@ -7443,6 +7458,9 @@ msgstr "Neuer Tag"
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "Neu..." msgstr "Neu..."
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "Letzte »" msgstr "Letzte »"
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: el\n" "X-Crowdin-Language: el\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:39\n" "PO-Revision-Date: 2019-06-14 20:03\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "" ...@@ -7443,6 +7458,9 @@ msgstr ""
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......
...@@ -13,7 +13,7 @@ msgstr "" ...@@ -13,7 +13,7 @@ msgstr ""
"X-Crowdin-Project: gitlab-ee\n" "X-Crowdin-Project: gitlab-ee\n"
"X-Crowdin-Language: eo\n" "X-Crowdin-Language: eo\n"
"X-Crowdin-File: /master/locale/gitlab.pot\n" "X-Crowdin-File: /master/locale/gitlab.pot\n"
"PO-Revision-Date: 2019-04-12 12:38\n" "PO-Revision-Date: 2019-06-14 20:01\n"
msgid " Please sign in." msgid " Please sign in."
msgstr "" msgstr ""
...@@ -5492,6 +5492,9 @@ msgstr "" ...@@ -5492,6 +5492,9 @@ msgstr ""
msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service." msgid "Google authentication is not %{link_to_documentation}. Ask your GitLab administrator if you want to use this service."
msgstr "" msgstr ""
msgid "Got it"
msgstr ""
msgid "Got it!" msgid "Got it!"
msgstr "" msgstr ""
...@@ -5923,6 +5926,9 @@ msgstr "" ...@@ -5923,6 +5926,9 @@ msgstr ""
msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" msgid "If checked, group owners can manage LDAP group links and LDAP member overrides"
msgstr "" msgstr ""
msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization"
msgstr ""
msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored." msgid "If disabled, a diverged local branch will not be automatically updated with commits from its remote counterpart, to prevent local data loss. If the default branch (%{default_branch}) has diverged and cannot be updated, mirroring will fail. Other diverged branches are silently ignored."
msgstr "" msgstr ""
...@@ -6390,6 +6396,9 @@ msgstr "" ...@@ -6390,6 +6396,9 @@ msgstr ""
msgid "Job|with" msgid "Job|with"
msgstr "" msgstr ""
msgid "Join Zoom meeting"
msgstr ""
msgid "Jul" msgid "Jul"
msgstr "" msgstr ""
...@@ -6739,6 +6748,9 @@ msgstr "" ...@@ -6739,6 +6748,9 @@ msgstr ""
msgid "Lock %{issuableDisplayName}" msgid "Lock %{issuableDisplayName}"
msgstr "" msgstr ""
msgid "Lock memberships to LDAP synchronization"
msgstr ""
msgid "Lock not found" msgid "Lock not found"
msgstr "" msgstr ""
...@@ -7030,6 +7042,9 @@ msgstr "" ...@@ -7030,6 +7042,9 @@ msgstr ""
msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}"
msgstr "" msgstr ""
msgid "MergeRequest|Error dismissing suggestion popover. Please try again."
msgstr ""
msgid "MergeRequest|Error loading full diff. Please try again." msgid "MergeRequest|Error loading full diff. Please try again."
msgstr "" msgstr ""
...@@ -7443,6 +7458,9 @@ msgstr "Nova etikedo" ...@@ -7443,6 +7458,9 @@ msgstr "Nova etikedo"
msgid "New users set to external" msgid "New users set to external"
msgstr "" msgstr ""
msgid "New! Suggest changes directly"
msgstr ""
msgid "New..." msgid "New..."
msgstr "" msgstr ""
...@@ -7901,6 +7919,21 @@ msgstr "" ...@@ -7901,6 +7919,21 @@ msgstr ""
msgid "Pages Domains" msgid "Pages Domains"
msgstr "" msgstr ""
msgid "Pages getting started guide"
msgstr ""
msgid "Pagination|Go to first page"
msgstr ""
msgid "Pagination|Go to last page"
msgstr ""
msgid "Pagination|Go to next page"
msgstr ""
msgid "Pagination|Go to previous page"
msgstr ""
msgid "Pagination|Last »" msgid "Pagination|Last »"
msgstr "" msgstr ""
...@@ -10755,6 +10788,9 @@ msgstr "" ...@@ -10755,6 +10788,9 @@ msgstr ""
msgid "Successfully unlocked" msgid "Successfully unlocked"
msgstr "" msgstr ""
msgid "Suggest code changes which are immediately applied. Try it out!"
msgstr ""
msgid "Suggested change" msgid "Suggested change"
msgstr "" msgstr ""
... ...
......