diff --git a/app/views/projects/protected_branches/shared/_branches_list.html.haml b/app/views/projects/protected_branches/shared/_branches_list.html.haml index f41e20e873dfa7a37e9361ac80af3c817d01816b..47eac175c93f67c7400ca7af996c60a0a8f39437 100644 --- a/app/views/projects/protected_branches/shared/_branches_list.html.haml +++ b/app/views/projects/protected_branches/shared/_branches_list.html.haml @@ -23,9 +23,9 @@ = s_("ProtectedBranch|Allowed to merge") %th = s_("ProtectedBranch|Allowed to push") - - if @project.merge_requests_require_code_owner_approval - %th - = s_("ProtectedBranch|Code owner approval") + + = render_if_exists 'shared/projects/code_owner_approval_table_head' + - if can_admin_project %th %tbody diff --git a/app/views/projects/protected_branches/shared/_create_protected_branch.html.haml b/app/views/projects/protected_branches/shared/_create_protected_branch.html.haml index b1d8d423e90bfbfe6f96c5311e71d1f25c3aca7c..95b3e49f3c434b6e295334f9f1f410c58bbf0143 100644 --- a/app/views/projects/protected_branches/shared/_create_protected_branch.html.haml +++ b/app/views/projects/protected_branches/shared/_create_protected_branch.html.haml @@ -24,19 +24,6 @@ = s_("ProtectedBranch|Allowed to push:") .col-md-10 = yield :push_access_levels - - - if @project.merge_requests_require_code_owner_approval - .form-group.row - %label.col-md-2.text-right{ for: 'code_owner_approval_required' } - = s_("ProtectedBranch|Require approval from code owners:") - .col-md-10 - %button{ type: 'button', - class: "js-project-feature-toggle project-feature-toggle is-checked", - "aria-label": s_("ProtectedBranch|Toggle code owner approval") } - %span.toggle-icon - = sprite_icon('status_success_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-checked') - = sprite_icon('status_failed_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-unchecked') - .form-text.text-muted - = s_("ProtectedBranch|Pushes that change filenames matched by the CODEOWNERS file will be rejected") + = render_if_exists 'shared/projects/code_owner_approval_form' .card-footer = f.submit s_('ProtectedBranch|Protect'), class: 'btn-success btn', disabled: true diff --git a/app/views/projects/protected_branches/shared/_protected_branch.html.haml b/app/views/projects/protected_branches/shared/_protected_branch.html.haml index 71c8d616eb96ef55d1a5120d44b0c6f17ea0f64d..53c1639235735154d061cebde61594d77990e401 100644 --- a/app/views/projects/protected_branches/shared/_protected_branch.html.haml +++ b/app/views/projects/protected_branches/shared/_protected_branch.html.haml @@ -19,14 +19,7 @@ = yield - - if @project.merge_requests_require_code_owner_approval - %td - %button{ type: 'button', - class: "js-project-feature-toggle project-feature-toggle mr-5 #{'is-checked' if protected_branch.code_owner_approval_required}", - "aria-label": s_("ProtectedBranch|Toggle code owner approval") } - %span.toggle-icon - = sprite_icon('status_success_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-checked') - = sprite_icon('status_failed_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-unchecked') + = render_if_exists 'shared/projects/code_owner_approval_table', protected_branch: protected_branch - if can_admin_project %td diff --git a/doc/user/project/protected_branches.md b/doc/user/project/protected_branches.md index ff47aea43d99027f88cdc4180f70671a0c840f08..3d0486daa05fbcbdd5f95d90672282fa558dfd6b 100644 --- a/doc/user/project/protected_branches.md +++ b/doc/user/project/protected_branches.md @@ -87,11 +87,7 @@ Click **Protect** and the branch will appear in the "Protected branch" list. ## Code Owners approvals **(PREMIUM)** It is possible to require at least one approval for each entry in the -<<<<<<< HEAD [`CODEOWNERS` file](code_owners.md) that matches a file changed in -======= -[`CODEOWNERS` file](../code_owners.md) that matches a file changed in ->>>>>>> Update docs to reflect changes to API and UI the merge request. To enable this feature: 1. Toggle the **Require approval from code owners** slider. diff --git a/ee/app/views/shared/projects/_code_owner_approval_form.html.haml b/ee/app/views/shared/projects/_code_owner_approval_form.html.haml new file mode 100644 index 0000000000000000000000000000000000000000..a504cac457aa41d1845a28e7b93a2f1f142876df --- /dev/null +++ b/ee/app/views/shared/projects/_code_owner_approval_form.html.haml @@ -0,0 +1,13 @@ +- if @project.merge_requests_require_code_owner_approval + .form-group.row + %label.col-md-2.text-right{ for: 'code_owner_approval_required' } + = s_("ProtectedBranch|Require approval from code owners:") + .col-md-10 + %button{ type: 'button', + class: "js-project-feature-toggle project-feature-toggle is-checked", + "aria-label": s_("ProtectedBranch|Toggle code owner approval") } + %span.toggle-icon + = sprite_icon('status_success_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-checked') + = sprite_icon('status_failed_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-unchecked') + .form-text.text-muted + = s_("ProtectedBranch|Pushes that change filenames matched by the CODEOWNERS file will be rejected") diff --git a/ee/app/views/shared/projects/_code_owner_approval_table.html.haml b/ee/app/views/shared/projects/_code_owner_approval_table.html.haml new file mode 100644 index 0000000000000000000000000000000000000000..5d135e9f8da5ce5fd4b2a4629836085bbca3aba7 --- /dev/null +++ b/ee/app/views/shared/projects/_code_owner_approval_table.html.haml @@ -0,0 +1,8 @@ +- if @project.merge_requests_require_code_owner_approval + %td + %button{ type: 'button', + class: "js-project-feature-toggle project-feature-toggle mr-5 #{'is-checked' if protected_branch.code_owner_approval_required}", + "aria-label": s_("ProtectedBranch|Toggle code owner approval") } + %span.toggle-icon + = sprite_icon('status_success_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-checked') + = sprite_icon('status_failed_borderless', size: 16, css_class: 'toggle-icon-svg toggle-status-unchecked') diff --git a/ee/app/views/shared/projects/_code_owner_approval_table_head.html.haml b/ee/app/views/shared/projects/_code_owner_approval_table_head.html.haml new file mode 100644 index 0000000000000000000000000000000000000000..017058ee9811900888f8f893ad82cc95d198ba75 --- /dev/null +++ b/ee/app/views/shared/projects/_code_owner_approval_table_head.html.haml @@ -0,0 +1,3 @@ +- if @project.merge_requests_require_code_owner_approval + %th + = s_("ProtectedBranch|Code owner approval") diff --git a/locale/gitlab.pot b/locale/gitlab.pot index 7e4122eb1e5e04a9aec7fea52edad791f24b34c3..b1824eca690dfa5a709ae340e10824baac293737 100644 --- a/locale/gitlab.pot +++ b/locale/gitlab.pot @@ -28,45 +28,15 @@ msgstr "" msgid " You need to do this before %{grace_period_deadline}." msgstr "" -msgid " and" -msgstr "" - msgid " and " msgstr "" msgid " and %{sliced}" msgstr "" -msgid " degraded on %d point" -msgid_plural " degraded on %d points" -msgstr[0] "" -msgstr[1] "" - -msgid " improved on %d point" -msgid_plural " improved on %d points" -msgstr[0] "" -msgstr[1] "" - msgid " or " msgstr "" -msgid " or " -msgstr "" - -msgid " or <#epic id>" -msgstr "" - -msgid " or <#issue id>" -msgstr "" - -msgid " or references (e.g. path/to/project!merge_request_id)" -msgstr "" - -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "" -msgstr[1] "" - msgid "%d commit" msgid_plural "%d commits" msgstr[0] "" @@ -105,21 +75,11 @@ msgid_plural "%d fixed test results" msgstr[0] "" msgstr[1] "" -msgid "%d inaccessible merge request" -msgid_plural "%d inaccessible merge requests" -msgstr[0] "" -msgstr[1] "" - msgid "%d issue" msgid_plural "%d issues" msgstr[0] "" msgstr[1] "" -msgid "%d issue selected" -msgid_plural "%d issues selected" -msgstr[0] "" -msgstr[1] "" - msgid "%d layer" msgid_plural "%d layers" msgstr[0] "" @@ -130,11 +90,6 @@ msgid_plural "%d merge requests" msgstr[0] "" msgstr[1] "" -msgid "%d merge request that you don't have access to." -msgid_plural "%d merge requests that you don't have access to." -msgstr[0] "" -msgstr[1] "" - msgid "%d metric" msgid_plural "%d metrics" msgstr[0] "" @@ -173,48 +128,20 @@ msgstr[1] "" msgid "%{actionText} & %{openOrClose} %{noteable}" msgstr "" -msgid "%{authorsName}'s thread" -msgstr "" - msgid "%{commit_author_link} authored %{commit_timeago}" msgstr "" -msgid "%{count} LOC/commit" -msgstr "" - -msgid "%{count} approval required from %{name}" -msgid_plural "%{count} approvals required from %{name}" -msgstr[0] "" -msgstr[1] "" - -msgid "%{count} approvals from %{name}" -msgstr "" - -msgid "%{count} files touched" -msgstr "" - msgid "%{count} more" msgstr "" msgid "%{count} more assignees" msgstr "" -msgid "%{count} of %{required} approvals from %{name}" -msgstr "" - -msgid "%{count} of %{total}" -msgstr "" - msgid "%{count} participant" msgid_plural "%{count} participants" msgstr[0] "" msgstr[1] "" -msgid "%{count} pending comment" -msgid_plural "%{count} pending comments" -msgstr[0] "" -msgstr[1] "" - msgid "%{duration}ms" msgstr "" @@ -230,9 +157,6 @@ msgstr "" msgid "%{edit_in_new_fork_notice} Try to upload a file again." msgstr "" -msgid "%{extra} more downstream pipelines" -msgstr "" - msgid "%{filePath} deleted" msgstr "" @@ -245,9 +169,6 @@ msgstr "" msgid "%{group_docs_link_start}Groups%{group_docs_link_end} allow you to manage and collaborate across multiple projects. Members of a group have access to all of its projects." msgstr "" -msgid "%{group_name} uses group managed accounts. You need to create a new GitLab account which will be managed by %{group_name}." -msgstr "" - msgid "%{icon}You are about to add %{usersTag} people to the discussion. Proceed with caution." msgstr "" @@ -290,9 +211,6 @@ msgstr "" msgid "%{name} found %{resultsString}" msgstr "" -msgid "%{name}'s avatar" -msgstr "" - msgid "%{number_commits_behind} commits behind %{default_branch}, %{number_commits_ahead} commits ahead" msgstr "" @@ -323,9 +241,6 @@ msgstr "" msgid "%{spammable_titlecase} was submitted to Akismet successfully." msgstr "" -msgid "%{state} epics" -msgstr "" - msgid "%{strong_start}%{branch_count}%{strong_end} Branch" msgid_plural "%{strong_start}%{branch_count}%{strong_end} Branches" msgstr[0] "" @@ -355,9 +270,6 @@ msgstr[1] "" msgid "%{text} is available" msgstr "" -msgid "%{title} %{operator} %{threshold}" -msgstr "" - msgid "%{title} changes" msgstr "" @@ -391,23 +303,9 @@ msgstr "" msgid "'%{source}' is not a import source" msgstr "" -msgid "(%d closed)" -msgid_plural "(%d closed)" -msgstr[0] "" -msgstr[1] "" - -msgid "(%{mrCount} merged)" -msgstr "" - -msgid "(No changes)" -msgstr "" - msgid "(Show all)" msgstr "" -msgid "(check progress)" -msgstr "" - msgid "(external source)" msgstr "" @@ -426,9 +324,6 @@ msgstr "" msgid "+ %{numberOfHiddenAssignees} more" msgstr "" -msgid "+%{extraOptionCount} more" -msgstr "" - msgid ", or " msgstr "" @@ -454,11 +349,6 @@ msgid_plural "%{count} %{type} modifications" msgstr[0] "" msgstr[1] "" -msgid "1 Day" -msgid_plural "%d Days" -msgstr[0] "" -msgstr[1] "" - msgid "1 closed issue" msgid_plural "%{issues} closed issues" msgstr[0] "" @@ -472,11 +362,6 @@ msgstr[1] "" msgid "1 day" msgstr "" -msgid "1 group" -msgid_plural "%d groups" -msgstr[0] "" -msgstr[1] "" - msgid "1 merged merge request" msgid_plural "%{merge_requests} merged merge requests" msgstr[0] "" @@ -497,16 +382,6 @@ msgid_plural "%d pipelines" msgstr[0] "" msgstr[1] "" -msgid "1 role" -msgid_plural "%d roles" -msgstr[0] "" -msgstr[1] "" - -msgid "1 user" -msgid_plural "%d users" -msgstr[0] "" -msgstr[1] "" - msgid "1 week" msgstr "" @@ -579,18 +454,9 @@ msgstr "" msgid "%{changedFilesLength} unstaged and %{stagedFilesLength} staged changes" msgstr "" -msgid "%{created_count} created, %{accepted_count} accepted." -msgstr "" - -msgid "%{created_count} created, %{closed_count} closed." -msgstr "" - msgid "%{group_name} group members" msgstr "" -msgid "%{pushes} pushes, more than %{commits} commits by %{people} contributors." -msgstr "" - msgid "Deletes source branch" msgstr "" @@ -663,9 +529,6 @@ msgstr "" msgid "API Token" msgstr "" -msgid "Abort" -msgstr "" - msgid "About GitLab" msgstr "" @@ -675,9 +538,6 @@ msgstr "" msgid "About auto deploy" msgstr "" -msgid "About this feature" -msgstr "" - msgid "Abuse Reports" msgstr "" @@ -690,9 +550,6 @@ msgstr "" msgid "Accept terms" msgstr "" -msgid "Accepted MR" -msgstr "" - msgid "Access Tokens" msgstr "" @@ -711,15 +568,6 @@ msgstr "" msgid "Access to '%{classification_label}' not allowed" msgstr "" -msgid "AccessDropdown|Groups" -msgstr "" - -msgid "AccessDropdown|Roles" -msgstr "" - -msgid "AccessDropdown|Users" -msgstr "" - msgid "AccessTokens|Access Tokens" msgstr "" @@ -789,12 +637,6 @@ msgstr "" msgid "Account: %{account}" msgstr "" -msgid "Action to take when receiving an alert." -msgstr "" - -msgid "Activate Service Desk" -msgstr "" - msgid "Active" msgstr "" @@ -807,9 +649,6 @@ msgstr "" msgid "Activity" msgstr "" -msgid "Add" -msgstr "" - msgid "Add %d issue" msgid_plural "Add %d issues" msgstr[0] "" @@ -821,15 +660,6 @@ msgstr "" msgid "Add CONTRIBUTING" msgstr "" -msgid "Add GitLab to Slack" -msgstr "" - -msgid "Add Group Webhooks and GitLab Enterprise Edition." -msgstr "" - -msgid "Add Jaeger URL" -msgstr "" - msgid "Add Kubernetes cluster" msgstr "" @@ -875,27 +705,12 @@ msgstr "" msgid "Add a task list" msgstr "" -msgid "Add additional text to appear in all email communications. %{character_limit} character limit" -msgstr "" - msgid "Add an SSH key" msgstr "" -msgid "Add an issue" -msgstr "" - -msgid "Add approval rule" -msgstr "" - -msgid "Add approvers" -msgstr "" - msgid "Add bold text" msgstr "" -msgid "Add child epic to an epic" -msgstr "" - msgid "Add comment now" msgstr "" @@ -938,18 +753,6 @@ msgstr "" msgid "Add reaction" msgstr "" -msgid "Add to Slack" -msgstr "" - -msgid "Add to epic" -msgstr "" - -msgid "Add to merge train" -msgstr "" - -msgid "Add to merge train when pipeline succeeds" -msgstr "" - msgid "Add to project" msgstr "" @@ -974,36 +777,21 @@ msgstr "" msgid "Added" msgstr "" -msgid "Added %{epic_ref} as child epic." -msgstr "" - msgid "Added %{label_references} %{label_text}." msgstr "" msgid "Added a To Do." msgstr "" -msgid "Added an issue to an epic." -msgstr "" - msgid "Added at" msgstr "" msgid "Adding new applications is disabled in your GitLab instance. Please contact your GitLab administrator to get the permission" msgstr "" -msgid "Additional minutes" -msgstr "" - -msgid "Additional text" -msgstr "" - msgid "Adds" msgstr "" -msgid "Adds %{epic_ref} as child epic." -msgstr "" - msgid "Adds %{labels} %{label_text}." msgstr "" @@ -1013,9 +801,6 @@ msgstr "" msgid "Adds a Zoom meeting" msgstr "" -msgid "Adds an issue to an epic." -msgstr "" - msgid "Admin Area" msgstr "" @@ -1025,9 +810,6 @@ msgstr "" msgid "Admin Section" msgstr "" -msgid "Admin notes" -msgstr "" - msgid "AdminArea| You are about to permanently delete the user %{username}. Issues, merge requests, and groups linked to them will be transferred to a system-wide \"Ghost-user\". To avoid data loss, consider using the %{strong_start}block user%{strong_end} feature instead. Once you %{strong_start}Delete user%{strong_end}, it cannot be undone or recovered." msgstr "" @@ -1052,9 +834,6 @@ msgstr "" msgid "AdminDashboard|Error loading the statistics. Please try again" msgstr "" -msgid "AdminNote|Note" -msgstr "" - msgid "AdminProjects| You’re about to permanently delete the project %{projectName}, its repository, and all related resources including issues, merge requests, etc.. Once you confirm and press %{strong_start}Delete project%{strong_end}, it cannot be undone or recovered." msgstr "" @@ -1076,27 +855,9 @@ msgstr "" msgid "AdminSettings|Environment variables are protected by default" msgstr "" -msgid "AdminSettings|No required pipeline" -msgstr "" - -msgid "AdminSettings|Required pipeline configuration" -msgstr "" - -msgid "AdminSettings|Select a pipeline configuration file" -msgstr "" - -msgid "AdminSettings|Select a template" -msgstr "" - -msgid "AdminSettings|Set an instance-wide auto included %{link_start}pipeline configuration%{link_end}. This pipeline configuration will be run after the project's own configuration." -msgstr "" - msgid "AdminSettings|Specify a domain to use by default for every project's Auto Review Apps and Auto Deploy stages." msgstr "" -msgid "AdminSettings|The required pipeline configuration can be selected from the %{code_start}gitlab-ci%{code_end} directory inside of the configured %{link_start}instance template repository%{link_end} or from GitLab provided configurations." -msgstr "" - msgid "AdminSettings|When creating a new environment variable it will be protected by default." msgstr "" @@ -1178,9 +939,6 @@ msgstr "" msgid "AdminUsers|Search users" msgstr "" -msgid "AdminUsers|Send email to users" -msgstr "" - msgid "AdminUsers|Sort by" msgstr "" @@ -1202,9 +960,6 @@ msgstr "" msgid "Advanced permissions, Large File Storage and Two-Factor authentication settings." msgstr "" -msgid "Advanced search functionality" -msgstr "" - msgid "Advanced settings" msgstr "" @@ -1214,44 +969,24 @@ msgstr "" msgid "After a successful password update, you will be redirected to the login page where you can log in with your new password." msgstr "" -msgid "Alert" -msgid_plural "Alerts" -msgstr[0] "" -msgstr[1] "" - -msgid "AlertService|%{linkStart}Learn more%{linkEnd} about configuring this endpoint to receive alerts." -msgstr "" - -msgid "AlertService|Each alert source must be authorized using the following URL and authorization key." -msgstr "" - msgid "Alerts" msgstr "" msgid "All" msgstr "" -msgid "All Members" -msgstr "" - msgid "All branches" msgstr "" msgid "All changes are committed" msgstr "" -msgid "All cross-project dependencies have merged" -msgstr "" - msgid "All email addresses will be used to identify your commits." msgstr "" msgid "All features are enabled for blank projects, from templates, or when importing, but you can disable them afterward in the project settings." msgstr "" -msgid "All groups and projects" -msgstr "" - msgid "All issues for this milestone are closed. You may close this milestone now." msgstr "" @@ -1267,15 +1002,9 @@ msgstr "" msgid "All users must have a name." msgstr "" -msgid "Allow \"%{group_name}\" to sign you in" -msgstr "" - msgid "Allow commits from members who can merge to the target branch." msgstr "" -msgid "Allow group owners to manage LDAP-related settings" -msgstr "" - msgid "Allow mirrors to be set up for projects" msgstr "" @@ -1312,21 +1041,12 @@ msgstr "" msgid "Allow users to request access if visibility is public or internal." msgstr "" -msgid "Allowed email domain restriction only permitted for top-level groups" -msgstr "" - msgid "Allowed to fail" msgstr "" msgid "Allows you to add and manage Kubernetes clusters." msgstr "" -msgid "Also called \"Issuer\" or \"Relying party trust identifier\"" -msgstr "" - -msgid "Also called \"Relying party service URL\" or \"Reply URL\"" -msgstr "" - msgid "Alternate support URL for help page and help dropdown" msgstr "" @@ -1342,21 +1062,9 @@ msgstr "" msgid "An error has occurred" msgstr "" -msgid "An error occurred adding a draft to the thread." -msgstr "" - -msgid "An error occurred adding a new draft." -msgstr "" - msgid "An error occurred creating the new branch." msgstr "" -msgid "An error occurred fetching the approval rules." -msgstr "" - -msgid "An error occurred fetching the approvers for the new rule." -msgstr "" - msgid "An error occurred fetching the dropdown data." msgstr "" @@ -1372,57 +1080,30 @@ msgstr "" msgid "An error occurred when trying to resolve a discussion. Please try again." msgstr "" -msgid "An error occurred when updating the issue weight" -msgstr "" - -msgid "An error occurred while deleting the approvers group" -msgstr "" - -msgid "An error occurred while deleting the comment" -msgstr "" - msgid "An error occurred while detecting host keys" msgstr "" -msgid "An error occurred while disabling Service Desk." -msgstr "" - msgid "An error occurred while dismissing the alert. Refresh the page and try again." msgstr "" msgid "An error occurred while dismissing the feature highlight. Refresh the page and try dismissing again." msgstr "" -msgid "An error occurred while enabling Service Desk." -msgstr "" - -msgid "An error occurred while fetching environments." -msgstr "" - msgid "An error occurred while fetching folder content." msgstr "" -msgid "An error occurred while fetching issues." -msgstr "" - msgid "An error occurred while fetching label colors." msgstr "" msgid "An error occurred while fetching markdown preview" msgstr "" -msgid "An error occurred while fetching pending comments" -msgstr "" - msgid "An error occurred while fetching projects autocomplete." msgstr "" msgid "An error occurred while fetching sidebar data" msgstr "" -msgid "An error occurred while fetching the Service Desk address." -msgstr "" - msgid "An error occurred while fetching the board lists. Please try again." msgstr "" @@ -1453,18 +1134,9 @@ msgstr "" msgid "An error occurred while importing project: %{details}" msgstr "" -msgid "An error occurred while initializing path locks" -msgstr "" - -msgid "An error occurred while loading chart data" -msgstr "" - msgid "An error occurred while loading commit signatures" msgstr "" -msgid "An error occurred while loading designs. Please try again." -msgstr "" - msgid "An error occurred while loading diff" msgstr "" @@ -1474,9 +1146,6 @@ msgstr "" msgid "An error occurred while loading the file" msgstr "" -msgid "An error occurred while loading the subscription details." -msgstr "" - msgid "An error occurred while making the request." msgstr "" @@ -1486,51 +1155,24 @@ msgstr "" msgid "An error occurred while parsing recent searches" msgstr "" -msgid "An error occurred while removing epics." -msgstr "" - -msgid "An error occurred while removing issues." -msgstr "" - msgid "An error occurred while rendering preview broadcast message" msgstr "" -msgid "An error occurred while reordering issues." -msgstr "" - msgid "An error occurred while retrieving calendar activity" msgstr "" msgid "An error occurred while retrieving diff" msgstr "" -msgid "An error occurred while saving LDAP override status. Please try again." -msgstr "" - msgid "An error occurred while saving assignees" msgstr "" -msgid "An error occurred while saving the approval settings" -msgstr "" - -msgid "An error occurred while subscribing to notifications." -msgstr "" - msgid "An error occurred while triggering the job." msgstr "" msgid "An error occurred while trying to run a new pipeline for this Merge Request." msgstr "" -msgid "An error occurred while unsubscribing to notifications." -msgstr "" - -msgid "An error occurred while updating approvers" -msgstr "" - -msgid "An error occurred while updating the comment" -msgstr "" - msgid "An error occurred while validating username" msgstr "" @@ -1573,30 +1215,6 @@ msgstr "" msgid "An issue can be a bug, a todo or a feature request that needs to be discussed in a project. Besides, issues are searchable and filterable." msgstr "" -msgid "An unexpected error occurred while checking the project environment." -msgstr "" - -msgid "An unexpected error occurred while checking the project runners." -msgstr "" - -msgid "An unexpected error occurred while communicating with the Web Terminal." -msgstr "" - -msgid "An unexpected error occurred while starting the Web Terminal." -msgstr "" - -msgid "An unexpected error occurred while stopping the Web Terminal." -msgstr "" - -msgid "Analytics" -msgstr "" - -msgid "Analytics|Timeframe" -msgstr "" - -msgid "Ancestors" -msgstr "" - msgid "Anonymous" msgstr "" @@ -1618,9 +1236,6 @@ msgstr "" msgid "Any namespace" msgstr "" -msgid "Any user" -msgstr "" - msgid "Appearance" msgstr "" @@ -1663,9 +1278,6 @@ msgstr "" msgid "Applied" msgstr "" -msgid "Apply a label" -msgstr "" - msgid "Apply suggestion" msgstr "" @@ -1681,62 +1293,6 @@ msgstr "" msgid "Applying suggestion" msgstr "" -msgid "ApprovalRuleRemove|%d member" -msgid_plural "ApprovalRuleRemove|%d members" -msgstr[0] "" -msgstr[1] "" - -msgid "ApprovalRuleRemove|Approvals from this member are not revoked." -msgid_plural "ApprovalRuleRemove|Approvals from these members are not revoked." -msgstr[0] "" -msgstr[1] "" - -msgid "ApprovalRuleRemove|You are about to remove the %{name} approver group which has %{nMembers}." -msgstr "" - -msgid "ApprovalRuleSummary|%d member" -msgid_plural "ApprovalRuleSummary|%d members" -msgstr[0] "" -msgstr[1] "" - -msgid "ApprovalRuleSummary|%{count} approval required from %{membersCount}" -msgid_plural "ApprovalRuleSummary|%{count} approvals required from %{membersCount}" -msgstr[0] "" -msgstr[1] "" - -msgid "ApprovalRule|All members with Developer role or higher and code owners (if any)" -msgstr "" - -msgid "ApprovalRule|Approvers" -msgstr "" - -msgid "ApprovalRule|Name" -msgstr "" - -msgid "ApprovalRule|No. approvals required" -msgstr "" - -msgid "ApprovalRule|Rule name" -msgstr "" - -msgid "ApprovalRule|e.g. QA, Security, etc." -msgstr "" - -msgid "Approvals" -msgstr "" - -msgid "Approve" -msgstr "" - -msgid "Approve a merge request" -msgstr "" - -msgid "Approve the current merge request." -msgstr "" - -msgid "Approved the current merge request." -msgstr "" - msgid "Apr" msgstr "" @@ -1797,9 +1353,6 @@ msgstr "" msgid "Are you sure you want to lose your issue information?" msgstr "" -msgid "Are you sure you want to permanently delete this license?" -msgstr "" - msgid "Are you sure you want to regenerate the public key? You will have to update the public key on the remote server before mirroring will work again." msgstr "" @@ -1815,9 +1368,6 @@ msgstr "" msgid "Are you sure you want to reset registration token?" msgstr "" -msgid "Are you sure you want to reset the SCIM token? SCIM provisioning will stop working until the new token is updated." -msgstr "" - msgid "Are you sure you want to reset the health check token?" msgstr "" @@ -1830,9 +1380,6 @@ msgstr "" msgid "Are you sure you want to stop this environment?" msgstr "" -msgid "Are you sure you want to unlock %{path_lock_path}?" -msgstr "" - msgid "Are you sure you want to unsubscribe from the %{type}: %{link_to_noteable_text}?" msgstr "" @@ -1848,9 +1395,6 @@ msgstr "" msgid "Are you sure? This will invalidate your registered applications and U2F devices." msgstr "" -msgid "Artifact ID" -msgstr "" - msgid "Artifacts" msgstr "" @@ -1869,15 +1413,9 @@ msgstr "" msgid "AsanaService|User Personal Access Token. User must have access to task, all comments will be attributed to this user." msgstr "" -msgid "Ascending" -msgstr "" - msgid "Ask your group maintainer to set up a group Runner." msgstr "" -msgid "Assertion consumer service URL" -msgstr "" - msgid "Assets" msgstr "" @@ -1887,9 +1425,6 @@ msgstr "" msgid "Assign custom color like #FF0000" msgstr "" -msgid "Assign epic" -msgstr "" - msgid "Assign labels" msgstr "" @@ -1925,21 +1460,12 @@ msgid_plural "%d Assignees" msgstr[0] "" msgstr[1] "" -msgid "Assignee lists not available with your current license" -msgstr "" - -msgid "Assignee lists show all issues assigned to the selected user." -msgstr "" - msgid "Assignee(s)" msgstr "" msgid "Assigns %{assignee_users_sentence}." msgstr "" -msgid "At least one approval from a code owner is required to change files matching the respective CODEOWNER rules." -msgstr "" - msgid "Attach a file" msgstr "" @@ -1954,12 +1480,6 @@ msgstr[1] "" msgid "Attaching the file failed." msgstr "" -msgid "Audit Events" -msgstr "" - -msgid "Audit Events is a way to keep track of important events that happened in GitLab." -msgstr "" - msgid "Aug" msgstr "" @@ -1996,9 +1516,6 @@ msgstr "" msgid "Authorization code:" msgstr "" -msgid "Authorization key" -msgstr "" - msgid "Authorization was granted by entering your username and password in the application." msgstr "" @@ -2029,9 +1546,6 @@ msgstr "" msgid "Auto DevOps, runners and job artifacts" msgstr "" -msgid "Auto License Compliance" -msgstr "" - msgid "Auto-cancel redundant, pending pipelines" msgstr "" @@ -2077,9 +1591,6 @@ msgstr "" msgid "Automatically resolved" msgstr "" -msgid "Automatically update this project's branches and tags from the upstream repository every hour." -msgstr "" - msgid "Autosave|Note" msgstr "" @@ -2194,9 +1705,6 @@ msgstr "" msgid "Badges|e.g. %{exampleUrl}" msgstr "" -msgid "Badge|New" -msgstr "" - msgid "Balsamiq file could not be loaded." msgstr "" @@ -2218,15 +1726,6 @@ msgstr "" msgid "BambooService|You must set up automatic revision labeling and a repository trigger in Bamboo." msgstr "" -msgid "BatchComments|Delete all pending comments" -msgstr "" - -msgid "BatchComments|Discard review?" -msgstr "" - -msgid "BatchComments|You're about to discard your review which will delete all of your pending comments. The deleted comments %{strong_start}cannot%{strong_end} be restored." -msgstr "" - msgid "Be careful. Changing the project's namespace can have unintended side effects." msgstr "" @@ -2242,72 +1741,6 @@ msgstr "" msgid "Below you will find all the groups that are public." msgstr "" -msgid "Billing" -msgstr "" - -msgid "BillingPlans|%{group_name} is currently using the %{plan_link} plan." -msgstr "" - -msgid "BillingPlans|@%{user_name} you are currently using the %{plan_link} plan." -msgstr "" - -msgid "BillingPlans|Current plan" -msgstr "" - -msgid "BillingPlans|Downgrade" -msgstr "" - -msgid "BillingPlans|If you would like to downgrade your plan please contact %{support_link_start}Customer Support%{support_link_end}." -msgstr "" - -msgid "BillingPlans|Learn more about each plan by reading our %{faq_link}, or start a free 30-day trial of GitLab.com Gold." -msgstr "" - -msgid "BillingPlans|Learn more about each plan by visiting our %{pricing_page_link}." -msgstr "" - -msgid "BillingPlans|Manage plan" -msgstr "" - -msgid "BillingPlans|Pricing page" -msgstr "" - -msgid "BillingPlans|See all %{plan_name} features" -msgstr "" - -msgid "BillingPlans|This group uses the plan associated with its parent group." -msgstr "" - -msgid "BillingPlans|To manage the plan for this group, visit the billing section of %{parent_billing_page_link}." -msgstr "" - -msgid "BillingPlans|Upgrade" -msgstr "" - -msgid "BillingPlans|Your GitLab.com trial expired on %{expiration_date}. %{learn_more_text}" -msgstr "" - -msgid "BillingPlans|Your GitLab.com trial will expire after %{expiration_date}. You can learn more about GitLab.com Gold by reading about our %{features_link}." -msgstr "" - -msgid "BillingPlans|features" -msgstr "" - -msgid "BillingPlans|frequently asked questions" -msgstr "" - -msgid "BillingPlans|monthly" -msgstr "" - -msgid "BillingPlans|paid annually at %{price_per_year}" -msgstr "" - -msgid "BillingPlans|per user" -msgstr "" - -msgid "BillingPlan|Upgrade plan" -msgstr "" - msgid "Bitbucket Server Import" msgstr "" @@ -2323,18 +1756,12 @@ msgstr "" msgid "Blog" msgstr "" -msgid "Blue helpers indicate an action to be taken." -msgstr "" - msgid "Board name" msgstr "" msgid "Board scope" msgstr "" -msgid "Board scope affects which issues are displayed for anyone who visits this board" -msgstr "" - msgid "BoardBlankState|Add default lists" msgstr "" @@ -2353,15 +1780,9 @@ msgstr "" msgid "Boards|Collapse" msgstr "" -msgid "Boards|Edit board" -msgstr "" - msgid "Boards|Expand" msgstr "" -msgid "Boards|View scope" -msgstr "" - msgid "Branch %{branchName} was not found in this project's repository." msgstr "" @@ -2476,9 +1897,6 @@ msgstr "" msgid "Branches|Stale branches" msgstr "" -msgid "Branches|The branch could not be updated automatically because it has diverged from its upstream counterpart." -msgstr "" - msgid "Branches|The default branch cannot be deleted" msgstr "" @@ -2491,15 +1909,9 @@ msgstr "" msgid "Branches|To confirm, type %{branch_name_confirmation}:" msgstr "" -msgid "Branches|To discard the local changes and overwrite the branch with the upstream version, delete it here and choose 'Update Now' above." -msgstr "" - msgid "Branches|You’re about to permanently delete the protected branch %{branch_name}." msgstr "" -msgid "Branches|diverged from upstream" -msgstr "" - msgid "Branches|merged" msgstr "" @@ -2527,36 +1939,9 @@ msgstr "" msgid "Browse files" msgstr "" -msgid "Built-in" -msgstr "" - -msgid "BurndownChartLabel|Guideline" -msgstr "" - -msgid "BurndownChartLabel|Open issue weight" -msgstr "" - -msgid "BurndownChartLabel|Open issues" -msgstr "" - -msgid "BurndownChartLabel|Progress" -msgstr "" - -msgid "BurndownChartLabel|Remaining" -msgstr "" - -msgid "Business" -msgstr "" - msgid "Business metrics (Custom)" msgstr "" -msgid "Buy EE" -msgstr "" - -msgid "Buy GitLab Enterprise Edition" -msgstr "" - msgid "By %{user_name}" msgstr "" @@ -2587,18 +1972,12 @@ msgstr "" msgid "CI variables" msgstr "" -msgid "CI will run using the credentials assigned above." -msgstr "" - msgid "CI/CD" msgstr "" msgid "CI/CD configuration" msgstr "" -msgid "CI/CD for external repo" -msgstr "" - msgid "CI/CD settings" msgstr "" @@ -2656,24 +2035,15 @@ msgstr "" msgid "Callback URL" msgstr "" -msgid "Can override approvers and approvals required per merge request" -msgstr "" - msgid "Can't find HEAD commit for this branch" msgstr "" msgid "Can't find variable: ZiteReader" msgstr "" -msgid "Can't remove group members without group managed account" -msgstr "" - msgid "Can't scan the code?" msgstr "" -msgid "Canary Deployments is a popular CI strategy, where a small portion of the fleet is updated to the new version of your application." -msgstr "" - msgid "Cancel" msgstr "" @@ -2713,27 +2083,15 @@ msgstr "" msgid "Cannot skip two factor authentication setup" msgstr "" -msgid "Capacity threshold" -msgstr "" - msgid "Certificate" msgstr "" msgid "Certificate (PEM)" msgstr "" -msgid "Change Weight" -msgstr "" - msgid "Change assignee" msgstr "" -msgid "Change assignee(s)" -msgstr "" - -msgid "Change assignee(s)." -msgstr "" - msgid "Change label" msgstr "" @@ -2776,9 +2134,6 @@ msgstr "" msgid "ChangeTypeAction|This will create a new commit in order to revert the existing changes." msgstr "" -msgid "Changed assignee(s)." -msgstr "" - msgid "Changed the title to \"%{title_param}\"." msgstr "" @@ -2794,9 +2149,6 @@ msgstr "" msgid "Changes the title to \"%{title_param}\"." msgstr "" -msgid "Changes won't take place until the index is %{link_start}recreated%{link_end}." -msgstr "" - msgid "Charts" msgstr "" @@ -2857,9 +2209,6 @@ msgstr "" msgid "Check again" msgstr "" -msgid "Check feature availability on namespace plan" -msgstr "" - msgid "Check the %{docs_link_start}documentation%{docs_link_end}." msgstr "" @@ -2869,9 +2218,6 @@ msgstr "" msgid "Checking %{text} availability…" msgstr "" -msgid "Checking approval status" -msgstr "" - msgid "Checking branch availability..." msgstr "" @@ -2896,9 +2242,6 @@ msgstr "" msgid "Choose a file" msgstr "" -msgid "Choose a group" -msgstr "" - msgid "Choose a role permission" msgstr "" @@ -2926,15 +2269,6 @@ msgstr "" msgid "Choose visibility level, enable/disable project features (issues, repository, wiki, snippets) and set permissions." msgstr "" -msgid "Choose what content you want to see on a group’s overview page" -msgstr "" - -msgid "Choose which repositories you want to connect and run CI/CD pipelines." -msgstr "" - -msgid "Choose which shards you wish to synchronize to this secondary node." -msgstr "" - msgid "CiStatusLabel|canceled" msgstr "" @@ -3082,9 +2416,6 @@ msgstr "" msgid "Clear" msgstr "" -msgid "Clear input" -msgstr "" - msgid "Clear recent searches" msgstr "" @@ -3097,21 +2428,9 @@ msgstr "" msgid "Clear templates search input" msgstr "" -msgid "Clear weight" -msgstr "" - -msgid "Cleared weight." -msgstr "" - -msgid "Clears weight." -msgstr "" - msgid "Click any project name in the project list below to navigate to the project milestone." msgstr "" -msgid "Click here" -msgstr "" - msgid "Click the Download button and wait for downloading to complete." msgstr "" @@ -3124,9 +2443,6 @@ msgstr "" msgid "Click the button below to begin the install process by navigating to the Kubernetes page" msgstr "" -msgid "Click the image where you'd like to start a new discussion" -msgstr "" - msgid "Click to expand it." msgstr "" @@ -3154,9 +2470,6 @@ msgstr "" msgid "Clone with %{http_label}" msgstr "" -msgid "Clone with KRB5" -msgstr "" - msgid "Clone with SSH" msgstr "" @@ -3166,9 +2479,6 @@ msgstr "" msgid "Close %{tabname}" msgstr "" -msgid "Close epic" -msgstr "" - msgid "Close milestone" msgstr "" @@ -3181,9 +2491,6 @@ msgstr "" msgid "Closed" msgstr "" -msgid "Closed issues" -msgstr "" - msgid "Closed this %{quick_action_target}." msgstr "" @@ -3193,9 +2500,6 @@ msgstr "" msgid "Cluster %{cluster} was used." msgstr "" -msgid "Cluster Health" -msgstr "" - msgid "ClusterIntegration| %{custom_domain_start}More information%{custom_domain_end}." msgstr "" @@ -3307,9 +2611,6 @@ msgstr "" msgid "ClusterIntegration|Choose which of your environments will use this cluster." msgstr "" -msgid "ClusterIntegration|Cluster health" -msgstr "" - msgid "ClusterIntegration|Cluster name is required." msgstr "" @@ -3415,12 +2716,6 @@ msgstr "" msgid "ClusterIntegration|Hide" msgstr "" -msgid "ClusterIntegration|If you are setting up multiple clusters and are using Auto DevOps, %{help_link_start}read this first%{help_link_end}." -msgstr "" - -msgid "ClusterIntegration|In order to view the health of your cluster, you must first install Prometheus below." -msgstr "" - msgid "ClusterIntegration|Ingress" msgstr "" @@ -3739,27 +3034,12 @@ msgstr "" msgid "Code" msgstr "" -msgid "Code Owners" -msgstr "" - -msgid "Code owner approval is required" -msgstr "" - -msgid "Code owners" -msgstr "" - -msgid "CodeOwner|Pattern" -msgstr "" - msgid "Cohorts" msgstr "" msgid "Collapse" msgstr "" -msgid "Collapse approvers" -msgstr "" - msgid "Collapse sidebar" msgstr "" @@ -3879,9 +3159,6 @@ msgstr "" msgid "Commit…" msgstr "" -msgid "Company" -msgstr "" - msgid "Compare" msgstr "" @@ -3915,21 +3192,12 @@ msgstr "" msgid "CompareBranches|There isn't anything to compare." msgstr "" -msgid "Complete" -msgstr "" - msgid "Confidential" msgstr "" msgid "Confidentiality" msgstr "" -msgid "Configuration" -msgstr "" - -msgid "Configure GitLab runners to start using the Web Terminal. %{helpStart}Learn more.%{helpEnd}" -msgstr "" - msgid "Configure Gitaly timeouts." msgstr "" @@ -3939,12 +3207,6 @@ msgstr "" msgid "Configure Prometheus" msgstr "" -msgid "Configure Tracing" -msgstr "" - -msgid "Configure a .gitlab-webide.yml file in the .gitlab directory to start using the Web Terminal. %{helpStart}Learn more.%{helpEnd}" -msgstr "" - msgid "Configure automatic git checks and housekeeping on repositories." msgstr "" @@ -3981,36 +3243,12 @@ msgstr "" msgid "Connect" msgstr "" -msgid "Connect all repositories" -msgstr "" - msgid "Connect repositories from GitHub" msgstr "" -msgid "Connect your external repositories, and CI/CD pipelines will run for new commits. A GitLab project will be created with only CI/CD features enabled." -msgstr "" - -msgid "Connecting to terminal sync service" -msgstr "" - -msgid "Connecting..." -msgstr "" - msgid "Connection failure" msgstr "" -msgid "Contact an owner of group %{namespace_name} to upgrade the plan." -msgstr "" - -msgid "Contact owner %{link_start}%{owner_name}%{link_end} to upgrade the plan." -msgstr "" - -msgid "Contact sales to upgrade" -msgstr "" - -msgid "Contact your Administrator to upgrade your license." -msgstr "" - msgid "Container Registry" msgstr "" @@ -4085,9 +3323,6 @@ msgstr "" msgid "ContainerRegistry|You can add an image to this registry with the following commands:" msgstr "" -msgid "Contains %{count} blobs of images (%{size})" -msgstr "" - msgid "Contents of .gitlab-ci.yml" msgstr "" @@ -4115,9 +3350,6 @@ msgstr "" msgid "Contributions for %{calendar_date}" msgstr "" -msgid "Contributions per group member" -msgstr "" - msgid "Contributors" msgstr "" @@ -4139,9 +3371,6 @@ msgstr "" msgid "Control the display of third party offers." msgstr "" -msgid "Control the maximum concurrency of repository backfill for this secondary node" -msgstr "" - msgid "ConvDev Index" msgstr "" @@ -4160,15 +3389,9 @@ msgstr "" msgid "Copy %{protocol} clone URL" msgstr "" -msgid "Copy %{proxy_url} to clipboard" -msgstr "" - msgid "Copy ID to clipboard" msgstr "" -msgid "Copy KRB5 clone URL" -msgstr "" - msgid "Copy SSH clone URL" msgstr "" @@ -4232,9 +3455,6 @@ msgstr "" msgid "Could not connect to FogBugz, check your URL" msgstr "" -msgid "Could not connect to Web IDE file mirror service." -msgstr "" - msgid "Could not create Wiki Repository at this time. Please try again later." msgstr "" @@ -4280,9 +3500,6 @@ msgstr "" msgid "Create a GitLab account first, and then connect it to your %{label} account." msgstr "" -msgid "Create a local proxy for storing frequently used upstream images. %{link_start}Learn more%{link_end} about dependency proxies." -msgstr "" - msgid "Create a merge request" msgstr "" @@ -4301,9 +3518,6 @@ msgstr "" msgid "Create a personal access token on your account to pull or push via %{protocol}." msgstr "" -msgid "Create an issue. Issues are created for each alert triggered." -msgstr "" - msgid "Create and provide your GitHub %{link_start}Personal Access Token%{link_end}. You will need to select the repo scope, so we can display a list of your public and private repositories which are available to import." msgstr "" @@ -4328,9 +3542,6 @@ msgstr "" msgid "Create empty repository" msgstr "" -msgid "Create epic" -msgstr "" - msgid "Create file" msgstr "" @@ -4409,18 +3620,6 @@ msgstr "" msgid "Created by me" msgstr "" -msgid "Created issue %{issueLink}" -msgstr "" - -msgid "Created issue %{issueLink} at %{projectLink}" -msgstr "" - -msgid "Created merge request %{mergeRequestLink}" -msgstr "" - -msgid "Created merge request %{mergeRequestLink} at %{projectLink}" -msgstr "" - msgid "Created on" msgstr "" @@ -4433,9 +3632,6 @@ msgstr "" msgid "Creates branch '%{branch_name}' and a merge request to resolve this issue." msgstr "" -msgid "Creating epic" -msgstr "" - msgid "Creating graphs uses the data from the Prometheus server. If this takes a long time, ensure that data is available." msgstr "" @@ -4445,18 +3641,9 @@ msgstr "" msgid "Cron syntax" msgstr "" -msgid "Cross-project dependencies" -msgstr "" - msgid "Current Branch" msgstr "" -msgid "Current Project" -msgstr "" - -msgid "Current node" -msgstr "" - msgid "Current password" msgstr "" @@ -4478,15 +3665,6 @@ msgstr "" msgid "Custom notification levels are the same as participating levels. With custom notification levels you will also receive notifications for select events. To find out more, check out %{notification_link}." msgstr "" -msgid "Custom project templates" -msgstr "" - -msgid "Custom project templates have not been set up for groups that you are a member of. They are enabled from a group’s settings page. Contact your group’s Owner or Maintainer to setup custom project templates." -msgstr "" - -msgid "CustomCycleAnalytics|Add a stage" -msgstr "" - msgid "Customize colors" msgstr "" @@ -4511,9 +3689,6 @@ msgstr "" msgid "Cycle Analytics" msgstr "" -msgid "Cycle Analytics can help you determine your team’s velocity" -msgstr "" - msgid "Cycle Analytics gives an overview of how much time it takes to go from idea to production in your project." msgstr "" @@ -4562,31 +3737,6 @@ msgstr "" msgid "CycleAnalyticsStage|Test" msgstr "" -msgid "CycleAnalytics|%{projectName}" -msgid_plural "CycleAnalytics|%d projects selected" -msgstr[0] "" -msgstr[1] "" - -msgid "CycleAnalytics|%{stageName}" -msgid_plural "CycleAnalytics|%d stages selected" -msgstr[0] "" -msgstr[1] "" - -msgid "CycleAnalytics|All stages" -msgstr "" - -msgid "CycleAnalytics|Stages" -msgstr "" - -msgid "CycleAnalytics|group dropdown filter" -msgstr "" - -msgid "CycleAnalytics|project dropdown filter" -msgstr "" - -msgid "CycleAnalytics|stage dropdown" -msgstr "" - msgid "DNS" msgstr "" @@ -4602,18 +3752,6 @@ msgstr "" msgid "DashboardProjects|Trending" msgstr "" -msgid "Dashboards" -msgstr "" - -msgid "Dashboard|%{firstProject} and %{secondProject}" -msgstr "" - -msgid "Dashboard|%{firstProject}, %{rest}, and %{secondProject}" -msgstr "" - -msgid "Dashboard|Unable to add %{invalidProjects}. This dashboard is available for public projects, and private projects in groups with a Silver plan." -msgstr "" - msgid "Data is still calculating..." msgstr "" @@ -4632,12 +3770,6 @@ msgstr "" msgid "DayTitle|W" msgstr "" -msgid "Days" -msgstr "" - -msgid "Days to merge" -msgstr "" - msgid "Debug" msgstr "" @@ -4668,24 +3800,12 @@ msgstr "" msgid "Default classification label" msgstr "" -msgid "Default description template for issues" -msgstr "" - -msgid "Default description template for merge requests" -msgstr "" - msgid "Default first day of the week" msgstr "" msgid "Default first day of the week in calendars and date pickers." msgstr "" -msgid "Default issue template" -msgstr "" - -msgid "Default project deletion protection" -msgstr "" - msgid "Default: Directly import the Google Code email address or username" msgstr "" @@ -4716,12 +3836,6 @@ msgstr "" msgid "Delete" msgstr "" -msgid "Delete Comment" -msgstr "" - -msgid "Delete Package" -msgstr "" - msgid "Delete Snippet" msgstr "" @@ -4731,9 +3845,6 @@ msgstr "" msgid "Delete comment" msgstr "" -msgid "Delete license" -msgstr "" - msgid "Delete list" msgstr "" @@ -4764,107 +3875,12 @@ msgstr "" msgid "Deleted chat nickname: %{chat_name}!" msgstr "" -msgid "Deleting the license failed." -msgstr "" - -msgid "Deleting the license failed. The license was not found." -msgstr "" - -msgid "Deleting the license failed. You are not permitted to perform this action." -msgstr "" - msgid "Denied authorization of chat nickname %{user_name}." msgstr "" msgid "Deny" msgstr "" -msgid "Dependencies" -msgstr "" - -msgid "Dependencies|%d additional vulnerability not shown" -msgid_plural "Dependencies|%d additional vulnerabilities not shown" -msgstr[0] "" -msgstr[1] "" - -msgid "Dependencies|%d vulnerability" -msgid_plural "Dependencies|%d vulnerabilities" -msgstr[0] "" -msgstr[1] "" - -msgid "Dependencies|%{remainingLicensesCount} more" -msgstr "" - -msgid "Dependencies|All" -msgstr "" - -msgid "Dependencies|Component" -msgstr "" - -msgid "Dependencies|Component name" -msgstr "" - -msgid "Dependencies|Export as JSON" -msgstr "" - -msgid "Dependencies|Job failed to generate the dependency list" -msgstr "" - -msgid "Dependencies|License" -msgstr "" - -msgid "Dependencies|Location" -msgstr "" - -msgid "Dependencies|Packager" -msgstr "" - -msgid "Dependencies|Safe" -msgstr "" - -msgid "Dependencies|Status" -msgstr "" - -msgid "Dependencies|The %{codeStartTag}dependency_scanning%{codeEndTag} job has failed and cannot generate the list. Please ensure the job is running properly and run the pipeline again." -msgstr "" - -msgid "Dependencies|Unsupported file(s) detected" -msgstr "" - -msgid "Dependencies|Version" -msgstr "" - -msgid "Dependencies|Vulnerable components" -msgstr "" - -msgid "Dependency List" -msgstr "" - -msgid "Dependency Proxy" -msgstr "" - -msgid "Dependency proxy" -msgstr "" - -msgid "Dependency proxy URL" -msgstr "" - -msgid "Dependency proxy feature is limited to public groups for now." -msgstr "" - -msgid "DependencyProxy|Toggle Dependency Proxy" -msgstr "" - -msgid "Depends on %d merge request being merged" -msgid_plural "Depends on %d merge requests being merged" -msgstr[0] "" -msgstr[1] "" - -msgid "Depends on %d closed merge request." -msgid_plural "Depends on %d closed merge requests." -msgstr[0] "" -msgstr[1] "" - msgid "Deploy" msgid_plural "Deploys" msgstr[0] "" @@ -4876,15 +3892,9 @@ msgstr "" msgid "Deploy key was successfully updated." msgstr "" -msgid "Deploy progress not found. To see pods, ensure your environment matches %{linkStart}deploy board criteria%{linkEnd}." -msgstr "" - msgid "Deploy to..." msgstr "" -msgid "DeployBoard|Matching on the %{appLabel} label has been removed for deploy boards. To see all instances on your board, you must update your chart and redeploy." -msgstr "" - msgid "DeployKeys|+%{count} others" msgstr "" @@ -5023,18 +4033,9 @@ msgstr "" msgid "Deprioritize label" msgstr "" -msgid "Descending" -msgstr "" - msgid "Description" msgstr "" -msgid "Description parsed with %{link_start}GitLab Flavored Markdown%{link_end}" -msgstr "" - -msgid "Description templates allow you to define context-specific templates for issue and merge request description fields for your project." -msgstr "" - msgid "Description:" msgstr "" @@ -5044,66 +4045,12 @@ msgstr "" msgid "Deselect all" msgstr "" -msgid "DesignManagement|%{current_design} of %{designs_count}" -msgstr "" - -msgid "DesignManagement|Add designs" -msgstr "" - -msgid "DesignManagement|Adding a design with the same filename replaces the file in a new version." -msgstr "" - -msgid "DesignManagement|An error occurred while loading designs. Please try again." -msgstr "" - -msgid "DesignManagement|Could not add a new comment. Please try again" -msgstr "" - -msgid "DesignManagement|Could not create new discussion, please try again." -msgstr "" - -msgid "DesignManagement|Could not find design, please try again." -msgstr "" - -msgid "DesignManagement|Error uploading a new design. Please try again" -msgstr "" - -msgid "DesignManagement|Go back to designs" -msgstr "" - -msgid "DesignManagement|Go to next design" -msgstr "" - -msgid "DesignManagement|Go to previous design" -msgstr "" - -msgid "DesignManagement|Requested design version does not exist" -msgstr "" - -msgid "DesignManagement|Requested design version does not exist. Showing latest version instead" -msgstr "" - -msgid "DesignManagement|The maximum number of designs allowed to be uploaded is %{upload_limit}. Please try again." -msgstr "" - -msgid "DesignManagement|The one place for your designs" -msgstr "" - -msgid "DesignManagement|Upload and view the latest designs for this issue. Consistent and easy to find, so everyone is up to date." -msgstr "" - -msgid "Designs" -msgstr "" - msgid "Destroy" msgstr "" msgid "Details" msgstr "" -msgid "Details (default)" -msgstr "" - msgid "Detect host keys" msgstr "" @@ -5173,18 +4120,12 @@ msgstr "" msgid "Discard draft" msgstr "" -msgid "Discard review" -msgstr "" - msgid "DiscordService|Discord Notifications" msgstr "" msgid "DiscordService|Receive event notifications in Discord" msgstr "" -msgid "Discover GitLab Geo" -msgstr "" - msgid "Discover projects, groups and snippets. Share your projects with others" msgstr "" @@ -5212,24 +4153,6 @@ msgstr "" msgid "Dismiss Cycle Analytics introduction box" msgstr "" -msgid "Dismiss Merge Request promotion" -msgstr "" - -msgid "Dismiss trial promotion" -msgstr "" - -msgid "Dismissed" -msgstr "" - -msgid "Dismissed at %{projectLink}" -msgstr "" - -msgid "Dismissed on pipeline %{pipelineLink}" -msgstr "" - -msgid "Dismissed on pipeline %{pipelineLink} at %{projectLink}" -msgstr "" - msgid "Display name" msgstr "" @@ -5239,9 +4162,6 @@ msgstr "" msgid "Dockerfile" msgstr "" -msgid "Documentation for popular identity providers" -msgstr "" - msgid "Doing" msgstr "" @@ -5257,9 +4177,6 @@ msgstr "" msgid "Don't show again" msgstr "" -msgid "Don't worry, you can access this tour by clicking on the help icon in the top right corner and choose Learn GitLab." -msgstr "" - msgid "Done" msgstr "" @@ -5287,9 +4204,6 @@ msgstr "" msgid "Download image" msgstr "" -msgid "Download license" -msgstr "" - msgid "Download source code" msgstr "" @@ -5305,33 +4219,18 @@ msgstr "" msgid "DownloadSource|Download" msgstr "" -msgid "Downstream" -msgstr "" - msgid "Downvotes" msgstr "" msgid "Due date" msgstr "" -msgid "During this process, you’ll be asked for URLs from GitLab’s side. Use the URLs shown below." -msgstr "" - msgid "Each Runner can be in one of the following states:" msgstr "" msgid "Edit" msgstr "" -msgid "Edit %{issuable}" -msgstr "" - -msgid "Edit %{name}" -msgstr "" - -msgid "Edit Comment" -msgstr "" - msgid "Edit Deploy Key" msgstr "" @@ -5398,33 +4297,9 @@ msgstr "" msgid "Editing" msgstr "" -msgid "Elasticsearch" -msgstr "" - -msgid "Elasticsearch indexing restrictions" -msgstr "" - -msgid "Elasticsearch indexing started" -msgstr "" - -msgid "Elasticsearch integration. Elasticsearch AWS IAM." -msgstr "" - -msgid "Elastic|None. Select namespaces to index." -msgstr "" - -msgid "Elastic|None. Select projects to index." -msgstr "" - msgid "Email" msgstr "" -msgid "Email address" -msgstr "" - -msgid "Email domain is not editable in subgroups. Value inherited from top-level parent group." -msgstr "" - msgid "Email patch" msgstr "" @@ -5503,12 +4378,6 @@ msgstr "" msgid "Enable HTML emails" msgstr "" -msgid "Enable Pseudonymizer data collection" -msgstr "" - -msgid "Enable SAML authentication for this group" -msgstr "" - msgid "Enable access to Grafana" msgstr "" @@ -5545,15 +4414,9 @@ msgstr "" msgid "Enable mirror configuration" msgstr "" -msgid "Enable or disable the Pseudonymizer data collection." -msgstr "" - msgid "Enable or disable version check and usage ping." msgstr "" -msgid "Enable proxy" -msgstr "" - msgid "Enable reCAPTCHA or Akismet and set IP limits. For reCAPTCHA, we currently only support %{recaptcha_v2_link_start}v2%{recaptcha_v2_link_end}" msgstr "" @@ -5572,9 +4435,6 @@ msgstr "" msgid "Enable usage ping to get an overview of how you are using GitLab from a feature perspective." msgstr "" -msgid "Enable/disable your service desk. %{link_start}Learn more about service desk%{link_end}." -msgstr "" - msgid "Enabled" msgstr "" @@ -5584,12 +4444,6 @@ msgstr "" msgid "Enabled sources for code import during project creation. OmniAuth must be configured for GitHub" msgstr "" -msgid "Enabling this will only make licensed EE features available to projects if the project namespace's plan includes the feature or if the project is public." -msgstr "" - -msgid "End date" -msgstr "" - msgid "Ends at (UTC)" msgstr "" @@ -5599,33 +4453,18 @@ msgstr "" msgid "Ensure connectivity is available from the GitLab server to the Prometheus server" msgstr "" -msgid "Ensure your %{linkStart}environment is part of the deploy stage%{linkEnd} of your CI pipeline to track deployments to your cluster." -msgstr "" - -msgid "Enter IP address range" -msgstr "" - -msgid "Enter a number" -msgstr "" - msgid "Enter at least three characters to search" msgstr "" msgid "Enter board name" msgstr "" -msgid "Enter domain" -msgstr "" - msgid "Enter in your Bitbucket Server URL and personal access token below" msgstr "" msgid "Enter in your Phabricator Server URL and personal access token below" msgstr "" -msgid "Enter merge request URLs" -msgstr "" - msgid "Enter the issue description" msgstr "" @@ -5638,18 +4477,9 @@ msgstr "" msgid "Enter the merge request title" msgstr "" -msgid "Enter your password to approve" -msgstr "" - msgid "Enter zen mode" msgstr "" -msgid "EnviornmentDashboard|You are looking at the last updated environment" -msgstr "" - -msgid "Environment" -msgstr "" - msgid "Environment variables are applied to environments via the runner. They can be protected by only exposing them to protected branches or tags. Additionally, they can be masked so they are hidden in job logs, though they must match certain regexp requirements to do so. You can use environment variables for passwords, secret keys, or whatever you want." msgstr "" @@ -5662,33 +4492,9 @@ msgstr "" msgid "Environments" msgstr "" -msgid "Environments Dashboard" -msgstr "" - msgid "Environments allow you to track deployments of your application %{link_to_read_more}." msgstr "" -msgid "EnvironmentsDashboard|Add a project to the dashboard" -msgstr "" - -msgid "EnvironmentsDashboard|Add projects" -msgstr "" - -msgid "EnvironmentsDashboard|Environments Dashboard" -msgstr "" - -msgid "EnvironmentsDashboard|Job: %{job}" -msgstr "" - -msgid "EnvironmentsDashboard|More actions" -msgstr "" - -msgid "EnvironmentsDashboard|Remove" -msgstr "" - -msgid "EnvironmentsDashboard|The environments dashboard provides a summary of each project's environments' status, including pipeline and alert statuses." -msgstr "" - msgid "Environments|An error occurred while fetching the environments." msgstr "" @@ -5737,9 +4543,6 @@ msgstr "" msgid "Environments|No deployments yet" msgstr "" -msgid "Environments|No pod name has been specified" -msgstr "" - msgid "Environments|Note that this action will stop the environment, but it will %{emphasisStart}not%{emphasisEnd} have an effect on any existing deployment due to no “stop environment action” being defined in the %{ciConfigLinkStart}.gitlab-ci.yml%{ciConfigLinkEnd} file." msgstr "" @@ -5749,9 +4552,6 @@ msgstr "" msgid "Environments|Open live environment" msgstr "" -msgid "Environments|Pod logs from" -msgstr "" - msgid "Environments|Re-deploy" msgstr "" @@ -5815,84 +4615,9 @@ msgstr "" msgid "Epic" msgstr "" -msgid "Epics" -msgstr "" - msgid "Epics (Ultimate / Gold license only)" msgstr "" -msgid "Epics Roadmap" -msgstr "" - -msgid "Epics let you manage your portfolio of projects more efficiently and with less effort" -msgstr "" - -msgid "Epics|%{epicsCount} epics and %{issuesCount} issues" -msgstr "" - -msgid "Epics|Add an epic" -msgstr "" - -msgid "Epics|Add an existing epic as a child epic." -msgstr "" - -msgid "Epics|An error occurred while saving the %{epicDateType} date" -msgstr "" - -msgid "Epics|Are you sure you want to remove %{bStart}%{targetIssueTitle}%{bEnd} from %{bStart}%{parentEpicTitle}%{bEnd}?" -msgstr "" - -msgid "Epics|Create an epic within this group and add it as a child epic." -msgstr "" - -msgid "Epics|Create new epic" -msgstr "" - -msgid "Epics|How can I solve this?" -msgstr "" - -msgid "Epics|More information" -msgstr "" - -msgid "Epics|Remove epic" -msgstr "" - -msgid "Epics|Remove issue" -msgstr "" - -msgid "Epics|Show more" -msgstr "" - -msgid "Epics|Something went wrong while assigning issue to epic." -msgstr "" - -msgid "Epics|Something went wrong while creating child epics." -msgstr "" - -msgid "Epics|Something went wrong while fetching child epics." -msgstr "" - -msgid "Epics|Something went wrong while fetching group epics." -msgstr "" - -msgid "Epics|Something went wrong while removing issue from epic." -msgstr "" - -msgid "Epics|These dates affect how your epics appear in the roadmap. Dates from milestones come from the milestones assigned to issues in the epic. You can also set fixed dates or remove them entirely." -msgstr "" - -msgid "Epics|This will also remove any descendents of %{bStart}%{targetEpicTitle}%{bEnd} from %{bStart}%{parentEpicTitle}%{bEnd}. Are you sure?" -msgstr "" - -msgid "Epics|To schedule your epic's %{epicDateType} date based on milestones, assign a milestone with a %{epicDateType} date to any issue in the epic." -msgstr "" - -msgid "Epics|due" -msgstr "" - -msgid "Epics|start" -msgstr "" - msgid "Error" msgstr "" @@ -5902,9 +4627,6 @@ msgstr "" msgid "Error creating a new path" msgstr "" -msgid "Error creating epic" -msgstr "" - msgid "Error deleting %{issuableType}" msgstr "" @@ -5929,9 +4651,6 @@ msgstr "" msgid "Error fetching refs" msgstr "" -msgid "Error fetching the dependency list. Please check your network connection and try again." -msgstr "" - msgid "Error fetching usage ping data." msgstr "" @@ -5941,9 +4660,6 @@ msgstr "" msgid "Error loading branches." msgstr "" -msgid "Error loading burndown chart data" -msgstr "" - msgid "Error loading file viewer." msgstr "" @@ -5980,9 +4696,6 @@ msgstr "" msgid "Error occurred when toggling the notification subscription" msgstr "" -msgid "Error occurred while updating the issue weight" -msgstr "" - msgid "Error occurred. User was not blocked" msgstr "" @@ -6127,9 +4840,6 @@ msgstr "" msgid "Everything you need to create a GitLab Pages site using plain HTML." msgstr "" -msgid "Example: Usage = single query. (Requested) / (Capacity) = multiple queries combined into a formula." -msgstr "" - msgid "Except policy:" msgstr "" @@ -6145,9 +4855,6 @@ msgstr "" msgid "Expand all" msgstr "" -msgid "Expand approvers" -msgstr "" - msgid "Expand down" msgstr "" @@ -6163,9 +4870,6 @@ msgstr "" msgid "Expiration date" msgstr "" -msgid "Expired" -msgstr "" - msgid "Expired %{expiredOn}" msgstr "" @@ -6199,12 +4903,6 @@ msgstr "" msgid "Explore public groups" msgstr "" -msgid "Export as CSV" -msgstr "" - -msgid "Export issues" -msgstr "" - msgid "Export project" msgstr "" @@ -6322,9 +5020,6 @@ msgstr "" msgid "Failed to load errors from Sentry. Error message: %{errorMessage}" msgstr "" -msgid "Failed to load groups & users." -msgstr "" - msgid "Failed to load related branches" msgstr "" @@ -6346,9 +5041,6 @@ msgstr "" msgid "Failed to protect the branch" msgstr "" -msgid "Failed to protect the environment" -msgstr "" - msgid "Failed to remove a Zoom meeting" msgstr "" @@ -6367,9 +5059,6 @@ msgstr "" msgid "Failed to remove user key." msgstr "" -msgid "Failed to reset key. Please try again." -msgstr "" - msgid "Failed to save comment!" msgstr "" @@ -6388,15 +5077,9 @@ msgstr "" msgid "Failed to set due date because the date format is invalid." msgstr "" -msgid "Failed to signing using smartcard authentication" -msgstr "" - msgid "Failed to update branch!" msgstr "" -msgid "Failed to update environment!" -msgstr "" - msgid "Failed to update issues, please try again." msgstr "" @@ -6427,177 +5110,12 @@ msgstr "" msgid "Favicon was successfully removed." msgstr "" -msgid "Feature Flags" -msgstr "" - -msgid "Feature flag was not removed." -msgstr "" - -msgid "Feature flag was successfully removed." -msgstr "" - -msgid "FeatureFlags|* (All Environments)" -msgstr "" - -msgid "FeatureFlags|* (All environments)" -msgstr "" - -msgid "FeatureFlags|API URL" -msgstr "" - -msgid "FeatureFlags|Active" -msgstr "" - -msgid "FeatureFlags|Add" -msgstr "" - -msgid "FeatureFlags|All users" -msgstr "" - -msgid "FeatureFlags|Clear all" -msgstr "" - -msgid "FeatureFlags|Configure" -msgstr "" - -msgid "FeatureFlags|Configure feature flags" -msgstr "" - -msgid "FeatureFlags|Create feature flag" -msgstr "" - -msgid "FeatureFlags|Delete %{name}?" -msgstr "" - -msgid "FeatureFlags|Delete feature flag" -msgstr "" - -msgid "FeatureFlags|Description" -msgstr "" - -msgid "FeatureFlags|Edit Feature Flag" -msgstr "" - -msgid "FeatureFlags|Enter comma separated list of user IDs" -msgstr "" - -msgid "FeatureFlags|Environment Spec" -msgstr "" - -msgid "FeatureFlags|Environment Specs" -msgstr "" - -msgid "FeatureFlags|Feature Flag" -msgstr "" - -msgid "FeatureFlags|Feature Flag behavior is built up by creating a set of rules to define the status of target environments. A default wildcard rule %{codeStart}*%{codeEnd} for %{boldStart}All Environments%{boldEnd} is set, and you are able to add as many rules as you need by choosing environment specs below. You can toggle the behavior for each of your rules to set them %{boldStart}Active%{boldEnd} or %{boldStart}Inactive%{boldEnd}." -msgstr "" - -msgid "FeatureFlags|Feature Flags" -msgstr "" - -msgid "FeatureFlags|Feature flag %{name} will be removed. Are you sure?" -msgstr "" - -msgid "FeatureFlags|Feature flags allow you to configure your code into different flavors by dynamically toggling certain functionality." -msgstr "" - -msgid "FeatureFlags|Get started with feature flags" -msgstr "" - -msgid "FeatureFlags|Inactive" -msgstr "" - -msgid "FeatureFlags|Inactive flag for %{scope}" -msgstr "" - -msgid "FeatureFlags|Install a %{docs_link_anchored_start}compatible client library%{docs_link_anchored_end} and specify the API URL, application name, and instance ID during the configuration setup. %{docs_link_start}More Information%{docs_link_end}" -msgstr "" - -msgid "FeatureFlags|Instance ID" -msgstr "" - -msgid "FeatureFlags|Loading feature flags" -msgstr "" - -msgid "FeatureFlags|More information" -msgstr "" - -msgid "FeatureFlags|Name" -msgstr "" - -msgid "FeatureFlags|New" -msgstr "" - -msgid "FeatureFlags|New Feature Flag" -msgstr "" - -msgid "FeatureFlags|New feature flag" -msgstr "" - -msgid "FeatureFlags|Percent rollout (logged in users)" -msgstr "" - -msgid "FeatureFlags|Percent rollout must be a whole number between 0 and 100" -msgstr "" - -msgid "FeatureFlags|Protected" -msgstr "" - -msgid "FeatureFlags|Remove" -msgstr "" - -msgid "FeatureFlags|Rollout Percentage" -msgstr "" - -msgid "FeatureFlags|Rollout Strategy" -msgstr "" - -msgid "FeatureFlags|Status" -msgstr "" - -msgid "FeatureFlags|Target Users" -msgstr "" - -msgid "FeatureFlags|Target environments" -msgstr "" - -msgid "FeatureFlags|Target user behaviour is built up by creating a list of active user IDs. These IDs should be the users in the system in which the feature flag is set, not GitLab ids. Target users apply across %{strong_start}All Environments%{strong_end} and are not affected by Target Environment rules." -msgstr "" - -msgid "FeatureFlags|There are no active feature flags" -msgstr "" - -msgid "FeatureFlags|There are no inactive feature flags" -msgstr "" - -msgid "FeatureFlags|There was an error fetching the feature flags." -msgstr "" - -msgid "FeatureFlags|Try again in a few moments or contact your support team." -msgstr "" - -msgid "FeatureFlags|User IDs" -msgstr "" - msgid "Feb" msgstr "" msgid "February" msgstr "" -msgid "Fetching incoming email" -msgstr "" - -msgid "Fetching licenses failed." -msgstr "" - -msgid "Fetching licenses failed. The request endpoint was not found." -msgstr "" - -msgid "Fetching licenses failed. You are not permitted to perform this action." -msgstr "" - msgid "File" msgid_plural "Files" msgstr[0] "" @@ -6633,18 +5151,9 @@ msgstr "" msgid "Files, directories, and submodules in the path %{path} for commit reference %{ref}" msgstr "" -msgid "Fill in the fields below, turn on %{enable_label}, and press %{save_changes}" -msgstr "" - msgid "Filter" msgstr "" -msgid "Filter by %{issuable_type} that are currently closed." -msgstr "" - -msgid "Filter by %{issuable_type} that are currently opened." -msgstr "" - msgid "Filter by commit message" msgstr "" @@ -6693,30 +5202,12 @@ msgstr "" msgid "Finish editing this message first!" msgstr "" -msgid "Finish review" -msgstr "" - -msgid "Finish setting up your dedicated account for %{group_name}." -msgstr "" - msgid "Finished" msgstr "" msgid "First day of the week" msgstr "" -msgid "Fixed date" -msgstr "" - -msgid "Fixed due date" -msgstr "" - -msgid "Fixed start date" -msgstr "" - -msgid "Fixed:" -msgstr "" - msgid "FlowdockService|Flowdock Git source token" msgstr "" @@ -6750,15 +5241,6 @@ msgstr "" msgid "For internal projects, any logged in user can view pipelines and access job details (output logs and artifacts)" msgstr "" -msgid "For more info, read the documentation." -msgstr "" - -msgid "For more information, go to the " -msgstr "" - -msgid "For more information, please review %{link_start_tag}Jaeger's configuration doc%{link_end_tag}" -msgstr "" - msgid "For more information, see the documentation on %{deactivating_usage_ping_link_start}deactivating the usage ping%{deactivating_usage_ping_link_end}." msgstr "" @@ -6798,21 +5280,12 @@ msgstr "" msgid "Format" msgstr "" -msgid "Forward external support email address to" -msgstr "" - msgid "Found errors in your %{gitlab_ci_yml}:" msgstr "" msgid "Found errors in your .gitlab-ci.yml:" msgstr "" -msgid "Free Trial" -msgstr "" - -msgid "Free Trial of GitLab.com Gold" -msgstr "" - msgid "Friday" msgstr "" @@ -6843,9 +5316,6 @@ msgstr "" msgid "From merge request merge until deploy to production" msgstr "" -msgid "From milestones:" -msgstr "" - msgid "From the Kubernetes cluster details view, install Runner from the applications list" msgstr "" @@ -6876,9 +5346,6 @@ msgstr "" msgid "Generate a default set of labels" msgstr "" -msgid "Generate key" -msgstr "" - msgid "Generate link to chart" msgstr "" @@ -6888,11660 +5355,8512 @@ msgstr "" msgid "Geo" msgstr "" -msgid "Geo Nodes" +msgid "Get started with error tracking" msgstr "" -msgid "Geo allows you to replicate your GitLab instance to other geographical locations." +msgid "Get started with performance monitoring" msgstr "" -msgid "GeoNodeStatusEvent|%{timeAgoStr} (%{pendingEvents} events)" +msgid "Getting started with releases" msgstr "" -msgid "GeoNodeSyncStatus|Node is failing or broken." +msgid "Git" msgstr "" -msgid "GeoNodeSyncStatus|Node is slow, overloaded, or it just recovered after an outage." +msgid "Git LFS is not enabled on this GitLab server, contact your admin." msgstr "" -msgid "GeoNodes|Checksummed" +msgid "Git global setup" msgstr "" -msgid "GeoNodes|Data is out of date from %{timeago}" +msgid "Git repository URL" msgstr "" -msgid "GeoNodes|Data replication lag" +msgid "Git revision" msgstr "" -msgid "GeoNodes|Does not match the primary storage configuration" +msgid "Git shallow clone" msgstr "" -msgid "GeoNodes|Failed" +msgid "Git strategy for pipelines" msgstr "" -msgid "GeoNodes|Full" +msgid "Git version" msgstr "" -msgid "GeoNodes|GitLab version" +msgid "GitHub import" msgstr "" -msgid "GeoNodes|GitLab version does not match the primary node version" +msgid "GitLab CI Linter has been moved" msgstr "" -msgid "GeoNodes|Health status" +msgid "GitLab Group Runners can execute code for all the projects in this group." msgstr "" -msgid "GeoNodes|Internal URL" +msgid "GitLab Import" msgstr "" -msgid "GeoNodes|Last event ID processed by cursor" +msgid "GitLab Shared Runners execute code of different projects on the same Runner unless you configure GitLab Runner Autoscale with MaxBuilds 1 (which it is on GitLab.com)." msgstr "" -msgid "GeoNodes|Last event ID seen from primary" +msgid "GitLab User" msgstr "" -msgid "GeoNodes|Learn more about Repository checksum progress" +msgid "GitLab is obtaining a Let's Encrypt SSL certificate for this domain. This process can take some time. Please try again later." msgstr "" -msgid "GeoNodes|Learn more about Repository verification" +msgid "GitLab member or Email address" msgstr "" -msgid "GeoNodes|Learn more about Wiki checksum progress" +msgid "GitLab project export" msgstr "" -msgid "GeoNodes|Learn more about Wiki verification" +msgid "GitLab restart is required to apply changes" msgstr "" -msgid "GeoNodes|Loading nodes" +msgid "GitLab.com import" msgstr "" -msgid "GeoNodes|Local LFS objects" +msgid "Gitaly" msgstr "" -msgid "GeoNodes|Local attachments" +msgid "Gitaly Servers" msgstr "" -msgid "GeoNodes|Local container repositories" +msgid "Gitaly|Address" msgstr "" -msgid "GeoNodes|Local job artifacts" +msgid "Gitea Host URL" msgstr "" -msgid "GeoNodes|New node" +msgid "Gitea Import" msgstr "" -msgid "GeoNodes|Node Authentication was successfully repaired." +msgid "Gitlab Pages" msgstr "" -msgid "GeoNodes|Node was successfully removed." +msgid "Given access %{time_ago}" msgstr "" -msgid "GeoNodes|Not checksummed" +msgid "Global Shortcuts" msgstr "" -msgid "GeoNodes|Out of sync" +msgid "Global notification settings" msgstr "" -msgid "GeoNodes|Pausing replication stops the sync process." +msgid "Go Back" msgstr "" -msgid "GeoNodes|Removing a primary node stops the sync process for all nodes. Syncing cannot be resumed without losing some data on all secondaries. In this case we would recommend setting up all nodes from scratch. Are you sure?" +msgid "Go Micro is a framework for micro service development." msgstr "" -msgid "GeoNodes|Removing a secondary node stops the sync process. It is not currently possible to add back the same node without losing some data. We only recommend setting up a new secondary node in this case. Are you sure?" +msgid "Go back" msgstr "" -msgid "GeoNodes|Replication slot WAL" +msgid "Go back (while searching for files" msgstr "" -msgid "GeoNodes|Replication slots" +msgid "Go back to %{startTag}Open issues%{endTag} and select some issues to add to your board." msgstr "" -msgid "GeoNodes|Repositories" +msgid "Go full screen" msgstr "" -msgid "GeoNodes|Repositories checksummed for verification with their counterparts on Secondary nodes" +msgid "Go to" msgstr "" -msgid "GeoNodes|Repositories verified with their counterparts on the Primary node" +msgid "Go to %{link_to_google_takeout}." msgstr "" -msgid "GeoNodes|Repository checksum progress" +msgid "Go to commits" msgstr "" -msgid "GeoNodes|Repository verification progress" +msgid "Go to environments" msgstr "" -msgid "GeoNodes|Selective" +msgid "Go to file" msgstr "" -msgid "GeoNodes|Something went wrong while changing node status" +msgid "Go to file (MRs only)" msgstr "" -msgid "GeoNodes|Something went wrong while fetching nodes" +msgid "Go to file permalink (while viewing a file)" msgstr "" -msgid "GeoNodes|Something went wrong while removing node" +msgid "Go to files" msgstr "" -msgid "GeoNodes|Something went wrong while repairing node" +msgid "Go to find file" msgstr "" -msgid "GeoNodes|Storage config" +msgid "Go to issue boards" msgstr "" -msgid "GeoNodes|Sync settings" +msgid "Go to issues" msgstr "" -msgid "GeoNodes|Synced" +msgid "Go to jobs" msgstr "" -msgid "GeoNodes|Unused slots" +msgid "Go to kubernetes" msgstr "" -msgid "GeoNodes|Unverified" +msgid "Go to merge requests" msgstr "" -msgid "GeoNodes|Used slots" +msgid "Go to metrics" msgstr "" -msgid "GeoNodes|Verified" +msgid "Go to parent" msgstr "" -msgid "GeoNodes|Wiki checksum progress" +msgid "Go to project" msgstr "" -msgid "GeoNodes|Wiki verification progress" +msgid "Go to releases" msgstr "" -msgid "GeoNodes|Wikis" +msgid "Go to repository charts" msgstr "" -msgid "GeoNodes|Wikis checksummed for verification with their counterparts on Secondary nodes" +msgid "Go to repository graph" msgstr "" -msgid "GeoNodes|Wikis verified with their counterparts on the Primary node" +msgid "Go to snippets" msgstr "" -msgid "GeoNodes|With %{geo} you can install a special read-only and replicated instance anywhere. Before you add nodes, follow the %{instructions} in the exact order they appear." +msgid "Go to the activity feed" msgstr "" -msgid "GeoNodes|You have configured Geo nodes using an insecure HTTP connection. We recommend the use of HTTPS." +msgid "Go to the milestone list" msgstr "" -msgid "Geo|%{name} is scheduled for forced re-download" +msgid "Go to the project's activity feed" msgstr "" -msgid "Geo|%{name} is scheduled for re-sync" +msgid "Go to the project's overview page" msgstr "" -msgid "Geo|%{name} is scheduled for re-verify" +msgid "Go to wiki" msgstr "" -msgid "Geo|All" +msgid "Go to your To-Do list" msgstr "" -msgid "Geo|All projects" +msgid "Go to your fork" msgstr "" -msgid "Geo|All projects are being scheduled for re-sync" +msgid "Go to your groups" msgstr "" -msgid "Geo|All projects are being scheduled for re-verify" +msgid "Go to your issues" msgstr "" -msgid "Geo|Allow this secondary node to replicate content on Object Storage" +msgid "Go to your merge requests" msgstr "" -msgid "Geo|Batch operations" +msgid "Go to your projects" msgstr "" -msgid "Geo|Choose which groups you wish to synchronize to this secondary node." +msgid "Go to your snippets" msgstr "" -msgid "Geo|Container repositories sync capacity" +msgid "Google Code import" msgstr "" -msgid "Geo|Control the maximum concurrency of LFS/attachment backfill for this secondary node" +msgid "Google Takeout" msgstr "" -msgid "Geo|Control the maximum concurrency of container repository operations for this Geo node" +msgid "Google authentication is not %{link_start}property configured%{link_end}. Ask your GitLab administrator if you want to use this service." msgstr "" -msgid "Geo|Control the maximum concurrency of verification operations for this Geo node" +msgid "Got it" msgstr "" -msgid "Geo|Control the minimum interval in days that a repository should be reverified for this primary node" +msgid "Got it!" msgstr "" -msgid "Geo|Could not remove tracking entry for an existing project." +msgid "Grafana URL" msgstr "" -msgid "Geo|Could not remove tracking entry for an existing upload." +msgid "Grant access" msgstr "" -msgid "Geo|Failed" +msgid "Graph" msgstr "" -msgid "Geo|File sync capacity" +msgid "Gravatar" msgstr "" -msgid "Geo|Geo Status" +msgid "Gravatar enabled" msgstr "" -msgid "Geo|Groups to synchronize" +msgid "Group" msgstr "" -msgid "Geo|If enabled, and if object storage is enabled, GitLab will handle Object Storage replication using Geo" +msgid "Group %{group_name} was scheduled for deletion." msgstr "" -msgid "Geo|In sync" +msgid "Group %{group_name} was successfully created." msgstr "" -msgid "Geo|Internal URL (optional)" +msgid "Group CI/CD settings" msgstr "" -msgid "Geo|Last repository check run" +msgid "Group Git LFS status:" msgstr "" -msgid "Geo|Last successful sync" +msgid "Group ID" msgstr "" -msgid "Geo|Last sync attempt" +msgid "Group ID: %{group_id}" msgstr "" -msgid "Geo|Last time verified" +msgid "Group Runners" msgstr "" -msgid "Geo|Never" +msgid "Group URL" msgstr "" -msgid "Geo|Next sync scheduled at" +msgid "Group avatar" msgstr "" -msgid "Geo|Not synced yet" +msgid "Group description" msgstr "" -msgid "Geo|Pending" +msgid "Group description (optional)" msgstr "" -msgid "Geo|Pending synchronization" +msgid "Group details" msgstr "" -msgid "Geo|Pending verification" +msgid "Group info:" msgstr "" -msgid "Geo|Please refer to Geo Troubleshooting." +msgid "Group maintainers can register group runners in the %{link}" msgstr "" -msgid "Geo|Project" +msgid "Group name" msgstr "" -msgid "Geo|Project (ID: %{project_id}) no longer exists on the primary. It is safe to remove this entry, as this will not remove any data on disk." +msgid "Group was successfully updated." msgstr "" -msgid "Geo|Projects in certain groups" +msgid "Group: %{group_name}" msgstr "" -msgid "Geo|Projects in certain storage shards" +msgid "GroupSettings|Auto DevOps pipeline was updated for the group" msgstr "" -msgid "Geo|Re-verification interval" +msgid "GroupSettings|Auto DevOps will automatically build, test and deploy your application based on a predefined Continuous Integration and Delivery configuration. %{auto_devops_start}Learn more about Auto DevOps%{auto_devops_end}" msgstr "" -msgid "Geo|Redownload" +msgid "GroupSettings|Badges" msgstr "" -msgid "Geo|Remove" +msgid "GroupSettings|Customize your group badges." msgstr "" -msgid "Geo|Repository sync capacity" +msgid "GroupSettings|Default to Auto DevOps pipeline for all projects within this group" msgstr "" -msgid "Geo|Resync" +msgid "GroupSettings|Disable email notifications" msgstr "" -msgid "Geo|Resync all projects" +msgid "GroupSettings|Learn more about badges." msgstr "" -msgid "Geo|Retry count" +msgid "GroupSettings|New runners registration token has been generated!" msgstr "" -msgid "Geo|Reverify" +msgid "GroupSettings|Prevent sharing a project within %{group} with other groups" msgstr "" -msgid "Geo|Reverify all projects" +msgid "GroupSettings|The Auto DevOps pipeline will run if no alternative CI configuration file is found." msgstr "" -msgid "Geo|Select groups to replicate." +msgid "GroupSettings|There was a problem updating Auto DevOps pipeline: %{error_messages}." msgstr "" -msgid "Geo|Selective synchronization" +msgid "GroupSettings|This setting is applied on %{ancestor_group} and has been overridden on this subgroup." msgstr "" -msgid "Geo|Shards to synchronize" +msgid "GroupSettings|This setting is applied on %{ancestor_group}. To share projects in this group with another group, ask the owner to override the setting or %{remove_ancestor_share_with_group_lock}." msgstr "" -msgid "Geo|Status" +msgid "GroupSettings|This setting is applied on %{ancestor_group}. You can override the setting or %{remove_ancestor_share_with_group_lock}." msgstr "" -msgid "Geo|Sync" +msgid "GroupSettings|This setting will be applied to all subgroups unless overridden by a group owner. Groups that already have access to the project will continue to have access unless removed manually." msgstr "" -msgid "Geo|Synced" +msgid "GroupSettings|This setting will override user notification preferences for all members of the group, subgroups, and projects." msgstr "" -msgid "Geo|Synced at" +msgid "GroupSettings|cannot be disabled when the parent group \"Share with group lock\" is enabled, except by the owner of the parent group" msgstr "" -msgid "Geo|Synchronization failed - %{error}" +msgid "GroupSettings|remove the share with group lock from %{ancestor_group_name}" msgstr "" -msgid "Geo|The URL defined on the primary node that secondary nodes should use to contact it. Defaults to URL" +msgid "Groups" msgstr "" -msgid "Geo|The database is currently %{db_lag} behind the primary node." +msgid "Groups (%{count})" msgstr "" -msgid "Geo|The node is currently %{minutes_behind} behind the primary node." +msgid "Groups can also be nested by creating %{subgroup_docs_link_start}subgroups%{subgroup_docs_link_end}." msgstr "" -msgid "Geo|This is a primary node" +msgid "Groups with access to %{project_name}" msgstr "" -msgid "Geo|Tracking entry for project (%{project_id}) was successfully removed." +msgid "GroupsDropdown|Frequently visited" msgstr "" -msgid "Geo|Tracking entry for upload (%{type}/%{id}) was successfully removed." +msgid "GroupsDropdown|Groups you visit often will appear here" msgstr "" -msgid "Geo|Tracking entry will be removed. Are you sure?" +msgid "GroupsDropdown|Loading groups" msgstr "" -msgid "Geo|URL" +msgid "GroupsDropdown|Search your groups" msgstr "" -msgid "Geo|Unknown state" +msgid "GroupsDropdown|Something went wrong on our end." msgstr "" -msgid "Geo|Verification capacity" +msgid "GroupsDropdown|Sorry, no groups matched your search" msgstr "" -msgid "Geo|Verification failed - %{error}" +msgid "GroupsDropdown|This feature requires browser localStorage support" msgstr "" -msgid "Geo|Waiting for scheduler" +msgid "GroupsEmptyState|A group is a collection of several projects." msgstr "" -msgid "Geo|You are on a secondary, read-only Geo node. If you want to make changes, you must visit this page on the %{primary_node}." +msgid "GroupsEmptyState|If you organize your projects under a group, it works like a folder." msgstr "" -msgid "Geo|You are on a secondary, read-only Geo node. You may be able to make a limited amount of changes or perform a limited amount of actions on this page." +msgid "GroupsEmptyState|No groups found" msgstr "" -msgid "Geo|misconfigured" +msgid "GroupsEmptyState|You can manage your group member’s permissions and access to each project in the group." msgstr "" -msgid "Geo|primary" +msgid "GroupsTree|Are you sure you want to leave the \"%{fullName}\" group?" msgstr "" -msgid "Geo|secondary" +msgid "GroupsTree|Create a project in this group." msgstr "" -msgid "Get a free instance review" +msgid "GroupsTree|Create a subgroup in this group." msgstr "" -msgid "Get started with error tracking" +msgid "GroupsTree|Edit group" msgstr "" -msgid "Get started with performance monitoring" +msgid "GroupsTree|Failed to leave the group. Please make sure you are not the only owner." msgstr "" -msgid "Getting started with releases" +msgid "GroupsTree|Leave this group" msgstr "" -msgid "Git" +msgid "GroupsTree|Loading groups" msgstr "" -msgid "Git LFS is not enabled on this GitLab server, contact your admin." +msgid "GroupsTree|No groups matched your search" msgstr "" -msgid "Git LFS objects will be synced in pull mirrors if LFS is %{docs_link_start}enabled for the project%{docs_link_end}. They will not be synced in push mirrors." +msgid "GroupsTree|No groups or projects matched your search" msgstr "" -msgid "Git global setup" +msgid "GroupsTree|Search by name" msgstr "" -msgid "Git repository URL" +msgid "HTTP Basic: Access denied\\nYou must use a personal access token with 'api' scope for Git over HTTP.\\nYou can generate one at %{profile_personal_access_tokens_url}" msgstr "" -msgid "Git revision" +msgid "Header logo was successfully removed." msgstr "" -msgid "Git shallow clone" +msgid "Header message" msgstr "" -msgid "Git strategy for pipelines" +msgid "Health Check" msgstr "" -msgid "Git version" +msgid "Health information can be retrieved from the following endpoints. More information is available" msgstr "" -msgid "GitHub import" +msgid "HealthCheck|Access token is" msgstr "" -msgid "GitLab CI Linter has been moved" +msgid "HealthCheck|Healthy" msgstr "" -msgid "GitLab Enterprise Edition %{plan}" +msgid "HealthCheck|No Health Problems Detected" msgstr "" -msgid "GitLab Geo" +msgid "HealthCheck|Unhealthy" msgstr "" -msgid "GitLab Group Runners can execute code for all the projects in this group." +msgid "Help" msgstr "" -msgid "GitLab Import" +msgid "Help page" msgstr "" -msgid "GitLab Shared Runners execute code of different projects on the same Runner unless you configure GitLab Runner Autoscale with MaxBuilds 1 (which it is on GitLab.com)." +msgid "Help page text and support page url." msgstr "" -msgid "GitLab User" +msgid "Helps prevent bots from brute-force attacks." msgstr "" -msgid "GitLab allows you to continue using your license even if you exceed the number of seats you purchased. You will be required to pay for these seats when you renew your license." +msgid "Helps prevent bots from creating accounts." msgstr "" -msgid "GitLab for Slack" +msgid "Hide archived projects" msgstr "" -msgid "GitLab is obtaining a Let's Encrypt SSL certificate for this domain. This process can take some time. Please try again later." +msgid "Hide file browser" msgstr "" -msgid "GitLab member or Email address" +msgid "Hide group projects" msgstr "" -msgid "GitLab metadata URL" +msgid "Hide host keys manual input" msgstr "" -msgid "GitLab project export" +msgid "Hide marketing-related entries from help" msgstr "" -msgid "GitLab restart is required to apply changes" +msgid "Hide payload" msgstr "" -msgid "GitLab single sign on URL" +msgid "Hide shared projects" msgstr "" -msgid "GitLab will run a background job that will produce pseudonymized CSVs of the GitLab database that will be uploaded to your configured object storage directory." +msgid "Hide stage" msgstr "" -msgid "GitLab.com import" +msgid "Hide value" +msgid_plural "Hide values" +msgstr[0] "" +msgstr[1] "" + +msgid "Hide values" msgstr "" -msgid "Gitaly" +msgid "Highest number of requests per minute for each raw path, default to 300. To disable throttling set to 0." msgstr "" -msgid "Gitaly Servers" +msgid "Highest role:" msgstr "" -msgid "Gitaly|Address" +msgid "History" msgstr "" -msgid "Gitea Host URL" +msgid "History of authentications" msgstr "" -msgid "Gitea Import" +msgid "Hook was successfully created." msgstr "" -msgid "Gitlab CI/CD" +msgid "Hook was successfully updated." msgstr "" -msgid "Gitlab Pages" +msgid "Housekeeping" msgstr "" -msgid "Given access %{time_ago}" +msgid "Housekeeping successfully started" msgstr "" -msgid "Global Shortcuts" +msgid "Housekeeping, export, path, transfer, remove, archive." msgstr "" -msgid "Global notification settings" +msgid "However, you are already a member of this %{member_source}. Sign in using a different account to accept the invitation." msgstr "" -msgid "Go Back" +msgid "I accept the %{terms_link}" msgstr "" -msgid "Go Micro is a framework for micro service development." +msgid "I accept the|Terms of Service and Privacy Policy" msgstr "" -msgid "Go back" +msgid "I forgot my password" msgstr "" -msgid "Go back (while searching for files" +msgid "I have read and agree to the Let's Encrypt %{link_start}Terms of Service%{link_end}" msgstr "" -msgid "Go back to %{startTag}Open issues%{endTag} and select some issues to add to your board." +msgid "ID" msgstr "" -msgid "Go full screen" +msgid "ID:" msgstr "" -msgid "Go to" +msgid "IDE|Allow live previews of JavaScript projects in the Web IDE using CodeSandbox client side evaluation." msgstr "" -msgid "Go to %{link_to_google_takeout}." +msgid "IDE|Back" msgstr "" -msgid "Go to commits" +msgid "IDE|Client side evaluation" msgstr "" -msgid "Go to environments" +msgid "IDE|Commit" msgstr "" -msgid "Go to file" +msgid "IDE|Edit" msgstr "" -msgid "Go to file (MRs only)" +msgid "IDE|Get started with Live Preview" msgstr "" -msgid "Go to file permalink (while viewing a file)" +msgid "IDE|Go to project" msgstr "" -msgid "Go to files" +msgid "IDE|Live Preview" msgstr "" -msgid "Go to find file" +msgid "IDE|Open in file view" msgstr "" -msgid "Go to issue boards" +msgid "IDE|Preview your web application using Web IDE client-side evaluation." msgstr "" -msgid "Go to issues" +msgid "IDE|Refresh preview" msgstr "" -msgid "Go to jobs" +msgid "IDE|Review" msgstr "" -msgid "Go to kubernetes" +msgid "IDE|Successful commit" msgstr "" -msgid "Go to merge requests" +msgid "IP Address" msgstr "" -msgid "Go to metrics" +msgid "Identifier" msgstr "" -msgid "Go to parent" +msgid "Identities" msgstr "" -msgid "Go to project" +msgid "If any job surpasses this timeout threshold, it will be marked as failed. Human readable time input language is accepted like \"1 hour\". Values without specification represent seconds." msgstr "" -msgid "Go to releases" +msgid "If disabled, only admins will be able to set up mirrors in projects." msgstr "" -msgid "Go to repository charts" +msgid "If disabled, the access level will depend on the user's permissions in the project." msgstr "" -msgid "Go to repository graph" +msgid "If enabled" msgstr "" -msgid "Go to snippets" +msgid "If enabled, access to projects will be validated on an external service using their classification label." msgstr "" -msgid "Go to the activity feed" +msgid "If this was a mistake you can %{leave_link_start}leave the %{source_type}%{link_end}." msgstr "" -msgid "Go to the milestone list" +msgid "If this was a mistake you can leave the %{source_type}." msgstr "" -msgid "Go to the project's activity feed" +msgid "If you lose your recovery codes you can generate new ones, invalidating all previous codes." msgstr "" -msgid "Go to the project's overview page" +msgid "If your HTTP repository is not publicly accessible, add your credentials." msgstr "" -msgid "Go to wiki" +msgid "ImageDiffViewer|2-up" msgstr "" -msgid "Go to your To-Do list" +msgid "ImageDiffViewer|Onion skin" msgstr "" -msgid "Go to your fork" +msgid "ImageDiffViewer|Swipe" msgstr "" -msgid "Go to your groups" +msgid "ImageViewerDimensions|H" msgstr "" -msgid "Go to your issues" +msgid "ImageViewerDimensions|W" msgstr "" -msgid "Go to your merge requests" +msgid "Impersonation has been disabled" msgstr "" -msgid "Go to your projects" +msgid "Import" msgstr "" -msgid "Go to your snippets" +msgid "Import CSV" msgstr "" -msgid "Golden Tanuki" +msgid "Import Projects from Gitea" msgstr "" -msgid "Google Code import" +msgid "Import all compatible projects" msgstr "" -msgid "Google Takeout" +msgid "Import all projects" msgstr "" -msgid "Google authentication is not %{link_start}property configured%{link_end}. Ask your GitLab administrator if you want to use this service." +msgid "Import all repositories" msgstr "" -msgid "Got it" +msgid "Import an exported GitLab project" msgstr "" -msgid "Got it!" +msgid "Import in progress" msgstr "" -msgid "Grafana URL" +msgid "Import issues" msgstr "" -msgid "Grant access" +msgid "Import members" msgstr "" -msgid "Graph" +msgid "Import members from another project" msgstr "" -msgid "Gravatar" +msgid "Import multiple repositories by uploading a manifest file." msgstr "" -msgid "Gravatar enabled" +msgid "Import project" msgstr "" -msgid "Group" +msgid "Import project members" msgstr "" -msgid "Group %{group_name} was scheduled for deletion." +msgid "Import projects from Bitbucket" msgstr "" -msgid "Group %{group_name} was successfully created." +msgid "Import projects from Bitbucket Server" msgstr "" -msgid "Group CI/CD settings" +msgid "Import projects from FogBugz" msgstr "" -msgid "Group Git LFS status:" +msgid "Import projects from GitLab.com" msgstr "" -msgid "Group ID" +msgid "Import projects from Google Code" msgstr "" -msgid "Group ID: %{group_id}" +msgid "Import repositories from Bitbucket Server" msgstr "" -msgid "Group Runners" +msgid "Import repositories from GitHub" msgstr "" -msgid "Group SAML must be enabled to test" +msgid "Import repository" msgstr "" -msgid "Group URL" +msgid "Import tasks" msgstr "" -msgid "Group avatar" +msgid "Import tasks from Phabricator into issues" msgstr "" -msgid "Group description" +msgid "Import timed out. Import took longer than %{import_jobs_expiration} seconds" msgstr "" -msgid "Group description (optional)" +msgid "Import/Export illustration" msgstr "" -msgid "Group details" +msgid "ImportProjects|Blocked import URL: %{message}" msgstr "" -msgid "Group info:" +msgid "ImportProjects|Error importing repository %{project_safe_import_url} into %{project_full_path} - %{message}" msgstr "" -msgid "Group maintainers can register group runners in the %{link}" +msgid "ImportProjects|Importing the project failed" msgstr "" -msgid "Group name" +msgid "ImportProjects|Requesting your %{provider} repositories failed" msgstr "" -msgid "Group overview content" +msgid "ImportProjects|Select the projects you want to import" msgstr "" -msgid "Group pipeline minutes were successfully reset." +msgid "ImportProjects|The remote data could not be imported." msgstr "" -msgid "Group was successfully updated." +msgid "ImportProjects|The repository could not be created." msgstr "" -msgid "Group: %{group_name}" +msgid "ImportProjects|Updating the imported projects failed" msgstr "" -msgid "Group: %{name}" +msgid "In order to enable instance-level analytics, please ask an admin to enable %{usage_ping_link_start}usage ping%{usage_ping_link_end}." msgstr "" -msgid "GroupRoadmap|%{startDateInWords} – %{endDateInWords}" +msgid "In order to gather accurate feature usage data, it can take 1 to 2 weeks to see your index." msgstr "" -msgid "GroupRoadmap|From %{dateWord}" +msgid "In the next step, you'll be able to select the projects you want to import." msgstr "" -msgid "GroupRoadmap|Something went wrong while fetching epics" +msgid "Include a Terms of Service agreement and Privacy Policy that all users must accept." msgstr "" -msgid "GroupRoadmap|Sorry, no epics matched your search" +msgid "Include author name in notification email body" msgstr "" -msgid "GroupRoadmap|The roadmap shows the progress of your epics along a timeline" +msgid "Include merge request description" msgstr "" -msgid "GroupRoadmap|To view the roadmap, add a start or due date to one of the %{linkStart}child epics%{linkEnd}." +msgid "Include the username in the URL if required: https://username@gitlab.company.com/group/project.git." msgstr "" -msgid "GroupRoadmap|To view the roadmap, add a start or due date to one of your epics in this group or its subgroups; from %{startDate} to %{endDate}." +msgid "Includes an MVC structure to help you get started." msgstr "" -msgid "GroupRoadmap|To widen your search, change or remove filters; from %{startDate} to %{endDate}." +msgid "Includes an MVC structure, Gemfile, Rakefile, along with many others, to help you get started." msgstr "" -msgid "GroupRoadmap|Until %{dateWord}" +msgid "Includes an MVC structure, mvnw and pom.xml to help you get started." msgstr "" -msgid "GroupSAML|Certificate fingerprint" +msgid "Incompatible Project" msgstr "" -msgid "GroupSAML|Configuration" +msgid "Incompatible options set!" msgstr "" -msgid "GroupSAML|Enable SAML authentication for this group." +msgid "Indicates whether this runner can pick jobs without tags" msgstr "" -msgid "GroupSAML|Enforce SSO-only authentication for this group." +msgid "Inform users without uploaded SSH keys that they can't push over SSH until one is added" msgstr "" -msgid "GroupSAML|Enforce SSO-only membership for this group." +msgid "Information about additional Pages templates and how to install them can be found in our %{pages_getting_started_guide}." msgstr "" -msgid "GroupSAML|Enforce users to have dedicated group managed accounts for this group." +msgid "Inline" msgstr "" -msgid "GroupSAML|Enforced SSO" +msgid "Input host keys manually" msgstr "" -msgid "GroupSAML|Generate a SCIM token" +msgid "Input your repository URL" msgstr "" -msgid "GroupSAML|Generate a SCIM token to set up your System for Cross-Domain Identity Management." +msgid "Insert a quote" msgstr "" -msgid "GroupSAML|Identity provider single sign on URL" +msgid "Insert code" msgstr "" -msgid "GroupSAML|Make sure you save this token — you won't be able to access it again." +msgid "Insert suggestion" msgstr "" -msgid "GroupSAML|Manage your group’s membership while adding another level of security with SAML." +msgid "Install" msgstr "" -msgid "GroupSAML|Members will be forwarded here when signing in to your group. Get this from your identity provider, where it can also be called \"SSO Service Location\", \"SAML Token Issuance Endpoint\", or \"SAML 2.0/W-Federation URL\"." +msgid "Install GitLab Runner" msgstr "" -msgid "GroupSAML|SAML Single Sign On" +msgid "Install Runner on Kubernetes" msgstr "" -msgid "GroupSAML|SAML Single Sign On Settings" +msgid "Install a soft token authenticator like %{free_otp_link} or Google Authenticator from your application repository and scan this QR code. More information is available in the %{help_link_start}documentation%{help_link_end}." msgstr "" -msgid "GroupSAML|SCIM API endpoint URL" +msgid "Install on clusters" msgstr "" -msgid "GroupSAML|SCIM Token" +msgid "Installed" msgstr "" -msgid "GroupSAML|SHA1 fingerprint of the SAML token signing certificate. Get this from your identity provider, where it can also be called \"Thumbprint\"." +msgid "Installing" msgstr "" -msgid "GroupSAML|The SCIM token is now hidden. To see the value of the token again, you need to " +msgid "Instance Statistics" msgstr "" -msgid "GroupSAML|To be able to enable enforced SSO, you first need to enable SAML authentication." +msgid "Instance Statistics visibility" msgstr "" -msgid "GroupSAML|To be able to enable group managed accounts, you first need to enable enforced SSO." +msgid "Instance administrators group already exists" msgstr "" -msgid "GroupSAML|Toggle SAML authentication" +msgid "Instance does not support multiple Kubernetes clusters" msgstr "" -msgid "GroupSAML|With group managed accounts enabled, all the users without a group managed account will be excluded from the group." +msgid "Integrations" msgstr "" -msgid "GroupSAML|Your SCIM token" +msgid "Integrations Settings" msgstr "" -msgid "GroupSettings|Auto DevOps pipeline was updated for the group" +msgid "Interested parties can even contribute by pushing commits if they want to." msgstr "" -msgid "GroupSettings|Auto DevOps will automatically build, test and deploy your application based on a predefined Continuous Integration and Delivery configuration. %{auto_devops_start}Learn more about Auto DevOps%{auto_devops_end}" +msgid "Internal" msgstr "" -msgid "GroupSettings|Badges" +msgid "Internal - The group and any internal projects can be viewed by any logged in user." msgstr "" -msgid "GroupSettings|Custom project templates" +msgid "Internal - The project can be accessed by any logged in user." msgstr "" -msgid "GroupSettings|Customize your group badges." +msgid "Internal users" msgstr "" -msgid "GroupSettings|Default to Auto DevOps pipeline for all projects within this group" +msgid "Interval Pattern" msgstr "" -msgid "GroupSettings|Disable email notifications" +msgid "Introducing Cycle Analytics" msgstr "" -msgid "GroupSettings|Learn more about badges." +msgid "Introducing Your Conversational Development Index" msgstr "" -msgid "GroupSettings|Learn more about group-level project templates." +msgid "Invalid Login or password" msgstr "" -msgid "GroupSettings|New runners registration token has been generated!" +msgid "Invalid URL" msgstr "" -msgid "GroupSettings|Prevent sharing a project within %{group} with other groups" +msgid "Invalid date" msgstr "" -msgid "GroupSettings|Select a sub-group as the custom project template source for this group." +msgid "Invalid feature" msgstr "" -msgid "GroupSettings|The Auto DevOps pipeline will run if no alternative CI configuration file is found." +msgid "Invalid field" msgstr "" -msgid "GroupSettings|There was a problem updating Auto DevOps pipeline: %{error_messages}." +msgid "Invalid file." msgstr "" -msgid "GroupSettings|This setting is applied on %{ancestor_group} and has been overridden on this subgroup." +msgid "Invalid import params" msgstr "" -msgid "GroupSettings|This setting is applied on %{ancestor_group}. To share projects in this group with another group, ask the owner to override the setting or %{remove_ancestor_share_with_group_lock}." +msgid "Invalid input, please avoid emojis" msgstr "" -msgid "GroupSettings|This setting is applied on %{ancestor_group}. You can override the setting or %{remove_ancestor_share_with_group_lock}." +msgid "Invalid pin code" msgstr "" -msgid "GroupSettings|This setting will be applied to all subgroups unless overridden by a group owner. Groups that already have access to the project will continue to have access unless removed manually." +msgid "Invalid repository path" msgstr "" -msgid "GroupSettings|This setting will override user notification preferences for all members of the group, subgroups, and projects." +msgid "Invalid two-factor code." msgstr "" -msgid "GroupSettings|cannot be disabled when the parent group \"Share with group lock\" is enabled, except by the owner of the parent group" +msgid "Invitation" msgstr "" -msgid "GroupSettings|remove the share with group lock from %{ancestor_group_name}" +msgid "Invite" msgstr "" -msgid "Groups" +msgid "Invite \"%{trimmed}\" by email" msgstr "" -msgid "Groups (%{count})" +msgid "Invite group" msgstr "" -msgid "Groups can also be nested by creating %{subgroup_docs_link_start}subgroups%{subgroup_docs_link_end}." +msgid "Invite member" msgstr "" -msgid "Groups with access to %{project_name}" +msgid "Invocations" msgstr "" -msgid "GroupsDropdown|Frequently visited" +msgid "IssuableStatus|Closed" msgstr "" -msgid "GroupsDropdown|Groups you visit often will appear here" +msgid "IssuableStatus|Closed (%{link})" msgstr "" -msgid "GroupsDropdown|Loading groups" +msgid "IssuableStatus|duplicated" msgstr "" -msgid "GroupsDropdown|Search your groups" +msgid "IssuableStatus|moved" msgstr "" -msgid "GroupsDropdown|Something went wrong on our end." +msgid "Issue" msgstr "" -msgid "GroupsDropdown|Sorry, no groups matched your search" +msgid "Issue Boards" msgstr "" -msgid "GroupsDropdown|This feature requires browser localStorage support" +msgid "Issue events" msgstr "" -msgid "GroupsEmptyState|A group is a collection of several projects." +msgid "Issue update failed" msgstr "" -msgid "GroupsEmptyState|If you organize your projects under a group, it works like a folder." +msgid "Issue was closed by %{name} %{reason}" msgstr "" -msgid "GroupsEmptyState|No groups found" +msgid "IssueBoards|Board" msgstr "" -msgid "GroupsEmptyState|You can manage your group member’s permissions and access to each project in the group." +msgid "IssueBoards|Boards" msgstr "" -msgid "GroupsTree|Are you sure you want to leave the \"%{fullName}\" group?" +msgid "IssueBoards|Create new board" msgstr "" -msgid "GroupsTree|Create a project in this group." +msgid "IssueBoards|Delete board" msgstr "" -msgid "GroupsTree|Create a subgroup in this group." +msgid "IssueBoards|No matching boards found" msgstr "" -msgid "GroupsTree|Edit group" +msgid "IssueBoards|Some of your boards are hidden, activate a license to see them again." msgstr "" -msgid "GroupsTree|Failed to leave the group. Please make sure you are not the only owner." +msgid "IssueBoards|Switch board" msgstr "" -msgid "GroupsTree|Leave this group" +msgid "IssueTracker|Bugzilla issue tracker" msgstr "" -msgid "GroupsTree|Loading groups" +msgid "IssueTracker|Custom issue tracker" msgstr "" -msgid "GroupsTree|No groups matched your search" +msgid "IssueTracker|GitLab issue tracker" msgstr "" -msgid "GroupsTree|No groups or projects matched your search" +msgid "IssueTracker|Redmine issue tracker" msgstr "" -msgid "GroupsTree|Search by name" +msgid "IssueTracker|YouTrack issue tracker" msgstr "" -msgid "HTTP Basic: Access denied\\nYou must use a personal access token with 'api' scope for Git over HTTP.\\nYou can generate one at %{profile_personal_access_tokens_url}" +msgid "Issues" msgstr "" -msgid "Have your users email" +msgid "Issues / Merge Requests" msgstr "" -msgid "Header logo was successfully removed." +msgid "Issues can be bugs, tasks or ideas to be discussed. Also, issues are searchable and filterable." msgstr "" -msgid "Header message" +msgid "Issues with comments, merge requests with diffs and comments, labels, milestones, snippets, and other project entities" msgstr "" -msgid "Health Check" +msgid "Issues, merge requests, pushes, and comments." msgstr "" -msgid "Health information can be retrieved from the following endpoints. More information is available" +msgid "It may take up to 30 minutes before the site is available after the first deployment." msgstr "" -msgid "HealthCheck|Access token is" +msgid "It must have a header row and at least two columns: the first column is the issue title and the second column is the issue description. The separator is automatically detected." msgstr "" -msgid "HealthCheck|Healthy" +msgid "It's you" msgstr "" -msgid "HealthCheck|No Health Problems Detected" +msgid "Jan" msgstr "" -msgid "HealthCheck|Unhealthy" +msgid "January" msgstr "" -msgid "Hello World!" +msgid "JiraService|Events for %{noteable_model_name} are disabled." msgstr "" -msgid "Hello there" +msgid "JiraService|If different from Web URL" msgstr "" -msgid "Help" +msgid "JiraService|Jira API URL" msgstr "" -msgid "Help page" +msgid "JiraService|Jira comments will be created when an issue gets referenced in a commit." msgstr "" -msgid "Help page text and support page url." +msgid "JiraService|Jira comments will be created when an issue gets referenced in a merge request." msgstr "" -msgid "Helps prevent bots from brute-force attacks." +msgid "JiraService|Jira issue tracker" msgstr "" -msgid "Helps prevent bots from creating accounts." +msgid "JiraService|Password or API token" msgstr "" -msgid "Hide archived projects" +msgid "JiraService|Transition ID(s)" msgstr "" -msgid "Hide file browser" +msgid "JiraService|Use , or ; to separate multiple transition IDs" msgstr "" -msgid "Hide group projects" +msgid "JiraService|Use a password for server version and an API token for cloud version" msgstr "" -msgid "Hide host keys manual input" +msgid "JiraService|Use a username for server version and an email for cloud version" msgstr "" -msgid "Hide marketing-related entries from help" +msgid "JiraService|Username or Email" msgstr "" -msgid "Hide payload" +msgid "JiraService|Web URL" msgstr "" -msgid "Hide shared projects" +msgid "JiraService|transition ids can have only numbers which can be split with , or ;" msgstr "" -msgid "Hide stage" +msgid "Job" msgstr "" -msgid "Hide value" -msgid_plural "Hide values" -msgstr[0] "" -msgstr[1] "" +msgid "Job Failed #%{build_id}" +msgstr "" -msgid "Hide values" +msgid "Job ID" msgstr "" -msgid "Highest number of requests per minute for each raw path, default to 300. To disable throttling set to 0." +msgid "Job has been erased" msgstr "" -msgid "Highest role:" +msgid "Job has been successfully erased!" msgstr "" -msgid "History" +msgid "Job has wrong arguments format." msgstr "" -msgid "History of authentications" +msgid "Job is missing the `model_type` argument." msgstr "" -msgid "Hook execution failed. Ensure the group has a project with commits." +msgid "Job is stuck. Check runners." msgstr "" -msgid "Hook was successfully created." +msgid "Job traces and artifacts" msgstr "" -msgid "Hook was successfully updated." +msgid "Job was retried" msgstr "" -msgid "Hours" +msgid "Jobs" msgstr "" -msgid "Housekeeping" +msgid "Job|Browse" msgstr "" -msgid "Housekeeping successfully started" +msgid "Job|Complete Raw" msgstr "" -msgid "Housekeeping, export, path, transfer, remove, archive." +msgid "Job|Download" msgstr "" -msgid "How it works" +msgid "Job|Erase job log" msgstr "" -msgid "How many replicas each Elasticsearch shard has." +msgid "Job|Job artifacts" msgstr "" -msgid "How many shards to split the Elasticsearch index over." +msgid "Job|Job has been erased" msgstr "" -msgid "However, you are already a member of this %{member_source}. Sign in using a different account to accept the invitation." +msgid "Job|Job has been erased by" msgstr "" -msgid "I accept the %{terms_link}" +msgid "Job|Keep" msgstr "" -msgid "I accept the|Terms of Service and Privacy Policy" +msgid "Job|Pipeline" msgstr "" -msgid "I forgot my password" +msgid "Job|Scroll to bottom" msgstr "" -msgid "I have read and agree to the Let's Encrypt %{link_start}Terms of Service%{link_end}" +msgid "Job|Scroll to top" msgstr "" -msgid "ID" +msgid "Job|Show complete raw" msgstr "" -msgid "ID:" +msgid "Job|The artifacts were removed" msgstr "" -msgid "IDE|Allow live previews of JavaScript projects in the Web IDE using CodeSandbox client side evaluation." +msgid "Job|The artifacts will be removed" msgstr "" -msgid "IDE|Back" +msgid "Job|This job failed because the necessary resources were not successfully created." msgstr "" -msgid "IDE|Client side evaluation" +msgid "Job|This job is stuck because the project doesn't have any runners online assigned to it." msgstr "" -msgid "IDE|Commit" +msgid "Job|for" msgstr "" -msgid "IDE|Edit" +msgid "Job|into" msgstr "" -msgid "IDE|Get started with Live Preview" +msgid "Job|with" msgstr "" -msgid "IDE|Go to project" +msgid "Join Zoom meeting" msgstr "" -msgid "IDE|Live Preview" +msgid "Jul" msgstr "" -msgid "IDE|Open in file view" +msgid "July" msgstr "" -msgid "IDE|Preview your web application using Web IDE client-side evaluation." +msgid "Jump to first unresolved discussion" msgstr "" -msgid "IDE|Refresh preview" +msgid "Jump to next unresolved discussion" msgstr "" -msgid "IDE|Review" +msgid "Jun" msgstr "" -msgid "IDE|Successful commit" +msgid "June" msgstr "" -msgid "IP Address" +msgid "Key (PEM)" msgstr "" -msgid "IP address restriction is not editable in subgroups. Value inherited from top-level parent group." +msgid "Key: %{key}" msgstr "" -msgid "IP subnet restriction only allowed for top-level groups" +msgid "Keyboard Shortcuts" msgstr "" -msgid "Identifier" +msgid "Kubernetes" msgstr "" -msgid "Identities" +msgid "Kubernetes Cluster" msgstr "" -msgid "If any job surpasses this timeout threshold, it will be marked as failed. Human readable time input language is accepted like \"1 hour\". Values without specification represent seconds." +msgid "Kubernetes Clusters" msgstr "" -msgid "If checked, group owners can manage LDAP group links and LDAP member overrides" +msgid "Kubernetes cluster creation time exceeds timeout; %{timeout}" msgstr "" -msgid "If checked, new group memberships and permissions can only be added via LDAP synchronization" +msgid "Kubernetes cluster integration was not removed." 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 "Kubernetes cluster integration was successfully removed." msgstr "" -msgid "If disabled, only admins will be able to set up mirrors in projects." +msgid "Kubernetes cluster was successfully updated." msgstr "" -msgid "If disabled, the access level will depend on the user's permissions in the project." +msgid "Kubernetes configured" msgstr "" -msgid "If enabled" +msgid "Kubernetes error: %{error_code}" msgstr "" -msgid "If enabled, access to projects will be validated on an external service using their classification label." +msgid "LDAP" msgstr "" -msgid "If this was a mistake you can %{leave_link_start}leave the %{source_type}%{link_end}." +msgid "LFS" msgstr "" -msgid "If this was a mistake you can leave the %{source_type}." +msgid "LFS objects" msgstr "" -msgid "If using GitHub, you’ll see pipeline statuses on GitHub for your commits and pull requests. %{more_info_link}" +msgid "LFSStatus|Disabled" msgstr "" -msgid "If you lose your recovery codes you can generate new ones, invalidating all previous codes." +msgid "LFSStatus|Enabled" msgstr "" -msgid "If your HTTP repository is not publicly accessible, add your credentials." +msgid "LICENSE" msgstr "" -msgid "ImageDiffViewer|2-up" +msgid "Label" msgstr "" -msgid "ImageDiffViewer|Onion skin" +msgid "Label actions dropdown" msgstr "" -msgid "ImageDiffViewer|Swipe" +msgid "Label was created" msgstr "" -msgid "ImageViewerDimensions|H" +msgid "Label was removed" msgstr "" -msgid "ImageViewerDimensions|W" +msgid "Label was successfully updated." msgstr "" -msgid "Impersonation has been disabled" +msgid "LabelSelect|%{firstLabelName} +%{remainingLabelCount} more" msgstr "" -msgid "Import" +msgid "LabelSelect|%{labelsString}, and %{remainingLabelCount} more" msgstr "" -msgid "Import CSV" +msgid "LabelSelect|Labels" msgstr "" -msgid "Import Projects from Gitea" +msgid "Labels" msgstr "" -msgid "Import all compatible projects" +msgid "Labels can be applied to %{features}. Group labels are available for any project within the group." msgstr "" -msgid "Import all projects" +msgid "Labels can be applied to issues and merge requests to categorize them." msgstr "" -msgid "Import all repositories" +msgid "Labels can be applied to issues and merge requests." msgstr "" -msgid "Import an exported GitLab project" +msgid "Labels|Promote label %{labelTitle} to Group Label?" msgstr "" -msgid "Import in progress" +msgid "Labels|Promote Label" msgstr "" -msgid "Import issues" +msgid "Labels|Promoting %{labelTitle} will make it available for all projects inside %{groupName}. Existing project labels with the same title will be merged. This action cannot be reversed." msgstr "" -msgid "Import members" +msgid "Labels|and %{count} more" msgstr "" -msgid "Import members from another project" +msgid "Language" msgstr "" -msgid "Import multiple repositories by uploading a manifest file." +msgid "Large File Storage" msgstr "" -msgid "Import project" +msgid "Last %d day" +msgid_plural "Last %d days" +msgstr[0] "" +msgstr[1] "" + +msgid "Last Pipeline" msgstr "" -msgid "Import project members" +msgid "Last accessed on" msgstr "" -msgid "Import projects from Bitbucket" +msgid "Last activity" msgstr "" -msgid "Import projects from Bitbucket Server" +msgid "Last commit" msgstr "" -msgid "Import projects from FogBugz" +msgid "Last contact" msgstr "" -msgid "Import projects from GitLab.com" +msgid "Last edited %{date}" msgstr "" -msgid "Import projects from Google Code" +msgid "Last edited by %{name}" msgstr "" -msgid "Import repositories from Bitbucket Server" +msgid "Last reply by" msgstr "" -msgid "Import repositories from GitHub" +msgid "Last seen" msgstr "" -msgid "Import repository" +msgid "Last successful update" msgstr "" -msgid "Import tasks" +msgid "Last update" msgstr "" -msgid "Import tasks from Phabricator into issues" +msgid "Last update attempt" msgstr "" -msgid "Import timed out. Import took longer than %{import_jobs_expiration} seconds" +msgid "Last updated" msgstr "" -msgid "Import/Export illustration" +msgid "Last used" msgstr "" -msgid "ImportButtons|Connect repositories from" +msgid "Last used on:" msgstr "" -msgid "ImportProjects|Blocked import URL: %{message}" +msgid "LastPushEvent|You pushed to" msgstr "" -msgid "ImportProjects|Error importing repository %{project_safe_import_url} into %{project_full_path} - %{message}" +msgid "LastPushEvent|at" msgstr "" -msgid "ImportProjects|Importing the project failed" +msgid "Latest changes" msgstr "" -msgid "ImportProjects|Requesting your %{provider} repositories failed" +msgid "Latest pipeline for the most recent commit on this branch" msgstr "" -msgid "ImportProjects|Select the projects you want to import" +msgid "Lead" msgstr "" -msgid "ImportProjects|The remote data could not be imported." +msgid "Learn how to %{link_start}contribute to the built-in templates%{link_end}" msgstr "" -msgid "ImportProjects|The repository could not be created." +msgid "Learn more" msgstr "" -msgid "ImportProjects|Updating the imported projects failed" +msgid "Learn more about Auto DevOps" msgstr "" -msgid "Improve Issue boards" +msgid "Learn more about Kubernetes" msgstr "" -msgid "Improve Issue boards with GitLab Enterprise Edition." +msgid "Learn more about adding certificates to your project by following the %{docs_link_start}documentation on GitLab Pages%{docs_link_end}." msgstr "" -msgid "Improve Merge Requests and customer support with GitLab Enterprise Edition." +msgid "Learn more about signing commits" msgstr "" -msgid "Improve issues management with Issue weight and GitLab Enterprise Edition." +msgid "Learn more in the" msgstr "" -msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition." +msgid "Learn more in the|pipeline schedules documentation" msgstr "" -msgid "In order to enable instance-level analytics, please ask an admin to enable %{usage_ping_link_start}usage ping%{usage_ping_link_end}." +msgid "Leave" msgstr "" -msgid "In order to gather accurate feature usage data, it can take 1 to 2 weeks to see your index." +msgid "Leave edit mode? All unsaved changes will be lost." msgstr "" -msgid "In the next step, you'll be able to select the projects you want to import." +msgid "Leave group" msgstr "" -msgid "Incidents" +msgid "Leave project" msgstr "" -msgid "Include a Terms of Service agreement and Privacy Policy that all users must accept." +msgid "Leave the \"File type\" and \"Delivery method\" options on their default values." msgstr "" -msgid "Include author name in notification email body" +msgid "Let's Encrypt does not accept emails on example.com" msgstr "" -msgid "Include merge request description" +msgid "Let's Encrypt is a free, automated, and open certificate authority (CA) that gives digital certificates in order to enable HTTPS (SSL/TLS) for websites. Learn more about Let's Encrypt configuration by following the %{docs_link_start}documentation on GitLab Pages%{docs_link_end}." msgstr "" -msgid "Include the username in the URL if required: https://username@gitlab.company.com/group/project.git." +msgid "Limit display of time tracking units to hours." msgstr "" -msgid "Includes LFS objects. It can be overridden per group, or per project. 0 for unlimited." +msgid "Limited to showing %d event at most" +msgid_plural "Limited to showing %d events at most" +msgstr[0] "" +msgstr[1] "" + +msgid "Link copied to clipboard" msgstr "" -msgid "Includes an MVC structure to help you get started." +msgid "Linked emails (%{email_count})" msgstr "" -msgid "Includes an MVC structure, Gemfile, Rakefile, along with many others, to help you get started." +msgid "LinkedIn" msgstr "" -msgid "Includes an MVC structure, mvnw and pom.xml to help you get started." +msgid "List" msgstr "" -msgid "Incoming email" +msgid "List Your Gitea Repositories" msgstr "" -msgid "Incompatible Project" +msgid "List available repositories" msgstr "" -msgid "Incompatible options set!" +msgid "List view" msgstr "" -msgid "Index all projects" +msgid "List your Bitbucket Server repositories" msgstr "" -msgid "Indicates whether this runner can pick jobs without tags" +msgid "Live preview" msgstr "" -msgid "Inform users without uploaded SSH keys that they can't push over SSH until one is added" +msgid "Loading functions timed out. Please reload the page to try again." msgstr "" -msgid "Information about additional Pages templates and how to install them can be found in our %{pages_getting_started_guide}." +msgid "Loading issues" msgstr "" -msgid "Inline" +msgid "Loading the GitLab IDE..." msgstr "" -msgid "Input host keys manually" +msgid "Loading..." msgstr "" -msgid "Input your repository URL" +msgid "Loading…" msgstr "" -msgid "Insert a quote" +msgid "Localization" msgstr "" -msgid "Insert code" +msgid "Lock" msgstr "" -msgid "Insert suggestion" +msgid "Lock %{issuableDisplayName}" msgstr "" -msgid "Insights" +msgid "Lock not found" msgstr "" -msgid "Install" +msgid "Lock the discussion" msgstr "" -msgid "Install GitLab Runner" +msgid "Lock this %{issuableDisplayName}? Only project members will be able to comment." msgstr "" -msgid "Install Runner on Kubernetes" +msgid "Lock to current projects" msgstr "" -msgid "Install a soft token authenticator like %{free_otp_link} or Google Authenticator from your application repository and scan this QR code. More information is available in the %{help_link_start}documentation%{help_link_end}." +msgid "Locked" msgstr "" -msgid "Install on clusters" +msgid "Locked by %{fileLockUserName}" msgstr "" -msgid "Installed" +msgid "Locked the discussion." msgstr "" -msgid "Installing" +msgid "Locked to current projects" msgstr "" -msgid "Instance" -msgid_plural "Instances" -msgstr[0] "" -msgstr[1] "" - -msgid "Instance Statistics" +msgid "Locks the discussion." msgstr "" -msgid "Instance Statistics visibility" +msgid "Logo was successfully removed." msgstr "" -msgid "Instance administrators group already exists" +msgid "Logs" msgstr "" -msgid "Instance does not support multiple Kubernetes clusters" +msgid "MERGED" msgstr "" -msgid "Instance license" +msgid "MRDiff|Show changes only" msgstr "" -msgid "Integrations" +msgid "MRDiff|Show full file" msgstr "" -msgid "Integrations Settings" +msgid "Made this issue confidential." msgstr "" -msgid "Interested parties can even contribute by pushing commits if they want to." +msgid "Make and review changes in the browser with the Web IDE" msgstr "" -msgid "Internal" +msgid "Make issue confidential" msgstr "" -msgid "Internal - The group and any internal projects can be viewed by any logged in user." +msgid "Make sure you save it - you won't be able to access it again." msgstr "" -msgid "Internal - The project can be accessed by any logged in user." +msgid "Make sure you're logged into the account that owns the projects you'd like to import." msgstr "" -msgid "Internal users" +msgid "Makes this issue confidential." msgstr "" -msgid "Interval Pattern" +msgid "Manage" msgstr "" -msgid "Introducing Cycle Analytics" +msgid "Manage Git repositories with fine-grained access controls that keep your code secure. Perform code reviews and enhance collaboration with merge requests. Each project can also have an issue tracker and a wiki." msgstr "" -msgid "Introducing Your Conversational Development Index" +msgid "Manage Web IDE features" msgstr "" -msgid "Invalid Insights config file detected" +msgid "Manage access" msgstr "" -msgid "Invalid Login or password" +msgid "Manage all notifications" msgstr "" -msgid "Invalid URL" +msgid "Manage applications that can use GitLab as an OAuth provider, and applications that you've authorized to use your account." msgstr "" -msgid "Invalid date" +msgid "Manage applications that you've authorized to use your account." msgstr "" -msgid "Invalid feature" +msgid "Manage group labels" msgstr "" -msgid "Invalid field" +msgid "Manage labels" msgstr "" -msgid "Invalid file." +msgid "Manage project labels" msgstr "" -msgid "Invalid import params" +msgid "Manage two-factor authentication" msgstr "" -msgid "Invalid input, please avoid emojis" +msgid "Manifest" msgstr "" -msgid "Invalid pin code" +msgid "Manifest file import" msgstr "" -msgid "Invalid query" +msgid "Manual job" msgstr "" -msgid "Invalid repository path" +msgid "ManualOrdering|Couldn't save the order of the issues" msgstr "" -msgid "Invalid server response" +msgid "Map a FogBugz account ID to a GitLab user" msgstr "" -msgid "Invalid two-factor code." +msgid "Map a Google Code user to a GitLab user" msgstr "" -msgid "Invitation" +msgid "Map a Google Code user to a full email address" msgstr "" -msgid "Invite" +msgid "Map a Google Code user to a full name" msgstr "" -msgid "Invite \"%{trimmed}\" by email" +msgid "Mar" msgstr "" -msgid "Invite group" +msgid "March" msgstr "" -msgid "Invite member" +msgid "Mark To Do as done" msgstr "" -msgid "Invocations" +msgid "Mark as done" msgstr "" -msgid "Is using license seat:" +msgid "Mark as resolved" msgstr "" -msgid "IssuableStatus|Closed" +msgid "Mark comment as resolved" msgstr "" -msgid "IssuableStatus|Closed (%{link})" +msgid "Mark this issue as a duplicate of another issue" msgstr "" -msgid "IssuableStatus|duplicated" +msgid "Markdown" msgstr "" -msgid "IssuableStatus|moved" +msgid "Markdown Help" msgstr "" -msgid "Issue" +msgid "Markdown enabled" msgstr "" -msgid "Issue Boards" +msgid "Markdown is supported" msgstr "" -msgid "Issue board focus mode" +msgid "Marked To Do as done." msgstr "" -msgid "Issue events" +msgid "Marked this %{noun} as Work In Progress." msgstr "" -msgid "Issue template (optional)" +msgid "Marked this issue as a duplicate of %{duplicate_param}." msgstr "" -msgid "Issue update failed" +msgid "Marks To Do as done." msgstr "" -msgid "Issue was closed by %{name} %{reason}" +msgid "Marks this %{noun} as Work In Progress." msgstr "" -msgid "IssueBoards|Board" +msgid "Marks this issue as a duplicate of %{duplicate_reference}." msgstr "" -msgid "IssueBoards|Boards" +msgid "MattermostService|Add to Mattermost" msgstr "" -msgid "IssueBoards|Create new board" +msgid "MattermostService|Command trigger word" msgstr "" -msgid "IssueBoards|Delete board" +msgid "MattermostService|Fill in the word that works best for your team." msgstr "" -msgid "IssueBoards|No matching boards found" +msgid "MattermostService|Request URL" msgstr "" -msgid "IssueBoards|Some of your boards are hidden, activate a license to see them again." +msgid "MattermostService|Request method" msgstr "" -msgid "IssueBoards|Switch board" +msgid "MattermostService|Response icon" msgstr "" -msgid "IssueTracker|Bugzilla issue tracker" +msgid "MattermostService|Response username" msgstr "" -msgid "IssueTracker|Custom issue tracker" +msgid "MattermostService|See list of available commands in Mattermost after setting up this service, by entering" msgstr "" -msgid "IssueTracker|GitLab issue tracker" +msgid "MattermostService|Suggestions:" msgstr "" -msgid "IssueTracker|Redmine issue tracker" +msgid "MattermostService|This service allows users to perform common operations on this project by entering slash commands in Mattermost." msgstr "" -msgid "IssueTracker|YouTrack issue tracker" +msgid "Max access level" msgstr "" -msgid "Issues" +msgid "Maximum artifacts size (MB)" msgstr "" -msgid "Issues / Merge Requests" +msgid "Maximum attachment size (MB)" msgstr "" -msgid "Issues can be bugs, tasks or ideas to be discussed. Also, issues are searchable and filterable." +msgid "Maximum job timeout" msgstr "" -msgid "Issues closed" +msgid "Maximum job timeout has a value which could not be accepted" msgstr "" -msgid "Issues with comments, merge requests with diffs and comments, labels, milestones, snippets, and other project entities" +msgid "Maximum push size (MB)" msgstr "" -msgid "Issues, merge requests, pushes, and comments." +msgid "May" msgstr "" -msgid "IssuesAnalytics|After you begin creating issues for your projects, we can start tracking and displaying metrics for them" +msgid "Median" msgstr "" -msgid "IssuesAnalytics|Avg/Month:" +msgid "Member since %{date}" msgstr "" -msgid "IssuesAnalytics|Issues created" +msgid "Members" msgstr "" -msgid "IssuesAnalytics|Issues created per month" +msgid "Members can be added by project Maintainers or Owners" msgstr "" -msgid "IssuesAnalytics|Last 12 months" +msgid "Members of %{project_name}" msgstr "" -msgid "IssuesAnalytics|Sorry, your filter produced no results" +msgid "Members with access to %{strong_start}%{group_name}%{strong_end}" msgstr "" -msgid "IssuesAnalytics|There are no issues for the projects in your group" +msgid "Members with pending access to %{strong_start}%{group_name}%{strong_end}" msgstr "" -msgid "IssuesAnalytics|To widen your search, change or remove filters in the filter bar above" +msgid "Merge" msgstr "" -msgid "IssuesAnalytics|Total:" +msgid "Merge (when the pipeline succeeds)" msgstr "" -msgid "It may take up to 30 minutes before the site is available after the first deployment." +msgid "Merge Request" msgstr "" -msgid "It must have a header row and at least two columns: the first column is the issue title and the second column is the issue description. The separator is automatically detected." +msgid "Merge Requests" msgstr "" -msgid "It's you" +msgid "Merge commit message" msgstr "" -msgid "Jaeger URL" +msgid "Merge events" msgstr "" -msgid "Jaeger tracing" +msgid "Merge immediately" msgstr "" -msgid "Jan" +msgid "Merge in progress" msgstr "" -msgid "January" +msgid "Merge request" msgstr "" -msgid "JiraService|Events for %{noteable_model_name} are disabled." +msgid "Merge requests" msgstr "" -msgid "JiraService|If different from Web URL" +msgid "Merge requests are a place to propose changes you've made to a project and discuss those changes with others" msgstr "" -msgid "JiraService|Jira API URL" +msgid "Merge when pipeline succeeds" msgstr "" -msgid "JiraService|Jira comments will be created when an issue gets referenced in a commit." +msgid "MergeConflict|Commit to source branch" msgstr "" -msgid "JiraService|Jira comments will be created when an issue gets referenced in a merge request." +msgid "MergeConflict|Committing..." msgstr "" -msgid "JiraService|Jira issue tracker" +msgid "MergeConflict|HEAD//our changes" msgstr "" -msgid "JiraService|Password or API token" +msgid "MergeConflict|Use ours" msgstr "" -msgid "JiraService|Transition ID(s)" +msgid "MergeConflict|Use theirs" msgstr "" -msgid "JiraService|Use , or ; to separate multiple transition IDs" +msgid "MergeConflict|conflict" msgstr "" -msgid "JiraService|Use a password for server version and an API token for cloud version" +msgid "MergeConflict|conflicts" msgstr "" -msgid "JiraService|Use a username for server version and an email for cloud version" +msgid "MergeConflict|origin//their changes" msgstr "" -msgid "JiraService|Username or Email" +msgid "MergeRequests|Add a reply" msgstr "" -msgid "JiraService|Web URL" +msgid "MergeRequests|Failed to squash. Should be done manually." msgstr "" -msgid "JiraService|transition ids can have only numbers which can be split with , or ;" +msgid "MergeRequests|Jump to next unresolved discussion" msgstr "" -msgid "Job" +msgid "MergeRequests|Reply..." msgstr "" -msgid "Job Failed #%{build_id}" +msgid "MergeRequests|Resolve this thread in a new issue" msgstr "" -msgid "Job ID" +msgid "MergeRequests|Saving the comment failed" msgstr "" -msgid "Job has been erased" +msgid "MergeRequests|Squash task canceled: another squash is already in progress." msgstr "" -msgid "Job has been successfully erased!" +msgid "MergeRequests|Toggle comments for this file" msgstr "" -msgid "Job has wrong arguments format." +msgid "MergeRequests|View file @ %{commitId}" msgstr "" -msgid "Job is missing the `model_type` argument." +msgid "MergeRequests|View replaced file @ %{commitId}" msgstr "" -msgid "Job is stuck. Check runners." +msgid "MergeRequests|commented on commit %{commitLink}" msgstr "" -msgid "Job traces and artifacts" +msgid "MergeRequests|started a thread" msgstr "" -msgid "Job was retried" +msgid "MergeRequests|started a thread on %{linkStart}an old version of the diff%{linkEnd}" msgstr "" -msgid "Jobs" +msgid "MergeRequests|started a thread on %{linkStart}the diff%{linkEnd}" msgstr "" -msgid "Job|Browse" +msgid "MergeRequests|started a thread on an outdated change in commit %{linkStart}%{commitId}%{linkEnd}" msgstr "" -msgid "Job|Complete Raw" +msgid "MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}" msgstr "" -msgid "Job|Download" +msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" msgstr "" -msgid "Job|Erase job log" +msgid "MergeRequest|Error dismissing suggestion popover. Please try again." msgstr "" -msgid "Job|Job artifacts" +msgid "MergeRequest|Error loading full diff. Please try again." msgstr "" -msgid "Job|Job has been erased" +msgid "MergeRequest|Filter files or search with %{modifier_key}+p" msgstr "" -msgid "Job|Job has been erased by" +msgid "MergeRequest|No files found" msgstr "" -msgid "Job|Keep" +msgid "Merged" msgstr "" -msgid "Job|Pipeline" +msgid "Merged branches are being deleted. This can take some time depending on the number of branches. Please refresh the page to see changes." msgstr "" -msgid "Job|Scroll to bottom" +msgid "Merges this merge request when the pipeline succeeds." msgstr "" -msgid "Job|Scroll to top" +msgid "Messages" msgstr "" -msgid "Job|Show complete raw" +msgid "Method" msgstr "" -msgid "Job|The artifacts were removed" +msgid "Metrics" msgstr "" -msgid "Job|The artifacts will be removed" +msgid "Metrics - Grafana" msgstr "" -msgid "Job|This job failed because the necessary resources were not successfully created." +msgid "Metrics - Influx" msgstr "" -msgid "Job|This job is stuck because the project doesn't have any runners online assigned to it." +msgid "Metrics - Prometheus" msgstr "" -msgid "Job|for" +msgid "Metrics Dashboard" msgstr "" -msgid "Job|into" +msgid "Metrics and profiling" msgstr "" -msgid "Job|with" +msgid "Metrics for environment" msgstr "" -msgid "Join Zoom meeting" +msgid "Metrics|Add metric" msgstr "" -msgid "Jul" +msgid "Metrics|Check out the CI/CD documentation on deploying to an environment" msgstr "" -msgid "July" +msgid "Metrics|Environment" msgstr "" -msgid "Jump to first unresolved discussion" +msgid "Metrics|Learn about environments" msgstr "" -msgid "Jump to next unresolved discussion" +msgid "Metrics|No deployed environments" msgstr "" -msgid "Jun" +msgid "Metrics|Show last" msgstr "" -msgid "June" +msgid "Metrics|There was an error fetching the environments data, please try again" msgstr "" -msgid "Key (PEM)" +msgid "Metrics|There was an error getting deployment information." msgstr "" -msgid "Key: %{key}" +msgid "Metrics|There was an error getting environments information." msgstr "" -msgid "Keyboard Shortcuts" +msgid "Metrics|There was an error while retrieving metrics" msgstr "" -msgid "Kubernetes" +msgid "Metrics|Unexpected deployment data response from prometheus endpoint" msgstr "" -msgid "Kubernetes Cluster" +msgid "Metrics|Unexpected metrics data response from prometheus endpoint" msgstr "" -msgid "Kubernetes Clusters" +msgid "Migrated %{success_count}/%{total_count} files." msgstr "" -msgid "Kubernetes cluster creation time exceeds timeout; %{timeout}" +msgid "Migration successful." msgstr "" -msgid "Kubernetes cluster integration was not removed." +msgid "Milestone" msgstr "" -msgid "Kubernetes cluster integration was successfully removed." +msgid "Milestones" msgstr "" -msgid "Kubernetes cluster was successfully updated." +msgid "Milestones| You’re about to permanently delete the milestone %{milestoneTitle} and remove it from %{issuesWithCount} and %{mergeRequestsWithCount}. Once deleted, it cannot be undone or recovered." msgstr "" -msgid "Kubernetes configured" +msgid "Milestones| You’re about to permanently delete the milestone %{milestoneTitle}. This milestone is not currently used in any issues or merge requests." msgstr "" -msgid "Kubernetes deployment not found" +msgid "Milestones|Delete milestone" msgstr "" -msgid "Kubernetes error: %{error_code}" +msgid "Milestones|Delete milestone %{milestoneTitle}?" msgstr "" -msgid "LDAP" +msgid "Milestones|Failed to delete milestone %{milestoneTitle}" msgstr "" -msgid "LDAP settings" +msgid "Milestones|Milestone %{milestoneTitle} was not found" msgstr "" -msgid "LDAP sync in progress. This could take a few minutes. Refresh the page to see the changes." +msgid "Milestones|Promote %{milestoneTitle} to group milestone?" msgstr "" -msgid "LFS" +msgid "Milestones|Promote Milestone" msgstr "" -msgid "LFS objects" +msgid "Milestones|Promoting %{milestoneTitle} will make it available for all projects inside %{groupName}. Existing project milestones with the same title will be merged." msgstr "" -msgid "LFSStatus|Disabled" +msgid "Milestones|This action cannot be reversed." msgstr "" -msgid "LFSStatus|Enabled" +msgid "Minimum length is %{minimum_password_length} characters" msgstr "" -msgid "LICENSE" +msgid "Minimum length is %{minimum_password_length} characters." msgstr "" -msgid "Label" +msgid "Mirror direction" msgstr "" -msgid "Label actions dropdown" +msgid "Mirror repository" msgstr "" -msgid "Label lists show all issues with the selected label." +msgid "Mirrored repositories" msgstr "" -msgid "Label was created" +msgid "Mirroring repositories" msgstr "" -msgid "Label was removed" +msgid "Mirroring settings were successfully updated." msgstr "" -msgid "Label was successfully updated." +msgid "Missing commit signatures endpoint!" msgstr "" -msgid "LabelSelect|%{firstLabelName} +%{remainingLabelCount} more" +msgid "MissingSSHKeyWarningLink|add an SSH key" msgstr "" -msgid "LabelSelect|%{labelsString}, and %{remainingLabelCount} more" +msgid "Modal|Cancel" msgstr "" -msgid "LabelSelect|Labels" +msgid "Modal|Close" msgstr "" -msgid "Labels" +msgid "Modify commit message" msgstr "" -msgid "Labels can be applied to %{features}. Group labels are available for any project within the group." +msgid "Modify commit messages" msgstr "" -msgid "Labels can be applied to issues and merge requests to categorize them." +msgid "Modify merge commit" msgstr "" -msgid "Labels can be applied to issues and merge requests." +msgid "Monday" msgstr "" -msgid "Labels|Promote label %{labelTitle} to Group Label?" +msgid "Monitor your errors by integrating with Sentry." msgstr "" -msgid "Labels|Promote Label" +msgid "Monitoring" msgstr "" -msgid "Labels|Promoting %{labelTitle} will make it available for all projects inside %{groupName}. Existing project labels with the same title will be merged. This action cannot be reversed." +msgid "More" msgstr "" -msgid "Labels|and %{count} more" +msgid "More actions" msgstr "" -msgid "Language" +msgid "More information" msgstr "" -msgid "Large File Storage" +msgid "More information is available|here" msgstr "" -msgid "Last %d day" -msgid_plural "Last %d days" -msgstr[0] "" -msgstr[1] "" - -msgid "Last %{days} days" +msgid "More than %{number_commits_distance} commits different with %{default_branch}" msgstr "" -msgid "Last Pipeline" +msgid "Most stars" msgstr "" -msgid "Last accessed on" +msgid "Mount point %{mounted_as} not found in %{model_class}." msgstr "" -msgid "Last activity" +msgid "Move" msgstr "" -msgid "Last commit" +msgid "Move issue" msgstr "" -msgid "Last contact" +msgid "Move issue from one column of the board to another" msgstr "" -msgid "Last edited %{date}" +msgid "Move selection down" msgstr "" -msgid "Last edited by %{name}" +msgid "Move selection up" msgstr "" -msgid "Last reply by" +msgid "Move this issue to another project." msgstr "" -msgid "Last seen" +msgid "MoveIssue|Cannot move issue due to insufficient permissions!" msgstr "" -msgid "Last successful update" +msgid "MoveIssue|Cannot move issue to project it originates from!" msgstr "" -msgid "Last update" +msgid "Moved issue to %{label} column in the board." msgstr "" -msgid "Last update attempt" +msgid "Moved this issue to %{path_to_project}." msgstr "" -msgid "Last updated" +msgid "Moves issue to %{label} column in the board." msgstr "" -msgid "Last used" +msgid "Moves this issue to %{path_to_project}." msgstr "" -msgid "Last used on:" +msgid "Multiple model types found: %{model_types}" msgstr "" -msgid "LastPushEvent|You pushed to" +msgid "Multiple uploaders found: %{uploader_types}" msgstr "" -msgid "LastPushEvent|at" +msgid "Name" msgstr "" -msgid "Latest changes" +msgid "Name has already been taken" msgstr "" -msgid "Latest pipeline for the most recent commit on this branch" +msgid "Name new label" msgstr "" -msgid "Lead" +msgid "Name your individual key via a title" msgstr "" -msgid "Learn GitLab" +msgid "Name:" msgstr "" -msgid "Learn how to %{link_start}contribute to the built-in templates%{link_end}" +msgid "Naming, topics, avatar" msgstr "" -msgid "Learn how to %{no_packages_link_start}publish and share your packages%{no_packages_link_end} with GitLab." +msgid "Naming, visibility" msgstr "" -msgid "Learn more" +msgid "Nav|Help" msgstr "" -msgid "Learn more about Auto DevOps" +msgid "Nav|Home" msgstr "" -msgid "Learn more about Kubernetes" +msgid "Nav|Sign In / Register" msgstr "" -msgid "Learn more about Web Terminal" +msgid "Nav|Sign out and sign in with a different account" msgstr "" -msgid "Learn more about adding certificates to your project by following the %{docs_link_start}documentation on GitLab Pages%{docs_link_end}." +msgid "Network" msgstr "" -msgid "Learn more about approvals." +msgid "Never" msgstr "" -msgid "Learn more about custom project templates" +msgid "New" msgstr "" -msgid "Learn more about deploying to a cluster" +msgid "New Application" msgstr "" -msgid "Learn more about group-level project templates" +msgid "New Environment" msgstr "" -msgid "Learn more about signing commits" +msgid "New Group" msgstr "" -msgid "Learn more about the dependency list" +msgid "New Identity" msgstr "" -msgid "Learn more about vulnerability check" -msgstr "" +msgid "New Issue" +msgid_plural "New Issues" +msgstr[0] "" +msgstr[1] "" -msgid "Learn more in the" +msgid "New Label" msgstr "" -msgid "Learn more in the|pipeline schedules documentation" +msgid "New Milestone" msgstr "" -msgid "Leave" +msgid "New Pages Domain" msgstr "" -msgid "Leave edit mode? All unsaved changes will be lost." +msgid "New Password" msgstr "" -msgid "Leave group" +msgid "New Pipeline Schedule" msgstr "" -msgid "Leave project" +msgid "New Project" msgstr "" -msgid "Leave the \"File type\" and \"Delivery method\" options on their default values." +msgid "New Snippet" msgstr "" -msgid "Let's Encrypt does not accept emails on example.com" +msgid "New branch" msgstr "" -msgid "Let's Encrypt is a free, automated, and open certificate authority (CA) that gives digital certificates in order to enable HTTPS (SSL/TLS) for websites. Learn more about Let's Encrypt configuration by following the %{docs_link_start}documentation on GitLab Pages%{docs_link_end}." +msgid "New branch unavailable" msgstr "" -msgid "License" +msgid "New deploy key" msgstr "" -msgid "License Compliance" +msgid "New directory" msgstr "" -msgid "LicenseCompliance|Add a license" +msgid "New environment" msgstr "" -msgid "LicenseCompliance|Add licenses manually to approve or blacklist" +msgid "New file" msgstr "" -msgid "LicenseCompliance|Approve" +msgid "New group" msgstr "" -msgid "LicenseCompliance|Approve license" +msgid "New health check access token has been generated!" msgstr "" -msgid "LicenseCompliance|Approve license?" +msgid "New identity" msgstr "" -msgid "LicenseCompliance|Approved" +msgid "New issue" msgstr "" -msgid "LicenseCompliance|Blacklist" +msgid "New label" msgstr "" -msgid "LicenseCompliance|Blacklist license" +msgid "New merge request" msgstr "" -msgid "LicenseCompliance|Blacklist license?" +msgid "New milestone" msgstr "" -msgid "LicenseCompliance|Blacklisted" +msgid "New password" msgstr "" -msgid "LicenseCompliance|Cancel" +msgid "New pipelines will cancel older, pending pipelines on the same branch" msgstr "" -msgid "LicenseCompliance|Here you can approve or blacklist licenses for this project. Using %{ci} or %{license} will allow you to see if there are any unmanaged licenses and approve or blacklist them in merge request." +msgid "New project" msgstr "" -msgid "LicenseCompliance|License" +msgid "New runners registration token has been generated!" msgstr "" -msgid "LicenseCompliance|License Compliance" +msgid "New schedule" msgstr "" -msgid "LicenseCompliance|License Compliance detected %d license for the source branch only" -msgid_plural "LicenseCompliance|License Compliance detected %d licenses for the source branch only" -msgstr[0] "" -msgstr[1] "" - -msgid "LicenseCompliance|License Compliance detected %d new license" -msgid_plural "LicenseCompliance|License Compliance detected %d new licenses" -msgstr[0] "" -msgstr[1] "" - -msgid "LicenseCompliance|License Compliance detected no licenses for the source branch only" +msgid "New snippet" msgstr "" -msgid "LicenseCompliance|License Compliance detected no new licenses" +msgid "New subgroup" msgstr "" -msgid "LicenseCompliance|License details" +msgid "New tag" msgstr "" -msgid "LicenseCompliance|License name" +msgid "New users set to external" msgstr "" -msgid "LicenseCompliance|Packages" +msgid "New! Suggest changes directly" msgstr "" -msgid "LicenseCompliance|Remove license" +msgid "New..." msgstr "" -msgid "LicenseCompliance|Remove license?" +msgid "Newly registered users will by default be external" msgstr "" -msgid "LicenseCompliance|Submit" +msgid "Next" msgstr "" -msgid "LicenseCompliance|There are currently no approved or blacklisted licenses in this project." +msgid "Next file in diff (MRs only)" msgstr "" -msgid "LicenseCompliance|There are currently no approved or blacklisted licenses that match in this project." +msgid "Next unresolved discussion (MRs only)" msgstr "" -msgid "LicenseCompliance|This license already exists in this project." +msgid "Nickname" msgstr "" -msgid "LicenseCompliance|URL" +msgid "No" msgstr "" -msgid "LicenseCompliance|You are about to remove the license, %{name}, from this project." +msgid "No %{header} for this request." msgstr "" -msgid "Licensed Features" +msgid "No %{providerTitle} repositories available to import" msgstr "" -msgid "Licensed to" +msgid "No Label" msgstr "" -msgid "Licenses" +msgid "No Milestone" msgstr "" -msgid "Limit display of time tracking units to hours." +msgid "No Tag" msgstr "" -msgid "Limit namespaces and projects that can be indexed" +msgid "No active admin user found" msgstr "" -msgid "Limited to showing %d event at most" -msgid_plural "Limited to showing %d events at most" -msgstr[0] "" -msgstr[1] "" +msgid "No activities found" +msgstr "" -msgid "Link copied to clipboard" +msgid "No application_settings found" msgstr "" -msgid "Linked emails (%{email_count})" +msgid "No available namespaces to fork the project." msgstr "" -msgid "LinkedIn" +msgid "No branches found" msgstr "" -msgid "LinkedPipelines|%{counterLabel} more downstream pipelines" +msgid "No changes" msgstr "" -msgid "List" +msgid "No changes between %{ref_start}%{source_branch}%{ref_end} and %{ref_start}%{target_branch}%{ref_end}" msgstr "" -msgid "List Your Gitea Repositories" +msgid "No connection could be made to a Gitaly Server, please check your logs!" msgstr "" -msgid "List available repositories" +msgid "No contributions" msgstr "" -msgid "List of IPs and CIDRs of allowed secondary nodes. Comma-separated, e.g. \"1.1.1.1, 2.2.2.0/24\"" +msgid "No contributions were found" msgstr "" -msgid "List the merge requests that must be merged before this one." +msgid "No data found" msgstr "" -msgid "List view" +msgid "No data to display" msgstr "" -msgid "List your Bitbucket Server repositories" +msgid "No details available" msgstr "" -msgid "Live preview" +msgid "No errors to display." msgstr "" -msgid "Loading contribution stats for group members" +msgid "No estimate or time spent" msgstr "" -msgid "Loading functions timed out. Please reload the page to try again." +msgid "No file chosen" msgstr "" -msgid "Loading issues" +msgid "No file selected" msgstr "" -msgid "Loading the GitLab IDE..." +msgid "No files" msgstr "" -msgid "Loading..." +msgid "No files found." msgstr "" -msgid "Loading…" +msgid "No forks available to you." msgstr "" -msgid "Localization" +msgid "No job trace" msgstr "" -msgid "Lock" +msgid "No labels with such name or description" msgstr "" -msgid "Lock %{issuableDisplayName}" +msgid "No license. All rights reserved" msgstr "" -msgid "Lock memberships to LDAP synchronization" +msgid "No merge requests found" msgstr "" -msgid "Lock not found" +msgid "No messages were logged" msgstr "" -msgid "Lock the discussion" +msgid "No milestones to show" msgstr "" -msgid "Lock this %{issuableDisplayName}? Only project members will be able to comment." +msgid "No other labels with such name or description" msgstr "" -msgid "Lock to current projects" +msgid "No parent group" msgstr "" -msgid "Locked" +msgid "No preview for this file type" msgstr "" -msgid "Locked Files" +msgid "No prioritised labels with such name or description" msgstr "" -msgid "Locked by %{fileLockUserName}" +msgid "No public groups" msgstr "" -msgid "Locked the discussion." +msgid "No repository" msgstr "" -msgid "Locked to current projects" +msgid "No runners found" msgstr "" -msgid "Locks give the ability to lock specific file or folder." +msgid "No schedules" msgstr "" -msgid "Locks the discussion." +msgid "No starrers matched your search" msgstr "" -msgid "Login with smartcard" +msgid "No template" msgstr "" -msgid "Logo was successfully removed." +msgid "No, directly import the existing email addresses and usernames." msgstr "" -msgid "Logs" +msgid "Nobody has starred this repository yet" msgstr "" -msgid "MERGED" +msgid "None" msgstr "" -msgid "MRApprovals|Approved by" +msgid "Not available" msgstr "" -msgid "MRApprovals|Approvers" +msgid "Not available for private projects" msgstr "" -msgid "MRApprovals|Pending approvals" +msgid "Not available for protected branches" msgstr "" -msgid "MRDiff|Show changes only" +msgid "Not confidential" msgstr "" -msgid "MRDiff|Show full file" +msgid "Not enough data" msgstr "" -msgid "Made this issue confidential." +msgid "Not found." msgstr "" -msgid "Make and review changes in the browser with the Web IDE" +msgid "Not now" msgstr "" -msgid "Make everyone on your team more productive regardless of their location. GitLab Geo creates read-only mirrors of your GitLab instance so you can reduce the time it takes to clone and fetch large repos." +msgid "Not ready yet. Try again later." msgstr "" -msgid "Make issue confidential" +msgid "Not started" msgstr "" -msgid "Make sure you save it - you won't be able to access it again." +msgid "Note" msgstr "" -msgid "Make sure you're logged into the account that owns the projects you'd like to import." +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 "" -msgid "Makes this issue confidential." +msgid "Note: As an administrator you may like to configure %{github_integration_link}, which will allow login via GitHub and allow importing repositories without generating a Personal Access Token." msgstr "" -msgid "Manage" +msgid "Note: Consider asking your GitLab administrator to configure %{github_integration_link}, which will allow login via GitHub and allow importing repositories without generating a Personal Access Token." msgstr "" -msgid "Manage Git repositories with fine-grained access controls that keep your code secure. Perform code reviews and enhance collaboration with merge requests. Each project can also have an issue tracker and a wiki." +msgid "Note: the container registry is always visible when a project is public" msgstr "" -msgid "Manage Web IDE features" +msgid "NoteForm|Note" msgstr "" -msgid "Manage access" +msgid "Notes|Are you sure you want to cancel creating this comment?" msgstr "" -msgid "Manage all notifications" +msgid "Notes|Collapse replies" msgstr "" -msgid "Manage applications that can use GitLab as an OAuth provider, and applications that you've authorized to use your account." +msgid "Notes|Show all activity" msgstr "" -msgid "Manage applications that you've authorized to use your account." +msgid "Notes|Show comments only" msgstr "" -msgid "Manage group labels" +msgid "Notes|Show history only" msgstr "" -msgid "Manage labels" +msgid "Notes|This comment has changed since you started editing, please review the %{open_link}updated comment%{close_link} to ensure information is not lost" msgstr "" -msgid "Manage project labels" +msgid "Nothing to preview." msgstr "" -msgid "Manage two-factor authentication" +msgid "Notification events" msgstr "" -msgid "Manifest" +msgid "Notification setting" msgstr "" -msgid "Manifest file import" +msgid "Notification setting - %{notification_title}" msgstr "" -msgid "Manual job" +msgid "Notification settings saved" msgstr "" -msgid "ManualOrdering|Couldn't save the order of the issues" +msgid "NotificationEvent|Close issue" msgstr "" -msgid "Map a FogBugz account ID to a GitLab user" +msgid "NotificationEvent|Close merge request" msgstr "" -msgid "Map a Google Code user to a GitLab user" +msgid "NotificationEvent|Failed pipeline" msgstr "" -msgid "Map a Google Code user to a full email address" +msgid "NotificationEvent|Merge merge request" msgstr "" -msgid "Map a Google Code user to a full name" +msgid "NotificationEvent|New issue" msgstr "" -msgid "Mar" +msgid "NotificationEvent|New merge request" msgstr "" -msgid "March" +msgid "NotificationEvent|New note" msgstr "" -msgid "Mark To Do as done" +msgid "NotificationEvent|Reassign issue" msgstr "" -msgid "Mark as done" +msgid "NotificationEvent|Reassign merge request" msgstr "" -msgid "Mark as resolved" +msgid "NotificationEvent|Reopen issue" msgstr "" -msgid "Mark comment as resolved" +msgid "NotificationEvent|Successful pipeline" msgstr "" -msgid "Mark this issue as a duplicate of another issue" +msgid "NotificationLevel|Custom" msgstr "" -msgid "Mark this issue as related to another issue" +msgid "NotificationLevel|Disabled" msgstr "" -msgid "Markdown" +msgid "NotificationLevel|Global" msgstr "" -msgid "Markdown Help" +msgid "NotificationLevel|On mention" msgstr "" -msgid "Markdown enabled" +msgid "NotificationLevel|Participate" msgstr "" -msgid "Markdown is supported" +msgid "NotificationLevel|Watch" msgstr "" -msgid "Marked To Do as done." +msgid "NotificationSetting|Custom" msgstr "" -msgid "Marked this %{noun} as Work In Progress." +msgid "Notifications" msgstr "" -msgid "Marked this issue as a duplicate of %{duplicate_param}." +msgid "Notifications have been disabled by the project or group owner" msgstr "" -msgid "Marked this issue as related to %{issue_ref}." +msgid "Notifications off" msgstr "" -msgid "Marks To Do as done." +msgid "Notifications on" msgstr "" -msgid "Marks this %{noun} as Work In Progress." +msgid "Nov" msgstr "" -msgid "Marks this issue as a duplicate of %{duplicate_reference}." +msgid "November" msgstr "" -msgid "Marks this issue as related to %{issue_ref}." +msgid "Object does not exist on the server or you don't have permissions to access it" msgstr "" -msgid "Match not found; try refining your search query." +msgid "Oct" msgstr "" -msgid "MattermostService|Add to Mattermost" +msgid "October" msgstr "" -msgid "MattermostService|Command trigger word" +msgid "OfSearchInADropdown|Filter" msgstr "" -msgid "MattermostService|Fill in the word that works best for your team." +msgid "OmniAuth" msgstr "" -msgid "MattermostService|Request URL" +msgid "Once removed, the fork relationship cannot be restored and you will no longer be able to send merge requests to the source." msgstr "" -msgid "MattermostService|Request method" +msgid "Once the exported file is ready, you will receive a notification email with a download link, or you can download it from this page." msgstr "" -msgid "MattermostService|Response icon" +msgid "One more item" +msgid_plural "%d more items" +msgstr[0] "" +msgstr[1] "" + +msgid "One or more of your Bitbucket projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git." msgstr "" -msgid "MattermostService|Response username" +msgid "One or more of your Google Code projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git." msgstr "" -msgid "MattermostService|See list of available commands in Mattermost after setting up this service, by entering" +msgid "Only Project Members" msgstr "" -msgid "MattermostService|Suggestions:" +msgid "Only admins" msgstr "" -msgid "MattermostService|This service allows users to perform common operations on this project by entering slash commands in Mattermost." +msgid "Only mirror protected branches" msgstr "" -msgid "Maven Metadata" +msgid "Only policy:" msgstr "" -msgid "Max access level" +msgid "Only project members can comment." msgstr "" -msgid "Max seats used" +msgid "Only project members will be imported. Group members will be skipped." msgstr "" -msgid "Maximum artifacts size (MB)" +msgid "Oops, are you sure?" msgstr "" -msgid "Maximum attachment size (MB)" +msgid "Open" msgstr "" -msgid "Maximum capacity" +msgid "Open Documentation" msgstr "" -msgid "Maximum delay (Minutes)" +msgid "Open Selection" msgstr "" -msgid "Maximum job timeout" +msgid "Open comment type dropdown" msgstr "" -msgid "Maximum job timeout has a value which could not be accepted" +msgid "Open errors" msgstr "" -msgid "Maximum number of mirrors that can be synchronizing at the same time." +msgid "Open in Xcode" msgstr "" -msgid "Maximum push size (MB)" +msgid "Open in file view" msgstr "" -msgid "Maximum time between updates that a mirror can have when scheduled to synchronize." +msgid "Open issues" msgstr "" -msgid "May" +msgid "Open raw" msgstr "" -msgid "Median" +msgid "Open sidebar" msgstr "" -msgid "Member lock" +msgid "Open source software to collaborate on code" msgstr "" -msgid "Member since %{date}" +msgid "Opened" msgstr "" -msgid "Members" +msgid "OpenedNDaysAgo|Opened" msgstr "" -msgid "Members can be added by project Maintainers or Owners" +msgid "Opens in a new window" msgstr "" -msgid "Members of %{project_name}" +msgid "Operation failed. Check pod logs for %{pod_name} for more details." msgstr "" -msgid "Members with access to %{strong_start}%{group_name}%{strong_end}" +msgid "Operation timed out. Check pod logs for %{pod_name} for more details." msgstr "" -msgid "Members with pending access to %{strong_start}%{group_name}%{strong_end}" +msgid "Operations" msgstr "" -msgid "Merge" +msgid "Operations Dashboard" msgstr "" -msgid "Merge (when the pipeline succeeds)" +msgid "Operations Settings" msgstr "" -msgid "Merge Request" +msgid "Optionally, you can %{link_to_customize} how FogBugz email addresses and usernames are imported into GitLab." msgstr "" -msgid "Merge Request Approvals" +msgid "Optionally, you can %{link_to_customize} how Google Code email addresses and usernames are imported into GitLab." msgstr "" -msgid "Merge Requests" +msgid "Options" msgstr "" -msgid "Merge Requests created" +msgid "Or you can choose one of the suggested colors below" msgstr "" -msgid "Merge commit message" +msgid "Other Labels" msgstr "" -msgid "Merge events" +msgid "Other visibility settings have been disabled by the administrator." msgstr "" -msgid "Merge immediately" +msgid "Outbound requests" msgstr "" -msgid "Merge in progress" +msgid "Overview" msgstr "" -msgid "Merge request" +msgid "Owned by anyone" msgstr "" -msgid "Merge request approvals" +msgid "Owned by me" msgstr "" -msgid "Merge request approvals allow you to set the number of necessary approvals and predefine a list of approvers that will need to approve every merge request in a project." +msgid "Owner" msgstr "" -msgid "Merge requests" +msgid "Packages" msgstr "" -msgid "Merge requests are a place to propose changes you've made to a project and discuss those changes with others" +msgid "Page not found" msgstr "" -msgid "Merge requests are read-only in a secondary Geo node" +msgid "Page was successfully deleted" msgstr "" -msgid "Merge when pipeline succeeds" +msgid "Pages" msgstr "" -msgid "MergeConflict|Commit to source branch" +msgid "Pages Domain" msgstr "" -msgid "MergeConflict|Committing..." +msgid "Pages Domains" msgstr "" -msgid "MergeConflict|HEAD//our changes" +msgid "Pages getting started guide" msgstr "" -msgid "MergeConflict|Use ours" +msgid "Pagination|Go to first page" msgstr "" -msgid "MergeConflict|Use theirs" +msgid "Pagination|Go to last page" msgstr "" -msgid "MergeConflict|conflict" +msgid "Pagination|Go to next page" msgstr "" -msgid "MergeConflict|conflicts" +msgid "Pagination|Go to previous page" msgstr "" -msgid "MergeConflict|origin//their changes" +msgid "Pagination|Last »" msgstr "" -msgid "MergeRequests|Add a reply" +msgid "Pagination|Next ›" msgstr "" -msgid "MergeRequests|An error occurred while saving the draft comment." +msgid "Pagination|« First" msgstr "" -msgid "MergeRequests|Failed to squash. Should be done manually." +msgid "Pagination|‹ Prev" msgstr "" -msgid "MergeRequests|Jump to next unresolved discussion" +msgid "Parameter" msgstr "" -msgid "MergeRequests|Reply..." +msgid "Part of merge request changes" msgstr "" -msgid "MergeRequests|Resolve this thread in a new issue" +msgid "Password" msgstr "" -msgid "MergeRequests|Saving the comment failed" +msgid "Password (optional)" msgstr "" -msgid "MergeRequests|Squash task canceled: another squash is already in progress." +msgid "Password authentication is unavailable." msgstr "" -msgid "MergeRequests|Thread stays resolved" +msgid "Password confirmation" msgstr "" -msgid "MergeRequests|Thread stays unresolved" +msgid "Password successfully changed" msgstr "" -msgid "MergeRequests|Thread will be resolved" +msgid "Password was successfully updated. Please login with it" msgstr "" -msgid "MergeRequests|Thread will be unresolved" +msgid "Past due" msgstr "" -msgid "MergeRequests|Toggle comments for this file" +msgid "Paste a machine public key here. Read more about how to generate it %{link_start}here%{link_end}" msgstr "" -msgid "MergeRequests|View file @ %{commitId}" +msgid "Paste your public SSH key, which is usually contained in the file '~/.ssh/id_ed25519.pub' or '~/.ssh/id_rsa.pub' and begins with 'ssh-ed25519' or 'ssh-rsa'. Don't use your private SSH key." msgstr "" -msgid "MergeRequests|View replaced file @ %{commitId}" +msgid "Path" msgstr "" -msgid "MergeRequests|commented on commit %{commitLink}" +msgid "Path, transfer, remove" msgstr "" -msgid "MergeRequests|started a thread" +msgid "Path:" msgstr "" -msgid "MergeRequests|started a thread on %{linkStart}an old version of the diff%{linkEnd}" +msgid "Pause" msgstr "" -msgid "MergeRequests|started a thread on %{linkStart}the diff%{linkEnd}" +msgid "Paused Runners don't accept new jobs" msgstr "" -msgid "MergeRequests|started a thread on an outdated change in commit %{linkStart}%{commitId}%{linkEnd}" +msgid "Pending" msgstr "" -msgid "MergeRequests|started a thread on commit %{linkStart}%{commitId}%{linkEnd}" +msgid "People without permission will never get a notification and won't be able to comment." msgstr "" -msgid "MergeRequest| %{paragraphStart}changed the description %{descriptionChangedTimes} times %{timeDifferenceMinutes}%{paragraphEnd}" +msgid "People without permission will never get a notification." msgstr "" -msgid "MergeRequest|Error dismissing suggestion popover. Please try again." +msgid "Perform advanced options such as changing path, transferring, or removing the group." msgstr "" -msgid "MergeRequest|Error loading full diff. Please try again." +msgid "Perform common operations on GitLab project" msgstr "" -msgid "MergeRequest|Filter files or search with %{modifier_key}+p" +msgid "Performance optimization" msgstr "" -msgid "MergeRequest|No files found" +msgid "PerformanceBar|Gitaly calls" msgstr "" -msgid "Merged" +msgid "PerformanceBar|Redis calls" msgstr "" -msgid "Merged branches are being deleted. This can take some time depending on the number of branches. Please refresh the page to see changes." +msgid "PerformanceBar|Rugged calls" msgstr "" -msgid "Merges this merge request when the pipeline succeeds." +msgid "PerformanceBar|SQL queries" msgstr "" -msgid "Messages" +msgid "PerformanceBar|trace" msgstr "" -msgid "Method" +msgid "Permissions" msgstr "" -msgid "Metric was successfully added." +msgid "Permissions Help" msgstr "" -msgid "Metric was successfully updated." +msgid "Permissions, LFS, 2FA" msgstr "" -msgid "Metrics" +msgid "Personal Access Token" msgstr "" -msgid "Metrics - Grafana" +msgid "Personal project creation is not allowed. Please contact your administrator with questions" msgstr "" -msgid "Metrics - Influx" +msgid "Phabricator Server Import" msgstr "" -msgid "Metrics - Prometheus" +msgid "Phabricator Server URL" msgstr "" -msgid "Metrics Dashboard" +msgid "Phabricator Tasks" msgstr "" -msgid "Metrics and profiling" +msgid "Pick a name" msgstr "" -msgid "Metrics for environment" +msgid "Pick a name for the application, and we'll give you a unique %{type} token." msgstr "" -msgid "Metrics|Add metric" +msgid "Pin code" msgstr "" -msgid "Metrics|Check out the CI/CD documentation on deploying to an environment" +msgid "Pipeline" msgstr "" -msgid "Metrics|Create metric" +msgid "Pipeline %{label}" msgstr "" -msgid "Metrics|Delete metric" +msgid "Pipeline %{label} for \"%{dataTitle}\"" msgstr "" -msgid "Metrics|Delete metric?" +msgid "Pipeline Schedule" msgstr "" -msgid "Metrics|Edit metric" +msgid "Pipeline Schedules" msgstr "" -msgid "Metrics|Environment" +msgid "Pipeline triggers" msgstr "" -msgid "Metrics|For grouping similar metrics" +msgid "Pipeline: %{status}" msgstr "" -msgid "Metrics|Label of the y-axis (usually the unit). The x-axis always represents time." +msgid "PipelineCharts|Failed:" msgstr "" -msgid "Metrics|Learn about environments" +msgid "PipelineCharts|Overall statistics" msgstr "" -msgid "Metrics|Legend label (optional)" +msgid "PipelineCharts|Success ratio:" msgstr "" -msgid "Metrics|Must be a valid PromQL query." +msgid "PipelineCharts|Successful:" msgstr "" -msgid "Metrics|New metric" +msgid "PipelineCharts|Total:" msgstr "" -msgid "Metrics|No deployed environments" +msgid "PipelineSchedules|Activated" msgstr "" -msgid "Metrics|PromQL query is valid" +msgid "PipelineSchedules|Active" msgstr "" -msgid "Metrics|Prometheus Query Documentation" +msgid "PipelineSchedules|All" msgstr "" -msgid "Metrics|Show last" +msgid "PipelineSchedules|Inactive" msgstr "" -msgid "Metrics|There was an error fetching the environments data, please try again" +msgid "PipelineSchedules|Next Run" msgstr "" -msgid "Metrics|There was an error getting deployment information." +msgid "PipelineSchedules|None" msgstr "" -msgid "Metrics|There was an error getting environments information." +msgid "PipelineSchedules|Provide a short description for this pipeline" msgstr "" -msgid "Metrics|There was an error trying to validate your query" +msgid "PipelineSchedules|Take ownership" msgstr "" -msgid "Metrics|There was an error while retrieving metrics" +msgid "PipelineSchedules|Target" msgstr "" -msgid "Metrics|Unexpected deployment data response from prometheus endpoint" +msgid "PipelineSchedules|Variables" msgstr "" -msgid "Metrics|Unexpected metrics data response from prometheus endpoint" +msgid "PipelineSheduleIntervalPattern|Custom" msgstr "" -msgid "Metrics|Unit label" +msgid "PipelineStatusTooltip|Pipeline: %{ciStatus}" msgstr "" -msgid "Metrics|Used as a title for the chart" +msgid "PipelineStatusTooltip|Pipeline: %{ci_status}" msgstr "" -msgid "Metrics|Used if the query returns a single series. If it returns multiple series, their legend labels will be picked up from the response." +msgid "Pipelines" msgstr "" -msgid "Metrics|Y-axis label" +msgid "Pipelines charts" msgstr "" -msgid "Metrics|You're about to permanently delete this metric. This cannot be undone." +msgid "Pipelines emails" msgstr "" -msgid "Metrics|e.g. HTTP requests" +msgid "Pipelines for last month" msgstr "" -msgid "Metrics|e.g. Requests/second" +msgid "Pipelines for last week" msgstr "" -msgid "Metrics|e.g. Throughput" +msgid "Pipelines for last year" msgstr "" -msgid "Metrics|e.g. rate(http_requests_total[5m])" +msgid "Pipelines for merge requests are configured. A detached pipeline runs in the context of the merge request, and not against the merged result. Learn more on the documentation for Pipelines for Merged Results." msgstr "" -msgid "Metrics|e.g. req/sec" +msgid "Pipelines settings for '%{project_name}' were successfully updated." msgstr "" -msgid "Migrated %{success_count}/%{total_count} files." +msgid "Pipelines|API" msgstr "" -msgid "Migration successful." +msgid "Pipelines|Build with confidence" msgstr "" -msgid "Milestone" +msgid "Pipelines|CI Lint" msgstr "" -msgid "Milestone lists not available with your current license" +msgid "Pipelines|Clear Runner Caches" msgstr "" -msgid "Milestone lists show all issues from the selected milestone." +msgid "Pipelines|Continuous Integration can help catch bugs by running your tests automatically, while Continuous Deployment can help you deliver code to your product environment." msgstr "" -msgid "Milestones" +msgid "Pipelines|Get started with Pipelines" msgstr "" -msgid "Milestones| You’re about to permanently delete the milestone %{milestoneTitle} and remove it from %{issuesWithCount} and %{mergeRequestsWithCount}. Once deleted, it cannot be undone or recovered." +msgid "Pipelines|Loading Pipelines" msgstr "" -msgid "Milestones| You’re about to permanently delete the milestone %{milestoneTitle}. This milestone is not currently used in any issues or merge requests." +msgid "Pipelines|Project cache successfully reset." msgstr "" -msgid "Milestones|Delete milestone" +msgid "Pipelines|Run Pipeline" msgstr "" -msgid "Milestones|Delete milestone %{milestoneTitle}?" +msgid "Pipelines|Something went wrong while cleaning runners cache." msgstr "" -msgid "Milestones|Failed to delete milestone %{milestoneTitle}" +msgid "Pipelines|There are currently no %{scope} pipelines." msgstr "" -msgid "Milestones|Milestone %{milestoneTitle} was not found" +msgid "Pipelines|There are currently no pipelines." msgstr "" -msgid "Milestones|Promote %{milestoneTitle} to group milestone?" +msgid "Pipelines|There was an error fetching the pipelines. Try again in a few moments or contact your support team." msgstr "" -msgid "Milestones|Promote Milestone" +msgid "Pipelines|This project is not currently set up to run pipelines." msgstr "" -msgid "Milestones|Promoting %{milestoneTitle} will make it available for all projects inside %{groupName}. Existing project milestones with the same title will be merged." +msgid "Pipeline|Commit" msgstr "" -msgid "Milestones|This action cannot be reversed." +msgid "Pipeline|Could not retrieve the pipeline status. For troubleshooting steps, read the %{linkStart}documentation.%{linkEnd}" msgstr "" -msgid "Minimum capacity to be available before we schedule more mirrors preemptively." +msgid "Pipeline|Coverage" msgstr "" -msgid "Minimum length is %{minimum_password_length} characters" +msgid "Pipeline|Detached merge request pipeline" msgstr "" -msgid "Minimum length is %{minimum_password_length} characters." +msgid "Pipeline|Duration" msgstr "" -msgid "Minutes" +msgid "Pipeline|Existing branch name or tag" msgstr "" -msgid "Mirror direction" +msgid "Pipeline|Key" msgstr "" -msgid "Mirror repository" +msgid "Pipeline|Merge train pipeline" msgstr "" -msgid "Mirror user" +msgid "Pipeline|Merged result pipeline" msgstr "" -msgid "Mirrored repositories" +msgid "Pipeline|Pipeline" msgstr "" -msgid "Mirroring repositories" +msgid "Pipeline|Run Pipeline" msgstr "" -msgid "Mirroring settings were successfully updated." +msgid "Pipeline|Run for" msgstr "" -msgid "Mirroring settings were successfully updated. The project is being updated." +msgid "Pipeline|Search branches" msgstr "" -msgid "Mirroring was successfully disabled." +msgid "Pipeline|Specify variable values to be used in this run. The values specified in %{settings_link} will be used by default." msgstr "" -msgid "Mirroring will only be available if the feature is included in the plan of the selected group or user." +msgid "Pipeline|Stages" msgstr "" -msgid "Missing commit signatures endpoint!" +msgid "Pipeline|Status" msgstr "" -msgid "MissingSSHKeyWarningLink|add an SSH key" +msgid "Pipeline|Stop pipeline" msgstr "" -msgid "Modal|Cancel" +msgid "Pipeline|Stop pipeline #%{pipelineId}?" msgstr "" -msgid "Modal|Close" +msgid "Pipeline|Triggerer" msgstr "" -msgid "Modify commit message" +msgid "Pipeline|Value" msgstr "" -msgid "Modify commit messages" +msgid "Pipeline|Variables" msgstr "" -msgid "Modify merge commit" +msgid "Pipeline|You’re about to stop pipeline %{pipelineId}." msgstr "" -msgid "Monday" +msgid "Pipeline|all" msgstr "" -msgid "Monitor your errors by integrating with Sentry." +msgid "Pipeline|for" msgstr "" -msgid "Monitoring" +msgid "Pipeline|on" msgstr "" -msgid "Months" +msgid "Pipeline|success" msgstr "" -msgid "More" +msgid "Pipeline|with stage" msgstr "" -msgid "More Information" +msgid "Pipeline|with stages" msgstr "" -msgid "More Slack commands" +msgid "PivotalTrackerService|Comma-separated list of branches which will be automatically inspected. Leave blank to include all branches." msgstr "" -msgid "More actions" +msgid "PivotalTrackerService|Pivotal Tracker API token." msgstr "" -msgid "More info" +msgid "PivotalTrackerService|Project Management Software (Source Commits Endpoint)" msgstr "" -msgid "More information" +msgid "Plain diff" msgstr "" -msgid "More information is available|here" +msgid "PlantUML" msgstr "" -msgid "More than %{number_commits_distance} commits different with %{default_branch}" +msgid "Play" msgstr "" -msgid "Most stars" +msgid "Play all manual" msgstr "" -msgid "Mount point %{mounted_as} not found in %{model_class}." +msgid "Please %{link_to_register} or %{link_to_sign_in} to comment" msgstr "" -msgid "Move" +msgid "Please %{startTagRegister}register%{endRegisterTag} or %{startTagSignIn}sign in%{endSignInTag} to reply" msgstr "" -msgid "Move issue" +msgid "Please accept the Terms of Service before continuing." msgstr "" -msgid "Move issue from one column of the board to another" +msgid "Please add a list to your board first" msgstr "" -msgid "Move selection down" +msgid "Please check your email (%{email}) to verify that you own this address. Didn't receive it? %{resend_link}. Wrong email address? %{update_link}." msgstr "" -msgid "Move selection up" +msgid "Please choose a group URL with no special characters." msgstr "" -msgid "Move this issue to another project." +msgid "Please complete your profile with email address" msgstr "" -msgid "MoveIssue|Cannot move issue due to insufficient permissions!" +msgid "Please convert them to %{link_to_git}, and go through the %{link_to_import_flow} again." msgstr "" -msgid "MoveIssue|Cannot move issue to project it originates from!" +msgid "Please convert them to Git on Google Code, and go through the %{link_to_import_flow} again." msgstr "" -msgid "Moved issue to %{label} column in the board." +msgid "Please create a password for your new account." msgstr "" -msgid "Moved this issue to %{path_to_project}." +msgid "Please create a username with only alphanumeric characters." msgstr "" -msgid "Moves issue to %{label} column in the board." +msgid "Please fill in a descriptive name for your group." msgstr "" -msgid "Moves this issue to %{path_to_project}." +msgid "Please note that this application is not provided by GitLab and you should verify its authenticity before allowing access." msgstr "" -msgid "Multiple issue boards" +msgid "Please provide a valid email address." msgstr "" -msgid "Multiple model types found: %{model_types}" +msgid "Please retype the email address." msgstr "" -msgid "Multiple uploaders found: %{uploader_types}" +msgid "Please select a file" msgstr "" -msgid "Name" +msgid "Please select a group." msgstr "" -msgid "Name has already been taken" +msgid "Please select at least one filter to see results" msgstr "" -msgid "Name new label" +msgid "Please set a new password before proceeding." msgstr "" -msgid "Name your individual key via a title" +msgid "Please solve the reCAPTCHA" msgstr "" -msgid "Name:" +msgid "Please try again" msgstr "" -msgid "Namespaces to index" +msgid "Please use this form to report to the admin users who create spam issues, comments or behave inappropriately." msgstr "" -msgid "Naming, topics, avatar" +msgid "Please wait a moment, this page will automatically refresh when ready." msgstr "" -msgid "Naming, visibility" +msgid "Please wait while we import the repository for you. Refresh at will." msgstr "" -msgid "Nav|Help" +msgid "Preferences" msgstr "" -msgid "Nav|Home" +msgid "Preferences saved." msgstr "" -msgid "Nav|Sign In / Register" +msgid "Preferences|Behavior" msgstr "" -msgid "Nav|Sign out and sign in with a different account" +msgid "Preferences|Choose between fixed (max. 1280px) and fluid (%{percentage}) application layout." msgstr "" -msgid "Need help?" +msgid "Preferences|Choose what content you want to see on a project’s overview page." msgstr "" -msgid "Network" +msgid "Preferences|Customize the appearance of the application header and navigation sidebar." msgstr "" -msgid "Never" +msgid "Preferences|Default dashboard" msgstr "" -msgid "New" +msgid "Preferences|Display time in 24-hour format" msgstr "" -msgid "New Application" +msgid "Preferences|For example: 30 mins ago." msgstr "" -msgid "New Environment" +msgid "Preferences|Layout width" msgstr "" -msgid "New Group" +msgid "Preferences|Navigation theme" msgstr "" -msgid "New Identity" +msgid "Preferences|Project overview content" msgstr "" -msgid "New Issue" -msgid_plural "New Issues" -msgstr[0] "" -msgstr[1] "" - -msgid "New Label" +msgid "Preferences|Syntax highlighting theme" msgstr "" -msgid "New Milestone" +msgid "Preferences|These settings will update how dates and times are displayed for you." msgstr "" -msgid "New Pages Domain" +msgid "Preferences|This feature is experimental and translations are not complete yet" msgstr "" -msgid "New Password" +msgid "Preferences|This setting allows you to customize the appearance of the syntax." msgstr "" -msgid "New Pipeline Schedule" +msgid "Preferences|This setting allows you to customize the behavior of the system layout and default views." msgstr "" -msgid "New Project" +msgid "Preferences|Time display" msgstr "" -msgid "New Snippet" +msgid "Preferences|Time format" msgstr "" -msgid "New branch" +msgid "Preferences|Time preferences" msgstr "" -msgid "New branch unavailable" +msgid "Preferences|Use relative times" msgstr "" -msgid "New deploy key" +msgid "Press %{key}-C to copy" msgstr "" -msgid "New directory" +msgid "Press Enter or click to search" msgstr "" -msgid "New environment" +msgid "Preview" msgstr "" -msgid "New epic" +msgid "Preview Markdown" msgstr "" -msgid "New epic title" +msgid "Preview changes" msgstr "" -msgid "New file" +msgid "Preview payload" msgstr "" -msgid "New group" +msgid "Previous Artifacts" msgstr "" -msgid "New health check access token has been generated!" +msgid "Previous file in diff (MRs only)" msgstr "" -msgid "New identity" +msgid "Previous unresolved discussion (MRs only)" msgstr "" -msgid "New issue" +msgid "Prioritize" msgstr "" -msgid "New label" +msgid "Prioritize label" msgstr "" -msgid "New merge request" +msgid "Prioritized Labels" msgstr "" -msgid "New milestone" +msgid "Prioritized label" msgstr "" -msgid "New password" +msgid "Private" msgstr "" -msgid "New pipelines will cancel older, pending pipelines on the same branch" +msgid "Private - Project access must be granted explicitly to each user." msgstr "" -msgid "New project" +msgid "Private - The group and its projects can only be viewed by members." msgstr "" -msgid "New runners registration token has been generated!" +msgid "Private profile" msgstr "" -msgid "New schedule" +msgid "Private projects can be created in your personal namespace with:" msgstr "" -msgid "New snippet" +msgid "Proceed" msgstr "" -msgid "New stage" +msgid "Profile" msgstr "" -msgid "New subgroup" +msgid "Profile Settings" msgstr "" -msgid "New tag" +msgid "ProfileSession|on" msgstr "" -msgid "New users set to external" +msgid "Profiles| You are about to permanently delete %{yourAccount}, and all of the issues, merge requests, and groups linked to your account. Once you confirm %{deleteAccount}, it cannot be undone or recovered." msgstr "" -msgid "New! Suggest changes directly" +msgid "Profiles| You are going to change the username %{currentUsernameBold} to %{newUsernameBold}. Profile and projects will be redirected to the %{newUsername} namespace but this redirect will expire once the %{currentUsername} namespace is registered by another user or group. Please update your Git repository remotes as soon as possible." msgstr "" -msgid "New..." +msgid "Profiles|@username" msgstr "" -msgid "Newly registered users will by default be external" +msgid "Profiles|Account scheduled for removal." msgstr "" -msgid "Next" +msgid "Profiles|Activate signin with one of the following services" msgstr "" -msgid "Next file in diff (MRs only)" +msgid "Profiles|Active" msgstr "" -msgid "Next unresolved discussion (MRs only)" +msgid "Profiles|Add key" msgstr "" -msgid "Nickname" +msgid "Profiles|Add status emoji" msgstr "" -msgid "No" +msgid "Profiles|Avatar cropper" msgstr "" -msgid "No %{header} for this request." +msgid "Profiles|Avatar will be removed. Are you sure?" msgstr "" -msgid "No %{providerTitle} repositories available to import" +msgid "Profiles|Bio" msgstr "" -msgid "No Epic" +msgid "Profiles|Change username" msgstr "" -msgid "No Label" +msgid "Profiles|Changing your username can have unintended side effects." msgstr "" -msgid "No Milestone" +msgid "Profiles|Choose file..." msgstr "" -msgid "No Tag" +msgid "Profiles|Choose to show contributions of private projects on your public profile without any project, repository or organization information" msgstr "" -msgid "No active admin user found" +msgid "Profiles|City, country" msgstr "" -msgid "No activities found" +msgid "Profiles|Clear status" msgstr "" -msgid "No application_settings found" +msgid "Profiles|Click on icon to activate signin with one of the following services" msgstr "" -msgid "No available namespaces to fork the project." +msgid "Profiles|Commit email" msgstr "" -msgid "No branches found" +msgid "Profiles|Connect" msgstr "" -msgid "No changes" +msgid "Profiles|Connected Accounts" msgstr "" -msgid "No changes between %{ref_start}%{source_branch}%{ref_end} and %{ref_start}%{target_branch}%{ref_end}" +msgid "Profiles|Current path: %{path}" msgstr "" -msgid "No connection could be made to a Gitaly Server, please check your logs!" +msgid "Profiles|Current status" msgstr "" -msgid "No contributions" +msgid "Profiles|Default notification email" msgstr "" -msgid "No contributions were found" +msgid "Profiles|Delete Account" msgstr "" -msgid "No credit card required." +msgid "Profiles|Delete account" msgstr "" -msgid "No data found" +msgid "Profiles|Delete your account?" msgstr "" -msgid "No data to display" +msgid "Profiles|Deleting an account has the following effects:" msgstr "" -msgid "No deployments found" +msgid "Profiles|Disconnect" msgstr "" -msgid "No details available" +msgid "Profiles|Do not show on profile" msgstr "" -msgid "No due date" +msgid "Profiles|Don't display activity-related personal information on your profiles" msgstr "" -msgid "No errors to display." +msgid "Profiles|Edit Profile" msgstr "" -msgid "No estimate or time spent" +msgid "Profiles|Enter your name, so people you know can recognize you" msgstr "" -msgid "No file chosen" +msgid "Profiles|Feed token was successfully reset" msgstr "" -msgid "No file selected" +msgid "Profiles|Full name" msgstr "" -msgid "No files" +msgid "Profiles|Impersonation" msgstr "" -msgid "No files found." +msgid "Profiles|Include private contributions on my profile" msgstr "" -msgid "No forks available to you." +msgid "Profiles|Incoming email token was successfully reset" msgstr "" -msgid "No issues for the selected time period." +msgid "Profiles|Increase your account's security by enabling Two-Factor Authentication (2FA)" msgstr "" -msgid "No job trace" +msgid "Profiles|Invalid password" msgstr "" -msgid "No labels with such name or description" +msgid "Profiles|Invalid username" msgstr "" -msgid "No license. All rights reserved" +msgid "Profiles|Key" msgstr "" -msgid "No licenses found." +msgid "Profiles|Learn more" msgstr "" -msgid "No matching results" +msgid "Profiles|Location" msgstr "" -msgid "No merge requests for the selected time period." +msgid "Profiles|Made a private contribution" msgstr "" -msgid "No merge requests found" +msgid "Profiles|Main settings" msgstr "" -msgid "No messages were logged" +msgid "Profiles|No file chosen" msgstr "" -msgid "No milestones to show" +msgid "Profiles|Notification email" msgstr "" -msgid "No other labels with such name or description" +msgid "Profiles|Organization" msgstr "" -msgid "No parent group" +msgid "Profiles|Path" msgstr "" -msgid "No preview for this file type" +msgid "Profiles|Personal Access" msgstr "" -msgid "No prioritised labels with such name or description" +msgid "Profiles|Position and size your new avatar" msgstr "" -msgid "No public groups" +msgid "Profiles|Primary email" msgstr "" -msgid "No pushes for the selected time period." +msgid "Profiles|Private contributions" msgstr "" -msgid "No repository" +msgid "Profiles|Profile was successfully updated" msgstr "" -msgid "No required pipeline" +msgid "Profiles|Public Avatar" msgstr "" -msgid "No runners found" +msgid "Profiles|Public email" msgstr "" -msgid "No schedules" +msgid "Profiles|Remove avatar" msgstr "" -msgid "No starrers matched your search" +msgid "Profiles|Set new profile picture" msgstr "" -msgid "No start date" +msgid "Profiles|Social sign-in" msgstr "" -msgid "No template" +msgid "Profiles|Some options are unavailable for LDAP accounts" msgstr "" -msgid "No value set by top-level parent group." +msgid "Profiles|Static object token was successfully reset" msgstr "" -msgid "No, directly import the existing email addresses and usernames." +msgid "Profiles|Tell us about yourself in fewer than 250 characters" msgstr "" -msgid "No, not interested right now" +msgid "Profiles|The maximum file size allowed is 200KB." msgstr "" -msgid "Nobody has starred this repository yet" +msgid "Profiles|This doesn't look like a public SSH key, are you sure you want to add it?" msgstr "" -msgid "Node was successfully created." +msgid "Profiles|This email will be displayed on your public profile" msgstr "" -msgid "Node was successfully updated." +msgid "Profiles|This email will be used for web based operations, such as edits and merges. %{commit_email_link_start}Learn more%{commit_email_link_end}" msgstr "" -msgid "Nodes" +msgid "Profiles|This emoji and message will appear on your profile and throughout the interface." msgstr "" -msgid "None" +msgid "Profiles|This information will appear on your profile" msgstr "" -msgid "Not available" +msgid "Profiles|Time settings" msgstr "" -msgid "Not available for private projects" +msgid "Profiles|Two-Factor Authentication" msgstr "" -msgid "Not available for protected branches" +msgid "Profiles|Type your %{confirmationValue} to confirm:" msgstr "" -msgid "Not confidential" +msgid "Profiles|Typically starts with \"ssh-ed25519 …\" or \"ssh-rsa …\"" msgstr "" -msgid "Not enough data" +msgid "Profiles|Update profile settings" msgstr "" -msgid "Not found." +msgid "Profiles|Update username" msgstr "" -msgid "Not helpful" +msgid "Profiles|Upload new avatar" msgstr "" -msgid "Not now" +msgid "Profiles|Use a private email - %{email}" msgstr "" -msgid "Not ready yet. Try again later." +msgid "Profiles|User ID" msgstr "" -msgid "Not started" +msgid "Profiles|Username change failed - %{message}" msgstr "" -msgid "Note" +msgid "Profiles|Username successfully changed" 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 "Profiles|Using emojis in names seems fun, but please try to set a status message instead" msgstr "" -msgid "Note: As an administrator you may like to configure %{github_integration_link}, which will allow login via GitHub and allow connecting repositories without generating a Personal Access Token." +msgid "Profiles|What's your status?" msgstr "" -msgid "Note: As an administrator you may like to configure %{github_integration_link}, which will allow login via GitHub and allow importing repositories without generating a Personal Access Token." +msgid "Profiles|Who you represent or work for" msgstr "" -msgid "Note: Consider asking your GitLab administrator to configure %{github_integration_link}, which will allow login via GitHub and allow connecting repositories without generating a Personal Access Token." +msgid "Profiles|You can change your avatar here" msgstr "" -msgid "Note: Consider asking your GitLab administrator to configure %{github_integration_link}, which will allow login via GitHub and allow importing repositories without generating a Personal Access Token." +msgid "Profiles|You can change your avatar here or remove the current avatar to revert to %{gravatar_link}" msgstr "" -msgid "Note: the container registry is always visible when a project is public" +msgid "Profiles|You can set your current timezone here" msgstr "" -msgid "NoteForm|Note" +msgid "Profiles|You can upload your avatar here" msgstr "" -msgid "Notes|Are you sure you want to cancel creating this comment?" +msgid "Profiles|You can upload your avatar here or change it at %{gravatar_link}" msgstr "" -msgid "Notes|Collapse replies" +msgid "Profiles|You don't have access to delete this user." msgstr "" -msgid "Notes|Show all activity" +msgid "Profiles|You must transfer ownership or delete these groups before you can delete your account." msgstr "" -msgid "Notes|Show comments only" +msgid "Profiles|Your LinkedIn profile name from linkedin.com/in/profilename" msgstr "" -msgid "Notes|Show history only" +msgid "Profiles|Your account is currently an owner in these groups:" msgstr "" -msgid "Notes|This comment has changed since you started editing, please review the %{open_link}updated comment%{close_link} to ensure information is not lost" +msgid "Profiles|Your email address was automatically set based on your %{provider_label} account" msgstr "" -msgid "Nothing to preview." +msgid "Profiles|Your location was automatically set based on your %{provider_label} account" msgstr "" -msgid "Notification events" +msgid "Profiles|Your name was automatically set based on your %{provider_label} account, so people you know can recognize you" msgstr "" -msgid "Notification setting" +msgid "Profiles|Your status" msgstr "" -msgid "Notification setting - %{notification_title}" +msgid "Profiles|e.g. My MacBook key" msgstr "" -msgid "Notification settings saved" +msgid "Profiles|impersonation" msgstr "" -msgid "NotificationEvent|Close issue" +msgid "Profiles|personal access" msgstr "" -msgid "NotificationEvent|Close merge request" +msgid "Profiles|username" msgstr "" -msgid "NotificationEvent|Failed pipeline" +msgid "Profiles|website.com" msgstr "" -msgid "NotificationEvent|Merge merge request" +msgid "Profiles|your account" msgstr "" -msgid "NotificationEvent|New epic" +msgid "Profiling - Performance bar" msgstr "" -msgid "NotificationEvent|New issue" +msgid "Programming languages used in this repository" msgstr "" -msgid "NotificationEvent|New merge request" +msgid "Progress" msgstr "" -msgid "NotificationEvent|New note" +msgid "Project" msgstr "" -msgid "NotificationEvent|Reassign issue" +msgid "Project \"%{name}\" is no longer available. Select another project to continue." msgstr "" -msgid "NotificationEvent|Reassign merge request" +msgid "Project %{project_repo} could not be found" msgstr "" -msgid "NotificationEvent|Reopen issue" +msgid "Project '%{project_name}' is being imported." msgstr "" -msgid "NotificationEvent|Successful pipeline" +msgid "Project '%{project_name}' is in the process of being deleted." msgstr "" -msgid "NotificationLevel|Custom" +msgid "Project '%{project_name}' queued for deletion." msgstr "" -msgid "NotificationLevel|Disabled" +msgid "Project '%{project_name}' was successfully created." msgstr "" -msgid "NotificationLevel|Global" +msgid "Project '%{project_name}' was successfully updated." msgstr "" -msgid "NotificationLevel|On mention" +msgid "Project Badges" msgstr "" -msgid "NotificationLevel|Participate" +msgid "Project Files" msgstr "" -msgid "NotificationLevel|Watch" +msgid "Project ID" msgstr "" -msgid "NotificationSetting|Custom" +msgid "Project URL" msgstr "" -msgid "Notifications" +msgid "Project access must be granted explicitly to each user." msgstr "" -msgid "Notifications have been disabled by the project or group owner" +msgid "Project already created" msgstr "" -msgid "Notifications off" +msgid "Project and wiki repositories" msgstr "" -msgid "Notifications on" +msgid "Project avatar" msgstr "" -msgid "Nov" +msgid "Project cannot be shared with the group it is in or one of its ancestors." msgstr "" -msgid "November" +msgid "Project configuration, including services" msgstr "" -msgid "Number of Elasticsearch replicas" +msgid "Project description (optional)" msgstr "" -msgid "Number of Elasticsearch shards" +msgid "Project details" msgstr "" -msgid "Number of LOCs per commit" +msgid "Project export could not be deleted." msgstr "" -msgid "Number of commits per MR" +msgid "Project export enabled" msgstr "" -msgid "Number of files touched" +msgid "Project export has been deleted." msgstr "" -msgid "OK" +msgid "Project export link has expired. Please generate a new export from your project settings." msgstr "" -msgid "Object Storage replication" +msgid "Project export started. A download link will be sent by email." msgstr "" -msgid "Object does not exist on the server or you don't have permissions to access it" +msgid "Project has too many %{label_for_message} to search" msgstr "" -msgid "Oct" +msgid "Project members" msgstr "" -msgid "October" +msgid "Project name" msgstr "" -msgid "OfSearchInADropdown|Filter" +msgid "Project slug" msgstr "" -msgid "Ok let's go" +msgid "Project uploads" msgstr "" -msgid "OmniAuth" +msgid "Project visibility level will be changed to match namespace rules when transferring to a group." msgstr "" -msgid "Onboarding" +msgid "ProjectActivityRSS|Subscribe" msgstr "" -msgid "Once imported, repositories can be mirrored over SSH. Read more %{link_start}here%{link_end}." +msgid "ProjectCreationLevel|Allowed to create projects" msgstr "" -msgid "Once removed, the fork relationship cannot be restored and you will no longer be able to send merge requests to the source." +msgid "ProjectCreationLevel|Default project creation protection" msgstr "" -msgid "Once the exported file is ready, you will receive a notification email with a download link, or you can download it from this page." +msgid "ProjectCreationLevel|Developers + Maintainers" msgstr "" -msgid "One more item" -msgid_plural "%d more items" -msgstr[0] "" -msgstr[1] "" - -msgid "One or more groups that you don't have access to." +msgid "ProjectCreationLevel|Maintainers" msgstr "" -msgid "One or more of your Bitbucket projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git." +msgid "ProjectCreationLevel|No one" msgstr "" -msgid "One or more of your Google Code projects cannot be imported into GitLab directly because they use Subversion or Mercurial for version control, rather than Git." +msgid "ProjectFileTree|Name" msgstr "" -msgid "One or more of your dependency files are not supported, and the dependency list may be incomplete. Below is a list of supported file types." +msgid "ProjectLastActivity|Never" msgstr "" -msgid "Only Project Members" +msgid "ProjectLifecycle|Stage" msgstr "" -msgid "Only admins" +msgid "ProjectOverview|Fork" msgstr "" -msgid "Only admins can delete project" +msgid "ProjectOverview|Forks" msgstr "" -msgid "Only mirror protected branches" +msgid "ProjectOverview|Go to your fork" msgstr "" -msgid "Only policy:" +msgid "ProjectOverview|Star" msgstr "" -msgid "Only proceed if you trust %{idp_url} to control your GitLab account sign in." +msgid "ProjectOverview|Starrer" msgstr "" -msgid "Only project members can comment." +msgid "ProjectOverview|Starrers" msgstr "" -msgid "Only project members will be imported. Group members will be skipped." +msgid "ProjectOverview|Unstar" msgstr "" -msgid "Only these extensions are supported: %{extension_list}" +msgid "ProjectOverview|You have reached your project limit" msgstr "" -msgid "Only users with an email address in this domain can be added to the group.
Example: gitlab.com. Some common domains are not allowed. %{read_more_link}." +msgid "ProjectOverview|You must sign in to star a project" msgstr "" -msgid "Only ‘Reporter’ roles and above on tiers Premium / Silver and above can see Productivity Analytics." +msgid "ProjectPage|Project ID: %{project_id}" msgstr "" -msgid "Oops, are you sure?" +msgid "ProjectSelect| or group" msgstr "" -msgid "Open" +msgid "ProjectSelect|Search for project" msgstr "" -msgid "Open Documentation" +msgid "ProjectService|%{service_title}: status off" msgstr "" -msgid "Open Selection" +msgid "ProjectService|%{service_title}: status on" msgstr "" -msgid "Open comment type dropdown" +msgid "ProjectService|Integrations" msgstr "" -msgid "Open errors" +msgid "ProjectService|Last edit" msgstr "" -msgid "Open in Xcode" +msgid "ProjectService|Perform common operations on GitLab project: %{project_name}" msgstr "" -msgid "Open in file view" +msgid "ProjectService|Project services" msgstr "" -msgid "Open issues" +msgid "ProjectService|Project services allow you to integrate GitLab with other applications" msgstr "" -msgid "Open projects" +msgid "ProjectService|Service" msgstr "" -msgid "Open raw" +msgid "ProjectService|Services" msgstr "" -msgid "Open sidebar" +msgid "ProjectService|Settings" msgstr "" -msgid "Open source software to collaborate on code" +msgid "ProjectService|To set up this service:" msgstr "" -msgid "Opened" +msgid "ProjectSettings|Additional merge request capabilities that influence how and when merges will be performed" msgstr "" -msgid "Opened MR" +msgid "ProjectSettings|All discussions must be resolved" msgstr "" -msgid "Opened issues" +msgid "ProjectSettings|Automatically resolve merge request diff discussions when they become outdated" msgstr "" -msgid "OpenedNDaysAgo|Opened" +msgid "ProjectSettings|Badges" msgstr "" -msgid "Opens in a new window" +msgid "ProjectSettings|Choose your merge method, merge options, and merge checks." msgstr "" -msgid "Operation failed. Check pod logs for %{pod_name} for more details." +msgid "ProjectSettings|Customize your project badges." msgstr "" -msgid "Operation timed out. Check pod logs for %{pod_name} for more details." +msgid "ProjectSettings|Every merge creates a merge commit" msgstr "" -msgid "Operations" +msgid "ProjectSettings|Fast-forward merge" msgstr "" -msgid "Operations Dashboard" +msgid "ProjectSettings|Fast-forward merges only" msgstr "" -msgid "Operations Settings" +msgid "ProjectSettings|Learn more about badges." msgstr "" -msgid "OperationsDashboard|Add a project to the dashboard" +msgid "ProjectSettings|Merge checks" msgstr "" -msgid "OperationsDashboard|Add projects" +msgid "ProjectSettings|Merge commit" msgstr "" -msgid "OperationsDashboard|More information" +msgid "ProjectSettings|Merge commit with semi-linear history" msgstr "" -msgid "OperationsDashboard|Operations Dashboard" +msgid "ProjectSettings|Merge method" msgstr "" -msgid "OperationsDashboard|The operations dashboard provides a summary of each project's operational health, including pipeline and alert statuses." +msgid "ProjectSettings|Merge options" msgstr "" -msgid "Optional" +msgid "ProjectSettings|No merge commits are created" msgstr "" -msgid "Optionally, you can %{link_to_customize} how FogBugz email addresses and usernames are imported into GitLab." +msgid "ProjectSettings|Pipelines must succeed" msgstr "" -msgid "Optionally, you can %{link_to_customize} how Google Code email addresses and usernames are imported into GitLab." +msgid "ProjectSettings|Pipelines need to be configured to enable this feature." msgstr "" -msgid "Options" +msgid "ProjectSettings|Show link to create/view merge request when pushing from the command line" msgstr "" -msgid "Or you can choose one of the suggested colors below" +msgid "ProjectSettings|These checks must pass before merge requests can be merged" msgstr "" -msgid "Other Labels" +msgid "ProjectSettings|This will dictate the commit history when you merge a merge request" msgstr "" -msgid "Other information" +msgid "ProjectSettings|When conflicts arise the user is given the option to rebase" msgstr "" -msgid "Other merge requests block this MR" +msgid "ProjectTemplates|.NET Core" msgstr "" -msgid "Other visibility settings have been disabled by the administrator." +msgid "ProjectTemplates|Android" msgstr "" -msgid "Outbound requests" +msgid "ProjectTemplates|Go Micro" msgstr "" -msgid "Overview" +msgid "ProjectTemplates|Netlify/GitBook" msgstr "" -msgid "Overwrite diverged branches" +msgid "ProjectTemplates|Netlify/Hexo" msgstr "" -msgid "Owned by anyone" +msgid "ProjectTemplates|Netlify/Hugo" msgstr "" -msgid "Owned by me" +msgid "ProjectTemplates|Netlify/Jekyll" msgstr "" -msgid "Owner" +msgid "ProjectTemplates|Netlify/Plain HTML" msgstr "" -msgid "Package information" +msgid "ProjectTemplates|NodeJS Express" msgstr "" -msgid "Package was removed" +msgid "ProjectTemplates|Pages/GitBook" msgstr "" -msgid "PackageRegistry|Delete Package Version" +msgid "ProjectTemplates|Pages/Hexo" msgstr "" -msgid "PackageRegistry|There was a problem fetching the details for this package." +msgid "ProjectTemplates|Pages/Hugo" msgstr "" -msgid "PackageRegistry|Unable to load package" +msgid "ProjectTemplates|Pages/Jekyll" msgstr "" -msgid "PackageRegistry|You are about to delete version %{boldStart}%{version}%{boldEnd} of %{boldStart}%{name}%{boldEnd}. Are you sure?" +msgid "ProjectTemplates|Pages/Plain HTML" msgstr "" -msgid "Packages" +msgid "ProjectTemplates|Ruby on Rails" msgstr "" -msgid "Page not found" +msgid "ProjectTemplates|Spring" msgstr "" -msgid "Page was successfully deleted" +msgid "ProjectTemplates|iOS (Swift)" msgstr "" -msgid "Pages" +msgid "Projects" msgstr "" -msgid "Pages Domain" +msgid "Projects (%{count})" msgstr "" -msgid "Pages Domains" +msgid "Projects Successfully Retrieved" msgstr "" -msgid "Pages getting started guide" +msgid "Projects shared with %{group_name}" msgstr "" -msgid "Pagination|Go to first page" +msgid "Projects that belong to a group are prefixed with the group namespace. Existing projects may be moved into a group." msgstr "" -msgid "Pagination|Go to last page" +msgid "Projects with write access" msgstr "" -msgid "Pagination|Go to next page" +msgid "ProjectsDropdown|Frequently visited" msgstr "" -msgid "Pagination|Go to previous page" +msgid "ProjectsDropdown|Loading projects" msgstr "" -msgid "Pagination|Last »" +msgid "ProjectsDropdown|Projects you visit often will appear here" msgstr "" -msgid "Pagination|Next ›" +msgid "ProjectsDropdown|Search your projects" msgstr "" -msgid "Pagination|« First" +msgid "ProjectsDropdown|Something went wrong on our end." msgstr "" -msgid "Pagination|‹ Prev" +msgid "ProjectsDropdown|Sorry, no projects matched your search" msgstr "" -msgid "Parameter" +msgid "ProjectsDropdown|This feature requires browser localStorage support" msgstr "" -msgid "Part of merge request changes" +msgid "ProjectsNew|Allows you to immediately clone this project’s repository. Skip this if you plan to push up an existing repository." msgstr "" -msgid "Password" +msgid "ProjectsNew|Blank" msgstr "" -msgid "Password (optional)" +msgid "ProjectsNew|Blank project" msgstr "" -msgid "Password authentication is unavailable." +msgid "ProjectsNew|Contact an administrator to enable options for importing your project." msgstr "" -msgid "Password confirmation" +msgid "ProjectsNew|Create from template" msgstr "" -msgid "Password successfully changed" +msgid "ProjectsNew|Creating project & repository." msgstr "" -msgid "Password was successfully updated. Please login with it" +msgid "ProjectsNew|Description format" msgstr "" -msgid "Past due" +msgid "ProjectsNew|Import" msgstr "" -msgid "Paste a machine public key here. Read more about how to generate it %{link_start}here%{link_end}" +msgid "ProjectsNew|Import project" msgstr "" -msgid "Paste epic link" +msgid "ProjectsNew|Initialize repository with a README" msgstr "" -msgid "Paste issue link" +msgid "ProjectsNew|No import options available" msgstr "" -msgid "Paste your public SSH key, which is usually contained in the file '~/.ssh/id_ed25519.pub' or '~/.ssh/id_rsa.pub' and begins with 'ssh-ed25519' or 'ssh-rsa'. Don't use your private SSH key." +msgid "ProjectsNew|Please wait a moment, this page will automatically refresh when ready." msgstr "" -msgid "Path" +msgid "ProjectsNew|Project description %{tag_start}(optional)%{tag_end}" msgstr "" -msgid "Path, transfer, remove" +msgid "ProjectsNew|Template" msgstr "" -msgid "Path:" +msgid "ProjectsNew|Visibility Level" msgstr "" -msgid "Pause" +msgid "ProjectsNew|Want to house several dependent projects under the same namespace? %{link_start}Create a group.%{link_end}" msgstr "" -msgid "Pause replication" +msgid "Prometheus listen_address in config/gitlab.yml is not a valid URI" msgstr "" -msgid "Paused Runners don't accept new jobs" +msgid "PrometheusService|%{exporters} with %{metrics} were found" msgstr "" -msgid "Pending" +msgid "PrometheusService|

No common metrics were found

" msgstr "" -msgid "People without permission will never get a notification and won't be able to comment." +msgid "PrometheusService|Active" msgstr "" -msgid "People without permission will never get a notification." +msgid "PrometheusService|Auto configuration" msgstr "" -msgid "Perform advanced options such as changing path, transferring, or removing the group." +msgid "PrometheusService|Automatically deploy and configure Prometheus on your clusters to monitor your project’s environments" msgstr "" -msgid "Perform common operations on GitLab project" +msgid "PrometheusService|Common metrics" msgstr "" -msgid "Performance optimization" +msgid "PrometheusService|Common metrics are automatically monitored based on a library of metrics from popular exporters." msgstr "" -msgid "PerformanceBar|Gitaly calls" +msgid "PrometheusService|Finding and configuring metrics..." msgstr "" -msgid "PerformanceBar|Redis calls" +msgid "PrometheusService|Install Prometheus on clusters" msgstr "" -msgid "PerformanceBar|Rugged calls" +msgid "PrometheusService|Manage clusters" msgstr "" -msgid "PerformanceBar|SQL queries" +msgid "PrometheusService|Manual configuration" msgstr "" -msgid "PerformanceBar|trace" +msgid "PrometheusService|Metrics" msgstr "" -msgid "Permissions" +msgid "PrometheusService|Missing environment variable" msgstr "" -msgid "Permissions Help" +msgid "PrometheusService|More information" msgstr "" -msgid "Permissions, LFS, 2FA" +msgid "PrometheusService|Prometheus API Base URL, like http://prometheus.example.com/" msgstr "" -msgid "Personal Access Token" +msgid "PrometheusService|Prometheus is being automatically managed on your clusters" msgstr "" -msgid "Personal project creation is not allowed. Please contact your administrator with questions" +msgid "PrometheusService|Time-series monitoring service" msgstr "" -msgid "Phabricator Server Import" +msgid "PrometheusService|To enable manual configuration, uninstall Prometheus from your clusters" msgstr "" -msgid "Phabricator Server URL" +msgid "PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration below" msgstr "" -msgid "Phabricator Tasks" +msgid "PrometheusService|Waiting for your first deployment to an environment to find common metrics" msgstr "" -msgid "Pick a name" +msgid "Promote" msgstr "" -msgid "Pick a name for the application, and we'll give you a unique %{type} token." +msgid "Promote these project milestones into a group milestone." msgstr "" -msgid "Pin code" +msgid "Promote to Group Milestone" msgstr "" -msgid "Pipeline" +msgid "Promote to group label" msgstr "" -msgid "Pipeline %{label}" +msgid "PromoteMilestone|Only project milestones can be promoted." msgstr "" -msgid "Pipeline %{label} for \"%{dataTitle}\"" +msgid "PromoteMilestone|Project does not belong to a group." msgstr "" -msgid "Pipeline Schedule" +msgid "PromoteMilestone|Promotion failed - %{message}" msgstr "" -msgid "Pipeline Schedules" +msgid "Prompt users to upload SSH keys" msgstr "" -msgid "Pipeline minutes quota" +msgid "Protected" msgstr "" -msgid "Pipeline quota" +msgid "Protected Branch" msgstr "" -msgid "Pipeline triggers" +msgid "Protected Tag" msgstr "" -msgid "Pipeline: %{status}" +msgid "Protected branches" msgstr "" -msgid "PipelineCharts|Failed:" +msgid "ProtectedBranch|%{wildcards_link_start}Wildcards%{wildcards_link_end} such as %{code_tag_start}*-stable%{code_tag_end} or %{code_tag_start}production/*%{code_tag_end} are supported" msgstr "" -msgid "PipelineCharts|Overall statistics" +msgid "ProtectedBranch|Allowed to merge" msgstr "" -msgid "PipelineCharts|Success ratio:" +msgid "ProtectedBranch|Allowed to merge:" msgstr "" -msgid "PipelineCharts|Successful:" +msgid "ProtectedBranch|Allowed to push" msgstr "" -msgid "PipelineCharts|Total:" +msgid "ProtectedBranch|Allowed to push:" msgstr "" -msgid "PipelineSchedules|Activated" +msgid "ProtectedBranch|Code owner approval" msgstr "" -msgid "PipelineSchedules|Active" +msgid "ProtectedBranch|Last commit" msgstr "" -msgid "PipelineSchedules|All" +msgid "ProtectedBranch|Protect" msgstr "" -msgid "PipelineSchedules|Inactive" +msgid "ProtectedBranch|Protect a branch" msgstr "" -msgid "PipelineSchedules|Next Run" +msgid "ProtectedBranch|Protected branch (%{protected_branches_count})" msgstr "" -msgid "PipelineSchedules|None" +msgid "ProtectedBranch|Pushes that change filenames matched by the CODEOWNERS file will be rejected" msgstr "" -msgid "PipelineSchedules|Provide a short description for this pipeline" +msgid "ProtectedBranch|Require approval from code owners:" msgstr "" -msgid "PipelineSchedules|Take ownership" +msgid "ProtectedBranch|There are currently no protected branches, protect a branch with the form above." msgstr "" -msgid "PipelineSchedules|Target" +msgid "ProtectedBranch|Toggle code owner approval" msgstr "" -msgid "PipelineSchedules|Variables" +msgid "Protip:" msgstr "" -msgid "PipelineSheduleIntervalPattern|Custom" +msgid "Provider" msgstr "" -msgid "PipelineStatusTooltip|Pipeline: %{ciStatus}" +msgid "Public" msgstr "" -msgid "PipelineStatusTooltip|Pipeline: %{ci_status}" +msgid "Public - The group and any public projects can be viewed without any authentication." msgstr "" -msgid "Pipelines" +msgid "Public - The project can be accessed without any authentication." msgstr "" -msgid "Pipelines charts" +msgid "Public Access Help" msgstr "" -msgid "Pipelines emails" +msgid "Public deploy keys (%{deploy_keys_count})" msgstr "" -msgid "Pipelines for last month" +msgid "Public pipelines" msgstr "" -msgid "Pipelines for last week" +msgid "Push" msgstr "" -msgid "Pipelines for last year" +msgid "Push an existing Git repository" msgstr "" -msgid "Pipelines for merge requests are configured. A detached pipeline runs in the context of the merge request, and not against the merged result. Learn more on the documentation for Pipelines for Merged Results." +msgid "Push an existing folder" msgstr "" -msgid "Pipelines settings for '%{project_name}' were successfully updated." +msgid "Push events" msgstr "" -msgid "Pipelines| to purchase more minutes." +msgid "Push project from command line" msgstr "" -msgid "Pipelines|%{namespace_name} has exceeded its pipeline minutes quota." +msgid "Push to create a project" msgstr "" -msgid "Pipelines|%{namespace_name} has less than %{notification_level}%% of CI minutes available." +msgid "PushoverService|%{user_name} deleted branch \"%{ref}\"." msgstr "" -msgid "Pipelines|API" +msgid "PushoverService|%{user_name} push to branch \"%{ref}\"." msgstr "" -msgid "Pipelines|Build with confidence" +msgid "PushoverService|%{user_name} pushed new branch \"%{ref}\"." msgstr "" -msgid "Pipelines|CI Lint" +msgid "PushoverService|High Priority" msgstr "" -msgid "Pipelines|Clear Runner Caches" +msgid "PushoverService|Leave blank for all active devices" msgstr "" -msgid "Pipelines|Continuous Integration can help catch bugs by running your tests automatically, while Continuous Deployment can help you deliver code to your product environment." +msgid "PushoverService|Low Priority" msgstr "" -msgid "Pipelines|Get started with Pipelines" +msgid "PushoverService|Lowest Priority" msgstr "" -msgid "Pipelines|Loading Pipelines" +msgid "PushoverService|Normal Priority" msgstr "" -msgid "Pipelines|Pipelines will not run anymore on shared Runners." +msgid "PushoverService|Pushover makes it easy to get real-time notifications on your Android device, iPhone, iPad, and Desktop." msgstr "" -msgid "Pipelines|Project cache successfully reset." +msgid "PushoverService|See project %{project_full_name}" msgstr "" -msgid "Pipelines|Run Pipeline" +msgid "PushoverService|Total commits count: %{total_commits_count}" msgstr "" -msgid "Pipelines|Something went wrong while cleaning runners cache." +msgid "PushoverService|Your application key" msgstr "" -msgid "Pipelines|There are currently no %{scope} pipelines." +msgid "PushoverService|Your user key" msgstr "" -msgid "Pipelines|There are currently no pipelines." +msgid "Quick actions can be used in the issues description and comment boxes." msgstr "" -msgid "Pipelines|There was an error fetching the pipelines. Try again in a few moments or contact your support team." +msgid "README" msgstr "" -msgid "Pipelines|This project is not currently set up to run pipelines." +msgid "Rake Tasks Help" msgstr "" -msgid "Pipeline|Commit" +msgid "Raw blob request rate limit per minute" msgstr "" -msgid "Pipeline|Could not retrieve the pipeline status. For troubleshooting steps, read the %{linkStart}documentation.%{linkEnd}" +msgid "Read more" msgstr "" -msgid "Pipeline|Coverage" +msgid "Read more about environments" msgstr "" -msgid "Pipeline|Detached merge request pipeline" +msgid "Read more about project permissions %{link_to_help}" msgstr "" -msgid "Pipeline|Duration" +msgid "Real-time features" msgstr "" -msgid "Pipeline|Existing branch name or tag" +msgid "Rebase" msgstr "" -msgid "Pipeline|Key" +msgid "Rebase in progress" msgstr "" -msgid "Pipeline|Merge train pipeline" +msgid "Receive notifications about your own activity" msgstr "" -msgid "Pipeline|Merged result pipeline" +msgid "Recent" msgstr "" -msgid "Pipeline|Pipeline" +msgid "Recent Project Activity" msgstr "" -msgid "Pipeline|Run Pipeline" +msgid "Recent Searches Service is unavailable" msgstr "" -msgid "Pipeline|Run for" +msgid "Recent searches" msgstr "" -msgid "Pipeline|Search branches" +msgid "Recovery Codes" msgstr "" -msgid "Pipeline|Specify variable values to be used in this run. The values specified in %{settings_link} will be used by default." +msgid "Reference:" msgstr "" -msgid "Pipeline|Stages" +msgid "Refreshing in a second to show the updated status..." +msgid_plural "Refreshing in %d seconds to show the updated status..." +msgstr[0] "" +msgstr[1] "" + +msgid "Regenerate key" msgstr "" -msgid "Pipeline|Status" +msgid "Regenerate recovery codes" msgstr "" -msgid "Pipeline|Stop pipeline" +msgid "Regex pattern" msgstr "" -msgid "Pipeline|Stop pipeline #%{pipelineId}?" +msgid "Register" msgstr "" -msgid "Pipeline|Triggerer" +msgid "Register / Sign In" msgstr "" -msgid "Pipeline|Value" +msgid "Register Two-Factor Authenticator" msgstr "" -msgid "Pipeline|Variables" +msgid "Register U2F device" msgstr "" -msgid "Pipeline|You’re about to stop pipeline %{pipelineId}." +msgid "Register Universal Two-Factor (U2F) Device" msgstr "" -msgid "Pipeline|all" +msgid "Register and see your runners for this group." msgstr "" -msgid "Pipeline|for" +msgid "Register and see your runners for this project." msgstr "" -msgid "Pipeline|on" +msgid "Register with two-factor app" msgstr "" -msgid "Pipeline|success" +msgid "Related Deployed Jobs" msgstr "" -msgid "Pipeline|with stage" +msgid "Related Issues" msgstr "" -msgid "Pipeline|with stages" +msgid "Related Jobs" msgstr "" -msgid "PivotalTrackerService|Comma-separated list of branches which will be automatically inspected. Leave blank to include all branches." +msgid "Related Merge Requests" msgstr "" -msgid "PivotalTrackerService|Pivotal Tracker API token." +msgid "Related Merged Requests" msgstr "" -msgid "PivotalTrackerService|Project Management Software (Source Commits Endpoint)" +msgid "Related merge requests" msgstr "" -msgid "Plain diff" +msgid "Releases" msgstr "" -msgid "PlantUML" +msgid "Releases mark specific points in a project's development history, communicate information about the type of change, and deliver on prepared, often compiled, versions of the software to be reused elsewhere. Currently, releases can only be created through the API." msgstr "" -msgid "Play" +msgid "Remind later" msgstr "" -msgid "Play all manual" +msgid "Remote object has no absolute path." msgstr "" -msgid "Please %{link_to_register} or %{link_to_sign_in} to comment" +msgid "Remove" msgstr "" -msgid "Please %{startTagRegister}register%{endRegisterTag} or %{startTagSignIn}sign in%{endSignInTag} to reply" +msgid "Remove Runner" msgstr "" -msgid "Please accept the Terms of Service before continuing." +msgid "Remove Zoom meeting" msgstr "" -msgid "Please add a comment in the text area above" +msgid "Remove all or specific assignee(s)" msgstr "" -msgid "Please add a list to your board first" +msgid "Remove all or specific label(s)" msgstr "" -msgid "Please check the configuration file for this chart" +msgid "Remove assignee" msgstr "" -msgid "Please check the configuration file to ensure that a collection of charts has been declared." +msgid "Remove avatar" msgstr "" -msgid "Please check the configuration file to ensure that it is available and the YAML is valid" +msgid "Remove due date" msgstr "" -msgid "Please check your email (%{email}) to verify that you own this address. Didn't receive it? %{resend_link}. Wrong email address? %{update_link}." +msgid "Remove fork relationship" msgstr "" -msgid "Please choose a group URL with no special characters." +msgid "Remove from board" msgstr "" -msgid "Please complete your profile with email address" +msgid "Remove group" msgstr "" -msgid "Please convert them to %{link_to_git}, and go through the %{link_to_import_flow} again." +msgid "Remove milestone" msgstr "" -msgid "Please convert them to Git on Google Code, and go through the %{link_to_import_flow} again." +msgid "Remove priority" msgstr "" -msgid "Please create a password for your new account." +msgid "Remove project" msgstr "" -msgid "Please create a username with only alphanumeric characters." +msgid "Remove spent time" msgstr "" -msgid "Please enable and migrate to hashed storage to avoid security issues and ensure data integrity. %{migrate_link}" +msgid "Remove stage" msgstr "" -msgid "Please enter a non-negative number" +msgid "Remove time estimate" msgstr "" -msgid "Please enter a number greater than %{number} (from the project settings)" +msgid "Removed %{assignee_text} %{assignee_references}." msgstr "" -msgid "Please enter a valid number" +msgid "Removed %{label_references} %{label_text}." msgstr "" -msgid "Please enter or upload a license." +msgid "Removed %{milestone_reference} milestone." msgstr "" -msgid "Please fill in a descriptive name for your group." +msgid "Removed all labels." msgstr "" -msgid "Please migrate all existing projects to hashed storage to avoid security issues and ensure data integrity. %{migrate_link}" +msgid "Removed group can not be restored!" msgstr "" -msgid "Please note that this application is not provided by GitLab and you should verify its authenticity before allowing access." +msgid "Removed projects cannot be restored!" msgstr "" -msgid "Please provide a name" +msgid "Removed spent time." msgstr "" -msgid "Please provide a valid email address." +msgid "Removed the due date." msgstr "" -msgid "Please retype the email address." +msgid "Removed time estimate." msgstr "" -msgid "Please select a file" +msgid "Removes %{assignee_text} %{assignee_references}." msgstr "" -msgid "Please select a group." +msgid "Removes %{label_references} %{label_text}." msgstr "" -msgid "Please select and add a member" +msgid "Removes %{milestone_reference} milestone." msgstr "" -msgid "Please select at least one filter to see results" +msgid "Removes all labels." msgstr "" -msgid "Please set a new password before proceeding." +msgid "Removes spent time." msgstr "" -msgid "Please solve the reCAPTCHA" +msgid "Removes the due date." msgstr "" -msgid "Please try again" +msgid "Removes time estimate." msgstr "" -msgid "Please upgrade PostgreSQL to version 9.6 or greater. The status of the replication cannot be determined reliably with the current version." +msgid "Removing group will cause all child projects and resources to be removed." msgstr "" -msgid "Please use this form to report to the admin users who create spam issues, comments or behave inappropriately." +msgid "Removing the project will delete its repository and all related resources including issues, merge requests etc." msgstr "" -msgid "Please wait a moment, this page will automatically refresh when ready." +msgid "Rename" msgstr "" -msgid "Please wait while we connect to your repository. Refresh at will." +msgid "Rename file" msgstr "" -msgid "Please wait while we import the repository for you. Refresh at will." +msgid "Rename folder" msgstr "" -msgid "Pods in use" +msgid "Reopen milestone" msgstr "" -msgid "Preferences" +msgid "Reopen this %{quick_action_target}" msgstr "" -msgid "Preferences saved." +msgid "Reopened this %{quick_action_target}." msgstr "" -msgid "Preferences|Behavior" +msgid "Reopens this %{quick_action_target}." msgstr "" -msgid "Preferences|Choose between fixed (max. 1280px) and fluid (%{percentage}) application layout." +msgid "Replace" msgstr "" -msgid "Preferences|Choose what content you want to see on a project’s overview page." +msgid "Replace all label(s)" msgstr "" -msgid "Preferences|Customize the appearance of the application header and navigation sidebar." +msgid "Replaced all labels with %{label_references} %{label_text}." msgstr "" -msgid "Preferences|Default dashboard" +msgid "Reply by email" msgstr "" -msgid "Preferences|Display time in 24-hour format" +msgid "Reply to comment" msgstr "" -msgid "Preferences|For example: 30 mins ago." +msgid "Reply to this email directly or %{view_it_on_gitlab}." msgstr "" -msgid "Preferences|Layout width" +msgid "Report abuse to admin" msgstr "" -msgid "Preferences|Navigation theme" +msgid "Reporting" msgstr "" -msgid "Preferences|Project overview content" +msgid "Reports|%{failedString} and %{resolvedString}" msgstr "" -msgid "Preferences|Syntax highlighting theme" +msgid "Reports|Class" msgstr "" -msgid "Preferences|These settings will update how dates and times are displayed for you." +msgid "Reports|Classname" msgstr "" -msgid "Preferences|This feature is experimental and translations are not complete yet" +msgid "Reports|Execution time" msgstr "" -msgid "Preferences|This setting allows you to customize the appearance of the syntax." +msgid "Reports|Failure" msgstr "" -msgid "Preferences|This setting allows you to customize the behavior of the system layout and default views." +msgid "Reports|System output" msgstr "" -msgid "Preferences|Time display" +msgid "Reports|Test summary" msgstr "" -msgid "Preferences|Time format" +msgid "Reports|Test summary failed loading results" msgstr "" -msgid "Preferences|Time preferences" +msgid "Reports|Test summary results are being parsed" msgstr "" -msgid "Preferences|Use relative times" +msgid "Reports|no changed test results" msgstr "" -msgid "Press %{key}-C to copy" +msgid "Repository" msgstr "" -msgid "Press Enter or click to search" +msgid "Repository Graph" msgstr "" -msgid "Prevent adding new members to project membership within this group" +msgid "Repository Settings" msgstr "" -msgid "Prevent approval of merge requests by merge request author" +msgid "Repository URL" msgstr "" -msgid "Prevent approval of merge requests by merge request committers" +msgid "Repository check was triggered." msgstr "" -msgid "Preview" +msgid "Repository cleanup" msgstr "" -msgid "Preview Markdown" +msgid "Repository cleanup has started. You will receive an email once the cleanup operation is complete." msgstr "" -msgid "Preview changes" +msgid "Repository maintenance" msgstr "" -msgid "Preview payload" +msgid "Repository mirror" msgstr "" -msgid "Previous Artifacts" +msgid "Repository static objects" msgstr "" -msgid "Previous file in diff (MRs only)" +msgid "Repository storage" msgstr "" -msgid "Previous unresolved discussion (MRs only)" +msgid "Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / LFS: %{counter_lfs_objects}" msgstr "" -msgid "Primary" +msgid "Request Access" msgstr "" -msgid "Prioritize" +msgid "Requested %{time_ago}" msgstr "" -msgid "Prioritize label" +msgid "Requests Profiles" msgstr "" -msgid "Prioritized Labels" +msgid "Requests to these domain(s)/address(es) on the local network will be allowed when local requests from hooks and services are not allowed. IP ranges such as 1:0:0:0:0:0:0:0/124 or 127.0.0.0/28 are supported. Domain wildcards are not supported currently. Use comma, semicolon, or newline to separate multiple entries. The whitelist can hold a maximum of 1000 entries. Domains should use IDNA encoding. Ex: example.com, 192.168.1.1, 127.0.0.0/28, xn--itlab-j1a.com." msgstr "" -msgid "Prioritized label" +msgid "Require all users in this group to setup Two-factor authentication" msgstr "" -msgid "Private" +msgid "Require all users to accept Terms of Service and Privacy Policy when they access GitLab." msgstr "" -msgid "Private - Project access must be granted explicitly to each user." +msgid "Require users to prove ownership of custom domains" msgstr "" -msgid "Private - The group and its projects can only be viewed by members." +msgid "Resend confirmation email" msgstr "" -msgid "Private group(s)" +msgid "Resend invite" msgstr "" -msgid "Private profile" +msgid "Resend it" msgstr "" -msgid "Private projects can be created in your personal namespace with:" +msgid "Reset health check access token" msgstr "" -msgid "Proceed" +msgid "Reset runners registration token" msgstr "" -msgid "Productivity Analytics" +msgid "Reset template" msgstr "" -msgid "Productivity analytics can help identify the problems that are delaying your team" +msgid "Resolve all threads in new issue" msgstr "" -msgid "ProductivityAnalytics|Ascending" +msgid "Resolve conflicts on source branch" msgstr "" -msgid "ProductivityAnalytics|Descending" +msgid "Resolve discussion" msgstr "" -msgid "Profile" +msgid "Resolve thread" msgstr "" -msgid "Profile Settings" +msgid "Resolved" msgstr "" -msgid "ProfileSession|on" +msgid "Resolved 1 discussion." msgstr "" -msgid "Profiles| You are about to permanently delete %{yourAccount}, and all of the issues, merge requests, and groups linked to your account. Once you confirm %{deleteAccount}, it cannot be undone or recovered." +msgid "Resolved all discussions." msgstr "" -msgid "Profiles| You are going to change the username %{currentUsernameBold} to %{newUsernameBold}. Profile and projects will be redirected to the %{newUsername} namespace but this redirect will expire once the %{currentUsername} namespace is registered by another user or group. Please update your Git repository remotes as soon as possible." +msgid "Resolved by %{name}" msgstr "" -msgid "Profiles|@username" +msgid "Resolved by %{resolvedByName}" msgstr "" -msgid "Profiles|Account scheduled for removal." +msgid "Resolves IP addresses once and uses them to submit requests" msgstr "" -msgid "Profiles|Activate signin with one of the following services" +msgid "Response metrics (AWS ELB)" msgstr "" -msgid "Profiles|Active" +msgid "Response metrics (Custom)" msgstr "" -msgid "Profiles|Add key" +msgid "Response metrics (HA Proxy)" msgstr "" -msgid "Profiles|Add status emoji" +msgid "Response metrics (NGINX Ingress VTS)" msgstr "" -msgid "Profiles|Avatar cropper" +msgid "Response metrics (NGINX Ingress)" msgstr "" -msgid "Profiles|Avatar will be removed. Are you sure?" +msgid "Response metrics (NGINX)" msgstr "" -msgid "Profiles|Bio" +msgid "Resume" msgstr "" -msgid "Profiles|Change username" +msgid "Retry" msgstr "" -msgid "Profiles|Changing your username can have unintended side effects." +msgid "Retry this job" msgstr "" -msgid "Profiles|Choose file..." +msgid "Retry this job in order to create the necessary resources." msgstr "" -msgid "Profiles|Choose to show contributions of private projects on your public profile without any project, repository or organization information" +msgid "Retry update" msgstr "" -msgid "Profiles|City, country" +msgid "Retry verification" msgstr "" -msgid "Profiles|Clear status" +msgid "Reveal value" +msgid_plural "Reveal values" +msgstr[0] "" +msgstr[1] "" + +msgid "Reveal values" msgstr "" -msgid "Profiles|Click on icon to activate signin with one of the following services" +msgid "Revert this commit" msgstr "" -msgid "Profiles|Commit email" +msgid "Revert this merge request" msgstr "" -msgid "Profiles|Connect" +msgid "Review" msgstr "" -msgid "Profiles|Connected Accounts" +msgid "Reviewing" msgstr "" -msgid "Profiles|Current path: %{path}" +msgid "Reviewing (merge request !%{mergeRequestId})" msgstr "" -msgid "Profiles|Current status" +msgid "Revoke" msgstr "" -msgid "Profiles|Default notification email" +msgid "Revoked impersonation token %{token_name}!" msgstr "" -msgid "Profiles|Delete Account" +msgid "Revoked personal access token %{personal_access_token_name}!" msgstr "" -msgid "Profiles|Delete account" +msgid "RightSidebar|adding a" msgstr "" -msgid "Profiles|Delete your account?" +msgid "RightSidebar|deleting the" msgstr "" -msgid "Profiles|Deleting an account has the following effects:" +msgid "Run housekeeping" msgstr "" -msgid "Profiles|Disconnect" +msgid "Run untagged jobs" msgstr "" -msgid "Profiles|Do not show on profile" +msgid "Runner cannot be assigned to other projects" msgstr "" -msgid "Profiles|Don't display activity-related personal information on your profiles" +msgid "Runner runs jobs from all unassigned projects" msgstr "" -msgid "Profiles|Edit Profile" +msgid "Runner runs jobs from all unassigned projects in its group" msgstr "" -msgid "Profiles|Enter your name, so people you know can recognize you" +msgid "Runner runs jobs from assigned projects" msgstr "" -msgid "Profiles|Feed token was successfully reset" +msgid "Runner token" msgstr "" -msgid "Profiles|Full name" +msgid "Runner was not updated." msgstr "" -msgid "Profiles|Impersonation" +msgid "Runner was successfully updated." msgstr "" -msgid "Profiles|Include private contributions on my profile" +msgid "Runner will not receive any new jobs" msgstr "" -msgid "Profiles|Incoming email token was successfully reset" +msgid "Runners" msgstr "" -msgid "Profiles|Increase your account's security by enabling Two-Factor Authentication (2FA)" +msgid "Runners API" msgstr "" -msgid "Profiles|Invalid password" +msgid "Runners activated for this project" msgstr "" -msgid "Profiles|Invalid username" +msgid "Runners can be placed on separate users, servers, and even on your local machine." msgstr "" -msgid "Profiles|Key" +msgid "Runners can be placed on separate users, servers, even on your local machine." msgstr "" -msgid "Profiles|Learn more" +msgid "Runners currently online: %{active_runners_count}" msgstr "" -msgid "Profiles|Location" +msgid "Runners page" msgstr "" -msgid "Profiles|Made a private contribution" +msgid "Running" msgstr "" -msgid "Profiles|Main settings" +msgid "Running…" msgstr "" -msgid "Profiles|No file chosen" +msgid "Runs a number of housekeeping tasks within the current repository, such as compressing file revisions and removing unreachable objects." msgstr "" -msgid "Profiles|Notification email" +msgid "SSH Key" msgstr "" -msgid "Profiles|Organization" +msgid "SSH Keys" msgstr "" -msgid "Profiles|Path" +msgid "SSH Keys Help" msgstr "" -msgid "Profiles|Personal Access" +msgid "SSH host keys" msgstr "" -msgid "Profiles|Position and size your new avatar" +msgid "SSH keys allow you to establish a secure connection between your computer and GitLab." msgstr "" -msgid "Profiles|Primary email" +msgid "SSH public key" msgstr "" -msgid "Profiles|Private contributions" +msgid "SSL Verification" msgstr "" -msgid "Profiles|Profile was successfully updated" +msgid "Saturday" msgstr "" -msgid "Profiles|Public Avatar" +msgid "Save" msgstr "" -msgid "Profiles|Public email" +msgid "Save Changes" msgstr "" -msgid "Profiles|Remove avatar" +msgid "Save anyway" msgstr "" -msgid "Profiles|Set new profile picture" +msgid "Save application" msgstr "" -msgid "Profiles|Social sign-in" +msgid "Save changes" msgstr "" -msgid "Profiles|Some options are unavailable for LDAP accounts" +msgid "Save comment" msgstr "" -msgid "Profiles|Static object token was successfully reset" +msgid "Save password" msgstr "" -msgid "Profiles|Tell us about yourself in fewer than 250 characters" +msgid "Save pipeline schedule" msgstr "" -msgid "Profiles|The maximum file size allowed is 200KB." +msgid "Save variables" msgstr "" -msgid "Profiles|This doesn't look like a public SSH key, are you sure you want to add it?" +msgid "Saving" msgstr "" -msgid "Profiles|This email will be displayed on your public profile" +msgid "Saving project." msgstr "" -msgid "Profiles|This email will be used for web based operations, such as edits and merges. %{commit_email_link_start}Learn more%{commit_email_link_end}" +msgid "Schedule a new pipeline" msgstr "" -msgid "Profiles|This emoji and message will appear on your profile and throughout the interface." +msgid "Scheduled" msgstr "" -msgid "Profiles|This information will appear on your profile" +msgid "Scheduled to merge this merge request when the pipeline succeeds." msgstr "" -msgid "Profiles|Time settings" +msgid "Schedules" msgstr "" -msgid "Profiles|Two-Factor Authentication" +msgid "Scheduling" msgstr "" -msgid "Profiles|Type your %{confirmationValue} to confirm:" +msgid "Scheduling Pipelines" msgstr "" -msgid "Profiles|Typically starts with \"ssh-ed25519 …\" or \"ssh-rsa …\"" +msgid "Scope" msgstr "" -msgid "Profiles|Update profile settings" +msgid "Scope not supported with disabled 'users_search' feature!" msgstr "" -msgid "Profiles|Update username" +msgid "Scoped label" msgstr "" -msgid "Profiles|Upload new avatar" +msgid "Scopes" msgstr "" -msgid "Profiles|Use a private email - %{email}" +msgid "Scroll down" msgstr "" -msgid "Profiles|User ID" +msgid "Scroll down to Google Code Project Hosting and enable the switch on the right." msgstr "" -msgid "Profiles|Username change failed - %{message}" +msgid "Scroll left" msgstr "" -msgid "Profiles|Username successfully changed" +msgid "Scroll right" msgstr "" -msgid "Profiles|Using emojis in names seems fun, but please try to set a status message instead" +msgid "Scroll to bottom" msgstr "" -msgid "Profiles|What's your status?" +msgid "Scroll to top" msgstr "" -msgid "Profiles|Who you represent or work for" +msgid "Scroll up" msgstr "" -msgid "Profiles|You can change your avatar here" +msgid "Search" msgstr "" -msgid "Profiles|You can change your avatar here or remove the current avatar to revert to %{gravatar_link}" +msgid "Search branches" msgstr "" -msgid "Profiles|You can set your current timezone here" +msgid "Search branches and tags" msgstr "" -msgid "Profiles|You can upload your avatar here" +msgid "Search files" msgstr "" -msgid "Profiles|You can upload your avatar here or change it at %{gravatar_link}" +msgid "Search for a group" msgstr "" -msgid "Profiles|You don't have access to delete this user." +msgid "Search for a user" msgstr "" -msgid "Profiles|You must transfer ownership or delete these groups before you can delete your account." +msgid "Search for projects, issues, etc." msgstr "" -msgid "Profiles|Your LinkedIn profile name from linkedin.com/in/profilename" -msgstr "" - -msgid "Profiles|Your account is currently an owner in these groups:" -msgstr "" - -msgid "Profiles|Your email address was automatically set based on your %{provider_label} account" -msgstr "" - -msgid "Profiles|Your location was automatically set based on your %{provider_label} account" -msgstr "" - -msgid "Profiles|Your name was automatically set based on your %{provider_label} account, so people you know can recognize you" -msgstr "" - -msgid "Profiles|Your status" -msgstr "" - -msgid "Profiles|e.g. My MacBook key" -msgstr "" - -msgid "Profiles|impersonation" -msgstr "" - -msgid "Profiles|personal access" -msgstr "" - -msgid "Profiles|username" -msgstr "" - -msgid "Profiles|website.com" -msgstr "" - -msgid "Profiles|your account" -msgstr "" - -msgid "Profiling - Performance bar" -msgstr "" - -msgid "Programming languages used in this repository" -msgstr "" - -msgid "Progress" -msgstr "" - -msgid "Project" -msgstr "" - -msgid "Project \"%{name}\" is no longer available. Select another project to continue." -msgstr "" - -msgid "Project %{project_repo} could not be found" -msgstr "" - -msgid "Project '%{project_name}' is being imported." -msgstr "" - -msgid "Project '%{project_name}' is in the process of being deleted." -msgstr "" - -msgid "Project '%{project_name}' queued for deletion." -msgstr "" - -msgid "Project '%{project_name}' was successfully created." -msgstr "" - -msgid "Project '%{project_name}' was successfully updated." -msgstr "" - -msgid "Project Badges" -msgstr "" - -msgid "Project Files" -msgstr "" - -msgid "Project ID" -msgstr "" - -msgid "Project URL" -msgstr "" - -msgid "Project access must be granted explicitly to each user." -msgstr "" - -msgid "Project already created" -msgstr "" - -msgid "Project and wiki repositories" -msgstr "" - -msgid "Project avatar" -msgstr "" - -msgid "Project cannot be shared with the group it is in or one of its ancestors." -msgstr "" - -msgid "Project configuration, including services" -msgstr "" - -msgid "Project description (optional)" -msgstr "" - -msgid "Project details" -msgstr "" - -msgid "Project export could not be deleted." -msgstr "" - -msgid "Project export enabled" -msgstr "" - -msgid "Project export has been deleted." -msgstr "" - -msgid "Project export link has expired. Please generate a new export from your project settings." -msgstr "" - -msgid "Project export started. A download link will be sent by email." -msgstr "" - -msgid "Project has too many %{label_for_message} to search" -msgstr "" - -msgid "Project members" -msgstr "" - -msgid "Project name" -msgstr "" - -msgid "Project slug" -msgstr "" - -msgid "Project uploads" -msgstr "" - -msgid "Project visibility level will be changed to match namespace rules when transferring to a group." -msgstr "" - -msgid "Project: %{name}" -msgstr "" - -msgid "ProjectActivityRSS|Subscribe" -msgstr "" - -msgid "ProjectCreationLevel|Allowed to create projects" -msgstr "" - -msgid "ProjectCreationLevel|Default project creation protection" -msgstr "" - -msgid "ProjectCreationLevel|Developers + Maintainers" -msgstr "" - -msgid "ProjectCreationLevel|Maintainers" -msgstr "" - -msgid "ProjectCreationLevel|No one" -msgstr "" - -msgid "ProjectFileTree|Name" -msgstr "" - -msgid "ProjectLastActivity|Never" -msgstr "" - -msgid "ProjectLifecycle|Stage" -msgstr "" - -msgid "ProjectOverview|Fork" -msgstr "" - -msgid "ProjectOverview|Forks" -msgstr "" - -msgid "ProjectOverview|Go to your fork" -msgstr "" - -msgid "ProjectOverview|Star" -msgstr "" - -msgid "ProjectOverview|Starrer" -msgstr "" - -msgid "ProjectOverview|Starrers" -msgstr "" - -msgid "ProjectOverview|Unstar" -msgstr "" - -msgid "ProjectOverview|You have reached your project limit" -msgstr "" - -msgid "ProjectOverview|You must sign in to star a project" -msgstr "" - -msgid "ProjectPage|Project ID: %{project_id}" -msgstr "" - -msgid "ProjectSelect| or group" -msgstr "" - -msgid "ProjectSelect|Search for project" -msgstr "" - -msgid "ProjectService|%{service_title}: status off" -msgstr "" - -msgid "ProjectService|%{service_title}: status on" -msgstr "" - -msgid "ProjectService|Integrations" -msgstr "" - -msgid "ProjectService|Last edit" -msgstr "" - -msgid "ProjectService|Perform common operations on GitLab project: %{project_name}" -msgstr "" - -msgid "ProjectService|Project services" -msgstr "" - -msgid "ProjectService|Project services allow you to integrate GitLab with other applications" -msgstr "" - -msgid "ProjectService|Service" -msgstr "" - -msgid "ProjectService|Services" -msgstr "" - -msgid "ProjectService|Settings" -msgstr "" - -msgid "ProjectService|To set up this service:" -msgstr "" - -msgid "ProjectSettings|Additional merge request capabilities that influence how and when merges will be performed" -msgstr "" - -msgid "ProjectSettings|All discussions must be resolved" -msgstr "" - -msgid "ProjectSettings|Automatically resolve merge request diff discussions when they become outdated" -msgstr "" - -msgid "ProjectSettings|Badges" -msgstr "" - -msgid "ProjectSettings|Choose your merge method, merge options, and merge checks." -msgstr "" - -msgid "ProjectSettings|Choose your merge method, merge options, merge checks, and set up a default description template for merge requests." -msgstr "" - -msgid "ProjectSettings|Contact an admin to change this setting." -msgstr "" - -msgid "ProjectSettings|Customize your project badges." -msgstr "" - -msgid "ProjectSettings|Every merge creates a merge commit" -msgstr "" - -msgid "ProjectSettings|Failed to protect the tag" -msgstr "" - -msgid "ProjectSettings|Failed to update tag!" -msgstr "" - -msgid "ProjectSettings|Fast-forward merge" -msgstr "" - -msgid "ProjectSettings|Fast-forward merges only" -msgstr "" - -msgid "ProjectSettings|Learn more about badges." -msgstr "" - -msgid "ProjectSettings|Merge checks" -msgstr "" - -msgid "ProjectSettings|Merge commit" -msgstr "" - -msgid "ProjectSettings|Merge commit with semi-linear history" -msgstr "" - -msgid "ProjectSettings|Merge method" -msgstr "" - -msgid "ProjectSettings|Merge options" -msgstr "" - -msgid "ProjectSettings|Merge pipelines will try to validate the post-merge result prior to merging" -msgstr "" - -msgid "ProjectSettings|No merge commits are created" -msgstr "" - -msgid "ProjectSettings|Only signed commits can be pushed to this repository." -msgstr "" - -msgid "ProjectSettings|Pipelines must succeed" -msgstr "" - -msgid "ProjectSettings|Pipelines need to be configured to enable this feature." -msgstr "" - -msgid "ProjectSettings|Show link to create/view merge request when pushing from the command line" -msgstr "" - -msgid "ProjectSettings|These checks must pass before merge requests can be merged" -msgstr "" - -msgid "ProjectSettings|This setting is applied on the server level and can be overridden by an admin." -msgstr "" - -msgid "ProjectSettings|This setting is applied on the server level but has been overridden for this project." -msgstr "" - -msgid "ProjectSettings|This setting will be applied to all projects unless overridden by an admin." -msgstr "" - -msgid "ProjectSettings|This will dictate the commit history when you merge a merge request" -msgstr "" - -msgid "ProjectSettings|Users can only push commits to this repository that were committed with one of their own verified emails." -msgstr "" - -msgid "ProjectSettings|When conflicts arise the user is given the option to rebase" -msgstr "" - -msgid "ProjectTemplates|.NET Core" -msgstr "" - -msgid "ProjectTemplates|Android" -msgstr "" - -msgid "ProjectTemplates|Go Micro" -msgstr "" - -msgid "ProjectTemplates|Netlify/GitBook" -msgstr "" - -msgid "ProjectTemplates|Netlify/Hexo" -msgstr "" - -msgid "ProjectTemplates|Netlify/Hugo" -msgstr "" - -msgid "ProjectTemplates|Netlify/Jekyll" -msgstr "" - -msgid "ProjectTemplates|Netlify/Plain HTML" -msgstr "" - -msgid "ProjectTemplates|NodeJS Express" -msgstr "" - -msgid "ProjectTemplates|Pages/GitBook" -msgstr "" - -msgid "ProjectTemplates|Pages/Hexo" -msgstr "" - -msgid "ProjectTemplates|Pages/Hugo" -msgstr "" - -msgid "ProjectTemplates|Pages/Jekyll" -msgstr "" - -msgid "ProjectTemplates|Pages/Plain HTML" -msgstr "" - -msgid "ProjectTemplates|Ruby on Rails" -msgstr "" - -msgid "ProjectTemplates|Spring" -msgstr "" - -msgid "ProjectTemplates|iOS (Swift)" -msgstr "" - -msgid "Projects" -msgstr "" - -msgid "Projects (%{count})" -msgstr "" - -msgid "Projects Successfully Retrieved" -msgstr "" - -msgid "Projects shared with %{group_name}" -msgstr "" - -msgid "Projects that belong to a group are prefixed with the group namespace. Existing projects may be moved into a group." -msgstr "" - -msgid "Projects to index" -msgstr "" - -msgid "Projects with write access" -msgstr "" - -msgid "ProjectsDropdown|Frequently visited" -msgstr "" - -msgid "ProjectsDropdown|Loading projects" -msgstr "" - -msgid "ProjectsDropdown|Projects you visit often will appear here" -msgstr "" - -msgid "ProjectsDropdown|Search your projects" -msgstr "" - -msgid "ProjectsDropdown|Something went wrong on our end." -msgstr "" - -msgid "ProjectsDropdown|Sorry, no projects matched your search" -msgstr "" - -msgid "ProjectsDropdown|This feature requires browser localStorage support" -msgstr "" - -msgid "ProjectsNew|Allows you to immediately clone this project’s repository. Skip this if you plan to push up an existing repository." -msgstr "" - -msgid "ProjectsNew|Blank" -msgstr "" - -msgid "ProjectsNew|Blank project" -msgstr "" - -msgid "ProjectsNew|Contact an administrator to enable options for importing your project." -msgstr "" - -msgid "ProjectsNew|Create from template" -msgstr "" - -msgid "ProjectsNew|Creating project & repository." -msgstr "" - -msgid "ProjectsNew|Description format" -msgstr "" - -msgid "ProjectsNew|Import" -msgstr "" - -msgid "ProjectsNew|Import project" -msgstr "" - -msgid "ProjectsNew|Initialize repository with a README" -msgstr "" - -msgid "ProjectsNew|No import options available" -msgstr "" - -msgid "ProjectsNew|Please wait a moment, this page will automatically refresh when ready." -msgstr "" - -msgid "ProjectsNew|Project description %{tag_start}(optional)%{tag_end}" -msgstr "" - -msgid "ProjectsNew|Template" -msgstr "" - -msgid "ProjectsNew|Visibility Level" -msgstr "" - -msgid "ProjectsNew|Want to house several dependent projects under the same namespace? %{link_start}Create a group.%{link_end}" -msgstr "" - -msgid "Prometheus listen_address in config/gitlab.yml is not a valid URI" -msgstr "" - -msgid "PrometheusAlerts|Add alert" -msgstr "" - -msgid "PrometheusAlerts|Edit alert" -msgstr "" - -msgid "PrometheusAlerts|Error creating alert" -msgstr "" - -msgid "PrometheusAlerts|Error deleting alert" -msgstr "" - -msgid "PrometheusAlerts|Error fetching alert" -msgstr "" - -msgid "PrometheusAlerts|Error saving alert" -msgstr "" - -msgid "PrometheusAlerts|Operator" -msgstr "" - -msgid "PrometheusAlerts|Select query" -msgstr "" - -msgid "PrometheusAlerts|Threshold" -msgstr "" - -msgid "PrometheusService|%{exporters} with %{metrics} were found" -msgstr "" - -msgid "PrometheusService|

No common metrics were found

" -msgstr "" - -msgid "PrometheusService|Active" -msgstr "" - -msgid "PrometheusService|Auto configuration" -msgstr "" - -msgid "PrometheusService|Automatically deploy and configure Prometheus on your clusters to monitor your project’s environments" -msgstr "" - -msgid "PrometheusService|Common metrics" -msgstr "" - -msgid "PrometheusService|Common metrics are automatically monitored based on a library of metrics from popular exporters." -msgstr "" - -msgid "PrometheusService|Custom metrics" -msgstr "" - -msgid "PrometheusService|Custom metrics require Prometheus installed on a cluster with environment scope \"*\" OR a manually configured Prometheus to be available." -msgstr "" - -msgid "PrometheusService|Enable Prometheus to define custom metrics, using either option above" -msgstr "" - -msgid "PrometheusService|Finding and configuring metrics..." -msgstr "" - -msgid "PrometheusService|Finding custom metrics..." -msgstr "" - -msgid "PrometheusService|Install Prometheus on clusters" -msgstr "" - -msgid "PrometheusService|Manage clusters" -msgstr "" - -msgid "PrometheusService|Manual configuration" -msgstr "" - -msgid "PrometheusService|Metrics" -msgstr "" - -msgid "PrometheusService|Missing environment variable" -msgstr "" - -msgid "PrometheusService|More information" -msgstr "" - -msgid "PrometheusService|New metric" -msgstr "" - -msgid "PrometheusService|No custom metrics have been created. Create one using the button above" -msgstr "" - -msgid "PrometheusService|Prometheus API Base URL, like http://prometheus.example.com/" -msgstr "" - -msgid "PrometheusService|Prometheus is being automatically managed on your clusters" -msgstr "" - -msgid "PrometheusService|These metrics will only be monitored after your first deployment to an environment" -msgstr "" - -msgid "PrometheusService|Time-series monitoring service" -msgstr "" - -msgid "PrometheusService|To enable manual configuration, uninstall Prometheus from your clusters" -msgstr "" - -msgid "PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration below" -msgstr "" - -msgid "PrometheusService|Waiting for your first deployment to an environment to find common metrics" -msgstr "" - -msgid "Promote" -msgstr "" - -msgid "Promote issue to an epic" -msgstr "" - -msgid "Promote issue to an epic." -msgstr "" - -msgid "Promote these project milestones into a group milestone." -msgstr "" - -msgid "Promote to Group Milestone" -msgstr "" - -msgid "Promote to group label" -msgstr "" - -msgid "PromoteMilestone|Only project milestones can be promoted." -msgstr "" - -msgid "PromoteMilestone|Project does not belong to a group." -msgstr "" - -msgid "PromoteMilestone|Promotion failed - %{message}" -msgstr "" - -msgid "Promoted issue to an epic." -msgstr "" - -msgid "Promotions|Don't show me this again" -msgstr "" - -msgid "Promotions|Epics let you manage your portfolio of projects more efficiently and with less effort by tracking groups of issues that share a theme, across projects and milestones." -msgstr "" - -msgid "Promotions|This feature is locked." -msgstr "" - -msgid "Promotions|Upgrade plan" -msgstr "" - -msgid "Prompt users to upload SSH keys" -msgstr "" - -msgid "Protected" -msgstr "" - -msgid "Protected Branch" -msgstr "" - -msgid "Protected Environment" -msgstr "" - -msgid "Protected Environments" -msgstr "" - -msgid "Protected Tag" -msgstr "" - -<<<<<<< HEAD -msgid "Protected branches" -======= -msgid "ProtectedBranch|%{wildcards_link_start}Wildcards%{wildcards_link_end} such as %{code_tag_start}*-stable%{code_tag_end} or %{code_tag_start}production/*%{code_tag_end} are supported" -msgstr "" - -msgid "ProtectedBranch|Allowed to merge" -msgstr "" - -msgid "ProtectedBranch|Allowed to merge:" -msgstr "" - -msgid "ProtectedBranch|Allowed to push" -msgstr "" - -msgid "ProtectedBranch|Allowed to push:" -msgstr "" - -msgid "ProtectedBranch|Code owner approval" -msgstr "" - -msgid "ProtectedBranch|Last commit" -msgstr "" - -msgid "ProtectedBranch|Protect" -msgstr "" - -msgid "ProtectedBranch|Protect a branch" -msgstr "" - -msgid "ProtectedBranch|Protected branch (%{protected_branches_count})" -msgstr "" - -msgid "ProtectedBranch|Pushes that change filenames matched by the CODEOWNERS file will be rejected" -msgstr "" - -msgid "ProtectedBranch|Require approval from code owners:" -msgstr "" - -msgid "ProtectedBranch|There are currently no protected branches, protect a branch with the form above." -msgstr "" - -msgid "ProtectedBranch|Toggle code owner approval" ->>>>>>> cd182ca57e5... Add views of code owner approval -msgstr "" - -msgid "ProtectedEnvironment|%{environment_name} will be writable for developers. Are you sure?" -msgstr "" - -msgid "ProtectedEnvironment|Allowed to deploy" -msgstr "" - -msgid "ProtectedEnvironment|Environment" -msgstr "" - -msgid "ProtectedEnvironment|Protect" -msgstr "" - -msgid "ProtectedEnvironment|Protect an environment" -msgstr "" - -msgid "ProtectedEnvironment|Protected Environment (%{protected_environments_count})" -msgstr "" - -msgid "ProtectedEnvironment|Protecting an environment restricts the users who can execute deployments." -msgstr "" - -msgid "ProtectedEnvironment|Select an environment" -msgstr "" - -msgid "ProtectedEnvironment|Select users" -msgstr "" - -msgid "ProtectedEnvironment|Select users to deploy and manage Feature Flag settings" -msgstr "" - -msgid "ProtectedEnvironment|There are currently no protected environments, protect an environment with the form above." -msgstr "" - -msgid "ProtectedEnvironment|Unprotect" -msgstr "" - -msgid "ProtectedEnvironment|Your environment can't be unprotected" -msgstr "" - -msgid "ProtectedEnvironment|Your environment has been protected." -msgstr "" - -msgid "ProtectedEnvironment|Your environment has been unprotected" -msgstr "" - -msgid "Protip:" -msgstr "" - -msgid "Provider" -msgstr "" - -msgid "Pseudonymizer data collection" -msgstr "" - -msgid "Public" -msgstr "" - -msgid "Public - The group and any public projects can be viewed without any authentication." -msgstr "" - -msgid "Public - The project can be accessed without any authentication." -msgstr "" - -msgid "Public Access Help" -msgstr "" - -msgid "Public deploy keys (%{deploy_keys_count})" -msgstr "" - -msgid "Public pipelines" -msgstr "" - -msgid "Pull" -msgstr "" - -msgid "Purchase more minutes" -msgstr "" - -msgid "Push" -msgstr "" - -msgid "Push Rule updated successfully." -msgstr "" - -msgid "Push Rules" -msgstr "" - -msgid "Push Rules updated successfully." -msgstr "" - -msgid "Push an existing Git repository" -msgstr "" - -msgid "Push an existing folder" -msgstr "" - -msgid "Push events" -msgstr "" - -msgid "Push project from command line" -msgstr "" - -msgid "Push to create a project" -msgstr "" - -msgid "PushRule|Committer restriction" -msgstr "" - -msgid "Pushed" -msgstr "" - -msgid "Pushes" -msgstr "" - -msgid "PushoverService|%{user_name} deleted branch \"%{ref}\"." -msgstr "" - -msgid "PushoverService|%{user_name} push to branch \"%{ref}\"." -msgstr "" - -msgid "PushoverService|%{user_name} pushed new branch \"%{ref}\"." -msgstr "" - -msgid "PushoverService|High Priority" -msgstr "" - -msgid "PushoverService|Leave blank for all active devices" -msgstr "" - -msgid "PushoverService|Low Priority" -msgstr "" - -msgid "PushoverService|Lowest Priority" -msgstr "" - -msgid "PushoverService|Normal Priority" -msgstr "" - -msgid "PushoverService|Pushover makes it easy to get real-time notifications on your Android device, iPhone, iPad, and Desktop." -msgstr "" - -msgid "PushoverService|See project %{project_full_name}" -msgstr "" - -msgid "PushoverService|Total commits count: %{total_commits_count}" -msgstr "" - -msgid "PushoverService|Your application key" -msgstr "" - -msgid "PushoverService|Your user key" -msgstr "" - -msgid "Quarters" -msgstr "" - -msgid "Query" -msgstr "" - -msgid "Query is valid" -msgstr "" - -msgid "Quick actions can be used in the issues description and comment boxes." -msgstr "" - -msgid "README" -msgstr "" - -msgid "Rake Tasks Help" -msgstr "" - -msgid "Raw blob request rate limit per minute" -msgstr "" - -msgid "Read more" -msgstr "" - -msgid "Read more about environments" -msgstr "" - -msgid "Read more about project permissions %{link_to_help}" -msgstr "" - -msgid "Read more about related issues" -msgstr "" - -msgid "Real-time features" -msgstr "" - -msgid "Rebase" -msgstr "" - -msgid "Rebase in progress" -msgstr "" - -msgid "Receive alerts from manually configured Prometheus servers." -msgstr "" - -msgid "Receive notifications about your own activity" -msgstr "" - -msgid "Recent" -msgstr "" - -msgid "Recent Activity" -msgstr "" - -msgid "Recent Project Activity" -msgstr "" - -msgid "Recent Searches Service is unavailable" -msgstr "" - -msgid "Recent searches" -msgstr "" - -msgid "Recovery Codes" -msgstr "" - -msgid "Redirect to SAML provider to test configuration" -msgstr "" - -msgid "Reference:" -msgstr "" - -msgid "Refresh" -msgstr "" - -msgid "Refreshing in a second to show the updated status..." -msgid_plural "Refreshing in %d seconds to show the updated status..." -msgstr[0] "" -msgstr[1] "" - -msgid "Regenerate instance ID" -msgstr "" - -msgid "Regenerate key" -msgstr "" - -msgid "Regenerate recovery codes" -msgstr "" - -msgid "Regenerating the instance ID can break integration depending on the client you are using." -msgstr "" - -msgid "Regex pattern" -msgstr "" - -msgid "Register" -msgstr "" - -msgid "Register / Sign In" -msgstr "" - -msgid "Register Two-Factor Authenticator" -msgstr "" - -msgid "Register U2F device" -msgstr "" - -msgid "Register Universal Two-Factor (U2F) Device" -msgstr "" - -msgid "Register and see your runners for this group." -msgstr "" - -msgid "Register and see your runners for this project." -msgstr "" - -msgid "Register with two-factor app" -msgstr "" - -msgid "Registration" -msgstr "" - -msgid "Related Deployed Jobs" -msgstr "" - -msgid "Related Issues" -msgstr "" - -msgid "Related Jobs" -msgstr "" - -msgid "Related Merge Requests" -msgstr "" - -msgid "Related Merged Requests" -msgstr "" - -msgid "Related issues" -msgstr "" - -msgid "Related merge requests" -msgstr "" - -msgid "Releases" -msgstr "" - -msgid "Releases mark specific points in a project's development history, communicate information about the type of change, and deliver on prepared, often compiled, versions of the software to be reused elsewhere. Currently, releases can only be created through the API." -msgstr "" - -msgid "Remind later" -msgstr "" - -msgid "Remote object has no absolute path." -msgstr "" - -msgid "Remove" -msgstr "" - -msgid "Remove %{displayReference}" -msgstr "" - -msgid "Remove Runner" -msgstr "" - -msgid "Remove Zoom meeting" -msgstr "" - -msgid "Remove all approvals in a merge request when new commits are pushed to its source branch" -msgstr "" - -msgid "Remove all or specific assignee(s)" -msgstr "" - -msgid "Remove all or specific label(s)" -msgstr "" - -msgid "Remove approvers" -msgstr "" - -msgid "Remove approvers?" -msgstr "" - -msgid "Remove assignee" -msgstr "" - -msgid "Remove avatar" -msgstr "" - -msgid "Remove card" -msgstr "" - -msgid "Remove child epic from an epic" -msgstr "" - -msgid "Remove due date" -msgstr "" - -msgid "Remove fork relationship" -msgstr "" - -msgid "Remove from board" -msgstr "" - -msgid "Remove from epic" -msgstr "" - -msgid "Remove group" -msgstr "" - -msgid "Remove milestone" -msgstr "" - -msgid "Remove parent epic from an epic" -msgstr "" - -msgid "Remove priority" -msgstr "" - -msgid "Remove project" -msgstr "" - -msgid "Remove spent time" -msgstr "" - -msgid "Remove stage" -msgstr "" - -msgid "Remove time estimate" -msgstr "" - -msgid "Removed" -msgstr "" - -msgid "Removed %{assignee_text} %{assignee_references}." -msgstr "" - -msgid "Removed %{epic_ref} from child epics." -msgstr "" - -msgid "Removed %{label_references} %{label_text}." -msgstr "" - -msgid "Removed %{milestone_reference} milestone." -msgstr "" - -msgid "Removed %{type} with id %{id}" -msgstr "" - -msgid "Removed all labels." -msgstr "" - -msgid "Removed an issue from an epic." -msgstr "" - -msgid "Removed group can not be restored!" -msgstr "" - -msgid "Removed parent epic %{epic_ref}." -msgstr "" - -msgid "Removed projects cannot be restored!" -msgstr "" - -msgid "Removed spent time." -msgstr "" - -msgid "Removed the due date." -msgstr "" - -msgid "Removed time estimate." -msgstr "" - -msgid "Removes %{assignee_text} %{assignee_references}." -msgstr "" - -msgid "Removes %{epic_ref} from child epics." -msgstr "" - -msgid "Removes %{label_references} %{label_text}." -msgstr "" - -msgid "Removes %{milestone_reference} milestone." -msgstr "" - -msgid "Removes all labels." -msgstr "" - -msgid "Removes an issue from an epic." -msgstr "" - -msgid "Removes parent epic %{epic_ref}." -msgstr "" - -msgid "Removes spent time." -msgstr "" - -msgid "Removes the due date." -msgstr "" - -msgid "Removes time estimate." -msgstr "" - -msgid "Removing group will cause all child projects and resources to be removed." -msgstr "" - -msgid "Removing license…" -msgstr "" - -msgid "Removing the project will delete its repository and all related resources including issues, merge requests etc." -msgstr "" - -msgid "Rename" -msgstr "" - -msgid "Rename file" -msgstr "" - -msgid "Rename folder" -msgstr "" - -msgid "Reopen epic" -msgstr "" - -msgid "Reopen milestone" -msgstr "" - -msgid "Reopen this %{quick_action_target}" -msgstr "" - -msgid "Reopened this %{quick_action_target}." -msgstr "" - -msgid "Reopens this %{quick_action_target}." -msgstr "" - -msgid "Repair authentication" -msgstr "" - -msgid "Replace" -msgstr "" - -msgid "Replace all label(s)" -msgstr "" - -msgid "Replaced all labels with %{label_references} %{label_text}." -msgstr "" - -msgid "Reply by email" -msgstr "" - -msgid "Reply to comment" -msgstr "" - -msgid "Reply to this email directly or %{view_it_on_gitlab}." -msgstr "" - -msgid "Reply..." -msgstr "" - -msgid "Repo by URL" -msgstr "" - -msgid "Report abuse to admin" -msgstr "" - -msgid "Reporting" -msgstr "" - -msgid "Reports|%{failedString} and %{resolvedString}" -msgstr "" - -msgid "Reports|Actions" -msgstr "" - -msgid "Reports|Class" -msgstr "" - -msgid "Reports|Classname" -msgstr "" - -msgid "Reports|Confidence" -msgstr "" - -msgid "Reports|Execution time" -msgstr "" - -msgid "Reports|Failure" -msgstr "" - -msgid "Reports|Metrics reports are loading" -msgstr "" - -msgid "Reports|Metrics reports changed on %{numberOfChanges} %{pointsString}" -msgstr "" - -msgid "Reports|Metrics reports did not change" -msgstr "" - -msgid "Reports|Metrics reports failed loading results" -msgstr "" - -msgid "Reports|Severity" -msgstr "" - -msgid "Reports|System output" -msgstr "" - -msgid "Reports|Test summary" -msgstr "" - -msgid "Reports|Test summary failed loading results" -msgstr "" - -msgid "Reports|Test summary results are being parsed" -msgstr "" - -msgid "Reports|Vulnerability" -msgstr "" - -msgid "Reports|no changed test results" -msgstr "" - -msgid "Repository" -msgstr "" - -msgid "Repository Graph" -msgstr "" - -msgid "Repository Settings" -msgstr "" - -msgid "Repository URL" -msgstr "" - -msgid "Repository check was triggered." -msgstr "" - -msgid "Repository cleanup" -msgstr "" - -msgid "Repository cleanup has started. You will receive an email once the cleanup operation is complete." -msgstr "" - -msgid "Repository has no locks." -msgstr "" - -msgid "Repository maintenance" -msgstr "" - -msgid "Repository mirror" -msgstr "" - -msgid "Repository static objects" -msgstr "" - -msgid "Repository storage" -msgstr "" - -msgid "Repository: %{counter_repositories} / Wikis: %{counter_wikis} / Build Artifacts: %{counter_build_artifacts} / LFS: %{counter_lfs_objects}" -msgstr "" - -msgid "RepositorySettingsAccessLevel|Select" -msgstr "" - -msgid "Request Access" -msgstr "" - -msgid "Requested %{time_ago}" -msgstr "" - -msgid "Requests Profiles" -msgstr "" - -msgid "Requests to these domain(s)/address(es) on the local network will be allowed when local requests from hooks and services are not allowed. IP ranges such as 1:0:0:0:0:0:0:0/124 or 127.0.0.0/28 are supported. Domain wildcards are not supported currently. Use comma, semicolon, or newline to separate multiple entries. The whitelist can hold a maximum of 1000 entries. Domains should use IDNA encoding. Ex: example.com, 192.168.1.1, 127.0.0.0/28, xn--itlab-j1a.com." -msgstr "" - -msgid "Require all users in this group to setup Two-factor authentication" -msgstr "" - -msgid "Require all users to accept Terms of Service and Privacy Policy when they access GitLab." -msgstr "" - -msgid "Require approval from code owners" -msgstr "" - -msgid "Require user password to approve" -msgstr "" - -msgid "Require users to prove ownership of custom domains" -msgstr "" - -msgid "Requires approval from %{names}." -msgid_plural "Requires %{count} more approvals from %{names}." -msgstr[0] "" -msgstr[1] "" - -msgid "Requires approval." -msgid_plural "Requires %d more approvals." -msgstr[0] "" -msgstr[1] "" - -msgid "Resend confirmation email" -msgstr "" - -msgid "Resend invite" -msgstr "" - -msgid "Resend it" -msgstr "" - -msgid "Reset authorization key" -msgstr "" - -msgid "Reset authorization key?" -msgstr "" - -msgid "Reset health check access token" -msgstr "" - -msgid "Reset key" -msgstr "" - -msgid "Reset runners registration token" -msgstr "" - -msgid "Reset template" -msgstr "" - -msgid "Resetting the authorization key for this project will require updating the authorization key in every alert source it is enabled in." -msgstr "" - -msgid "Resetting the authorization key will invalidate the previous key. Existing alert configurations will need to be updated with the new key." -msgstr "" - -msgid "Resolve all threads in new issue" -msgstr "" - -msgid "Resolve conflicts on source branch" -msgstr "" - -msgid "Resolve discussion" -msgstr "" - -msgid "Resolve thread" -msgstr "" - -msgid "Resolved" -msgstr "" - -msgid "Resolved 1 discussion." -msgstr "" - -msgid "Resolved all discussions." -msgstr "" - -msgid "Resolved by %{name}" -msgstr "" - -msgid "Resolved by %{resolvedByName}" -msgstr "" - -msgid "Resolves IP addresses once and uses them to submit requests" -msgstr "" - -msgid "Response" -msgstr "" - -msgid "Response didn't include `service_desk_address`" -msgstr "" - -msgid "Response metrics (AWS ELB)" -msgstr "" - -msgid "Response metrics (Custom)" -msgstr "" - -msgid "Response metrics (HA Proxy)" -msgstr "" - -msgid "Response metrics (NGINX Ingress VTS)" -msgstr "" - -msgid "Response metrics (NGINX Ingress)" -msgstr "" - -msgid "Response metrics (NGINX)" -msgstr "" - -msgid "Restart Terminal" -msgstr "" - -msgid "Restrict access by IP address" -msgstr "" - -msgid "Restrict membership by email" -msgstr "" - -msgid "Resume" -msgstr "" - -msgid "Resume replication" -msgstr "" - -msgid "Retry" -msgstr "" - -msgid "Retry this job" -msgstr "" - -msgid "Retry this job in order to create the necessary resources." -msgstr "" - -msgid "Retry update" -msgstr "" - -msgid "Retry verification" -msgstr "" - -msgid "Reveal value" -msgid_plural "Reveal values" -msgstr[0] "" -msgstr[1] "" - -msgid "Reveal values" -msgstr "" - -msgid "Revert this commit" -msgstr "" - -msgid "Revert this merge request" -msgstr "" - -msgid "Review" -msgstr "" - -msgid "Review the process for configuring service providers in your identity provider — in this case, GitLab is the \"service provider\" or \"relying party\"." -msgstr "" - -msgid "Reviewing" -msgstr "" - -msgid "Reviewing (merge request !%{mergeRequestId})" -msgstr "" - -msgid "Revoke" -msgstr "" - -msgid "Revoked impersonation token %{token_name}!" -msgstr "" - -msgid "Revoked personal access token %{personal_access_token_name}!" -msgstr "" - -msgid "RightSidebar|adding a" -msgstr "" - -msgid "RightSidebar|deleting the" -msgstr "" - -msgid "Roadmap" -msgstr "" - -msgid "Rollback" -msgstr "" - -msgid "Run CI/CD pipelines for external repositories" -msgstr "" - -msgid "Run housekeeping" -msgstr "" - -msgid "Run tests against your code live using the Web Terminal" -msgstr "" - -msgid "Run untagged jobs" -msgstr "" - -msgid "Runner cannot be assigned to other projects" -msgstr "" - -msgid "Runner runs jobs from all unassigned projects" -msgstr "" - -msgid "Runner runs jobs from all unassigned projects in its group" -msgstr "" - -msgid "Runner runs jobs from assigned projects" -msgstr "" - -msgid "Runner token" -msgstr "" - -msgid "Runner was not updated." -msgstr "" - -msgid "Runner was successfully updated." -msgstr "" - -msgid "Runner will not receive any new jobs" -msgstr "" - -msgid "Runners" -msgstr "" - -msgid "Runners API" -msgstr "" - -msgid "Runners activated for this project" -msgstr "" - -msgid "Runners can be placed on separate users, servers, and even on your local machine." -msgstr "" - -msgid "Runners can be placed on separate users, servers, even on your local machine." -msgstr "" - -msgid "Runners currently online: %{active_runners_count}" -msgstr "" - -msgid "Runners page" -msgstr "" - -msgid "Runners page." -msgstr "" - -msgid "Runners|You have used %{quotaUsed} out of %{quotaLimit} of your shared Runners pipeline minutes." -msgstr "" - -msgid "Running" -msgstr "" - -msgid "Running…" -msgstr "" - -msgid "Runs a number of housekeeping tasks within the current repository, such as compressing file revisions and removing unreachable objects." -msgstr "" - -msgid "SAML SSO" -msgstr "" - -msgid "SAML SSO for %{group_name}" -msgstr "" - -msgid "SAML for %{group_name}" -msgstr "" - -msgid "SSH Key" -msgstr "" - -msgid "SSH Keys" -msgstr "" - -msgid "SSH Keys Help" -msgstr "" - -msgid "SSH host keys" -msgstr "" - -msgid "SSH keys allow you to establish a secure connection between your computer and GitLab." -msgstr "" - -msgid "SSH public key" -msgstr "" - -msgid "SSL Verification" -msgstr "" - -msgid "Saturday" -msgstr "" - -msgid "Save" -msgstr "" - -msgid "Save Changes" -msgstr "" - -msgid "Save anyway" -msgstr "" - -msgid "Save application" -msgstr "" - -msgid "Save changes" -msgstr "" - -msgid "Save changes before testing" -msgstr "" - -msgid "Save comment" -msgstr "" - -msgid "Save password" -msgstr "" - -msgid "Save pipeline schedule" -msgstr "" - -msgid "Save variables" -msgstr "" - -msgid "Saving" -msgstr "" - -msgid "Saving project." -msgstr "" - -msgid "Schedule a new pipeline" -msgstr "" - -msgid "Scheduled" -msgstr "" - -msgid "Scheduled to merge this merge request when the pipeline succeeds." -msgstr "" - -msgid "Schedules" -msgstr "" - -msgid "Scheduling" -msgstr "" - -msgid "Scheduling Pipelines" -msgstr "" - -msgid "Scope" -msgstr "" - -msgid "Scope not supported with disabled 'users_search' feature!" -msgstr "" - -msgid "Scoped issue boards" -msgstr "" - -msgid "Scoped label" -msgstr "" - -msgid "Scopes" -msgstr "" - -msgid "Scroll down" -msgstr "" - -msgid "Scroll down to Google Code Project Hosting and enable the switch on the right." -msgstr "" - -msgid "Scroll left" -msgstr "" - -msgid "Scroll right" -msgstr "" - -msgid "Scroll to bottom" -msgstr "" - -msgid "Scroll to top" -msgstr "" - -msgid "Scroll up" -msgstr "" - -msgid "Search" -msgstr "" - -msgid "Search an environment spec" -msgstr "" - -msgid "Search branches" -msgstr "" - -msgid "Search branches and tags" -msgstr "" - -msgid "Search files" -msgstr "" - -msgid "Search for a LDAP group" -msgstr "" - -msgid "Search for a group" -msgstr "" - -msgid "Search for a user" -msgstr "" - -msgid "Search for projects, issues, etc." -msgstr "" - -msgid "Search forks" -msgstr "" - -msgid "Search groups" -msgstr "" - -msgid "Search merge requests" -msgstr "" - -msgid "Search milestones" -msgstr "" - -msgid "Search or filter results..." -msgstr "" - -msgid "Search or jump to…" -msgstr "" - -msgid "Search project" -msgstr "" - -msgid "Search projects" -msgstr "" - -msgid "Search projects..." -msgstr "" - -msgid "Search users" -msgstr "" - -msgid "Search users or groups" -msgstr "" - -msgid "Search your projects" -msgstr "" - -msgid "SearchAutocomplete|All GitLab" -msgstr "" - -msgid "SearchAutocomplete|Issues I've created" -msgstr "" - -msgid "SearchAutocomplete|Issues assigned to me" -msgstr "" - -msgid "SearchAutocomplete|Merge requests I've created" -msgstr "" - -msgid "SearchAutocomplete|Merge requests assigned to me" -msgstr "" - -msgid "SearchAutocomplete|in all GitLab" -msgstr "" - -msgid "SearchAutocomplete|in this group" -msgstr "" - -msgid "SearchAutocomplete|in this project" -msgstr "" - -msgid "SearchCodeResults|in" -msgstr "" - -msgid "SearchCodeResults|of %{link_to_project}" -msgstr "" - -msgid "SearchResults|Showing %{count} %{scope} for \"%{term}\"" -msgstr "" - -msgid "SearchResults|Showing %{from} - %{to} of %{count} %{scope} for \"%{term}\"" -msgstr "" - -msgid "SearchResults|comment" -msgid_plural "SearchResults|comments" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|commit" -msgid_plural "SearchResults|commits" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|issue" -msgid_plural "SearchResults|issues" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|merge request" -msgid_plural "SearchResults|merge requests" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|milestone" -msgid_plural "SearchResults|milestones" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|project" -msgid_plural "SearchResults|projects" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|result" -msgid_plural "SearchResults|results" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|snippet" -msgid_plural "SearchResults|snippets" -msgstr[0] "" -msgstr[1] "" - -msgid "SearchResults|user" -msgid_plural "SearchResults|users" -msgstr[0] "" -msgstr[1] "" - -msgid "Seats currently in use" -msgstr "" - -msgid "Seats in license" -msgstr "" - -msgid "Secret" -msgstr "" - -msgid "Security" -msgstr "" - -msgid "Security & Compliance" -msgstr "" - -msgid "Security Dashboard" -msgstr "" - -msgid "Security Dashboard|Error fetching the dashboard data. Please check your network connection and try again." -msgstr "" - -msgid "Security Dashboard|Error fetching the vulnerability counts. Please check your network connection and try again." -msgstr "" - -msgid "Security Dashboard|Error fetching the vulnerability list. Please check your network connection and try again." -msgstr "" - -msgid "Security Dashboard|Issue Created" -msgstr "" - -msgid "Security Reports|Comment added to '%{vulnerabilityName}'" -msgstr "" - -msgid "Security Reports|Comment deleted on '%{vulnerabilityName}'" -msgstr "" - -msgid "Security Reports|Comment edited on '%{vulnerabilityName}'" -msgstr "" - -msgid "Security Reports|Create issue" -msgstr "" - -msgid "Security Reports|Dismiss vulnerability" -msgstr "" - -msgid "Security Reports|Dismissed '%{vulnerabilityName}'" -msgstr "" - -msgid "Security Reports|Either you don't have permission to view this dashboard or the dashboard has not been setup. Please check your permission settings with your administrator or check your dashboard configurations to proceed." -msgstr "" - -msgid "Security Reports|Learn more about setting up your dashboard" -msgstr "" - -msgid "Security Reports|More info" -msgstr "" - -msgid "Security Reports|Oops, something doesn't seem right." -msgstr "" - -msgid "Security Reports|There was an error adding the comment." -msgstr "" - -msgid "Security Reports|There was an error creating the issue." -msgstr "" - -msgid "Security Reports|There was an error creating the merge request." -msgstr "" - -msgid "Security Reports|There was an error deleting the comment." -msgstr "" - -msgid "Security Reports|There was an error dismissing the vulnerability." -msgstr "" - -msgid "Security Reports|There was an error reverting the dismissal." -msgstr "" - -msgid "Security Reports|There was an error reverting this dismissal." -msgstr "" - -msgid "Security Reports|Undo dismiss" -msgstr "" - -msgid "Security Reports|We've found no vulnerabilities for your group" -msgstr "" - -msgid "Security Reports|While it's rare to have no vulnerabilities for your group, it can happen. In any event, we ask that you please double check your settings to make sure you've set up your dashboard correctly." -msgstr "" - -msgid "Security dashboard" -msgstr "" - -msgid "SecurityDashboard| The security dashboard displays the latest security report. Use it to find and fix vulnerabilities." -msgstr "" - -msgid "SecurityDashboard|Confidence" -msgstr "" - -msgid "SecurityDashboard|Hide dismissed" -msgstr "" - -msgid "SecurityDashboard|Monitor vulnerabilities in your code" -msgstr "" - -msgid "SecurityDashboard|Pipeline %{pipelineLink} triggered" -msgstr "" - -msgid "SecurityDashboard|Project" -msgstr "" - -msgid "SecurityDashboard|Report type" -msgstr "" - -msgid "SecurityDashboard|Severity" -msgstr "" - -msgid "See metrics" -msgstr "" - -msgid "See the affected projects in the GitLab admin panel" -msgstr "" - -msgid "Select" -msgstr "" - -msgid "Select Archive Format" -msgstr "" - -msgid "Select GitLab project to link with your Slack team" -msgstr "" - -msgid "Select Page" -msgstr "" - -msgid "Select a file from the left sidebar to begin editing. Afterwards, you'll be able to commit your changes." -msgstr "" - -msgid "Select a group to invite" -msgstr "" - -msgid "Select a label" -msgstr "" - -msgid "Select a namespace to fork the project" -msgstr "" - -msgid "Select a new namespace" -msgstr "" - -msgid "Select a project" -msgstr "" - -msgid "Select a project to read Insights configuration file" -msgstr "" - -msgid "Select a repository" -msgstr "" - -msgid "Select a template repository" -msgstr "" - -msgid "Select a timezone" -msgstr "" - -msgid "Select all" -msgstr "" - -msgid "Select an existing Kubernetes cluster or create a new one" -msgstr "" - -msgid "Select branch/tag" -msgstr "" - -msgid "Select group or project" -msgstr "" - -msgid "Select labels" -msgstr "" - -msgid "Select merge moment" -msgstr "" - -msgid "Select milestone" -msgstr "" - -msgid "Select private project" -msgstr "" - -msgid "Select project" -msgstr "" - -msgid "Select project and zone to choose machine type" -msgstr "" - -msgid "Select project to choose zone" -msgstr "" - -msgid "Select projects" -msgstr "" - -msgid "Select projects you want to import." -msgstr "" - -msgid "Select source branch" -msgstr "" - -msgid "Select target branch" -msgstr "" - -msgid "Select the branch you want to set as the default for this project. All merge requests and commits will automatically be made against this branch unless you specify a different one." -msgstr "" - -msgid "Select the custom project template source group." -msgstr "" - -msgid "Select timeframe" -msgstr "" - -msgid "Select user" -msgstr "" - -msgid "Selected levels cannot be used by non-admin users for groups, projects or snippets. If the public level is restricted, user profiles are only visible to logged in users." -msgstr "" - -msgid "Selecting a GitLab user will add a link to the GitLab user in the descriptions of issues and comments (e.g. \"By @johnsmith\"). It will also associate and/or assign these issues and comments with the selected user." -msgstr "" - -msgid "Send a separate email notification to Developers." -msgstr "" - -msgid "Send confirmation email" -msgstr "" - -msgid "Send email" -msgstr "" - -msgid "Send report" -msgstr "" - -msgid "Send usage data" -msgstr "" - -msgid "Sentry API URL" -msgstr "" - -msgid "Sep" -msgstr "" - -msgid "Separate topics with commas." -msgstr "" - -msgid "September" -msgstr "" - -msgid "SeriesFinalConjunction|and" -msgstr "" - -msgid "Serve repository static objects (e.g. archives, blobs, ...) from an external storage (e.g. a CDN)." -msgstr "" - -msgid "Server supports batch API only, please update your Git LFS client to version 1.0.1 and up." -msgstr "" - -msgid "Server version" -msgstr "" - -msgid "Serverless" -msgstr "" - -msgid "ServerlessDetails|Function invocation metrics require Prometheus to be installed first." -msgstr "" - -msgid "ServerlessDetails|Install Prometheus" -msgstr "" - -msgid "ServerlessDetails|Invocation metrics loading or not available at this time." -msgstr "" - -msgid "ServerlessDetails|Invocations" -msgstr "" - -msgid "ServerlessDetails|Kubernetes Pods" -msgstr "" - -msgid "ServerlessDetails|More information" -msgstr "" - -msgid "ServerlessDetails|No pods loaded at this time." -msgstr "" - -msgid "ServerlessDetails|Number of Kubernetes pods in use over time based on necessity." -msgstr "" - -msgid "ServerlessDetails|pod in use" -msgstr "" - -msgid "ServerlessDetails|pods in use" -msgstr "" - -msgid "ServerlessURL|Copy URL to clipboard" -msgstr "" - -msgid "Serverless| In order to start using functions as a service, you must first install Knative on your Kubernetes cluster." -msgstr "" - -msgid "Serverless|Getting started with serverless" -msgstr "" - -msgid "Serverless|If you believe none of these apply, please check back later as the function data may be in the process of becoming available." -msgstr "" - -msgid "Serverless|Install Knative" -msgstr "" - -msgid "Serverless|Learn more about Serverless" -msgstr "" - -msgid "Serverless|No functions available" -msgstr "" - -msgid "Serverless|The deploy job has not finished." -msgstr "" - -msgid "Serverless|The functions listed in the %{startTag}serverless.yml%{endTag} file don't match the namespace of your cluster." -msgstr "" - -msgid "Serverless|There is currently no function data available from Knative. This could be for a variety of reasons including:" -msgstr "" - -msgid "Serverless|Your %{startTag}.gitlab-ci.yml%{endTag} file is not properly configured." -msgstr "" - -msgid "Serverless|Your repository does not have a corresponding %{startTag}serverless.yml%{endTag} file." -msgstr "" - -msgid "Service" -msgstr "" - -msgid "Service Desk" -msgstr "" - -msgid "Service Templates" -msgstr "" - -msgid "Service URL" -msgstr "" - -msgid "Session duration (minutes)" -msgstr "" - -msgid "Session expiration, projects limit and attachment size." -msgstr "" - -msgid "Set %{epic_ref} as parent epic." -msgstr "" - -msgid "Set a default template for issue descriptions." -msgstr "" - -msgid "Set a number of approvals required, the approvers and other approval settings." -msgstr "" - -msgid "Set a password on your account to pull or push via %{protocol}." -msgstr "" - -msgid "Set a template repository for projects in this group" -msgstr "" - -msgid "Set default and restrict visibility levels. Configure import sources and git access protocol." -msgstr "" - -msgid "Set due date" -msgstr "" - -msgid "Set instance-wide template repository" -msgstr "" - -msgid "Set max session time for web terminal." -msgstr "" - -msgid "Set milestone" -msgstr "" - -msgid "Set new password" -msgstr "" - -msgid "Set notification email for abuse reports." -msgstr "" - -msgid "Set parent epic to an epic" -msgstr "" - -msgid "Set requirements for a user to sign-in. Enable mandatory two-factor authentication." -msgstr "" - -msgid "Set target branch" -msgstr "" - -msgid "Set target branch to %{branch_name}." -msgstr "" - -msgid "Set the default expiration time for each job's artifacts. 0 for unlimited. The default unit is in seconds, but you can define an alternative. For example: 4 mins 2 sec, 2h42min." -msgstr "" - -msgid "Set the due date to %{due_date}." -msgstr "" - -msgid "Set the duration for which the jobs will be considered as old and expired. Once that time passes, the jobs will be archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years." -msgstr "" - -msgid "Set the maximum file size for each job's artifacts" -msgstr "" - -msgid "Set the maximum number of pipeline minutes that a group can use on shared Runners per month. 0 for unlimited." -msgstr "" - -msgid "Set the milestone to %{milestone_reference}." -msgstr "" - -msgid "Set time estimate" -msgstr "" - -msgid "Set time estimate to %{time_estimate}." -msgstr "" - -msgid "Set up CI/CD" -msgstr "" - -msgid "Set up a %{type} Runner manually" -msgstr "" - -msgid "Set up a specific Runner automatically" -msgstr "" - -msgid "Set up assertions/attributes/claims (email, first_name, last_name) and NameID according to %{docsLinkStart}the documentation %{icon}%{docsLinkEnd}" -msgstr "" - -msgid "Set up new U2F device" -msgstr "" - -msgid "Set up new password" -msgstr "" - -msgid "Set up your project to automatically push and/or pull changes to/from another repository. Branches, tags, and commits will be synced automatically." -msgstr "" - -msgid "Set weight" -msgstr "" - -msgid "Set weight to %{weight}." -msgstr "" - -msgid "SetPasswordToCloneLink|set a password" -msgstr "" - -msgid "SetStatusModal|Add status emoji" -msgstr "" - -msgid "SetStatusModal|Clear status" -msgstr "" - -msgid "SetStatusModal|Edit status" -msgstr "" - -msgid "SetStatusModal|Remove status" -msgstr "" - -msgid "SetStatusModal|Set a status" -msgstr "" - -msgid "SetStatusModal|Set status" -msgstr "" - -msgid "SetStatusModal|Sorry, we weren't able to set your status. Please try again later." -msgstr "" - -msgid "SetStatusModal|What's your status?" -msgstr "" - -msgid "Sets %{epic_ref} as parent epic." -msgstr "" - -msgid "Sets target branch to %{branch_name}." -msgstr "" - -msgid "Sets the due date to %{due_date}." -msgstr "" - -msgid "Sets the milestone to %{milestone_reference}." -msgstr "" - -msgid "Sets time estimate to %{time_estimate}." -msgstr "" - -msgid "Sets weight to %{weight}." -msgstr "" - -msgid "Settings" -msgstr "" - -msgid "Share" -msgstr "" - -msgid "Share the %{sso_label} with members so they can sign in to your group through your identity provider" -msgstr "" - -msgid "Shared Runners" -msgstr "" - -msgid "Shared projects" -msgstr "" - -msgid "Shared runners help link" -msgstr "" - -msgid "SharedRunnersMinutesSettings|By resetting the pipeline minutes for this namespace, the currently used minutes will be set to zero." -msgstr "" - -msgid "SharedRunnersMinutesSettings|Reset pipeline minutes" -msgstr "" - -msgid "SharedRunnersMinutesSettings|Reset used pipeline minutes" -msgstr "" - -msgid "Sherlock Transactions" -msgstr "" - -msgid "Should you ever lose your phone or access to your one time password secret, each of these recovery codes can be used one time each to regain access to your account. Please save them in a safe place, or you %{b_start}will%{b_end} lose access to your account." -msgstr "" - -msgid "Show all activity" -msgstr "" - -msgid "Show archived projects" -msgstr "" - -msgid "Show archived projects only" -msgstr "" - -msgid "Show command" -msgstr "" - -msgid "Show comments" -msgstr "" - -msgid "Show comments only" -msgstr "" - -msgid "Show commit description" -msgstr "" - -msgid "Show complete raw log" -msgstr "" - -msgid "Show file browser" -msgstr "" - -msgid "Show latest version" -msgstr "" - -msgid "Show parent pages" -msgstr "" - -msgid "Show parent subgroups" -msgstr "" - -msgid "Show whitespace changes" -msgstr "" - -msgid "Showing %d event" -msgid_plural "Showing %d events" -msgstr[0] "" -msgstr[1] "" - -msgid "Showing Latest Version" -msgstr "" - -msgid "Showing Version #%{versionNumber}" -msgstr "" - -msgid "Showing all issues" -msgstr "" - -msgid "Showing last %{size} of log -" -msgstr "" - -msgid "Side-by-side" -msgstr "" - -msgid "Sidebar|Change weight" -msgstr "" - -msgid "Sidebar|None" -msgstr "" - -msgid "Sidebar|Only numeral characters allowed" -msgstr "" - -msgid "Sidebar|Weight" -msgstr "" - -msgid "Sign in" -msgstr "" - -msgid "Sign in / Register" -msgstr "" - -msgid "Sign in to \"%{group_name}\"" -msgstr "" - -msgid "Sign in using smart card" -msgstr "" - -msgid "Sign in via 2FA code" -msgstr "" - -msgid "Sign in with Google" -msgstr "" - -msgid "Sign in with Single Sign-On" -msgstr "" - -msgid "Sign in with smart card" -msgstr "" - -msgid "Sign out" -msgstr "" - -msgid "Sign out & Register" -msgstr "" - -msgid "Sign up" -msgstr "" - -msgid "Sign up was successful! Please confirm your email to sign in." -msgstr "" - -msgid "Sign-in restrictions" -msgstr "" - -msgid "Sign-up restrictions" -msgstr "" - -msgid "SignUp|Name is too long (maximum is %{max_length} characters)." -msgstr "" - -msgid "SignUp|Username is too long (maximum is %{max_length} characters)." -msgstr "" - -msgid "Signed in" -msgstr "" - -msgid "Signed in with %{authentication} authentication" -msgstr "" - -msgid "Signing in using %{label} has been disabled" -msgstr "" - -msgid "Signing in using your %{label} account without a pre-existing GitLab account is not allowed." -msgstr "" - -msgid "Similar issues" -msgstr "" - -msgid "Single or combined queries" -msgstr "" - -msgid "Site ID" -msgstr "" - -msgid "Size" -msgstr "" - -msgid "Size and domain settings for static websites" -msgstr "" - -msgid "Size limit per repository (MB)" -msgstr "" - -msgid "Skip this for now" -msgstr "" - -msgid "Slack application" -msgstr "" - -msgid "Slack integration allows you to interact with GitLab via slash commands in a chat window." -msgstr "" - -msgid "SlackService|2. Paste the Token into the field below" -msgstr "" - -msgid "SlackService|3. Select the Active checkbox, press Save changes and start using GitLab inside Slack!" -msgstr "" - -msgid "SlackService|Fill in the word that works best for your team." -msgstr "" - -msgid "SlackService|See list of available commands in Slack after setting up this service, by entering" -msgstr "" - -msgid "SlackService|This service allows users to perform common operations on this project by entering slash commands in Slack." -msgstr "" - -msgid "Slower but makes sure the project workspace is pristine as it clones the repository from scratch for every job" -msgstr "" - -msgid "Smartcard" -msgstr "" - -msgid "Smartcard authentication failed: client certificate header is missing." -msgstr "" - -msgid "Snippet Contents" -msgstr "" - -msgid "Snippets" -msgstr "" - -msgid "SnippetsEmptyState|Explore public snippets" -msgstr "" - -msgid "SnippetsEmptyState|New snippet" -msgstr "" - -msgid "SnippetsEmptyState|No snippets found" -msgstr "" - -msgid "SnippetsEmptyState|Snippets are small pieces of code or notes that you want to keep." -msgstr "" - -msgid "SnippetsEmptyState|There are no snippets to show." -msgstr "" - -msgid "SnippetsEmptyState|They can be either public or private." -msgstr "" - -msgid "Snowplow" -msgstr "" - -msgid "Some email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead." -msgstr "" - -msgid "Someone edited the issue at the same time you did. Please check out %{linkStart}the issue%{linkEnd} and make sure your changes will not unintentionally remove theirs." -msgstr "" - -msgid "Someone edited this %{issueType} at the same time you did. The description has been updated and you will need to make your changes again." -msgstr "" - -msgid "Someone edited this merge request at the same time you did. Please refresh the page to see changes." -msgstr "" - -msgid "Something went wrong on our end" -msgstr "" - -msgid "Something went wrong on our end." -msgstr "" - -msgid "Something went wrong on our end. Please try again!" -msgstr "" - -msgid "Something went wrong on our end. Please try again." -msgstr "" - -msgid "Something went wrong trying to change the confidentiality of this issue" -msgstr "" - -msgid "Something went wrong trying to change the locked state of this %{issuableDisplayName}" -msgstr "" - -msgid "Something went wrong when toggling the button" -msgstr "" - -msgid "Something went wrong while adding your award. Please try again." -msgstr "" - -msgid "Something went wrong while adding your comment. Please try again." -msgstr "" - -msgid "Something went wrong while applying the suggestion. Please try again." -msgstr "" - -msgid "Something went wrong while closing the %{issuable}. Please try again later" -msgstr "" - -msgid "Something went wrong while deleting the source branch. Please try again." -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 %{listType} list" -msgstr "" - -msgid "Something went wrong while fetching comments. Please try again." -msgstr "" - -msgid "Something went wrong while fetching group member contributions" -msgstr "" - -msgid "Something went wrong while fetching latest comments." -msgstr "" - -msgid "Something went wrong while fetching related merge requests." -msgstr "" - -msgid "Something went wrong while fetching the environments for this merge request. Please try again." -msgstr "" - -msgid "Something went wrong while fetching the projects." -msgstr "" - -msgid "Something went wrong while fetching the registry list." -msgstr "" - -msgid "Something went wrong while merging this merge request. Please try again." -msgstr "" - -msgid "Something went wrong while reopening the %{issuable}. Please try again later" -msgstr "" - -msgid "Something went wrong while resolving this discussion. Please try again." -msgstr "" - -msgid "Something went wrong while stopping this environment. Please try again." -msgstr "" - -msgid "Something went wrong, unable to add %{project} to dashboard" -msgstr "" - -msgid "Something went wrong, unable to get projects" -msgstr "" - -msgid "Something went wrong, unable to remove project" -msgstr "" - -msgid "Something went wrong, unable to search projects" -msgstr "" - -msgid "Something went wrong. Please try again." -msgstr "" - -msgid "Something went wrong. Try again later." -msgstr "" - -msgid "Sorry, no epics matched your search" -msgstr "" - -msgid "Sorry, no projects matched your search" -msgstr "" - -msgid "Sorry, your filter produced no results" -msgstr "" - -msgid "Sort by" -msgstr "" - -msgid "Sort direction" -msgstr "" - -msgid "SortOptions|Access level, ascending" -msgstr "" - -msgid "SortOptions|Access level, descending" -msgstr "" - -msgid "SortOptions|Created date" -msgstr "" - -msgid "SortOptions|Due date" -msgstr "" - -msgid "SortOptions|Due later" -msgstr "" - -msgid "SortOptions|Due soon" -msgstr "" - -msgid "SortOptions|Label priority" -msgstr "" - -msgid "SortOptions|Largest group" -msgstr "" - -msgid "SortOptions|Largest repository" -msgstr "" - -msgid "SortOptions|Last Contact" -msgstr "" - -msgid "SortOptions|Last created" -msgstr "" - -msgid "SortOptions|Last joined" -msgstr "" - -msgid "SortOptions|Last updated" -msgstr "" - -msgid "SortOptions|Least popular" -msgstr "" - -msgid "SortOptions|Less weight" -msgstr "" - -msgid "SortOptions|Manual" -msgstr "" - -msgid "SortOptions|Milestone due date" -msgstr "" - -msgid "SortOptions|Milestone due later" -msgstr "" - -msgid "SortOptions|Milestone due soon" -msgstr "" - -msgid "SortOptions|More weight" -msgstr "" - -msgid "SortOptions|Most popular" -msgstr "" - -msgid "SortOptions|Most stars" -msgstr "" - -msgid "SortOptions|Name" -msgstr "" - -msgid "SortOptions|Name, ascending" -msgstr "" - -msgid "SortOptions|Name, descending" -msgstr "" - -msgid "SortOptions|Oldest created" -msgstr "" - -msgid "SortOptions|Oldest joined" -msgstr "" - -msgid "SortOptions|Oldest last activity" -msgstr "" - -msgid "SortOptions|Oldest sign in" -msgstr "" - -msgid "SortOptions|Oldest starred" -msgstr "" - -msgid "SortOptions|Oldest updated" -msgstr "" - -msgid "SortOptions|Popularity" -msgstr "" - -msgid "SortOptions|Priority" -msgstr "" - -msgid "SortOptions|Recent last activity" -msgstr "" - -msgid "SortOptions|Recent sign in" -msgstr "" - -msgid "SortOptions|Recently starred" -msgstr "" - -msgid "SortOptions|Sort direction" -msgstr "" - -msgid "SortOptions|Stars" -msgstr "" - -msgid "SortOptions|Start date" -msgstr "" - -msgid "SortOptions|Start later" -msgstr "" - -msgid "SortOptions|Start soon" -msgstr "" - -msgid "SortOptions|Weight" -msgstr "" - -msgid "Source" -msgstr "" - -msgid "Source (branch or tag)" -msgstr "" - -msgid "Source code" -msgstr "" - -msgid "Source is not available" -msgstr "" - -msgid "Source project cannot be found." -msgstr "" - -msgid "Spam Logs" -msgstr "" - -msgid "Spam and Anti-bot Protection" -msgstr "" - -msgid "Spam log successfully submitted as ham." -msgstr "" - -msgid "Specific Runners" -msgstr "" - -msgid "Specify an e-mail address regex pattern to identify default internal users." -msgstr "" - -msgid "Specify the following URL during the Runner setup:" -msgstr "" - -msgid "Squash commit message" -msgstr "" - -msgid "Squash commits" -msgstr "" - -msgid "Stage" -msgstr "" - -msgid "Stage & Commit" -msgstr "" - -msgid "Stage all changes" -msgstr "" - -msgid "Stage changes" -msgstr "" - -msgid "Staged" -msgstr "" - -msgid "Staged %{type}" -msgstr "" - -msgid "Star a label to make it a priority label. Order the prioritized labels to change their relative priority, by dragging." -msgstr "" - -msgid "Star labels to start sorting by priority" -msgstr "" - -msgid "Star toggle failed. Try again later." -msgstr "" - -msgid "StarProject|Star" -msgstr "" - -msgid "Starred Projects" -msgstr "" - -msgid "Starred Projects' Activity" -msgstr "" - -msgid "Starred projects" -msgstr "" - -msgid "StarredProjectsEmptyState|Visit a project page and press on a star icon. Then, you can find the project on this page." -msgstr "" - -msgid "StarredProjectsEmptyState|You don't have starred projects yet." -msgstr "" - -msgid "Starrers" -msgstr "" - -msgid "Stars" -msgstr "" - -msgid "Start GitLab Ultimate trial" -msgstr "" - -msgid "Start Web Terminal" -msgstr "" - -msgid "Start a %{new_merge_request} with these changes" -msgstr "" - -msgid "Start a new discussion..." -msgstr "" - -msgid "Start a new merge request" -msgstr "" - -msgid "Start a review" -msgstr "" - -msgid "Start and due date" -msgstr "" - -msgid "Start by choosing a group to see how your team is spending time. You can then drill down to the project level." -msgstr "" - -msgid "Start by choosing a group to start exploring the merge requests in that group. You can then proceed to filter by projects, labels, milestones, authors and assignees." -msgstr "" - -msgid "Start cleanup" -msgstr "" - -msgid "Start date" -msgstr "" - -msgid "Start merge train" -msgstr "" - -msgid "Start merge train when pipeline succeeds" -msgstr "" - -msgid "Start search" -msgstr "" - -msgid "Start the Runner!" -msgstr "" - -msgid "Start thread" -msgstr "" - -msgid "Start thread & close %{noteable_name}" -msgstr "" - -msgid "Start thread & reopen %{noteable_name}" -msgstr "" - -msgid "Start your trial" -msgstr "" - -msgid "Started" -msgstr "" - -msgid "Started %{startsIn}" -msgstr "" - -msgid "Started asynchronous removal of all repository check states." -msgstr "" - -msgid "Starting..." -msgstr "" - -msgid "Starts %{startsIn}" -msgstr "" - -msgid "Starts at (UTC)" -msgstr "" - -msgid "State your message to activate" -msgstr "" - -msgid "Statistics" -msgstr "" - -msgid "Status" -msgstr "" - -msgid "Status:" -msgstr "" - -msgid "Stay updated about the performance and health of your environment by configuring Prometheus to monitor your deployments." -msgstr "" - -msgid "Stop Terminal" -msgstr "" - -msgid "Stop environment" -msgstr "" - -msgid "Stop impersonation" -msgstr "" - -msgid "Stop this environment" -msgstr "" - -msgid "Stopped" -msgstr "" - -msgid "Stopping this environment is currently not possible as a deployment is in progress" -msgstr "" - -msgid "Stopping..." -msgstr "" - -msgid "Storage" -msgstr "" - -msgid "Storage:" -msgstr "" - -msgid "StorageSize|Unknown" -msgstr "" - -msgid "SubgroupCreationLevel|Allowed to create subgroups" -msgstr "" - -msgid "SubgroupCreationlevel|Allowed to create subgroups" -msgstr "" - -msgid "SubgroupCreationlevel|Maintainers" -msgstr "" - -msgid "SubgroupCreationlevel|Owners" -msgstr "" - -msgid "Subgroups" -msgstr "" - -msgid "Subgroups and projects" -msgstr "" - -msgid "Subkeys" -msgstr "" - -msgid "Submit as spam" -msgstr "" - -msgid "Submit feedback" -msgstr "" - -msgid "Submit issue" -msgstr "" - -msgid "Submit review" -msgstr "" - -msgid "Submit search" -msgstr "" - -msgid "Subscribe" -msgstr "" - -msgid "Subscribe at group level" -msgstr "" - -msgid "Subscribe at project level" -msgstr "" - -msgid "Subscribe to RSS feed" -msgstr "" - -msgid "Subscribe to calendar" -msgstr "" - -msgid "Subscribed" -msgstr "" - -msgid "Subscribed to this %{quick_action_target}." -msgstr "" - -msgid "Subscribes to this %{quick_action_target}." -msgstr "" - -msgid "Subscription" -msgstr "" - -msgid "SubscriptionTable|Billing" -msgstr "" - -msgid "SubscriptionTable|Free" -msgstr "" - -msgid "SubscriptionTable|GitLab allows you to continue using your subscription even if you exceed the number of seats you purchased. You will be required to pay for these seats upon renewal." -msgstr "" - -msgid "SubscriptionTable|Last invoice" -msgstr "" - -msgid "SubscriptionTable|Loading subscriptions" -msgstr "" - -msgid "SubscriptionTable|Manage" -msgstr "" - -msgid "SubscriptionTable|Max seats used" -msgstr "" - -msgid "SubscriptionTable|Next invoice" -msgstr "" - -msgid "SubscriptionTable|Seats currently in use" -msgstr "" - -msgid "SubscriptionTable|Seats in subscription" -msgstr "" - -msgid "SubscriptionTable|Seats owed" -msgstr "" - -msgid "SubscriptionTable|Subscription end date" -msgstr "" - -msgid "SubscriptionTable|Subscription start date" -msgstr "" - -msgid "SubscriptionTable|This is the last time the GitLab.com team was in contact with you to settle any outstanding balances." -msgstr "" - -msgid "SubscriptionTable|This is the maximum number of users that have existed at the same time since this subscription started." -msgstr "" - -msgid "SubscriptionTable|This is the next date when the GitLab.com team is scheduled to get in contact with you to settle any outstanding balances." -msgstr "" - -msgid "SubscriptionTable|This is the number of seats you will be required to purchase if you update to a paid plan." +msgid "Search forks" msgstr "" -msgid "SubscriptionTable|Trial" +msgid "Search groups" msgstr "" -msgid "SubscriptionTable|Trial end date" +msgid "Search merge requests" msgstr "" -msgid "SubscriptionTable|Trial start date" +msgid "Search milestones" msgstr "" -msgid "SubscriptionTable|Upgrade" +msgid "Search or filter results..." msgstr "" -msgid "SubscriptionTable|Usage" +msgid "Search or jump to…" msgstr "" -msgid "SubscriptionTable|Usage count is performed once a day at 12:00 PM." +msgid "Search project" msgstr "" -msgid "Subtracted" +msgid "Search projects" msgstr "" -msgid "Subtracts" +msgid "Search projects..." msgstr "" -msgid "Successfully blocked" +msgid "Search users" msgstr "" -msgid "Successfully confirmed" +msgid "Search your projects" msgstr "" -msgid "Successfully deleted U2F device." +msgid "SearchAutocomplete|All GitLab" msgstr "" -msgid "Successfully removed email." +msgid "SearchAutocomplete|Issues I've created" msgstr "" -msgid "Successfully scheduled a pipeline to run. Go to the %{pipelines_link_start}Pipelines page%{pipelines_link_end} for details." +msgid "SearchAutocomplete|Issues assigned to me" msgstr "" -msgid "Successfully unblocked" +msgid "SearchAutocomplete|Merge requests I've created" msgstr "" -msgid "Successfully unlocked" +msgid "SearchAutocomplete|Merge requests assigned to me" msgstr "" -msgid "Suggest code changes which are immediately applied. Try it out!" +msgid "SearchAutocomplete|in all GitLab" msgstr "" -msgid "Suggested change" +msgid "SearchAutocomplete|in this group" msgstr "" -msgid "SuggestedColors|Bright green" +msgid "SearchAutocomplete|in this project" msgstr "" -msgid "SuggestedColors|Dark grayish cyan" +msgid "SearchCodeResults|in" msgstr "" -msgid "SuggestedColors|Dark moderate blue" +msgid "SearchCodeResults|of %{link_to_project}" msgstr "" -msgid "SuggestedColors|Dark moderate orange" +msgid "SearchResults|Showing %{count} %{scope} for \"%{term}\"" msgstr "" -msgid "SuggestedColors|Dark moderate pink" +msgid "SearchResults|Showing %{from} - %{to} of %{count} %{scope} for \"%{term}\"" msgstr "" -msgid "SuggestedColors|Dark moderate violet" -msgstr "" +msgid "SearchResults|comment" +msgid_plural "SearchResults|comments" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Feijoa" -msgstr "" +msgid "SearchResults|commit" +msgid_plural "SearchResults|commits" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Lime green" -msgstr "" +msgid "SearchResults|issue" +msgid_plural "SearchResults|issues" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Moderate blue" -msgstr "" +msgid "SearchResults|merge request" +msgid_plural "SearchResults|merge requests" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Pure red" -msgstr "" +msgid "SearchResults|milestone" +msgid_plural "SearchResults|milestones" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Slightly desaturated blue" -msgstr "" +msgid "SearchResults|project" +msgid_plural "SearchResults|projects" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Slightly desaturated green" -msgstr "" +msgid "SearchResults|result" +msgid_plural "SearchResults|results" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Soft orange" -msgstr "" +msgid "SearchResults|snippet" +msgid_plural "SearchResults|snippets" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Soft red" -msgstr "" +msgid "SearchResults|user" +msgid_plural "SearchResults|users" +msgstr[0] "" +msgstr[1] "" -msgid "SuggestedColors|Strong pink" +msgid "Secret" msgstr "" -msgid "SuggestedColors|Strong red" +msgid "See metrics" msgstr "" -msgid "SuggestedColors|Strong yellow" +msgid "See the affected projects in the GitLab admin panel" msgstr "" -msgid "SuggestedColors|UA blue" +msgid "Select" msgstr "" -msgid "SuggestedColors|Very dark desaturated blue" +msgid "Select Archive Format" msgstr "" -msgid "SuggestedColors|Very dark lime green" +msgid "Select a file from the left sidebar to begin editing. Afterwards, you'll be able to commit your changes." msgstr "" -msgid "SuggestedColors|Very pale orange" +msgid "Select a group to invite" msgstr "" -msgid "Suggestions:" +msgid "Select a namespace to fork the project" msgstr "" -msgid "Sunday" +msgid "Select a new namespace" msgstr "" -msgid "Support" +msgid "Select a project" msgstr "" -msgid "Support for custom certificates is disabled. Ask your system's administrator to enable it." +msgid "Select a timezone" msgstr "" -msgid "Support page URL" +msgid "Select all" msgstr "" -msgid "Switch branch/tag" +msgid "Select an existing Kubernetes cluster or create a new one" msgstr "" -msgid "Switch to GitLab Next" +msgid "Select branch/tag" msgstr "" -msgid "Switch to the source to copy it to the clipboard" +msgid "Select merge moment" msgstr "" -msgid "Sync information" +msgid "Select private project" msgstr "" -msgid "System" +msgid "Select project" msgstr "" -msgid "System Hooks" +msgid "Select project and zone to choose machine type" msgstr "" -msgid "System Hooks Help" +msgid "Select project to choose zone" msgstr "" -msgid "System Info" +msgid "Select projects you want to import." msgstr "" -msgid "System default (%{default})" +msgid "Select source branch" msgstr "" -msgid "System header and footer" +msgid "Select target branch" msgstr "" -msgid "System hook was successfully updated." +msgid "Select the branch you want to set as the default for this project. All merge requests and commits will automatically be made against this branch unless you specify a different one." msgstr "" -msgid "System metrics (Custom)" +msgid "Selected levels cannot be used by non-admin users for groups, projects or snippets. If the public level is restricted, user profiles are only visible to logged in users." msgstr "" -msgid "System metrics (Kubernetes)" +msgid "Selecting a GitLab user will add a link to the GitLab user in the descriptions of issues and comments (e.g. \"By @johnsmith\"). It will also associate and/or assign these issues and comments with the selected user." msgstr "" -msgid "Table of Contents" +msgid "Send confirmation email" msgstr "" -msgid "Tag" +msgid "Send email" msgstr "" -msgid "Tag list:" +msgid "Send report" msgstr "" -msgid "Tag this commit." +msgid "Send usage data" msgstr "" -msgid "Tagged this commit to %{tag_name} with \"%{message}\"." +msgid "Sentry API URL" msgstr "" -msgid "Tagged this commit to %{tag_name}." +msgid "Sep" msgstr "" -msgid "Tags" +msgid "Separate topics with commas." msgstr "" -msgid "Tags feed" +msgid "September" msgstr "" -msgid "Tags this commit to %{tag_name} with \"%{message}\"." +msgid "Serve repository static objects (e.g. archives, blobs, ...) from an external storage (e.g. a CDN)." msgstr "" -msgid "Tags this commit to %{tag_name}." +msgid "Server supports batch API only, please update your Git LFS client to version 1.0.1 and up." msgstr "" -msgid "Tags:" +msgid "Server version" msgstr "" -msgid "TagsPage|Browse commits" +msgid "Serverless" msgstr "" -msgid "TagsPage|Browse files" +msgid "ServerlessDetails|Function invocation metrics require Prometheus to be installed first." msgstr "" -msgid "TagsPage|Can't find HEAD commit for this tag" +msgid "ServerlessDetails|Install Prometheus" msgstr "" -msgid "TagsPage|Cancel" +msgid "ServerlessDetails|Invocation metrics loading or not available at this time." msgstr "" -msgid "TagsPage|Create tag" +msgid "ServerlessDetails|Invocations" msgstr "" -msgid "TagsPage|Delete tag" +msgid "ServerlessDetails|Kubernetes Pods" msgstr "" -msgid "TagsPage|Deleting the %{tag_name} tag cannot be undone. Are you sure?" +msgid "ServerlessDetails|More information" msgstr "" -msgid "TagsPage|Edit release notes" +msgid "ServerlessDetails|No pods loaded at this time." msgstr "" -msgid "TagsPage|Existing branch name, tag, or commit SHA" +msgid "ServerlessDetails|Number of Kubernetes pods in use over time based on necessity." msgstr "" -msgid "TagsPage|Filter by tag name" +msgid "ServerlessDetails|pod in use" msgstr "" -msgid "TagsPage|New Tag" +msgid "ServerlessDetails|pods in use" msgstr "" -msgid "TagsPage|New tag" +msgid "ServerlessURL|Copy URL to clipboard" msgstr "" -msgid "TagsPage|Optionally, add a message to the tag." +msgid "Serverless| In order to start using functions as a service, you must first install Knative on your Kubernetes cluster." msgstr "" -msgid "TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page." +msgid "Serverless|Getting started with serverless" msgstr "" -msgid "TagsPage|Release notes" +msgid "Serverless|If you believe none of these apply, please check back later as the function data may be in the process of becoming available." msgstr "" -msgid "TagsPage|Repository has no tags yet." +msgid "Serverless|Install Knative" msgstr "" -msgid "TagsPage|Sort by" +msgid "Serverless|Learn more about Serverless" msgstr "" -msgid "TagsPage|Tags" +msgid "Serverless|No functions available" msgstr "" -msgid "TagsPage|Tags give the ability to mark specific points in history as being important" +msgid "Serverless|The deploy job has not finished." msgstr "" -msgid "TagsPage|This tag has no release notes." +msgid "Serverless|The functions listed in the %{startTag}serverless.yml%{endTag} file don't match the namespace of your cluster." msgstr "" -msgid "TagsPage|Use git tag command to add a new one:" +msgid "Serverless|There is currently no function data available from Knative. This could be for a variety of reasons including:" msgstr "" -msgid "TagsPage|Write your release notes or drag files here…" +msgid "Serverless|Your %{startTag}.gitlab-ci.yml%{endTag} file is not properly configured." msgstr "" -msgid "TagsPage|protected" +msgid "Serverless|Your repository does not have a corresponding %{startTag}serverless.yml%{endTag} file." msgstr "" -msgid "Target Branch" +msgid "Service" msgstr "" -msgid "Target branch" +msgid "Service Templates" msgstr "" -msgid "Team" +msgid "Service URL" msgstr "" -msgid "Team domain" +msgid "Session duration (minutes)" msgstr "" -msgid "Template" +msgid "Session expiration, projects limit and attachment size." msgstr "" -msgid "Templates" +msgid "Set a password on your account to pull or push via %{protocol}." msgstr "" -msgid "Terminal" +msgid "Set default and restrict visibility levels. Configure import sources and git access protocol." msgstr "" -msgid "Terminal for environment" +msgid "Set due date" msgstr "" -msgid "Terminal sync service is running" +msgid "Set max session time for web terminal." msgstr "" -msgid "Terms of Service Agreement and Privacy Policy" +msgid "Set milestone" msgstr "" -msgid "Terms of Service and Privacy Policy" +msgid "Set new password" msgstr "" -msgid "Test SAML SSO" +msgid "Set notification email for abuse reports." msgstr "" -msgid "Test coverage parsing" +msgid "Set requirements for a user to sign-in. Enable mandatory two-factor authentication." msgstr "" -msgid "Test failed." +msgid "Set target branch" msgstr "" -msgid "Test settings and save changes" +msgid "Set target branch to %{branch_name}." msgstr "" -msgid "TestHooks|Ensure one of your projects has merge requests." +msgid "Set the default expiration time for each job's artifacts. 0 for unlimited. The default unit is in seconds, but you can define an alternative. For example: 4 mins 2 sec, 2h42min." msgstr "" -msgid "TestHooks|Ensure the project has CI jobs." +msgid "Set the due date to %{due_date}." msgstr "" -msgid "TestHooks|Ensure the project has CI pipelines." +msgid "Set the duration for which the jobs will be considered as old and expired. Once that time passes, the jobs will be archived and no longer able to be retried. Make it empty to never expire jobs. It has to be no less than 1 day, for example: 15 days, 1 month, 2 years." msgstr "" -msgid "TestHooks|Ensure the project has at least one commit." +msgid "Set the maximum file size for each job's artifacts" msgstr "" -msgid "TestHooks|Ensure the project has issues." +msgid "Set the milestone to %{milestone_reference}." msgstr "" -msgid "TestHooks|Ensure the project has merge requests." +msgid "Set time estimate" msgstr "" -msgid "TestHooks|Ensure the project has notes." +msgid "Set time estimate to %{time_estimate}." msgstr "" -msgid "TestHooks|Ensure the wiki is enabled and has pages." +msgid "Set up CI/CD" msgstr "" -msgid "Thank you for signing up for your free trial! You will get additional instructions in your inbox shortly." +msgid "Set up a %{type} Runner manually" msgstr "" -msgid "Thank you for your report. A GitLab administrator will look into it shortly." +msgid "Set up a specific Runner automatically" msgstr "" -msgid "Thanks! Don't show me this again" +msgid "Set up new U2F device" msgstr "" -msgid "The \"%{group_path}\" group allows you to sign in with your Single Sign-On Account" +msgid "Set up new password" msgstr "" -msgid "The %{type} contains the following error:" -msgid_plural "The %{type} contains the following errors:" -msgstr[0] "" -msgstr[1] "" - -msgid "The Advanced Global Search in GitLab is a powerful search service that saves you time. Instead of creating duplicate code and wasting time, you can now search for code within other teams that can help your own project." +msgid "Set up your project to automatically push and/or pull changes to/from another repository. Branches, tags, and commits will be synced automatically." msgstr "" -msgid "The CSV export will be created in the background. Once finished, it will be sent to %{email} in an attachment." +msgid "SetPasswordToCloneLink|set a password" msgstr "" -msgid "The Git LFS objects will not be synced." +msgid "SetStatusModal|Add status emoji" msgstr "" -msgid "The Issue Tracker is the place to add things that need to be improved or solved in a project" +msgid "SetStatusModal|Clear status" msgstr "" -msgid "The Issue Tracker is the place to add things that need to be improved or solved in a project. You can register or sign in to create issues for this project." +msgid "SetStatusModal|Edit status" msgstr "" -msgid "The X509 Certificate to use when mutual TLS is required to communicate with the external authorization service. If left blank, the server certificate is still validated when accessing over HTTPS." +msgid "SetStatusModal|Remove status" msgstr "" -msgid "The amount of seconds after which a request to get a secondary node status will time out." +msgid "SetStatusModal|Set a status" msgstr "" -msgid "The branch for this project has no active pipeline configuration." +msgid "SetStatusModal|Set status" msgstr "" -msgid "The character highlighter helps you keep the subject line to %{titleLength} characters and wrap the body at %{bodyLength} so they are readable in git." +msgid "SetStatusModal|Sorry, we weren't able to set your status. Please try again later." msgstr "" -msgid "The coding stage shows the time from the first commit to creating the merge request. The data will automatically be added here once you create your first merge request." +msgid "SetStatusModal|What's your status?" msgstr "" -msgid "The collection of events added to the data gathered for that stage." +msgid "Sets target branch to %{branch_name}." msgstr "" -msgid "The connection will time out after %{timeout}. For repositories that take longer, use a clone/push combination." +msgid "Sets the due date to %{due_date}." msgstr "" -msgid "The content of this page is not encoded in UTF-8. Edits can only be made via the Git repository." +msgid "Sets the milestone to %{milestone_reference}." msgstr "" -msgid "The dependency list details information about the components used within your project." +msgid "Sets time estimate to %{time_estimate}." msgstr "" -msgid "The deployment of this job to %{environmentLink} did not succeed." +msgid "Settings" msgstr "" -msgid "The directory has been successfully created." +msgid "Share" msgstr "" -msgid "The domain you entered is misformatted." +msgid "Shared Runners" msgstr "" -msgid "The domain you entered is not allowed." +msgid "Shared projects" msgstr "" -msgid "The entered user map is not a valid JSON user map." +msgid "Sherlock Transactions" msgstr "" -msgid "The file has been successfully created." +msgid "Should you ever lose your phone or access to your one time password secret, each of these recovery codes can be used one time each to regain access to your account. Please save them in a safe place, or you %{b_start}will%{b_end} lose access to your account." msgstr "" -msgid "The file has been successfully deleted." +msgid "Show all activity" msgstr "" -msgid "The following items will NOT be exported:" +msgid "Show archived projects" msgstr "" -msgid "The following items will be exported:" +msgid "Show archived projects only" msgstr "" -msgid "The fork relationship has been removed." +msgid "Show command" msgstr "" -msgid "The global settings require you to enable Two-Factor Authentication for your account." +msgid "Show comments" msgstr "" -msgid "The group and any internal projects can be viewed by any logged in user." +msgid "Show comments only" msgstr "" -msgid "The group and any public projects can be viewed without any authentication." +msgid "Show commit description" msgstr "" -msgid "The group and its projects can only be viewed by members." +msgid "Show complete raw log" msgstr "" -msgid "The group settings for %{group_links} require you to enable Two-Factor Authentication for your account. You can %{leave_group_links}." +msgid "Show file browser" msgstr "" -msgid "The import will time out after %{timeout}. For repositories that take longer, use a clone/push combination." +msgid "Show latest version" msgstr "" -msgid "The invitation could not be accepted." +msgid "Show parent pages" msgstr "" -msgid "The invitation could not be declined." +msgid "Show parent subgroups" msgstr "" -msgid "The invitation has already been accepted." +msgid "Show whitespace changes" msgstr "" -msgid "The invitation was successfully resent." +msgid "Showing %d event" +msgid_plural "Showing %d events" +msgstr[0] "" +msgstr[1] "" + +msgid "Showing all issues" msgstr "" -msgid "The issue stage shows the time it takes from creating an issue to assigning the issue to a milestone, or add the issue to a list on your Issue Board. Begin creating issues to see data for this stage." +msgid "Showing last %{size} of log -" msgstr "" -msgid "The license was removed. GitLab has fallen back on the previous license." +msgid "Side-by-side" msgstr "" -msgid "The license was removed. GitLab now no longer has a valid license." +msgid "Sign in" msgstr "" -msgid "The license was successfully uploaded and is now active. You can see the details below." +msgid "Sign in / Register" msgstr "" -msgid "The maximum file size allowed is %{size}." +msgid "Sign in via 2FA code" msgstr "" -msgid "The maximum file size allowed is 200KB." +msgid "Sign in with Google" msgstr "" -msgid "The merge conflicts for this merge request cannot be resolved through GitLab. Please try to resolve them locally." +msgid "Sign out" msgstr "" -msgid "The merge conflicts for this merge request have already been resolved." +msgid "Sign up" msgstr "" -msgid "The merge conflicts for this merge request have already been resolved. Please return to the merge request." +msgid "Sign-in restrictions" msgstr "" -msgid "The name %{entryName} is already taken in this directory." +msgid "Sign-up restrictions" msgstr "" -msgid "The number of changes to be fetched from GitLab when cloning a repository. This can speed up Pipelines execution. Keep empty or set to 0 to disable shallow clone by default and make GitLab CI fetch all branches and tags each time." +msgid "SignUp|Name is too long (maximum is %{max_length} characters)." msgstr "" -msgid "The number of times an upload record could not find its file" +msgid "SignUp|Username is too long (maximum is %{max_length} characters)." msgstr "" -msgid "The passphrase required to decrypt the private key. This is optional and the value is encrypted at rest." +msgid "Signed in" msgstr "" -msgid "The path to CI config file. Defaults to .gitlab-ci.yml" +msgid "Signed in with %{authentication} authentication" msgstr "" -msgid "The phase of the development lifecycle." +msgid "Signing in using %{label} has been disabled" msgstr "" -msgid "The pipelines schedule runs pipelines in the future, repeatedly, for specific branches or tags. Those scheduled pipelines will inherit limited project access based on their associated user." +msgid "Signing in using your %{label} account without a pre-existing GitLab account is not allowed." msgstr "" -msgid "The planning stage shows the time from the previous step to pushing your first commit. This time will be added automatically once you push your first commit." +msgid "Similar issues" msgstr "" -msgid "The private key to use when a client certificate is provided. This value is encrypted at rest." +msgid "Site ID" msgstr "" -msgid "The production stage shows the total time it takes between creating an issue and deploying the code to production. The data will be automatically added once you have completed the full idea to production cycle." +msgid "Size and domain settings for static websites" msgstr "" -msgid "The project can be accessed by any logged in user." +msgid "SlackService|2. Paste the Token into the field below" msgstr "" -msgid "The project can be accessed by any user who is logged in." +msgid "SlackService|3. Select the Active checkbox, press Save changes and start using GitLab inside Slack!" msgstr "" -msgid "The project can be accessed by anyone, regardless of authentication." +msgid "SlackService|Fill in the word that works best for your team." msgstr "" -msgid "The project can be accessed without any authentication." +msgid "SlackService|See list of available commands in Slack after setting up this service, by entering" msgstr "" -msgid "The project is accessible only by members of the project. Access must be granted explicitly to each user." +msgid "SlackService|This service allows users to perform common operations on this project by entering slash commands in Slack." msgstr "" -msgid "The project is still being deleted. Please try again later." +msgid "Slower but makes sure the project workspace is pristine as it clones the repository from scratch for every job" msgstr "" -msgid "The project was successfully forked." +msgid "Snippet Contents" msgstr "" -msgid "The project was successfully imported." +msgid "Snippets" msgstr "" -msgid "The pseudonymizer data collection is disabled. When enabled, GitLab will run a background job that will produce pseudonymized CSVs of the GitLab database that will be uploaded to your configured object storage directory." +msgid "SnippetsEmptyState|Explore public snippets" msgstr "" -msgid "The remote mirror took to long to complete." +msgid "SnippetsEmptyState|New snippet" msgstr "" -msgid "The remote repository is being updated..." +msgid "SnippetsEmptyState|No snippets found" msgstr "" -msgid "The repository for this project does not exist." +msgid "SnippetsEmptyState|Snippets are small pieces of code or notes that you want to keep." msgstr "" -msgid "The repository for this project is empty" +msgid "SnippetsEmptyState|There are no snippets to show." msgstr "" -msgid "The repository is being updated..." +msgid "SnippetsEmptyState|They can be either public or private." msgstr "" -msgid "The repository must be accessible over http://, https:// or git://." +msgid "Snowplow" msgstr "" -msgid "The repository must be accessible over http://, https://, ssh:// or git://." +msgid "Some email servers do not support overriding the email sender name. Enable this option to include the name of the author of the issue, merge request or comment in the email body instead." msgstr "" -msgid "The review stage shows the time from creating the merge request to merging it. The data will automatically be added after you merge your first merge request." +msgid "Someone edited the issue at the same time you did. Please check out %{linkStart}the issue%{linkEnd} and make sure your changes will not unintentionally remove theirs." msgstr "" -msgid "The roadmap shows the progress of your epics along a timeline" +msgid "Someone edited this %{issueType} at the same time you did. The description has been updated and you will need to make your changes again." msgstr "" -msgid "The schedule time must be in the future!" +msgid "Someone edited this merge request at the same time you did. Please refresh the page to see changes." msgstr "" -msgid "The snippet can be accessed without any authentication." +msgid "Something went wrong on our end" msgstr "" -msgid "The snippet is visible only to me." +msgid "Something went wrong on our end." msgstr "" -msgid "The snippet is visible only to project members." +msgid "Something went wrong on our end. Please try again!" msgstr "" -msgid "The snippet is visible to any logged in user." +msgid "Something went wrong trying to change the confidentiality of this issue" msgstr "" -msgid "The staging stage shows the time between merging the MR and deploying code to the production environment. The data will be automatically added once you deploy to production for the first time." +msgid "Something went wrong trying to change the locked state of this %{issuableDisplayName}" msgstr "" -msgid "The testing stage shows the time GitLab CI takes to run every pipeline for the related merge request. The data will automatically be added after your first pipeline finishes running." +msgid "Something went wrong when toggling the button" msgstr "" -msgid "The time taken by each data entry gathered by that stage." +msgid "Something went wrong while adding your award. Please try again." msgstr "" -msgid "The unique identifier for the Geo node. Must match `geo_node_name` if it is set in gitlab.rb, otherwise it must match `external_url` with a trailing slash" +msgid "Something went wrong while adding your comment. Please try again." msgstr "" -msgid "The update action will time out after %{number_of_minutes} minutes. For big repositories, use a clone/push combination." +msgid "Something went wrong while applying the suggestion. Please try again." msgstr "" -msgid "The uploaded file is not a valid Google Takeout archive." +msgid "Something went wrong while closing the %{issuable}. Please try again later" msgstr "" -msgid "The usage ping is disabled, and cannot be configured through this form." +msgid "Something went wrong while deleting the source branch. Please try again." msgstr "" -msgid "The user is being deleted." +msgid "Something went wrong while deleting your note. Please try again." msgstr "" -msgid "The user map has been saved. Continue by selecting the projects you want to import." +msgid "Something went wrong while editing your comment. Please try again." msgstr "" -msgid "The user map is a JSON document mapping the Google Code users that participated on your projects to the way their email addresses and usernames will be imported into GitLab. You can change this by changing the value on the right hand side of :. Be sure to preserve the surrounding double quotes, other punctuation and the email address or username on the left hand side." +msgid "Something went wrong while fetching comments. Please try again." msgstr "" -msgid "The user map is a mapping of the FogBugz users that participated on your projects to the way their email address and usernames will be imported into GitLab. You can change this by populating the table below." +msgid "Something went wrong while fetching latest comments." msgstr "" -msgid "The user-facing URL of the Geo node" +msgid "Something went wrong while fetching related merge requests." msgstr "" -msgid "The value lying at the midpoint of a series of observed values. E.g., between 3, 5, 9, the median is 5. Between 3, 5, 7, 8, the median is (5+7)/2 = 6." +msgid "Something went wrong while fetching the environments for this merge request. Please try again." msgstr "" -msgid "There are no GPG keys associated with this account." +msgid "Something went wrong while fetching the projects." msgstr "" -msgid "There are no GPG keys with access to your account." +msgid "Something went wrong while fetching the registry list." msgstr "" -msgid "There are no SSH keys associated with this account." +msgid "Something went wrong while merging this merge request. Please try again." msgstr "" -msgid "There are no SSH keys with access to your account." +msgid "Something went wrong while reopening the %{issuable}. Please try again later" msgstr "" -msgid "There are no archived projects yet" +msgid "Something went wrong while resolving this discussion. Please try again." msgstr "" -msgid "There are no charts configured for this page" +msgid "Something went wrong while stopping this environment. Please try again." msgstr "" -msgid "There are no closed issues" +msgid "Something went wrong, unable to search projects" msgstr "" -msgid "There are no closed merge requests" +msgid "Something went wrong. Please try again." msgstr "" -msgid "There are no custom project templates set up for this GitLab instance. They are enabled from GitLab's Admin Area. Contact your GitLab instance administrator to setup custom project templates." +msgid "Something went wrong. Try again later." msgstr "" -msgid "There are no issues to show" +msgid "Sorry, no projects matched your search" msgstr "" -msgid "There are no issues to show." +msgid "Sorry, your filter produced no results" msgstr "" -msgid "There are no labels yet" +msgid "Sort by" msgstr "" -msgid "There are no open issues" +msgid "Sort direction" msgstr "" -msgid "There are no open merge requests" +msgid "SortOptions|Access level, ascending" msgstr "" -msgid "There are no packages yet" +msgid "SortOptions|Access level, descending" msgstr "" -msgid "There are no projects shared with this group yet" +msgid "SortOptions|Created date" msgstr "" -msgid "There are no staged changes" +msgid "SortOptions|Due date" msgstr "" -msgid "There are no unstaged changes" +msgid "SortOptions|Due later" msgstr "" -msgid "There is already a repository with that name on disk" +msgid "SortOptions|Due soon" msgstr "" -msgid "There was a problem communicating with your device." +msgid "SortOptions|Label priority" msgstr "" -msgid "There was a problem sending the confirmation email" +msgid "SortOptions|Largest group" msgstr "" -msgid "There was an error %{message} todo." +msgid "SortOptions|Largest repository" msgstr "" -msgid "There was an error adding a To Do." +msgid "SortOptions|Last Contact" msgstr "" -msgid "There was an error creating the issue" +msgid "SortOptions|Last created" msgstr "" -msgid "There was an error deleting the To Do." +msgid "SortOptions|Last joined" msgstr "" -msgid "There was an error fetching configuration for charts" +msgid "SortOptions|Last updated" msgstr "" -msgid "There was an error gathering the chart data" +msgid "SortOptions|Least popular" msgstr "" -msgid "There was an error loading users activity calendar." +msgid "SortOptions|Manual" msgstr "" -msgid "There was an error removing the e-mail." +msgid "SortOptions|Milestone due date" msgstr "" -msgid "There was an error resetting group pipeline minutes." +msgid "SortOptions|Milestone due later" msgstr "" -msgid "There was an error resetting user pipeline minutes." +msgid "SortOptions|Milestone due soon" msgstr "" -msgid "There was an error saving your changes." +msgid "SortOptions|Most popular" msgstr "" -msgid "There was an error saving your notification settings." +msgid "SortOptions|Most stars" msgstr "" -msgid "There was an error subscribing to this label." +msgid "SortOptions|Name" msgstr "" -msgid "There was an error trying to validate your query" +msgid "SortOptions|Name, ascending" msgstr "" -msgid "There was an error when reseting email token." +msgid "SortOptions|Name, descending" msgstr "" -msgid "There was an error when subscribing to this label." +msgid "SortOptions|Oldest created" msgstr "" -msgid "There was an error when unsubscribing from this label." +msgid "SortOptions|Oldest joined" msgstr "" -msgid "There was an error while fetching cycle analytics data." +msgid "SortOptions|Oldest last activity" msgstr "" -msgid "There was an error with the reCAPTCHA. Please solve the reCAPTCHA again." +msgid "SortOptions|Oldest sign in" msgstr "" -msgid "These existing issues have a similar title. It might be better to comment there instead of creating another similar issue." +msgid "SortOptions|Oldest starred" msgstr "" -msgid "They can be managed using the %{link}." +msgid "SortOptions|Oldest updated" msgstr "" -msgid "Third party offers" +msgid "SortOptions|Popularity" msgstr "" -msgid "This %{issuableDisplayName} is locked. Only project members can comment." +msgid "SortOptions|Priority" msgstr "" -msgid "This %{issuable} is locked. Only project members can comment." +msgid "SortOptions|Recent last activity" msgstr "" -msgid "This %{viewer} could not be displayed because %{reason}. You can %{options} instead." +msgid "SortOptions|Recent sign in" msgstr "" -msgid "This GitLab instance does not provide any shared Runners yet. Instance administrators can register shared Runners in the admin area." +msgid "SortOptions|Recently starred" msgstr "" -msgid "This action can lead to data loss. To prevent accidental actions we ask you to confirm your intention." +msgid "SortOptions|Sort direction" msgstr "" -msgid "This also resolves the discussion" +msgid "SortOptions|Stars" msgstr "" -msgid "This application was created by %{link_to_owner}." +msgid "SortOptions|Start later" msgstr "" -msgid "This application will be able to:" +msgid "SortOptions|Start soon" msgstr "" -msgid "This block is self-referential" +msgid "Source" msgstr "" -msgid "This board's scope is reduced" +msgid "Source (branch or tag)" msgstr "" -msgid "This branch has changed since you started editing. Would you like to create a new branch?" +msgid "Source code" msgstr "" -msgid "This chart could not be displayed" +msgid "Source is not available" msgstr "" -msgid "This comment has changed since you started editing, please review the %{startTag}updated comment%{endTag} to ensure information is not lost." +msgid "Source project cannot be found." 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 "Spam Logs" msgstr "" -msgid "This commit was signed with a verified signature and the committer email is verified to belong to the same user." +msgid "Spam and Anti-bot Protection" msgstr "" -msgid "This commit was signed with a different user's verified signature." +msgid "Spam log successfully submitted as ham." msgstr "" -msgid "This commit was signed with a verified signature, but the committer email is not verified to belong to the same user." +msgid "Specific Runners" msgstr "" -msgid "This commit was signed with an unverified signature." +msgid "Specify an e-mail address regex pattern to identify default internal users." msgstr "" -msgid "This container registry has been scheduled for deletion." +msgid "Specify the following URL during the Runner setup:" msgstr "" -msgid "This date is after the due date, so this epic won't appear in the roadmap." +msgid "Squash commit message" msgstr "" -msgid "This date is before the start date, so this epic won't appear in the roadmap." +msgid "Squash commits" msgstr "" -msgid "This device has already been registered with us." +msgid "Stage" msgstr "" -msgid "This device has not been registered with us." +msgid "Stage & Commit" msgstr "" -msgid "This diff is collapsed." +msgid "Stage all changes" msgstr "" -msgid "This diff was suppressed by a .gitattributes entry." +msgid "Stage changes" msgstr "" -msgid "This directory" +msgid "Staged" msgstr "" -msgid "This domain is not verified. You will need to verify ownership before access is enabled." +msgid "Staged %{type}" msgstr "" -msgid "This environment has no deployments yet." +msgid "Star a label to make it a priority label. Order the prioritized labels to change their relative priority, by dragging." msgstr "" -msgid "This feature is in development. Please disable the `job_log_json` feature flag" +msgid "Star labels to start sorting by priority" msgstr "" -msgid "This feature requires local storage to be enabled" +msgid "Star toggle failed. Try again later." msgstr "" -msgid "This field is required." +msgid "StarProject|Star" msgstr "" -msgid "This group" +msgid "Starred Projects" msgstr "" -msgid "This group does not provide any group Runners yet." +msgid "Starred Projects' Activity" msgstr "" -msgid "This group, including all subgroups, projects and git repositories, will only be reachable from the specified IP address range. Multiple addresses are supported with comma delimiters.
Example: 192.168.0.0/24,192.168.1.0/24. %{read_more_link}." +msgid "Starred projects" msgstr "" -msgid "This is a \"Ghost User\", created to hold all issues authored by users that have since been deleted. This user cannot be removed." +msgid "StarredProjectsEmptyState|Visit a project page and press on a star icon. Then, you can find the project on this page." msgstr "" -msgid "This is a Work in Progress" +msgid "StarredProjectsEmptyState|You don't have starred projects yet." msgstr "" -msgid "This is a confidential issue." +msgid "Starrers" msgstr "" -msgid "This is a delayed job to run in %{remainingTime}" +msgid "Stars" msgstr "" -msgid "This is a list of devices that have logged into your account. Revoke any sessions that you do not recognize." +msgid "Start a %{new_merge_request} with these changes" msgstr "" -msgid "This is a security log of important events involving your account." +msgid "Start a new discussion..." msgstr "" -msgid "This is the author's first Merge Request to this project." +msgid "Start a new merge request" msgstr "" -msgid "This is the maximum number of users that have existed at the same time since the license started. This is the minimum number of seats you will need to buy when you renew your license." +msgid "Start a review" msgstr "" -msgid "This is your current session" +msgid "Start and due date" msgstr "" -msgid "This issue is %{confidentialLinkStart}confidential%{linkEnd} and %{lockedLinkStart}locked%{linkEnd}." +msgid "Start cleanup" msgstr "" -msgid "This issue is confidential" +msgid "Start date" msgstr "" -msgid "This issue is locked." +msgid "Start search" msgstr "" -msgid "This job depends on upstream jobs that need to succeed in order for this job to be triggered" +msgid "Start the Runner!" msgstr "" -msgid "This job does not have a trace." +msgid "Start thread" msgstr "" -msgid "This job has been canceled" +msgid "Start thread & close %{noteable_name}" msgstr "" -msgid "This job has been skipped" +msgid "Start thread & reopen %{noteable_name}" msgstr "" -msgid "This job has not been triggered yet" +msgid "Started" msgstr "" -msgid "This job has not started yet" +msgid "Started %{startsIn}" msgstr "" -msgid "This job is an out-of-date deployment to %{environmentLink}." +msgid "Started asynchronous removal of all repository check states." msgstr "" -msgid "This job is an out-of-date deployment to %{environmentLink}. View the most recent deployment %{deploymentLink}." +msgid "Starts %{startsIn}" msgstr "" -msgid "This job is archived. Only the complete pipeline can be retried." +msgid "Starts at (UTC)" msgstr "" -msgid "This job is creating a deployment to %{environmentLink} and will overwrite the %{deploymentLink}." +msgid "State your message to activate" msgstr "" -msgid "This job is creating a deployment to %{environmentLink}." +msgid "Statistics" msgstr "" -msgid "This job is in pending state and is waiting to be picked by a runner" +msgid "Status" msgstr "" -msgid "This job is performing tasks that must complete before it can start" +msgid "Status:" msgstr "" -msgid "This job is preparing to start" +msgid "Stay updated about the performance and health of your environment by configuring Prometheus to monitor your deployments." msgstr "" -msgid "This job is stuck because you don't have any active runners online with any of these tags assigned to them:" +msgid "Stop environment" msgstr "" -msgid "This job is stuck because you don't have any active runners that can run this job." +msgid "Stop impersonation" msgstr "" -msgid "This job is the most recent deployment to %{link}." +msgid "Stop this environment" msgstr "" -msgid "This job requires a manual action" +msgid "Stopped" msgstr "" -msgid "This job requires manual intervention to start. Before starting this job, you can add variables below for last-minute configuration changes." +msgid "Stopping this environment is currently not possible as a deployment is in progress" msgstr "" -msgid "This job will automatically run after its timer finishes. Often they are used for incremental roll-out deploys to production environments. When unscheduled it converts into a manual action." +msgid "Storage" msgstr "" -msgid "This may expose confidential information as the selected fork is in another namespace that can have other members." +msgid "Storage:" msgstr "" -msgid "This means you can not push code until you create an empty repository or import existing one." +msgid "StorageSize|Unknown" msgstr "" -msgid "This merge request is locked." +msgid "SubgroupCreationLevel|Allowed to create subgroups" msgstr "" -msgid "This namespace has already been taken! Please choose another one." +msgid "SubgroupCreationlevel|Allowed to create subgroups" msgstr "" -msgid "This option is disabled as you don't have write permissions for the current branch" +msgid "SubgroupCreationlevel|Maintainers" msgstr "" -msgid "This page is unavailable because you are not allowed to read information across multiple projects." +msgid "SubgroupCreationlevel|Owners" msgstr "" -msgid "This page will be removed in a future release." +msgid "Subgroups" msgstr "" -msgid "This pipeline makes use of a predefined CI/CD configuration enabled by %{strongStart}Auto DevOps.%{strongEnd}" +msgid "Subgroups and projects" msgstr "" -msgid "This pipeline makes use of a predefined CI/CD configuration enabled by Auto DevOps." +msgid "Subkeys" msgstr "" -msgid "This project" +msgid "Submit as spam" msgstr "" -msgid "This project does not belong to a group and can therefore not make use of group Runners." +msgid "Submit feedback" msgstr "" -msgid "This project does not have a wiki homepage yet" +msgid "Submit issue" msgstr "" -msgid "This project does not have billing enabled. To create a cluster, enable billing and try again." +msgid "Submit search" msgstr "" -msgid "This repository" +msgid "Subscribe" msgstr "" -msgid "This repository is currently empty. A new Auto DevOps pipeline will be created after a new file has been pushed to a branch." +msgid "Subscribe at group level" msgstr "" -msgid "This runner will only run on pipelines triggered on protected branches" +msgid "Subscribe at project level" msgstr "" -msgid "This setting can be overridden in each project." +msgid "Subscribe to RSS feed" msgstr "" -msgid "This setting will override user notification preferences for all project members." +msgid "Subscribe to calendar" msgstr "" -msgid "This setting will update the hostname that is used to generate private commit emails. %{learn_more}" +msgid "Subscribed" msgstr "" -msgid "This timeout will take precedence when lower than project-defined timeout and accepts a human readable time input language like \"1 hour\". Values without specification represent seconds." +msgid "Subscribed to this %{quick_action_target}." msgstr "" -msgid "This user cannot be unlocked manually from GitLab" +msgid "Subscribes to this %{quick_action_target}." msgstr "" -msgid "This user has no active %{type} Tokens." +msgid "Subscription" msgstr "" -msgid "This user has no identities" +msgid "Subtracted" msgstr "" -msgid "This user will be the author of all events in the activity feed that are the result of an update, like new branches being created or new commits being pushed to existing branches." +msgid "Subtracts" msgstr "" -msgid "This user will be the author of all events in the activity feed that are the result of an update, like new branches being created or new commits being pushed to existing branches. Upon creation or when reassigning you can only assign yourself to be the mirror user." +msgid "Successfully blocked" msgstr "" -msgid "This will redirect you to an external sign in page." +msgid "Successfully confirmed" msgstr "" -msgid "This will remove the fork relationship to source project" +msgid "Successfully deleted U2F device." msgstr "" -msgid "Those emails automatically become issues (with the comments becoming the email conversation) listed here." +msgid "Successfully removed email." msgstr "" -msgid "Thursday" +msgid "Successfully scheduled a pipeline to run. Go to the %{pipelines_link_start}Pipelines page%{pipelines_link_end} for details." msgstr "" -msgid "Time" +msgid "Successfully unblocked" msgstr "" -msgid "Time based: Yes" +msgid "Successfully unlocked" msgstr "" -msgid "Time before an issue gets scheduled" +msgid "Suggest code changes which are immediately applied. Try it out!" msgstr "" -msgid "Time before an issue starts implementation" +msgid "Suggested change" msgstr "" -msgid "Time before enforced" +msgid "SuggestedColors|Bright green" msgstr "" -msgid "Time between merge request creation and merge/close" +msgid "SuggestedColors|Dark grayish cyan" msgstr "" -msgid "Time estimate" +msgid "SuggestedColors|Dark moderate blue" msgstr "" -msgid "Time from first comment to last commit" +msgid "SuggestedColors|Dark moderate orange" msgstr "" -msgid "Time from first commit until first comment" +msgid "SuggestedColors|Dark moderate pink" msgstr "" -msgid "Time from last commit to merge" +msgid "SuggestedColors|Dark moderate violet" msgstr "" -msgid "Time in seconds GitLab will wait for a response from the external service. When the service does not respond in time, access will be denied." +msgid "SuggestedColors|Feijoa" msgstr "" -msgid "Time remaining" +msgid "SuggestedColors|Lime green" msgstr "" -msgid "Time spent" +msgid "SuggestedColors|Moderate blue" msgstr "" -msgid "Time to merge" +msgid "SuggestedColors|Pure red" msgstr "" -msgid "Time tracking" +msgid "SuggestedColors|Slightly desaturated blue" msgstr "" -msgid "Time until first merge request" +msgid "SuggestedColors|Slightly desaturated green" msgstr "" -msgid "TimeTrackingEstimated|Est" +msgid "SuggestedColors|Soft orange" msgstr "" -msgid "TimeTracking|%{startTag}Spent: %{endTag}%{timeSpentHumanReadable}" +msgid "SuggestedColors|Soft red" msgstr "" -msgid "TimeTracking|Estimated:" +msgid "SuggestedColors|Strong pink" msgstr "" -msgid "TimeTracking|Over by %{timeRemainingHumanReadable}" +msgid "SuggestedColors|Strong red" msgstr "" -msgid "TimeTracking|Spent" +msgid "SuggestedColors|Strong yellow" msgstr "" -msgid "TimeTracking|Time remaining: %{timeRemainingHumanReadable}" +msgid "SuggestedColors|UA blue" msgstr "" -msgid "Timeago|%s days ago" +msgid "SuggestedColors|Very dark desaturated blue" msgstr "" -msgid "Timeago|%s days remaining" +msgid "SuggestedColors|Very dark lime green" msgstr "" -msgid "Timeago|%s hours ago" +msgid "SuggestedColors|Very pale orange" msgstr "" -msgid "Timeago|%s hours remaining" +msgid "Suggestions:" msgstr "" -msgid "Timeago|%s minutes ago" +msgid "Sunday" msgstr "" -msgid "Timeago|%s minutes remaining" +msgid "Support" msgstr "" -msgid "Timeago|%s months ago" +msgid "Support for custom certificates is disabled. Ask your system's administrator to enable it." msgstr "" -msgid "Timeago|%s months remaining" +msgid "Support page URL" msgstr "" -msgid "Timeago|%s seconds remaining" +msgid "Switch branch/tag" msgstr "" -msgid "Timeago|%s weeks ago" +msgid "Switch to GitLab Next" msgstr "" -msgid "Timeago|%s weeks remaining" +msgid "Switch to the source to copy it to the clipboard" msgstr "" -msgid "Timeago|%s years ago" +msgid "System Hooks" msgstr "" -msgid "Timeago|%s years remaining" +msgid "System Hooks Help" msgstr "" -msgid "Timeago|1 day ago" +msgid "System Info" msgstr "" -msgid "Timeago|1 day remaining" +msgid "System default (%{default})" msgstr "" -msgid "Timeago|1 hour ago" +msgid "System header and footer" msgstr "" -msgid "Timeago|1 hour remaining" +msgid "System hook was successfully updated." msgstr "" -msgid "Timeago|1 minute ago" +msgid "System metrics (Custom)" msgstr "" -msgid "Timeago|1 minute remaining" +msgid "System metrics (Kubernetes)" msgstr "" -msgid "Timeago|1 month ago" +msgid "Table of Contents" msgstr "" -msgid "Timeago|1 month remaining" +msgid "Tag" msgstr "" -msgid "Timeago|1 week ago" +msgid "Tag list:" msgstr "" -msgid "Timeago|1 week remaining" +msgid "Tag this commit." msgstr "" -msgid "Timeago|1 year ago" +msgid "Tagged this commit to %{tag_name} with \"%{message}\"." msgstr "" -msgid "Timeago|1 year remaining" +msgid "Tagged this commit to %{tag_name}." msgstr "" -msgid "Timeago|Past due" +msgid "Tags" msgstr "" -msgid "Timeago|in %s days" +msgid "Tags feed" msgstr "" -msgid "Timeago|in %s hours" +msgid "Tags this commit to %{tag_name} with \"%{message}\"." msgstr "" -msgid "Timeago|in %s minutes" +msgid "Tags this commit to %{tag_name}." msgstr "" -msgid "Timeago|in %s months" +msgid "Tags:" msgstr "" -msgid "Timeago|in %s seconds" +msgid "TagsPage|Browse commits" msgstr "" -msgid "Timeago|in %s weeks" +msgid "TagsPage|Browse files" msgstr "" -msgid "Timeago|in %s years" +msgid "TagsPage|Can't find HEAD commit for this tag" msgstr "" -msgid "Timeago|in 1 day" +msgid "TagsPage|Cancel" msgstr "" -msgid "Timeago|in 1 hour" +msgid "TagsPage|Create tag" msgstr "" -msgid "Timeago|in 1 minute" +msgid "TagsPage|Delete tag" msgstr "" -msgid "Timeago|in 1 month" +msgid "TagsPage|Deleting the %{tag_name} tag cannot be undone. Are you sure?" msgstr "" -msgid "Timeago|in 1 week" +msgid "TagsPage|Edit release notes" msgstr "" -msgid "Timeago|in 1 year" +msgid "TagsPage|Existing branch name, tag, or commit SHA" msgstr "" -msgid "Timeago|just now" +msgid "TagsPage|Filter by tag name" msgstr "" -msgid "Timeago|right now" +msgid "TagsPage|New Tag" msgstr "" -msgid "Timeframe" +msgid "TagsPage|New tag" msgstr "" -msgid "Timeout" +msgid "TagsPage|Optionally, add a message to the tag." msgstr "" -msgid "Time|hr" -msgid_plural "Time|hrs" -msgstr[0] "" -msgstr[1] "" +msgid "TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page." +msgstr "" -msgid "Time|min" -msgid_plural "Time|mins" -msgstr[0] "" -msgstr[1] "" +msgid "TagsPage|Release notes" +msgstr "" -msgid "Time|s" +msgid "TagsPage|Repository has no tags yet." msgstr "" -msgid "Tip:" +msgid "TagsPage|Sort by" msgstr "" -msgid "Title" +msgid "TagsPage|Tags" msgstr "" -msgid "Title:" +msgid "TagsPage|Tags give the ability to mark specific points in history as being important" msgstr "" -msgid "Titles and Filenames" +msgid "TagsPage|This tag has no release notes." msgstr "" -msgid "To %{link_to_help} of your domain, add the above key to a TXT record within to your DNS configuration." +msgid "TagsPage|Use git tag command to add a new one:" msgstr "" -msgid "To Do" +msgid "TagsPage|Write your release notes or drag files here…" msgstr "" -msgid "To GitLab" +msgid "TagsPage|protected" msgstr "" -msgid "To access this domain create a new DNS record" +msgid "Target Branch" msgstr "" -msgid "To add an SSH key you need to %{generate_link_start}generate one%{link_end} or use an %{existing_link_start}existing key%{link_end}." +msgid "Target branch" msgstr "" -msgid "To add the entry manually, provide the following details to the application on your phone." +msgid "Team" msgstr "" -msgid "To connect GitHub repositories, you can use a %{personal_access_token_link}. When you create your Personal Access Token, you will need to select the repo scope, so we can display a list of your public and private repositories which are available to connect." +msgid "Team domain" msgstr "" -msgid "To connect GitHub repositories, you first need to authorize GitLab to access the list of your GitHub repositories." +msgid "Template" msgstr "" -msgid "To connect GitHub repositories, you first need to authorize GitLab to access the list of your GitHub repositories:" +msgid "Templates" msgstr "" -msgid "To connect an SVN repository, check out %{svn_link}." +msgid "Terminal" msgstr "" -msgid "To define internal users, first enable new users set to external" +msgid "Terminal for environment" msgstr "" -msgid "To enable it and see User Cohorts, visit %{application_settings_link_start}application settings%{application_settings_link_end}." +msgid "Terms of Service Agreement and Privacy Policy" msgstr "" -msgid "To get started you enter your FogBugz URL and login information below. In the next steps, you'll be able to map users and select the projects you want to import." +msgid "Terms of Service and Privacy Policy" msgstr "" -msgid "To get started, link this page to your Jaeger server, or find out how to %{link_start_tag}install Jaeger%{link_end_tag}" +msgid "Test coverage parsing" msgstr "" -msgid "To get started, please enter your Gitea Host URL and a %{link_to_personal_token}." +msgid "Test failed." msgstr "" -msgid "To help improve GitLab and its user experience, GitLab will periodically collect usage information." +msgid "Test settings and save changes" msgstr "" -msgid "To help improve GitLab, we would like to periodically collect usage information. This can be changed at any time in %{settings_link_start}Settings%{link_end}. %{info_link_start}More Information%{link_end}" +msgid "TestHooks|Ensure one of your projects has merge requests." msgstr "" -msgid "To import an SVN repository, check out %{svn_link}." +msgid "TestHooks|Ensure the project has CI jobs." msgstr "" -msgid "To keep this project going, create a new issue" +msgid "TestHooks|Ensure the project has CI pipelines." msgstr "" -msgid "To keep this project going, create a new merge request" +msgid "TestHooks|Ensure the project has at least one commit." msgstr "" -msgid "To link Sentry to GitLab, enter your Sentry URL and Auth Token." +msgid "TestHooks|Ensure the project has issues." msgstr "" -msgid "To move or copy an entire GitLab project from another GitLab installation to this one, navigate to the original project's settings page, generate an export file, and upload it here." +msgid "TestHooks|Ensure the project has merge requests." msgstr "" -msgid "To only use CI/CD features for an external repository, choose CI/CD for external repo." +msgid "TestHooks|Ensure the project has notes." msgstr "" -msgid "To open Jaeger and easily view tracing from GitLab, link the %{link} page to your server" +msgid "TestHooks|Ensure the wiki is enabled and has pages." msgstr "" -msgid "To preserve performance only %{display_size} of %{real_size} files are displayed." +msgid "Thank you for your report. A GitLab administrator will look into it shortly." msgstr "" -msgid "To protect this issue's confidentiality, %{link_start}fork the project%{link_end} and set the forks visiblity to private." +msgid "The %{type} contains the following error:" +msgid_plural "The %{type} contains the following errors:" +msgstr[0] "" +msgstr[1] "" + +msgid "The Git LFS objects will not be synced." msgstr "" -msgid "To protect this issue's confidentiality, a private fork of this project was selected." +msgid "The Issue Tracker is the place to add things that need to be improved or solved in a project" msgstr "" -msgid "To receive alerts from manually configured Prometheus services, add the following URL and Authorization key to your Prometheus webhook config file. Learn more about %{linkStart}configuring Prometheus%{linkEnd} to send alerts to GitLab." +msgid "The Issue Tracker is the place to add things that need to be improved or solved in a project. You can register or sign in to create issues for this project." msgstr "" -msgid "To see all the user's personal access tokens you must impersonate them first." +msgid "The X509 Certificate to use when mutual TLS is required to communicate with the external authorization service. If left blank, the server certificate is still validated when accessing over HTTPS." msgstr "" -msgid "To set up SAML authentication for your group through an identity provider like Azure, Okta, Onelogin, Ping Identity, or your custom SAML 2.0 provider:" +msgid "The character highlighter helps you keep the subject line to %{titleLength} characters and wrap the body at %{bodyLength} so they are readable in git." msgstr "" -msgid "To set up this service:" +msgid "The coding stage shows the time from the first commit to creating the merge request. The data will automatically be added here once you create your first merge request." msgstr "" -msgid "To specify the notification level per project of a group you belong to, you need to visit project page and change notification level there." +msgid "The collection of events added to the data gathered for that stage." msgstr "" -msgid "To start serving your jobs you can add Runners to your group" +msgid "The content of this page is not encoded in UTF-8. Edits can only be made via the Git repository." msgstr "" -msgid "To start serving your jobs you can either add specific Runners to your project or use shared Runners" +msgid "The deployment of this job to %{environmentLink} did not succeed." msgstr "" -msgid "To this GitLab instance" +msgid "The directory has been successfully created." msgstr "" -msgid "To validate your GitLab CI configurations, go to 'CI/CD → Pipelines' inside your project, and click on the 'CI Lint' button." +msgid "The entered user map is not a valid JSON user map." msgstr "" -msgid "To view the roadmap, add a start or due date to one of your epics in this group or its subgroups. In the months view, only epics in the past month, current month, and next 5 months are shown." +msgid "The file has been successfully created." msgstr "" -msgid "To widen your search, change or remove filters above" +msgid "The file has been successfully deleted." msgstr "" -msgid "To widen your search, change or remove filters." +msgid "The following items will NOT be exported:" msgstr "" -msgid "To-Do List" +msgid "The following items will be exported:" msgstr "" -msgid "To-do item successfully marked as done." +msgid "The fork relationship has been removed." msgstr "" -msgid "Today" +msgid "The global settings require you to enable Two-Factor Authentication for your account." msgstr "" -msgid "Toggle Markdown preview" +msgid "The group and any internal projects can be viewed by any logged in user." msgstr "" -msgid "Toggle Sidebar" +msgid "The group and any public projects can be viewed without any authentication." msgstr "" -msgid "Toggle backtrace" +msgid "The group and its projects can only be viewed by members." msgstr "" -msgid "Toggle collapse" +msgid "The group settings for %{group_links} require you to enable Two-Factor Authentication for your account. You can %{leave_group_links}." msgstr "" -msgid "Toggle comments for this file" +msgid "The import will time out after %{timeout}. For repositories that take longer, use a clone/push combination." msgstr "" -msgid "Toggle commit description" +msgid "The invitation could not be accepted." msgstr "" -msgid "Toggle commit list" +msgid "The invitation could not be declined." msgstr "" -msgid "Toggle emoji award" +msgid "The invitation has already been accepted." msgstr "" -msgid "Toggle navigation" +msgid "The invitation was successfully resent." msgstr "" -msgid "Toggle project" +msgid "The issue stage shows the time it takes from creating an issue to assigning the issue to a milestone, or add the issue to a list on your Issue Board. Begin creating issues to see data for this stage." msgstr "" -msgid "Toggle sidebar" +msgid "The maximum file size allowed is %{size}." msgstr "" -msgid "Toggle the Performance Bar" +msgid "The maximum file size allowed is 200KB." msgstr "" -msgid "Toggle this dialog" +msgid "The merge conflicts for this merge request cannot be resolved through GitLab. Please try to resolve them locally." msgstr "" -msgid "Toggle thread" +msgid "The merge conflicts for this merge request have already been resolved." msgstr "" -msgid "ToggleButton|Toggle Status: OFF" +msgid "The merge conflicts for this merge request have already been resolved. Please return to the merge request." msgstr "" -msgid "ToggleButton|Toggle Status: ON" +msgid "The name %{entryName} is already taken in this directory." msgstr "" -msgid "Toggled :%{name}: emoji award." +msgid "The number of changes to be fetched from GitLab when cloning a repository. This can speed up Pipelines execution. Keep empty or set to 0 to disable shallow clone by default and make GitLab CI fetch all branches and tags each time." msgstr "" -msgid "Toggles :%{name}: emoji award." +msgid "The number of times an upload record could not find its file" msgstr "" -msgid "Tomorrow" +msgid "The passphrase required to decrypt the private key. This is optional and the value is encrypted at rest." msgstr "" -msgid "Too many changes to show." +msgid "The path to CI config file. Defaults to .gitlab-ci.yml" msgstr "" -msgid "Topics" +msgid "The phase of the development lifecycle." msgstr "" -msgid "Total" +msgid "The pipelines schedule runs pipelines in the future, repeatedly, for specific branches or tags. Those scheduled pipelines will inherit limited project access based on their associated user." msgstr "" -msgid "Total Contributions" +msgid "The planning stage shows the time from the previous step to pushing your first commit. This time will be added automatically once you push your first commit." msgstr "" -msgid "Total Time" +msgid "The private key to use when a client certificate is provided. This value is encrypted at rest." msgstr "" -msgid "Total test time for all commits/merges" +msgid "The production stage shows the total time it takes between creating an issue and deploying the code to production. The data will be automatically added once you have completed the full idea to production cycle." msgstr "" -msgid "Total: %{total}" +msgid "The project can be accessed by any logged in user." msgstr "" -msgid "Tracing" +msgid "The project can be accessed by any user who is logged in." msgstr "" -msgid "Track activity with Contribution Analytics." +msgid "The project can be accessed by anyone, regardless of authentication." msgstr "" -msgid "Track groups of issues that share a theme, across projects and milestones" +msgid "The project can be accessed without any authentication." msgstr "" -msgid "Track time with quick actions" +msgid "The project is accessible only by members of the project. Access must be granted explicitly to each user." msgstr "" -msgid "Track your GitLab projects with GitLab for Slack." +msgid "The project is still being deleted. Please try again later." msgstr "" -msgid "Track your project with Audit Events." +msgid "The project was successfully forked." msgstr "" -msgid "Transfer project" +msgid "The project was successfully imported." msgstr "" -msgid "TransferGroup|Database is not supported." +msgid "The remote mirror took to long to complete." msgstr "" -msgid "TransferGroup|Group is already a root group." +msgid "The remote repository is being updated..." msgstr "" -msgid "TransferGroup|Group is already associated to the parent group." +msgid "The repository for this project does not exist." msgstr "" -msgid "TransferGroup|The parent group already has a subgroup with the same path." +msgid "The repository for this project is empty" msgstr "" -msgid "TransferGroup|Transfer failed: %{error_message}" +msgid "The repository must be accessible over http://, https:// or git://." msgstr "" -msgid "TransferGroup|You don't have enough permissions." +msgid "The repository must be accessible over http://, https://, ssh:// or git://." msgstr "" -msgid "TransferProject|Cannot move project" +msgid "The review stage shows the time from creating the merge request to merging it. The data will automatically be added after you merge your first merge request." msgstr "" -msgid "TransferProject|Please select a new namespace for your project." +msgid "The schedule time must be in the future!" msgstr "" -msgid "TransferProject|Project cannot be transferred, because tags are present in its container registry" +msgid "The snippet can be accessed without any authentication." msgstr "" -msgid "TransferProject|Project with same name or path in target namespace already exists" +msgid "The snippet is visible only to me." msgstr "" -msgid "TransferProject|Transfer failed, please contact an admin." +msgid "The snippet is visible only to project members." msgstr "" -msgid "Tree" +msgid "The snippet is visible to any logged in user." msgstr "" -msgid "Tree view" +msgid "The staging stage shows the time between merging the MR and deploying code to the production environment. The data will be automatically added once you deploy to production for the first time." msgstr "" -msgid "Trending" +msgid "The testing stage shows the time GitLab CI takes to run every pipeline for the related merge request. The data will automatically be added after your first pipeline finishes running." msgstr "" -msgid "Trigger pipelines for mirror updates" +msgid "The time taken by each data entry gathered by that stage." msgstr "" -msgid "Trigger pipelines when branches or tags are updated from the upstream repository. Depending on the activity of the upstream repository, this may greatly increase the load on your CI runners. Only enable this if you know they can handle the load." +msgid "The update action will time out after %{number_of_minutes} minutes. For big repositories, use a clone/push combination." msgstr "" -msgid "Trigger removed." +msgid "The uploaded file is not a valid Google Takeout archive." msgstr "" -msgid "Trigger this manual action" +msgid "The usage ping is disabled, and cannot be configured through this form." msgstr "" -msgid "Trigger token:" +msgid "The user is being deleted." msgstr "" -msgid "Trigger variables:" +msgid "The user map has been saved. Continue by selecting the projects you want to import." msgstr "" -msgid "Trigger was created successfully." +msgid "The user map is a JSON document mapping the Google Code users that participated on your projects to the way their email addresses and usernames will be imported into GitLab. You can change this by changing the value on the right hand side of :. Be sure to preserve the surrounding double quotes, other punctuation and the email address or username on the left hand side." msgstr "" -msgid "Trigger was successfully updated." +msgid "The user map is a mapping of the FogBugz users that participated on your projects to the way their email address and usernames will be imported into GitLab. You can change this by populating the table below." msgstr "" -msgid "Triggerer" +msgid "The value lying at the midpoint of a series of observed values. E.g., between 3, 5, 9, the median is 5. Between 3, 5, 7, 8, the median is (5+7)/2 = 6." msgstr "" -msgid "Triggers can force a specific branch or tag to get rebuilt with an API call. These tokens will impersonate their associated user including their access to projects and their project permissions." +msgid "There are no GPG keys associated with this account." msgstr "" -msgid "Troubleshoot and monitor your application with tracing" +msgid "There are no GPG keys with access to your account." msgstr "" -msgid "Try again" +msgid "There are no SSH keys associated with this account." msgstr "" -msgid "Try again?" +msgid "There are no SSH keys with access to your account." msgstr "" -msgid "Try all GitLab has to offer for 30 days." +msgid "There are no archived projects yet" msgstr "" -msgid "Try to fork again" +msgid "There are no closed issues" msgstr "" -msgid "Trying to communicate with your device. Plug it in (if you haven't already) and press the button on the device now." +msgid "There are no closed merge requests" msgstr "" -msgid "Tuesday" +msgid "There are no issues to show" msgstr "" -msgid "Turn Off" +msgid "There are no issues to show." msgstr "" -msgid "Turn On" +msgid "There are no labels yet" msgstr "" -msgid "Turn on Service Desk" +msgid "There are no open issues" msgstr "" -msgid "Twitter" +msgid "There are no open merge requests" msgstr "" -msgid "Two-Factor Authentication" +msgid "There are no projects shared with this group yet" msgstr "" -msgid "Two-factor Authentication" +msgid "There are no staged changes" msgstr "" -msgid "Two-factor Authentication Recovery codes" +msgid "There are no unstaged changes" msgstr "" -msgid "Two-factor Authentication has been disabled for this user" +msgid "There is already a repository with that name on disk" msgstr "" -msgid "Two-factor authentication" +msgid "There was a problem communicating with your device." msgstr "" -msgid "Type" +msgid "There was a problem sending the confirmation email" msgstr "" -msgid "U2F Devices (%{length})" +msgid "There was an error %{message} todo." msgstr "" -msgid "U2F only works with HTTPS-enabled websites. Contact your administrator for more details." +msgid "There was an error loading users activity calendar." msgstr "" -msgid "URL" +msgid "There was an error removing the e-mail." msgstr "" -msgid "URL of the external storage that will serve the repository static objects (e.g. archives, blobs, ...)." +msgid "There was an error saving your changes." msgstr "" -msgid "Unable to apply suggestions to a deleted line." +msgid "There was an error saving your notification settings." msgstr "" -msgid "Unable to build Slack link." +msgid "There was an error subscribing to this label." msgstr "" -msgid "Unable to connect to Prometheus server" +msgid "There was an error when reseting email token." msgstr "" -msgid "Unable to connect to server: %{error}" +msgid "There was an error when subscribing to this label." msgstr "" -msgid "Unable to generate new instance ID" +msgid "There was an error when unsubscribing from this label." msgstr "" -msgid "Unable to load the diff. %{button_try_again}" +msgid "There was an error while fetching cycle analytics data." msgstr "" -msgid "Unable to resolve" +msgid "There was an error with the reCAPTCHA. Please solve the reCAPTCHA again." msgstr "" -msgid "Unable to save your changes. Please try again." +msgid "These existing issues have a similar title. It might be better to comment there instead of creating another similar issue." msgstr "" -msgid "Unable to schedule a pipeline to run immediately" +msgid "They can be managed using the %{link}." msgstr "" -msgid "Unable to sign you in to the group with SAML due to \"%{reason}\"" +msgid "Third party offers" msgstr "" -msgid "Unable to update label prioritization at this time" +msgid "This %{issuableDisplayName} is locked. Only project members can comment." msgstr "" -msgid "Unable to update this epic at this time." +msgid "This %{issuable} is locked. Only project members can comment." msgstr "" -msgid "Unable to update this issue at this time." +msgid "This %{viewer} could not be displayed because %{reason}. You can %{options} instead." msgstr "" -msgid "Unarchive project" +msgid "This GitLab instance does not provide any shared Runners yet. Instance administrators can register shared Runners in the admin area." msgstr "" -msgid "Unarchiving the project will restore people's ability to make changes to it. The repository can be committed to, and issues, comments and other entities can be created. Once active this project shows up in the search and on the dashboard." +msgid "This action can lead to data loss. To prevent accidental actions we ask you to confirm your intention." msgstr "" -msgid "Unblock" +msgid "This also resolves the discussion" msgstr "" -msgid "Undo" +msgid "This application was created by %{link_to_owner}." msgstr "" -msgid "Unfortunately, your email message to GitLab could not be processed." +msgid "This application will be able to:" msgstr "" -msgid "Uninstall" +msgid "This branch has changed since you started editing. Would you like to create a new branch?" msgstr "" -msgid "Uninstalling" +msgid "This comment has changed since you started editing, please review the %{startTag}updated comment%{endTag} to ensure information is not lost." msgstr "" -msgid "Unknown" +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 "" -msgid "Unknown encryption strategy: %{encrypted_strategy}!" +msgid "This commit was signed with a verified signature and the committer email is verified to belong to the same user." msgstr "" -msgid "Unknown format" +msgid "This commit was signed with a different user's verified signature." msgstr "" -msgid "Unknown response text" +msgid "This commit was signed with a verified signature, but the committer email is not verified to belong to the same user." msgstr "" -msgid "Unlimited" +msgid "This commit was signed with an unverified signature." msgstr "" -msgid "Unlock" +msgid "This container registry has been scheduled for deletion." msgstr "" -msgid "Unlock the discussion" +msgid "This device has already been registered with us." msgstr "" -msgid "Unlock this %{issuableDisplayName}? Everyone will be able to comment." +msgid "This device has not been registered with us." msgstr "" -msgid "Unlocked" +msgid "This diff is collapsed." msgstr "" -msgid "Unlocked the discussion." +msgid "This diff was suppressed by a .gitattributes entry." msgstr "" -msgid "Unlocks the discussion." +msgid "This directory" msgstr "" -msgid "Unmarked this %{noun} as Work In Progress." +msgid "This domain is not verified. You will need to verify ownership before access is enabled." msgstr "" -msgid "Unmarks this %{noun} as Work In Progress." +msgid "This feature is in development. Please disable the `job_log_json` feature flag" msgstr "" -msgid "Unresolve discussion" +msgid "This feature requires local storage to be enabled" msgstr "" -msgid "Unresolve thread" +msgid "This field is required." msgstr "" -msgid "Unschedule job" +msgid "This group" msgstr "" -msgid "Unstage" +msgid "This group does not provide any group Runners yet." msgstr "" -msgid "Unstage all changes" +msgid "This is a \"Ghost User\", created to hold all issues authored by users that have since been deleted. This user cannot be removed." msgstr "" -msgid "Unstage changes" +msgid "This is a Work in Progress" msgstr "" -msgid "Unstaged" +msgid "This is a confidential issue." msgstr "" -msgid "Unstaged %{type}" +msgid "This is a delayed job to run in %{remainingTime}" msgstr "" -msgid "Unstaged and staged %{type}" +msgid "This is a list of devices that have logged into your account. Revoke any sessions that you do not recognize." msgstr "" -msgid "Unstar" +msgid "This is a security log of important events involving your account." msgstr "" -msgid "Unsubscribe" +msgid "This is the author's first Merge Request to this project." msgstr "" -msgid "Unsubscribe at group level" +msgid "This is your current session" msgstr "" -msgid "Unsubscribe at project level" +msgid "This issue is %{confidentialLinkStart}confidential%{linkEnd} and %{lockedLinkStart}locked%{linkEnd}." msgstr "" -msgid "Unsubscribe from %{type}" +msgid "This issue is confidential" msgstr "" -msgid "Unsubscribed from this %{quick_action_target}." +msgid "This issue is locked." msgstr "" -msgid "Unsubscribes from this %{quick_action_target}." +msgid "This job depends on upstream jobs that need to succeed in order for this job to be triggered" msgstr "" -msgid "Until" +msgid "This job does not have a trace." msgstr "" -msgid "Unverified" +msgid "This job has been canceled" msgstr "" -msgid "Up to date" +msgid "This job has been skipped" msgstr "" -msgid "Upcoming" +msgid "This job has not been triggered yet" msgstr "" -msgid "Upcoming Release" +msgid "This job has not started yet" msgstr "" -msgid "Update" +msgid "This job is an out-of-date deployment to %{environmentLink}." msgstr "" -msgid "Update all" +msgid "This job is an out-of-date deployment to %{environmentLink}. View the most recent deployment %{deploymentLink}." msgstr "" -msgid "Update approval rule" +msgid "This job is archived. Only the complete pipeline can be retried." msgstr "" -msgid "Update failed" +msgid "This job is creating a deployment to %{environmentLink} and will overwrite the %{deploymentLink}." msgstr "" -msgid "Update failed. Please try again." +msgid "This job is creating a deployment to %{environmentLink}." msgstr "" -msgid "Update it" +msgid "This job is in pending state and is waiting to be picked by a runner" msgstr "" -msgid "Update now" +msgid "This job is performing tasks that must complete before it can start" msgstr "" -msgid "Update your bookmarked URLs as filtered/sorted branches URL has been changed." +msgid "This job is preparing to start" msgstr "" -msgid "Update your group name, description, avatar, and visibility." +msgid "This job is stuck because you don't have any active runners online with any of these tags assigned to them:" msgstr "" -msgid "Update your project name, topics, description and avatar." +msgid "This job is stuck because you don't have any active runners that can run this job." msgstr "" -msgid "UpdateProject|Cannot rename project because it contains container registry tags!" +msgid "This job is the most recent deployment to %{link}." msgstr "" -msgid "UpdateProject|Could not set the default branch" +msgid "This job requires a manual action" msgstr "" -msgid "UpdateProject|New visibility level not allowed!" +msgid "This job requires manual intervention to start. Before starting this job, you can add variables below for last-minute configuration changes." msgstr "" -msgid "UpdateProject|Project could not be updated!" +msgid "This job will automatically run after its timer finishes. Often they are used for incremental roll-out deploys to production environments. When unscheduled it converts into a manual action." msgstr "" -msgid "Updated" +msgid "This may expose confidential information as the selected fork is in another namespace that can have other members." msgstr "" -msgid "Updated %{updated_at} by %{updated_by}" +msgid "This means you can not push code until you create an empty repository or import existing one." msgstr "" -msgid "Updated to" +msgid "This merge request is locked." msgstr "" -msgid "Updating" +msgid "This namespace has already been taken! Please choose another one." msgstr "" -msgid "Upgrade plan to unlock Canary Deployments feature" +msgid "This option is disabled as you don't have write permissions for the current branch" msgstr "" -msgid "Upgrade your plan" +msgid "This page is unavailable because you are not allowed to read information across multiple projects." msgstr "" -msgid "Upgrade your plan to activate Advanced Global Search." +msgid "This page will be removed in a future release." msgstr "" -msgid "Upgrade your plan to activate Audit Events." +msgid "This pipeline makes use of a predefined CI/CD configuration enabled by %{strongStart}Auto DevOps.%{strongEnd}" msgstr "" -msgid "Upgrade your plan to activate Contribution Analytics." +msgid "This pipeline makes use of a predefined CI/CD configuration enabled by Auto DevOps." msgstr "" -msgid "Upgrade your plan to activate Group Webhooks." +msgid "This project" msgstr "" -msgid "Upgrade your plan to activate Issue weight." +msgid "This project does not belong to a group and can therefore not make use of group Runners." msgstr "" -msgid "Upgrade your plan to improve Issue boards." +msgid "This project does not have a wiki homepage yet" msgstr "" -msgid "Upgrade your plan to improve Merge Requests." +msgid "This project does not have billing enabled. To create a cluster, enable billing and try again." msgstr "" -msgid "Upload GoogleCodeProjectHosting.json here:" +msgid "This repository" msgstr "" -msgid "Upload CSV file" +msgid "This repository is currently empty. A new Auto DevOps pipeline will be created after a new file has been pushed to a branch." msgstr "" -msgid "Upload New File" +msgid "This runner will only run on pipelines triggered on protected branches" msgstr "" -msgid "Upload a certificate for your domain with all intermediates" +msgid "This setting can be overridden in each project." msgstr "" -msgid "Upload a private key for your certificate" +msgid "This setting will override user notification preferences for all project members." msgstr "" -msgid "Upload file" +msgid "This setting will update the hostname that is used to generate private commit emails. %{learn_more}" msgstr "" -msgid "Upload file does not exist" +msgid "This timeout will take precedence when lower than project-defined timeout and accepts a human readable time input language like \"1 hour\". Values without specification represent seconds." msgstr "" -msgid "Upload object map" +msgid "This user cannot be unlocked manually from GitLab" msgstr "" -msgid "UploadLink|click to upload" +msgid "This user has no active %{type} Tokens." msgstr "" -msgid "Uploaded on" +msgid "This user has no identities" msgstr "" -msgid "Uploading changes to terminal" +msgid "This user will be the author of all events in the activity feed that are the result of an update, like new branches being created or new commits being pushed to existing branches." msgstr "" -msgid "Uploads" +msgid "This will remove the fork relationship to source project" msgstr "" -msgid "Upstream" +msgid "Thursday" msgstr "" -msgid "Upvotes" +msgid "Time" msgstr "" -msgid "Usage" +msgid "Time based: Yes" msgstr "" -msgid "Usage ping is not enabled" +msgid "Time before an issue gets scheduled" msgstr "" -msgid "Usage quotas help link" +msgid "Time before an issue starts implementation" msgstr "" -msgid "Usage statistics" +msgid "Time before enforced" msgstr "" -msgid "UsageQuota|%{help_link_start}Shared runners%{help_link_end} are disabled, so there are no limits set on pipeline usage" +msgid "Time between merge request creation and merge/close" msgstr "" -msgid "UsageQuota|Artifacts" +msgid "Time estimate" msgstr "" -msgid "UsageQuota|Buy additional minutes" +msgid "Time in seconds GitLab will wait for a response from the external service. When the service does not respond in time, access will be denied." msgstr "" -msgid "UsageQuota|Current period usage" +msgid "Time remaining" msgstr "" -msgid "UsageQuota|LFS Storage" +msgid "Time spent" msgstr "" -msgid "UsageQuota|Packages" +msgid "Time tracking" msgstr "" -msgid "UsageQuota|Pipelines" +msgid "Time until first merge request" msgstr "" -msgid "UsageQuota|Repository" +msgid "TimeTrackingEstimated|Est" msgstr "" -msgid "UsageQuota|Storage" +msgid "TimeTracking|%{startTag}Spent: %{endTag}%{timeSpentHumanReadable}" msgstr "" -msgid "UsageQuota|This namespace has no projects which use shared runners" +msgid "TimeTracking|Estimated:" msgstr "" -msgid "UsageQuota|Unlimited" +msgid "TimeTracking|Over by %{timeRemainingHumanReadable}" msgstr "" -msgid "UsageQuota|Usage" +msgid "TimeTracking|Spent" msgstr "" -msgid "UsageQuota|Usage Quotas" +msgid "TimeTracking|Time remaining: %{timeRemainingHumanReadable}" msgstr "" -msgid "UsageQuota|Usage of group resources across the projects in the %{strong_start}%{group_name}%{strong_end} group" +msgid "Timeago|%s days ago" msgstr "" -msgid "UsageQuota|Usage since" +msgid "Timeago|%s days remaining" msgstr "" -msgid "UsageQuota|Wiki" +msgid "Timeago|%s hours ago" msgstr "" -msgid "Use %{code_start}::%{code_end} to create a %{link_start}scoped label set%{link_end} (eg. %{code_start}priority::1%{code_end})" +msgid "Timeago|%s hours remaining" msgstr "" -msgid "Use %{native_redirect_uri} for local tests" +msgid "Timeago|%s minutes ago" msgstr "" -msgid "Use Service Desk to connect with your users (e.g. to offer customer support) through email right inside GitLab" +msgid "Timeago|%s minutes remaining" msgstr "" -msgid "Use a hardware device to add the second factor of authentication." +msgid "Timeago|%s months ago" msgstr "" -msgid "Use an one time password authenticator on your mobile device or computer to enable two-factor authentication (2FA)." +msgid "Timeago|%s months remaining" msgstr "" -msgid "Use group milestones to manage issues from multiple projects in the same milestone." +msgid "Timeago|%s seconds remaining" msgstr "" -msgid "Use one line per URI" +msgid "Timeago|%s weeks ago" msgstr "" -msgid "Use template" +msgid "Timeago|%s weeks remaining" msgstr "" -msgid "Use the following registration token during setup:" +msgid "Timeago|%s years ago" msgstr "" -msgid "Use your global notification setting" +msgid "Timeago|%s years remaining" msgstr "" -msgid "Use your smart card to authenticate with the LDAP server." +msgid "Timeago|1 day ago" msgstr "" -msgid "Used by members to sign in to your group in GitLab" +msgid "Timeago|1 day remaining" msgstr "" -msgid "Used to help configure your identity provider" +msgid "Timeago|1 hour ago" msgstr "" -msgid "User %{current_user_username} has started impersonating %{username}" +msgid "Timeago|1 hour remaining" msgstr "" -msgid "User %{username} was successfully removed." +msgid "Timeago|1 minute ago" msgstr "" -msgid "User Cohorts are only shown when the %{usage_ping_link_start}usage ping%{usage_ping_link_end} is enabled." +msgid "Timeago|1 minute remaining" msgstr "" -msgid "User OAuth applications" +msgid "Timeago|1 month ago" msgstr "" -msgid "User Settings" +msgid "Timeago|1 month remaining" msgstr "" -msgid "User and IP Rate Limits" +msgid "Timeago|1 week ago" msgstr "" -msgid "User identity was successfully created." +msgid "Timeago|1 week remaining" msgstr "" -msgid "User identity was successfully removed." +msgid "Timeago|1 year ago" msgstr "" -msgid "User identity was successfully updated." +msgid "Timeago|1 year remaining" msgstr "" -msgid "User key was successfully removed." +msgid "Timeago|Past due" msgstr "" -msgid "User map" +msgid "Timeago|in %s days" msgstr "" -msgid "User pipeline minutes were successfully reset." +msgid "Timeago|in %s hours" msgstr "" -msgid "User settings" +msgid "Timeago|in %s minutes" msgstr "" -msgid "User was successfully created." +msgid "Timeago|in %s months" msgstr "" -msgid "User was successfully removed from group and any subresources." +msgid "Timeago|in %s seconds" msgstr "" -msgid "User was successfully removed from project." +msgid "Timeago|in %s weeks" msgstr "" -msgid "User was successfully updated." +msgid "Timeago|in %s years" msgstr "" -msgid "UserOnboardingTour|%{activeTour}/%{totalTours}" +msgid "Timeago|in 1 day" msgstr "" -msgid "UserOnboardingTour|%{completed}/%{total} steps completed" +msgid "Timeago|in 1 hour" msgstr "" -msgid "UserOnboardingTour|%{emphasisStart}Well done!%{emphasisEnd}%{lineBreak}%{lineBreak}That's it for our guided tour, congratulations for making it all the way to the end!%{lineBreak}%{lineBreak}We hope this gave you a good overview of GitLab and how it can help you. We'll now show you how to create your own project and invite your colleagues." +msgid "Timeago|in 1 minute" msgstr "" -msgid "UserOnboardingTour|Adding other members to a project is done through Project Settings. Click on %{emphasisStart}Settings%{emphasisEnd}." +msgid "Timeago|in 1 month" msgstr "" -msgid "UserOnboardingTour|Alright, that's it for Commits. Let's take a look at the %{emphasisStart}Branches%{emphasisEnd}." +msgid "Timeago|in 1 week" msgstr "" -msgid "UserOnboardingTour|Awesome! Now click on %{emphasisStart}Members%{emphasisEnd}." +msgid "Timeago|in 1 year" msgstr "" -msgid "UserOnboardingTour|Click on one of the %{emphasisStart}Compare%{emphasisEnd} buttons to compare a branch to master." +msgid "Timeago|just now" msgstr "" -msgid "UserOnboardingTour|Click on one of the %{emphasisStart}pipeline IDs%{emphasisEnd} to see the details of a pipeline." +msgid "Timeago|right now" msgstr "" -msgid "UserOnboardingTour|Click to open the latest commit to see its details." +msgid "Timeout" msgstr "" -msgid "UserOnboardingTour|Close 'Learn GitLab'" +msgid "Time|hr" +msgid_plural "Time|hrs" +msgstr[0] "" +msgstr[1] "" + +msgid "Time|min" +msgid_plural "Time|mins" +msgstr[0] "" +msgstr[1] "" + +msgid "Time|s" msgstr "" -msgid "UserOnboardingTour|Commits are shown in chronological order and can be filtered by the commit message or by the branch." +msgid "Tip:" msgstr "" -msgid "UserOnboardingTour|Create a project" +msgid "Title" msgstr "" -msgid "UserOnboardingTour|Exit 'Learn GitLab'" +msgid "Title:" msgstr "" -msgid "UserOnboardingTour|Got it" +msgid "Titles and Filenames" msgstr "" -msgid "UserOnboardingTour|Great job! %{clapHands} We hope the tour was helpful and that you learned how to use GitLab.%{lineBreak}%{lineBreak}We'd love to get your feedback on this tour.%{lineBreak}%{lineBreak}%{emphasisStart}How helpful would you say this guided tour was?%{emphasisEnd}%{lineBreak}%{lineBreak}" +msgid "To %{link_to_help} of your domain, add the above key to a TXT record within to your DNS configuration." msgstr "" -msgid "UserOnboardingTour|Guided GitLab Tour" +msgid "To Do" msgstr "" -msgid "UserOnboardingTour|Here you can compare the changes of this branch to another one. Changes are divided by files so that it's easier to see what was changed where." +msgid "To GitLab" msgstr "" -msgid "UserOnboardingTour|Here you can create a project from scratch, start with a template or import a repository from other platforms. Whatever you choose, we'll guide you through the process.%{lineBreak}%{lineBreak}Choose a way to create a project and click on %{emphasisStart}Create Project%{emphasisEnd} to progress to the next step." +msgid "To access this domain create a new DNS record" msgstr "" -msgid "UserOnboardingTour|Here you can see the breakdown of the pipelines: its stages and jobs in each of the stages and their status.%{lineBreak}%{lineBreak}Our CI/CD pipelines are quite complex, most of our users have fewer and simpler pipelines." +msgid "To add an SSH key you need to %{generate_link_start}generate one%{link_end} or use an %{existing_link_start}existing key%{link_end}." msgstr "" -msgid "UserOnboardingTour|Here you can see the current members of the project (just you at the moment) and invite new members.%{lineBreak}%{lineBreak}You can invite multiple members at once (existing GitLab users or invite by email) and you can also set their roles and permissions.%{lineBreak}%{lineBreak}Add a few members and click on %{emphasisStart}Add to project%{emphasisEnd} to complete this step." +msgid "To add the entry manually, provide the following details to the application on your phone." msgstr "" -msgid "UserOnboardingTour|Here you can see what changes were made with this commit, on what branch and if there's a related merge request. The status of the pipeline will also show up if CI/CD is set up.%{lineBreak}%{lineBreak}You can also comment on the lines of code that were changed and start a discussion with your colleagues!" +msgid "To connect GitHub repositories, you first need to authorize GitLab to access the list of your GitHub repositories." msgstr "" -msgid "UserOnboardingTour|Here's an overview of branches in the %{emphasisStart}%{projectName}%{emphasisEnd} project. They're split into Active and Stale.%{lineBreak}%{lineBreak}From here, you can create a new merge request, from a branch or compare the branch to any other branch in the project. By default, it will compare it to the master branch." +msgid "To define internal users, first enable new users set to external" msgstr "" -msgid "UserOnboardingTour|Invite colleagues" +msgid "To enable it and see User Cohorts, visit %{application_settings_link_start}application settings%{application_settings_link_end}." msgstr "" -msgid "UserOnboardingTour|Issues are great for communicating and keeping track of progess in GitLab. These are all issues that are open in the %{emphasisStart}%{projectName}%{emphasisEnd}.%{lineBreak}%{lineBreak}You can help us improve GitLab by contributing work to issues that are labeled Accepting merge requests.%{lineBreak}%{lineBreak}This list can be filtered by labels, milestones, assignees, authors... We'll show you how it looks like when the list is filtered by a label." +msgid "To get started you enter your FogBugz URL and login information below. In the next steps, you'll be able to map users and select the projects you want to import." msgstr "" -msgid "UserOnboardingTour|Learn GitLab" +msgid "To get started, please enter your Gitea Host URL and a %{link_to_personal_token}." msgstr "" -msgid "UserOnboardingTour|Let's take a closer look at a merge request. Click on the title of one." +msgid "To help improve GitLab and its user experience, GitLab will periodically collect usage information." msgstr "" -msgid "UserOnboardingTour|Let's take a closer look at all the commits. Click on %{emphasisStart}Commits%{emphasisEnd}." +msgid "To help improve GitLab, we would like to periodically collect usage information. This can be changed at any time in %{settings_link_start}Settings%{link_end}. %{info_link_start}More Information%{link_end}" msgstr "" -msgid "UserOnboardingTour|Let's take a closer look at the repository of this project. Click on %{emphasisStart}Repository%{emphasisEnd}." +msgid "To import an SVN repository, check out %{svn_link}." msgstr "" -msgid "UserOnboardingTour|No thanks" +msgid "To keep this project going, create a new issue" msgstr "" -msgid "UserOnboardingTour|Ok, let's go" +msgid "To keep this project going, create a new merge request" msgstr "" -msgid "UserOnboardingTour|Ok, show me" +msgid "To link Sentry to GitLab, enter your Sentry URL and Auth Token." msgstr "" -msgid "UserOnboardingTour|Open one of the issues by clicking on its title." +msgid "To move or copy an entire GitLab project from another GitLab installation to this one, navigate to the original project's settings page, generate an export file, and upload it here." msgstr "" -msgid "UserOnboardingTour|Restart this step" +msgid "To preserve performance only %{display_size} of %{real_size} files are displayed." msgstr "" -msgid "UserOnboardingTour|Skip this step" +msgid "To protect this issue's confidentiality, %{link_start}fork the project%{link_end} and set the forks visiblity to private." msgstr "" -msgid "UserOnboardingTour|Sweet! Your project was created is is ready to be used.%{lineBreak}%{lineBreak}You can start adding files to the repository or clone it. One last thing we want to show you is how to invite your colleagues to your new project." +msgid "To protect this issue's confidentiality, a private fork of this project was selected." msgstr "" -msgid "UserOnboardingTour|Take a look. Here's a nifty menu for quickly creating issues, merge requests, snippets, projects and groups. Click on it and select \"New project\" from the \"GitLab\" section to get started." +msgid "To see all the user's personal access tokens you must impersonate them first." msgstr "" -msgid "UserOnboardingTour|Thanks for the feedback! %{thumbsUp}" +msgid "To set up this service:" msgstr "" -msgid "UserOnboardingTour|That's it for issues. Let'st take a look at %{emphasisStart}Merge Requests%{emphasisEnd}." +msgid "To specify the notification level per project of a group you belong to, you need to visit project page and change notification level there." msgstr "" -msgid "UserOnboardingTour|That's it for merge requests. Now for the finla part of this guided tour - the %{emphasisStart}CI/CD%{emphasisEnd}." +msgid "To start serving your jobs you can add Runners to your group" msgstr "" -msgid "UserOnboardingTour|That's it for the Repository. Let's take a look at the %{emphasisStart}Issues%{emphasisEnd}." +msgid "To start serving your jobs you can either add specific Runners to your project or use shared Runners" msgstr "" -msgid "UserOnboardingTour|The structure of this page is very similar to the onfe of issues. Status, description, discussion and the sidebar are all here.%{lineBreak}%{lineBreak}But take a look below the description and you'll notice that there's more information about the merge request, the CI/CD pipeline and the options for approving it.%{lineBreak}%{lineBreak}Below, alongside the discussion you can also see more information about commits in this merge request, the status of pipelines and review all changes that were made." +msgid "To this GitLab instance" msgstr "" -msgid "UserOnboardingTour|There's a lot of information here but don't worry, we'll go through it.%{lineBreak}%{lineBreak}On the top you can see the status of the issue and when it was opened and by whom. Directly below it is the issue description and below that are other %{emphasisStart}related issues%{emphasisEnd} and %{emphasisStart}merge requests%{emphasisEnd} (if any). Then below that is the %{emphasisStart}discussion%{emphasisEnd}, that's where most of the communication happens.%{lineBreak}%{lineBreak}On the right, there's a sidebar where you can view/change the %{emphasisStart}assignee, milestone, due date, labels, weight%{emphasisEnd}, etc." +msgid "To validate your GitLab CI configurations, go to 'CI/CD → Pipelines' inside your project, and click on the 'CI Lint' button." msgstr "" -msgid "UserOnboardingTour|These are all the CI/CD pipelines we have for our %{emphasisStart}%{projectName}%{emphasisEnd} project.%{lineBreak}%{lineBreak}Here you can see the status of each pipeline, for what commit it's running for, its stages and the status for them." +msgid "To widen your search, change or remove filters above" msgstr "" -msgid "UserOnboardingTour|These are all the issues that are available for community contributions. Let's take a closer look at one of them." +msgid "To-Do List" msgstr "" -msgid "UserOnboardingTour|This is an overview of all merge requests in this project. Similarly to the issues overview it can be filtered down by things like labels, milestones, authors, assignees, etc." +msgid "To-do item successfully marked as done." msgstr "" -msgid "UserOnboardingTour|This is the repository for the %{emphasisStart}%{projectName}%{emphasisEnd} project. All our code is stored here. Feel free to explore around and take a closer look at folders and files.%{lineBreak}%{lineBreak}Above the file structure, you can see the latest commit, who the author is and the status of the CI/CD pipeline.%{lineBreak}%{lineBreak}If you scroll down, below the file strcture, you'll find the Readme of this project. This is defined in the README.md file at the root of the repository." +msgid "Today" msgstr "" -msgid "UserOnboardingTour|Welcome to the project overview of the %{emphasisStart}%{projectName}%{emphasisEnd} project. This is the project that we uese to work on GitLab. At first, a project seems like a simple repository, but at GitLab, a project is so much more.%{lineBreak}%{lineBreak}You can create projects for hosting your codebase, use it as an issue tracker, collaboreate on code, and continuously build, test, and deploy your app with built-in GitLab CI/CD." +msgid "Toggle Markdown preview" msgstr "" -msgid "UserProfile|Activity" +msgid "Toggle Sidebar" msgstr "" -msgid "UserProfile|Already reported for abuse" +msgid "Toggle backtrace" msgstr "" -msgid "UserProfile|Contributed projects" +msgid "Toggle collapse" msgstr "" -msgid "UserProfile|Edit profile" +msgid "Toggle comments for this file" msgstr "" -msgid "UserProfile|Explore public groups to find projects to contribute to." +msgid "Toggle commit description" msgstr "" -msgid "UserProfile|Groups" +msgid "Toggle commit list" msgstr "" -msgid "UserProfile|Groups are the best way to manage projects and members." +msgid "Toggle emoji award" msgstr "" -msgid "UserProfile|Join or create a group to start contributing by commenting on issues or submitting merge requests!" +msgid "Toggle navigation" msgstr "" -msgid "UserProfile|Most Recent Activity" +msgid "Toggle sidebar" msgstr "" -msgid "UserProfile|No snippets found." +msgid "Toggle the Performance Bar" msgstr "" -msgid "UserProfile|Overview" +msgid "Toggle this dialog" msgstr "" -msgid "UserProfile|Personal projects" +msgid "Toggle thread" msgstr "" -msgid "UserProfile|Report abuse" +msgid "ToggleButton|Toggle Status: OFF" msgstr "" -msgid "UserProfile|Snippets" +msgid "ToggleButton|Toggle Status: ON" msgstr "" -msgid "UserProfile|Snippets in GitLab can either be private, internal, or public." +msgid "Toggled :%{name}: emoji award." msgstr "" -msgid "UserProfile|Star projects to track their progress and show your appreciation." +msgid "Toggles :%{name}: emoji award." msgstr "" -msgid "UserProfile|Starred projects" +msgid "Tomorrow" msgstr "" -msgid "UserProfile|Subscribe" +msgid "Too many changes to show." msgstr "" -msgid "UserProfile|This user doesn't have any personal projects" +msgid "Topics" msgstr "" -msgid "UserProfile|This user has a private profile" +msgid "Total Time" msgstr "" -msgid "UserProfile|This user hasn't contributed to any projects" +msgid "Total test time for all commits/merges" msgstr "" -msgid "UserProfile|This user hasn't starred any projects" +msgid "Total: %{total}" msgstr "" -msgid "UserProfile|View all" +msgid "Track time with quick actions" msgstr "" -msgid "UserProfile|View user in admin area" +msgid "Transfer project" msgstr "" -msgid "UserProfile|You can create a group for several dependent projects." +msgid "TransferGroup|Database is not supported." msgstr "" -msgid "UserProfile|You haven't created any personal projects." +msgid "TransferGroup|Group is already a root group." msgstr "" -msgid "UserProfile|You haven't created any snippets." +msgid "TransferGroup|Group is already associated to the parent group." msgstr "" -msgid "UserProfile|Your projects can be available publicly, internally, or privately, at your choice." +msgid "TransferGroup|The parent group already has a subgroup with the same path." msgstr "" -msgid "Username (optional)" +msgid "TransferGroup|Transfer failed: %{error_message}" msgstr "" -msgid "Username is already taken." +msgid "TransferGroup|You don't have enough permissions." msgstr "" -msgid "Username is available." +msgid "TransferProject|Cannot move project" msgstr "" -msgid "Username or email" +msgid "TransferProject|Please select a new namespace for your project." msgstr "" -msgid "Users" +msgid "TransferProject|Project cannot be transferred, because tags are present in its container registry" msgstr "" -msgid "Users outside of license" +msgid "TransferProject|Project with same name or path in target namespace already exists" msgstr "" -msgid "Users requesting access to" +msgid "TransferProject|Transfer failed, please contact an admin." msgstr "" -msgid "Users were successfully added." +msgid "Tree view" msgstr "" -msgid "Users with a Guest role or those who don't belong to any projects or groups don't count towards seats in use." +msgid "Trending" msgstr "" -msgid "UsersSelect|%{name} + %{length} more" +msgid "Trigger removed." msgstr "" -msgid "UsersSelect|Any User" +msgid "Trigger this manual action" msgstr "" -msgid "UsersSelect|Assignee" +msgid "Trigger token:" msgstr "" -msgid "UsersSelect|No assignee - %{openingTag} assign yourself %{closingTag}" +msgid "Trigger variables:" msgstr "" -msgid "UsersSelect|Unassigned" +msgid "Trigger was created successfully." msgstr "" -msgid "Using %{code_start}::%{code_end} denotes a %{link_start}scoped label set%{link_end}" +msgid "Trigger was successfully updated." msgstr "" -msgid "Using required encryption strategy when encrypted field is missing!" +msgid "Triggers can force a specific branch or tag to get rebuilt with an API call. These tokens will impersonate their associated user including their access to projects and their project permissions." msgstr "" -msgid "Validate" +msgid "Try again" msgstr "" -msgid "Validate your GitLab CI configuration file" +msgid "Try again?" msgstr "" -msgid "Validations failed." +msgid "Try to fork again" msgstr "" -msgid "Validity" +msgid "Trying to communicate with your device. Plug it in (if you haven't already) and press the button on the device now." msgstr "" -msgid "Value" +msgid "Tuesday" msgstr "" -msgid "Variables" +msgid "Turn Off" msgstr "" -msgid "Various container registry settings." +msgid "Turn On" msgstr "" -msgid "Various email settings." +msgid "Twitter" msgstr "" -msgid "Various localization settings." +msgid "Two-Factor Authentication" msgstr "" -msgid "Various settings that affect GitLab performance." +msgid "Two-factor Authentication" msgstr "" -msgid "Verification information" +msgid "Two-factor Authentication Recovery codes" msgstr "" -msgid "Verification status" +msgid "Two-factor Authentication has been disabled for this user" msgstr "" -msgid "Verified" +msgid "Two-factor authentication" msgstr "" -msgid "Version" +msgid "Type" msgstr "" -msgid "Very helpful" +msgid "U2F Devices (%{length})" msgstr "" -msgid "View app" +msgid "U2F only works with HTTPS-enabled websites. Contact your administrator for more details." msgstr "" -msgid "View dependency details for your project" +msgid "URL of the external storage that will serve the repository static objects (e.g. archives, blobs, ...)." msgstr "" -msgid "View deployment" +msgid "Unable to apply suggestions to a deleted line." msgstr "" -msgid "View details: %{details_url}" +msgid "Unable to connect to Prometheus server" msgstr "" -msgid "View documentation" +msgid "Unable to connect to server: %{error}" msgstr "" -msgid "View eligible approvers" +msgid "Unable to load the diff. %{button_try_again}" msgstr "" -msgid "View epics list" +msgid "Unable to resolve" msgstr "" -msgid "View file @ " +msgid "Unable to save your changes. Please try again." msgstr "" -msgid "View full dashboard" +msgid "Unable to schedule a pipeline to run immediately" msgstr "" -msgid "View group labels" +msgid "Unable to update label prioritization at this time" msgstr "" -msgid "View in Sentry" +msgid "Unable to update this issue at this time." msgstr "" -msgid "View it on GitLab" +msgid "Unarchive project" msgstr "" -msgid "View job" +msgid "Unarchiving the project will restore people's ability to make changes to it. The repository can be committed to, and issues, comments and other entities can be created. Once active this project shows up in the search and on the dashboard." msgstr "" -msgid "View job trace" +msgid "Unblock" msgstr "" -msgid "View jobs" +msgid "Undo" msgstr "" -msgid "View labels" +msgid "Unfortunately, your email message to GitLab could not be processed." msgstr "" -msgid "View log" +msgid "Uninstall" msgstr "" -msgid "View open merge request" +msgid "Uninstalling" msgstr "" -msgid "View project labels" +msgid "Unknown encryption strategy: %{encrypted_strategy}!" msgstr "" -msgid "View replaced file @ " +msgid "Unknown format" msgstr "" -msgid "View the documentation" +msgid "Unknown response text" msgstr "" -msgid "Viewing commit" +msgid "Unlock" msgstr "" -msgid "Visibility" +msgid "Unlock the discussion" msgstr "" -msgid "Visibility and access controls" +msgid "Unlock this %{issuableDisplayName}? Everyone will be able to comment." msgstr "" -msgid "Visibility level" +msgid "Unlocked" msgstr "" -msgid "Visibility level:" +msgid "Unlocked the discussion." msgstr "" -msgid "Visibility settings have been disabled by the administrator." +msgid "Unlocks the discussion." msgstr "" -msgid "Visibility, project features, permissions" +msgid "Unmarked this %{noun} as Work In Progress." msgstr "" -msgid "Visibility:" +msgid "Unmarks this %{noun} as Work In Progress." msgstr "" -msgid "VisibilityLevel|Internal" +msgid "Unresolve discussion" msgstr "" -msgid "VisibilityLevel|Private" +msgid "Unresolve thread" msgstr "" -msgid "VisibilityLevel|Public" +msgid "Unschedule job" msgstr "" -msgid "VisibilityLevel|Unknown" +msgid "Unstage" msgstr "" -msgid "VisualReviewApp|%{stepStart}Step 1%{stepEnd}. Copy the following script:" +msgid "Unstage all changes" msgstr "" -msgid "VisualReviewApp|%{stepStart}Step 2%{stepEnd}. Add it to the %{headTags} tags of every page of your application, ensuring the merge request ID is set or not set as required. " +msgid "Unstage changes" msgstr "" -msgid "VisualReviewApp|%{stepStart}Step 3%{stepEnd}. Open the Review App and provide a %{linkStart}personal access token%{linkEnd}." +msgid "Unstaged" msgstr "" -msgid "VisualReviewApp|%{stepStart}Step 4%{stepEnd}. If not previously %{linkStart}configured%{linkEnd} by a developer, enter the merge request ID for the review when prompted. The ID of this merge request is %{stepStart}%{mrId}%{stepStart}." +msgid "Unstaged %{type}" msgstr "" -msgid "VisualReviewApp|%{stepStart}Step 5%{stepEnd}. Leave feedback in the Review App." +msgid "Unstaged and staged %{type}" msgstr "" -msgid "VisualReviewApp|Copy merge request ID to clipboard" +msgid "Unstar" msgstr "" -msgid "VisualReviewApp|Copy script to clipboard" +msgid "Unsubscribe" msgstr "" -msgid "VisualReviewApp|Enable Visual Reviews" +msgid "Unsubscribe at group level" msgstr "" -msgid "VisualReviewApp|Follow the steps below to enable Visual Reviews inside your application." +msgid "Unsubscribe at project level" msgstr "" -msgid "VisualReviewApp|Open review app" +msgid "Unsubscribe from %{type}" msgstr "" -msgid "VisualReviewApp|Review" +msgid "Unsubscribed from this %{quick_action_target}." msgstr "" -msgid "VisualReviewApp|Steps 1 and 2 (and sometimes 3) are performed once by the developer before requesting feedback. Steps 3 (if necessary), 4, and 5 are performed by the reviewer each time they perform a review." +msgid "Unsubscribes from this %{quick_action_target}." msgstr "" -msgid "Vulnerabilities" +msgid "Until" msgstr "" -msgid "Vulnerabilities over time" +msgid "Unverified" msgstr "" -msgid "Vulnerability-Check requires one or more merge request approvals only if high or critical security vulnerabilities are detected." +msgid "Up to date" msgstr "" -msgid "VulnerabilityChart|%{formattedStartDate} to today" +msgid "Upcoming" msgstr "" -msgid "Vulnerability|Class" +msgid "Upcoming Release" msgstr "" -msgid "Vulnerability|Confidence" +msgid "Update" msgstr "" -msgid "Vulnerability|Description" +msgid "Update failed" msgstr "" -msgid "Vulnerability|File" +msgid "Update it" msgstr "" -msgid "Vulnerability|Identifiers" +msgid "Update now" msgstr "" -msgid "Vulnerability|Image" +msgid "Update your bookmarked URLs as filtered/sorted branches URL has been changed." msgstr "" -msgid "Vulnerability|Instances" +msgid "Update your group name, description, avatar, and visibility." msgstr "" -msgid "Vulnerability|Links" +msgid "Update your project name, topics, description and avatar." msgstr "" -msgid "Vulnerability|Namespace" +msgid "UpdateProject|Cannot rename project because it contains container registry tags!" msgstr "" -msgid "Vulnerability|Project" +msgid "UpdateProject|Could not set the default branch" msgstr "" -msgid "Vulnerability|Report Type" +msgid "UpdateProject|New visibility level not allowed!" msgstr "" -msgid "Vulnerability|Severity" +msgid "UpdateProject|Project could not be updated!" msgstr "" -msgid "Wait for the source to load to copy it to the clipboard" +msgid "Updated" msgstr "" -msgid "Waiting for performance data" +msgid "Updated to" msgstr "" -msgid "Want to see the data? Please ask an administrator for access." +msgid "Updating" msgstr "" -msgid "We can't find an epic that matches what you are looking for." +msgid "Upload GoogleCodeProjectHosting.json here:" msgstr "" -msgid "We can't find an issue that matches what you are looking for." +msgid "Upload CSV file" msgstr "" -msgid "We could not determine the path to remove the epic" +msgid "Upload New File" msgstr "" -msgid "We could not determine the path to remove the issue" +msgid "Upload a certificate for your domain with all intermediates" msgstr "" -msgid "We couldn't find any results matching" +msgid "Upload a private key for your certificate" msgstr "" -msgid "We created a short guided tour that will help you learn the basics of GitLab and how it will help you be better at your job. It should only take a couple of minutes. You will be guided by two types of helpers, best recognized by their color." +msgid "Upload file" msgstr "" -msgid "We detected potential spam in the %{humanized_resource_name}. Please solve the reCAPTCHA to proceed." +msgid "Upload file does not exist" msgstr "" -msgid "We don't have enough data to show this stage." +msgid "Upload object map" msgstr "" -msgid "We heard back from your U2F device. You have been authenticated." +msgid "UploadLink|click to upload" msgstr "" -msgid "We sent you an email with reset password instructions" +msgid "Upvotes" msgstr "" -msgid "We want to be sure it is you, please confirm you are not a robot." +msgid "Usage ping is not enabled" msgstr "" -msgid "Web IDE" +msgid "Usage statistics" msgstr "" -msgid "Web Terminal" +msgid "Use %{native_redirect_uri} for local tests" msgstr "" -msgid "Web terminal" +msgid "Use a hardware device to add the second factor of authentication." msgstr "" -msgid "Webhooks" +msgid "Use an one time password authenticator on your mobile device or computer to enable two-factor authentication (2FA)." msgstr "" -msgid "Webhooks Help" +msgid "Use group milestones to manage issues from multiple projects in the same milestone." msgstr "" -msgid "Webhooks allow you to trigger a URL if, for example, new code is pushed or a new issue is created. You can configure webhooks to listen for specific events like pushes, issues or merge requests. Group webhooks will apply to all projects in a group, allowing you to standardize webhook functionality across your entire group." +msgid "Use one line per URI" msgstr "" -msgid "Wednesday" +msgid "Use template" msgstr "" -msgid "Weeks" +msgid "Use the following registration token during setup:" msgstr "" -msgid "Weight" +msgid "Use your global notification setting" msgstr "" -msgid "Weight %{weight}" +msgid "User %{current_user_username} has started impersonating %{username}" msgstr "" -msgid "Welcome to the Guided GitLab Tour" +msgid "User %{username} was successfully removed." msgstr "" -msgid "Welcome to your Issue Board!" +msgid "User Cohorts are only shown when the %{usage_ping_link_start}usage ping%{usage_ping_link_end} is enabled." msgstr "" -msgid "What are you searching for?" +msgid "User OAuth applications" msgstr "" -msgid "When a runner is locked, it cannot be assigned to other projects" +msgid "User Settings" msgstr "" -msgid "When enabled, users cannot use GitLab until the terms have been accepted." +msgid "User and IP Rate Limits" msgstr "" -msgid "When leaving the URL blank, classification labels can still be specified without disabling cross project features or performing external authorization checks." +msgid "User identity was successfully created." msgstr "" -msgid "When this merge request is accepted" -msgid_plural "When these merge requests are accepted" -msgstr[0] "" -msgstr[1] "" - -msgid "When using the http:// or https:// protocols, please provide the exact URL to the repository. HTTP redirects will not be followed." +msgid "User identity was successfully removed." msgstr "" -msgid "When:" +msgid "User identity was successfully updated." msgstr "" -msgid "White helpers give contextual information." +msgid "User key was successfully removed." msgstr "" -msgid "Whitelist to allow requests to the local network from hooks and services" +msgid "User map" msgstr "" -msgid "Who can see this group?" +msgid "User settings" msgstr "" -msgid "Who will be able to see this group?" +msgid "User was successfully created." msgstr "" -msgid "Wiki" +msgid "User was successfully removed from group and any subresources." msgstr "" -msgid "Wiki pages" +msgid "User was successfully removed from project." msgstr "" -msgid "Wiki was successfully updated." +msgid "User was successfully updated." msgstr "" -msgid "WikiClone|Clone your wiki" +msgid "UserProfile|Activity" msgstr "" -msgid "WikiClone|Git Access" +msgid "UserProfile|Already reported for abuse" msgstr "" -msgid "WikiClone|Install Gollum" +msgid "UserProfile|Contributed projects" msgstr "" -msgid "WikiClone|It is recommended to install %{markdown} so that GFM features render locally:" +msgid "UserProfile|Edit profile" msgstr "" -msgid "WikiClone|Start Gollum and edit locally" +msgid "UserProfile|Explore public groups to find projects to contribute to." msgstr "" -msgid "WikiEditPageTip|Tip: You can move this page by adding the path to the beginning of the title." +msgid "UserProfile|Groups" msgstr "" -msgid "WikiEdit|There is already a page with the same title in that path." +msgid "UserProfile|Groups are the best way to manage projects and members." msgstr "" -msgid "WikiEmptyIssueMessage|Suggest wiki improvement" +msgid "UserProfile|Join or create a group to start contributing by commenting on issues or submitting merge requests!" msgstr "" -msgid "WikiEmptyIssueMessage|You must be a project member in order to add wiki pages. If you have suggestions for how to improve the wiki for this project, consider opening an issue in the %{issues_link}." +msgid "UserProfile|Most Recent Activity" msgstr "" -msgid "WikiEmptyIssueMessage|issue tracker" +msgid "UserProfile|No snippets found." msgstr "" -msgid "WikiEmpty|A wiki is where you can store all the details about your project. This can include why you've created it, its principles, how to use it, and so on." +msgid "UserProfile|Overview" msgstr "" -msgid "WikiEmpty|Create your first page" +msgid "UserProfile|Personal projects" msgstr "" -msgid "WikiEmpty|Suggest wiki improvement" +msgid "UserProfile|Report abuse" msgstr "" -msgid "WikiEmpty|The wiki lets you write documentation for your project" +msgid "UserProfile|Snippets" msgstr "" -msgid "WikiEmpty|This project has no wiki pages" +msgid "UserProfile|Snippets in GitLab can either be private, internal, or public." msgstr "" -msgid "WikiEmpty|You must be a project member in order to add wiki pages." +msgid "UserProfile|Star projects to track their progress and show your appreciation." msgstr "" -msgid "WikiHistoricalPage|This is an old version of this page." +msgid "UserProfile|Starred projects" msgstr "" -msgid "WikiHistoricalPage|You can view the %{most_recent_link} or browse the %{history_link}." +msgid "UserProfile|Subscribe" msgstr "" -msgid "WikiHistoricalPage|history" +msgid "UserProfile|This user doesn't have any personal projects" msgstr "" -msgid "WikiHistoricalPage|most recent version" +msgid "UserProfile|This user has a private profile" msgstr "" -msgid "WikiMarkdownDocs|More examples are in the %{docs_link}" +msgid "UserProfile|This user hasn't contributed to any projects" msgstr "" -msgid "WikiMarkdownDocs|documentation" +msgid "UserProfile|This user hasn't starred any projects" msgstr "" -msgid "WikiMarkdownTip|To link to a (new) page, simply type %{link_example}" +msgid "UserProfile|View all" msgstr "" -msgid "WikiNewPageTip|Tip: You can specify the full path for the new file. We will automatically create any missing directories." +msgid "UserProfile|View user in admin area" msgstr "" -msgid "WikiPageConfirmDelete|Are you sure you want to delete this page?" +msgid "UserProfile|You can create a group for several dependent projects." msgstr "" -msgid "WikiPageConfirmDelete|Delete page" +msgid "UserProfile|You haven't created any personal projects." msgstr "" -msgid "WikiPageConfirmDelete|Delete page %{pageTitle}?" +msgid "UserProfile|You haven't created any snippets." msgstr "" -msgid "WikiPageConflictMessage|Someone edited the page the same time you did. Please check out %{page_link} and make sure your changes will not unintentionally remove theirs." +msgid "UserProfile|Your projects can be available publicly, internally, or privately, at your choice." msgstr "" -msgid "WikiPageConflictMessage|the page" +msgid "Username (optional)" msgstr "" -msgid "WikiPageCreate|Create %{pageTitle}" +msgid "Username is already taken." msgstr "" -msgid "WikiPageEdit|Update %{pageTitle}" +msgid "Username is available." msgstr "" -msgid "WikiPage|Write your content or drag files here…" +msgid "Username or email" msgstr "" -msgid "Wiki|Create New Page" +msgid "Users" msgstr "" -msgid "Wiki|Create page" +msgid "Users requesting access to" msgstr "" -msgid "Wiki|Created date" +msgid "Users were successfully added." msgstr "" -msgid "Wiki|Edit Page" +msgid "UsersSelect|%{name} + %{length} more" msgstr "" -msgid "Wiki|More Pages" +msgid "UsersSelect|Any User" msgstr "" -msgid "Wiki|New page" +msgid "UsersSelect|Assignee" msgstr "" -msgid "Wiki|Page history" +msgid "UsersSelect|No assignee - %{openingTag} assign yourself %{closingTag}" msgstr "" -msgid "Wiki|Page title" +msgid "UsersSelect|Unassigned" msgstr "" -msgid "Wiki|Page version" +msgid "Using required encryption strategy when encrypted field is missing!" msgstr "" -msgid "Wiki|Pages" +msgid "Validate" msgstr "" -msgid "Wiki|Title" +msgid "Validate your GitLab CI configuration file" msgstr "" -msgid "Wiki|Wiki Pages" +msgid "Validations failed." msgstr "" -msgid "Will deploy to" +msgid "Value" msgstr "" -msgid "With contribution analytics you can have an overview for the activity of issues, merge requests and push events of your organization and its members." +msgid "Variables" msgstr "" -msgid "Withdraw Access Request" +msgid "Various container registry settings." msgstr "" -msgid "Workflow Help" +msgid "Various email settings." msgstr "" -msgid "Write" +msgid "Various localization settings." msgstr "" -msgid "Write a comment or drag your files here…" +msgid "Various settings that affect GitLab performance." msgstr "" -msgid "Write a comment…" +msgid "Verification status" msgstr "" -msgid "Write access allowed" +msgid "Verified" msgstr "" -msgid "Write milestone description..." +msgid "Version" msgstr "" -msgid "Wrong extern UID provided. Make sure Auth0 is configured correctly." +msgid "View app" msgstr "" -msgid "Yes" +msgid "View deployment" msgstr "" -msgid "Yes or No" +msgid "View details: %{details_url}" msgstr "" -msgid "Yes, add it" +msgid "View documentation" msgstr "" -msgid "Yes, let me map Google Code users to full names or GitLab users." +msgid "View file @ " msgstr "" -msgid "Yesterday" +msgid "View full dashboard" msgstr "" -msgid "You" +msgid "View group labels" msgstr "" -msgid "You are an admin, which means granting access to %{client_name} will allow them to interact with GitLab as an admin as well. Proceed with caution." +msgid "View in Sentry" msgstr "" -msgid "You are attempting to delete a file that has been previously updated." +msgid "View it on GitLab" msgstr "" -msgid "You are attempting to update a file that has changed since you started editing it." +msgid "View job trace" msgstr "" -msgid "You are connected to the Prometheus server, but there is currently no data to display." +msgid "View jobs" msgstr "" -msgid "You are going to remove %{group_name}, this will also remove all of its subgroups and projects. Removed groups CANNOT be restored! Are you ABSOLUTELY sure?" +msgid "View labels" msgstr "" -msgid "You are going to remove %{project_full_name}. Removed project CANNOT be restored! Are you ABSOLUTELY sure?" +msgid "View log" msgstr "" -msgid "You are going to remove the fork relationship to source project %{forked_from_project}. Are you ABSOLUTELY sure?" +msgid "View open merge request" msgstr "" -msgid "You are going to transfer %{project_full_name} to another owner. Are you ABSOLUTELY sure?" +msgid "View project labels" msgstr "" -msgid "You are not allowed to unlink your primary login account" +msgid "View replaced file @ " msgstr "" -msgid "You are now impersonating %{username}" +msgid "View the documentation" msgstr "" -msgid "You are on a read-only GitLab instance." +msgid "Viewing commit" msgstr "" -msgid "You are receiving this message because you are a GitLab administrator for %{url}." +msgid "Visibility" msgstr "" -msgid "You can %{linkStart}view the blob%{linkEnd} instead." +msgid "Visibility and access controls" msgstr "" -msgid "You can also create a project from the command line." +msgid "Visibility level" msgstr "" -msgid "You can also press ⌘-Enter" +msgid "Visibility level:" msgstr "" -msgid "You can also press Ctrl-Enter" +msgid "Visibility settings have been disabled by the administrator." msgstr "" -msgid "You can also star a label to make it a priority label." +msgid "Visibility, project features, permissions" msgstr "" -msgid "You can also test your %{gitlab_ci_yml} in %{lint_link_start}CI Lint%{lint_link_end}" +msgid "Visibility:" msgstr "" -msgid "You can also upload existing files from your computer using the instructions below." +msgid "VisibilityLevel|Internal" msgstr "" -msgid "You can create files directly in GitLab using one of the following options." +msgid "VisibilityLevel|Private" msgstr "" -msgid "You can easily contribute to them by requesting to join these groups." +msgid "VisibilityLevel|Public" msgstr "" -msgid "You can easily install a Runner on a Kubernetes cluster. %{link_to_help_page}" +msgid "VisibilityLevel|Unknown" msgstr "" -msgid "You can filter by \"days to merge\" by clicking on the columns in the chart." +msgid "Wait for the source to load to copy it to the clipboard" msgstr "" -msgid "You can invite a new member to %{project_name} or invite another group." +msgid "Waiting for performance data" msgstr "" -msgid "You can invite a new member to %{project_name}." +msgid "Want to see the data? Please ask an administrator for access." msgstr "" -msgid "You can invite another group to %{project_name}." +msgid "We couldn't find any results matching" msgstr "" -msgid "You can move around the graph by using the arrow keys." +msgid "We detected potential spam in the %{humanized_resource_name}. Please solve the reCAPTCHA to proceed." msgstr "" -msgid "You can now submit a merge request to get this change into the original branch." +msgid "We don't have enough data to show this stage." msgstr "" -msgid "You can now submit a merge request to get this change into the original project." +msgid "We heard back from your U2F device. You have been authenticated." msgstr "" -msgid "You can only add files when you are on a branch" +msgid "We sent you an email with reset password instructions" msgstr "" -msgid "You can only edit files when you are on a branch" +msgid "We want to be sure it is you, please confirm you are not a robot." msgstr "" -msgid "You can only merge once the items above are resolved" +msgid "Web IDE" msgstr "" -msgid "You can only transfer the project to namespaces you manage." +msgid "Web terminal" msgstr "" -msgid "You can resolve the merge conflict using either the Interactive mode, by choosing %{use_ours} or %{use_theirs} buttons, or by editing the files directly. Commit these changes into %{branch_name}" +msgid "Webhooks" msgstr "" -msgid "You can see your chat accounts." +msgid "Webhooks Help" msgstr "" -msgid "You can set up jobs to only use Runners with specific tags. Separate tags with commas." +msgid "Wednesday" msgstr "" -msgid "You can specify notification level per group or per project." +msgid "Welcome to your Issue Board!" msgstr "" -msgid "You can test your .gitlab-ci.yml in %{linkStart}CI Lint%{linkEnd}." +msgid "What are you searching for?" msgstr "" -msgid "You cannot access the raw file. Please wait a minute." +msgid "When a runner is locked, it cannot be assigned to other projects" msgstr "" -msgid "You cannot impersonate a blocked user" +msgid "When enabled, users cannot use GitLab until the terms have been accepted." msgstr "" -msgid "You cannot impersonate a user who cannot log in" +msgid "When leaving the URL blank, classification labels can still be specified without disabling cross project features or performing external authorization checks." msgstr "" -msgid "You cannot impersonate an internal user" +msgid "When this merge request is accepted" +msgid_plural "When these merge requests are accepted" +msgstr[0] "" +msgstr[1] "" + +msgid "When using the http:// or https:// protocols, please provide the exact URL to the repository. HTTP redirects will not be followed." msgstr "" -msgid "You cannot play this scheduled pipeline at the moment. Please wait a minute." +msgid "When:" msgstr "" -msgid "You cannot write to a read-only secondary GitLab Geo instance. Please use %{link_to_primary_node} instead." +msgid "Whitelist to allow requests to the local network from hooks and services" msgstr "" -msgid "You cannot write to this read-only GitLab instance." +msgid "Who can see this group?" msgstr "" -msgid "You could not create a new trigger." +msgid "Who will be able to see this group?" msgstr "" -msgid "You do not have any subscriptions yet" +msgid "Wiki" msgstr "" -msgid "You do not have permission to leave this %{namespaceType}." +msgid "Wiki pages" msgstr "" -msgid "You do not have permission to run the Web Terminal. Please contact a project administrator." +msgid "Wiki was successfully updated." msgstr "" -msgid "You do not have the correct permissions to override the settings from the LDAP group sync." +msgid "WikiClone|Clone your wiki" msgstr "" -msgid "You don't have any U2F devices registered yet." +msgid "WikiClone|Git Access" msgstr "" -msgid "You don't have any active chat names." +msgid "WikiClone|Install Gollum" msgstr "" -msgid "You don't have any applications" +msgid "WikiClone|It is recommended to install %{markdown} so that GFM features render locally:" msgstr "" -msgid "You don't have any authorized applications" +msgid "WikiClone|Start Gollum and edit locally" msgstr "" -msgid "You don't have any deployments right now." +msgid "WikiEditPageTip|Tip: You can move this page by adding the path to the beginning of the title." msgstr "" -msgid "You don't have any projects available." +msgid "WikiEdit|There is already a page with the same title in that path." msgstr "" -msgid "You don't have any recent searches" +msgid "WikiEmptyIssueMessage|Suggest wiki improvement" msgstr "" -msgid "You don’t have acces to Productivity Analaytics in this group" +msgid "WikiEmptyIssueMessage|You must be a project member in order to add wiki pages. If you have suggestions for how to improve the wiki for this project, consider opening an issue in the %{issues_link}." msgstr "" -msgid "You have been granted %{access_level} access to the %{source_link} %{source_type}." +msgid "WikiEmptyIssueMessage|issue tracker" msgstr "" -msgid "You have been granted %{access_level} access to the %{source_name} %{source_type}." +msgid "WikiEmpty|A wiki is where you can store all the details about your project. This can include why you've created it, its principles, how to use it, and so on." msgstr "" -msgid "You have been granted %{member_human_access} access to %{label}." +msgid "WikiEmpty|Create your first page" msgstr "" -msgid "You have been unsubscribed from this thread." +msgid "WikiEmpty|Suggest wiki improvement" msgstr "" -msgid "You have declined the invitation to join %{label}." +msgid "WikiEmpty|The wiki lets you write documentation for your project" msgstr "" -msgid "You have no permissions" +msgid "WikiEmpty|This project has no wiki pages" msgstr "" -msgid "You have not added any approvers. Start by adding users or groups." +msgid "WikiEmpty|You must be a project member in order to add wiki pages." msgstr "" -msgid "You have reached your project limit" +msgid "WikiHistoricalPage|This is an old version of this page." msgstr "" -msgid "You haven't added any issues to your project yet" +msgid "WikiHistoricalPage|You can view the %{most_recent_link} or browse the %{history_link}." msgstr "" -msgid "You haven't selected any issues yet" +msgid "WikiHistoricalPage|history" msgstr "" -msgid "You left the \"%{membershipable_human_name}\" %{source_type}." +msgid "WikiHistoricalPage|most recent version" msgstr "" -msgid "You may also add variables that are made available to the running application by prepending the variable key with K8S_SECRET_." +msgid "WikiMarkdownDocs|More examples are in the %{docs_link}" msgstr "" -msgid "You must accept our Terms of Service and privacy policy in order to register an account" +msgid "WikiMarkdownDocs|documentation" msgstr "" -msgid "You must have maintainer access to force delete a lock" +msgid "WikiMarkdownTip|To link to a (new) page, simply type %{link_example}" msgstr "" -msgid "You must have permission to create a project in a namespace before forking." +msgid "WikiNewPageTip|Tip: You can specify the full path for the new file. We will automatically create any missing directories." msgstr "" -msgid "You must provide a valid current password" +msgid "WikiPageConfirmDelete|Are you sure you want to delete this page?" msgstr "" -msgid "You must provide your current password in order to change it." +msgid "WikiPageConfirmDelete|Delete page" msgstr "" -msgid "You need a different license to enable FileLocks feature" +msgid "WikiPageConfirmDelete|Delete page %{pageTitle}?" msgstr "" -msgid "You need a different license to use Geo replication." +msgid "WikiPageConflictMessage|Someone edited the page the same time you did. Please check out %{page_link} and make sure your changes will not unintentionally remove theirs." msgstr "" -msgid "You need git-lfs version %{min_git_lfs_version} (or greater) to continue. Please visit https://git-lfs.github.com" +msgid "WikiPageConflictMessage|the page" msgstr "" -msgid "You need permission." +msgid "WikiPageCreate|Create %{pageTitle}" msgstr "" -msgid "You need to be logged in." +msgid "WikiPageEdit|Update %{pageTitle}" msgstr "" -msgid "You need to register a two-factor authentication app before you can set up a U2F device." +msgid "WikiPage|Write your content or drag files here…" msgstr "" -msgid "You need to specify both an Access Token and a Host URL." +msgid "Wiki|Create New Page" msgstr "" -msgid "You need to upload a GitLab project export archive (ending in .gz)." +msgid "Wiki|Create page" msgstr "" -msgid "You need to upload a Google Takeout archive." +msgid "Wiki|Created date" msgstr "" -msgid "You tried to fork %{link_to_the_project} but it failed for the following reason:" +msgid "Wiki|Edit Page" msgstr "" -msgid "You will lose all changes you've made to this file. This action cannot be undone." +msgid "Wiki|More Pages" msgstr "" -msgid "You will lose all the unstaged changes you've made in this project. This action cannot be undone." +msgid "Wiki|New page" msgstr "" -msgid "You will need to update your local repositories to point to the new location." +msgid "Wiki|Page history" msgstr "" -msgid "You will not get any notifications via email" +msgid "Wiki|Page title" msgstr "" -msgid "You will only receive notifications for the events you choose" +msgid "Wiki|Page version" msgstr "" -msgid "You will only receive notifications for threads you have participated in" +msgid "Wiki|Pages" msgstr "" -msgid "You will receive notifications for any activity" +msgid "Wiki|Title" msgstr "" -msgid "You will receive notifications only for comments in which you were @mentioned" +msgid "Wiki|Wiki Pages" msgstr "" -msgid "You won't be able to pull or push project code via %{protocol} until you %{set_password_link} on your account" +msgid "Will deploy to" msgstr "" -msgid "You won't be able to pull or push project code via SSH until you %{add_ssh_key_link} to your profile" +msgid "Withdraw Access Request" msgstr "" -msgid "You won't be able to pull or push project code via SSH until you add an SSH key to your profile" +msgid "Workflow Help" msgstr "" -msgid "You'll be signed out from your current account automatically." +msgid "Write" msgstr "" -msgid "You'll need to use different branch names to get a valid comparison." +msgid "Write a comment or drag your files here…" msgstr "" -msgid "You're not allowed to %{tag_start}edit%{tag_end} files in this project directly. Please fork this project, make your changes there, and submit a merge request." +msgid "Write access allowed" msgstr "" -msgid "You're not allowed to make changes to this project directly. A fork of this project has been created that you can make changes in, so you can submit a merge request." +msgid "Write milestone description..." msgstr "" -msgid "You're not allowed to make changes to this project directly. A fork of this project is being created that you can make changes in, so you can submit a merge request." +msgid "Wrong extern UID provided. Make sure Auth0 is configured correctly." msgstr "" -msgid "You're only seeing %{startTag}other activity%{endTag} in the feed. To add a comment, switch to one of the following options." +msgid "Yes" msgstr "" -msgid "You're receiving this email because %{reason}." +msgid "Yes or No" msgstr "" -msgid "You're receiving this email because of your account on %{host}." +msgid "Yes, add it" msgstr "" -msgid "You're receiving this email because of your account on %{host}. %{manage_notifications_link} · %{help_link}" +msgid "Yes, let me map Google Code users to full names or GitLab users." msgstr "" -msgid "You've already enabled two-factor authentication using one time password authenticators. In order to register a different device, you must first disable two-factor authentication." +msgid "Yesterday" msgstr "" -msgid "YouTube" +msgid "You" msgstr "" -msgid "Your Commit Email will be used for web based operations, such as edits and merges." +msgid "You are an admin, which means granting access to %{client_name} will allow them to interact with GitLab as an admin as well. Proceed with caution." 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 "You are attempting to delete a file that has been previously updated." msgstr "" -msgid "Your Default Notification Email will be used for account notifications if a %{openingTag}group-specific email address%{closingTag} is not set." +msgid "You are attempting to update a file that has changed since you started editing it." msgstr "" -msgid "Your GPG keys (%{count})" +msgid "You are connected to the Prometheus server, but there is currently no data to display." msgstr "" -msgid "Your Groups" +msgid "You are going to remove %{group_name}, this will also remove all of its subgroups and projects. Removed groups CANNOT be restored! Are you ABSOLUTELY sure?" msgstr "" -msgid "Your New Personal Access Token" +msgid "You are going to remove %{project_full_name}. Removed project CANNOT be restored! Are you ABSOLUTELY sure?" msgstr "" -msgid "Your Primary Email will be used for avatar detection." +msgid "You are going to remove the fork relationship to source project %{forked_from_project}. Are you ABSOLUTELY sure?" msgstr "" -msgid "Your Projects (default)" +msgid "You are going to transfer %{project_full_name} to another owner. Are you ABSOLUTELY sure?" msgstr "" -msgid "Your Projects' Activity" +msgid "You are not allowed to unlink your primary login account" msgstr "" -msgid "Your Public Email will be displayed on your public profile." +msgid "You are now impersonating %{username}" msgstr "" -msgid "Your SSH keys (%{count})" +msgid "You are on a read-only GitLab instance." msgstr "" -msgid "Your To-Do List" +msgid "You are receiving this message because you are a GitLab administrator for %{url}." msgstr "" -msgid "Your U2F device did not send a valid JSON response." +msgid "You can %{linkStart}view the blob%{linkEnd} instead." msgstr "" -msgid "Your U2F device needs to be set up. Plug it in (if not already) and click the button on the left." +msgid "You can also create a project from the command line." msgstr "" -msgid "Your U2F device was registered!" +msgid "You can also press ⌘-Enter" msgstr "" -msgid "Your access request to the %{source_type} has been withdrawn." +msgid "You can also press Ctrl-Enter" msgstr "" -msgid "Your account uses dedicated credentials for the \"%{group_name}\" group and can only be updated through SSO." +msgid "You can also star a label to make it a priority label." msgstr "" -msgid "Your applications (%{size})" +msgid "You can also test your %{gitlab_ci_yml} in %{lint_link_start}CI Lint%{lint_link_end}" msgstr "" -msgid "Your authorized applications" +msgid "You can also upload existing files from your computer using the instructions below." msgstr "" -msgid "Your browser doesn't support U2F. Please use Google Chrome desktop (version 41 or newer)." +msgid "You can create files directly in GitLab using one of the following options." msgstr "" -msgid "Your changes can be committed to %{branch_name} because a merge request is open." +msgid "You can easily contribute to them by requesting to join these groups." msgstr "" -msgid "Your changes have been committed. Commit %{commitId} %{commitStats}" +msgid "You can easily install a Runner on a Kubernetes cluster. %{link_to_help_page}" msgstr "" -msgid "Your changes have been saved" +msgid "You can invite a new member to %{project_name} or invite another group." msgstr "" -msgid "Your changes have been successfully committed." +msgid "You can invite a new member to %{project_name}." msgstr "" -msgid "Your comment could not be submitted! Please check your network connection and try again." +msgid "You can invite another group to %{project_name}." msgstr "" -msgid "Your comment could not be updated! Please check your network connection and try again." +msgid "You can move around the graph by using the arrow keys." msgstr "" -msgid "Your deployment services will be broken, you will need to manually fix the services after renaming." +msgid "You can now submit a merge request to get this change into the original branch." msgstr "" -msgid "Your device was successfully set up! Give it a name and register it with the GitLab server." +msgid "You can now submit a merge request to get this change into the original project." msgstr "" -msgid "Your groups" +msgid "You can only add files when you are on a branch" msgstr "" -msgid "Your issues are being imported. Once finished, you'll get a confirmation email." +msgid "You can only edit files when you are on a branch" msgstr "" -msgid "Your issues will be imported in the background. Once finished, you'll get a confirmation email." +msgid "You can only merge once the items above are resolved" msgstr "" -msgid "Your message here" +msgid "You can only transfer the project to namespaces you manage." msgstr "" -msgid "Your name" +msgid "You can resolve the merge conflict using either the Interactive mode, by choosing %{use_ours} or %{use_theirs} buttons, or by editing the files directly. Commit these changes into %{branch_name}" msgstr "" -msgid "Your new SCIM token" +msgid "You can see your chat accounts." msgstr "" -msgid "Your new personal access token has been created." +msgid "You can set up jobs to only use Runners with specific tags. Separate tags with commas." msgstr "" -msgid "Your pages are served under:" +msgid "You can specify notification level per group or per project." msgstr "" -msgid "Your password reset token has expired." +msgid "You can test your .gitlab-ci.yml in %{linkStart}CI Lint%{linkEnd}." msgstr "" -msgid "Your project limit is %{limit} projects! Please contact your administrator to increase it" +msgid "You cannot access the raw file. Please wait a minute." msgstr "" -msgid "Your projects" +msgid "You cannot impersonate a blocked user" msgstr "" -msgid "Your request for access has been queued for review." +msgid "You cannot impersonate a user who cannot log in" msgstr "" -msgid "Zoom meeting added" +msgid "You cannot impersonate an internal user" msgstr "" -msgid "Zoom meeting removed" +msgid "You cannot play this scheduled pipeline at the moment. Please wait a minute." msgstr "" -msgid "a deleted user" +msgid "You cannot write to this read-only GitLab instance." msgstr "" -msgid "added %{created_at_timeago}" +msgid "You could not create a new trigger." msgstr "" -msgid "added a Zoom call to this issue" +msgid "You do not have any subscriptions yet" msgstr "" -msgid "ago" +msgid "You do not have permission to leave this %{namespaceType}." msgstr "" -msgid "allowed to fail" +msgid "You don't have any U2F devices registered yet." msgstr "" -msgid "already being used for another group or project milestone." +msgid "You don't have any active chat names." msgstr "" -msgid "already shared with this group" +msgid "You don't have any applications" msgstr "" -msgid "among other things" +msgid "You don't have any authorized applications" msgstr "" -msgid "assign yourself" +msgid "You don't have any deployments right now." msgstr "" -msgid "attach a new file" +msgid "You don't have any recent searches" msgstr "" -msgid "authored" +msgid "You have been granted %{access_level} access to the %{source_link} %{source_type}." msgstr "" -msgid "branch name" +msgid "You have been granted %{access_level} access to the %{source_name} %{source_type}." msgstr "" -msgid "by" +msgid "You have been granted %{member_human_access} access to %{label}." msgstr "" -msgid "cannot be changed if a personal project has container registry tags." +msgid "You have been unsubscribed from this thread." msgstr "" -msgid "cannot be enabled unless all domains have TLS certificates" +msgid "You have declined the invitation to join %{label}." msgstr "" -msgid "cannot be in the same project" +msgid "You have no permissions" msgstr "" -msgid "cannot be modified" +msgid "You have reached your project limit" msgstr "" -msgid "cannot block others" +msgid "You haven't added any issues to your project yet" msgstr "" -msgid "cannot include leading slash or directory traversal." +msgid "You haven't selected any issues yet" msgstr "" -msgid "cannot itself be blocked" +msgid "You left the \"%{membershipable_human_name}\" %{source_type}." msgstr "" -msgid "cannot merge" +msgid "You may also add variables that are made available to the running application by prepending the variable key with K8S_SECRET_." msgstr "" -msgid "ciReport|%{linkStartTag}Learn more about Container Scanning %{linkEndTag}" +msgid "You must accept our Terms of Service and privacy policy in order to register an account" msgstr "" -msgid "ciReport|%{linkStartTag}Learn more about DAST %{linkEndTag}" +msgid "You must have maintainer access to force delete a lock" msgstr "" -msgid "ciReport|%{linkStartTag}Learn more about Dependency Scanning %{linkEndTag}" +msgid "You must have permission to create a project in a namespace before forking." msgstr "" -msgid "ciReport|%{linkStartTag}Learn more about SAST %{linkEndTag}" +msgid "You must provide a valid current password" msgstr "" -msgid "ciReport|%{namespace} is affected by %{vulnerability}." +msgid "You must provide your current password in order to change it." msgstr "" -msgid "ciReport|%{remainingPackagesCount} more" +msgid "You need permission." msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{dismissedCount} dismissed vulnerability" -msgid_plural "ciReport|%{reportType} %{status} detected %{dismissedCount} dismissed vulnerabilities" -msgstr[0] "" -msgstr[1] "" - -msgid "ciReport|%{reportType} %{status} detected %{dismissedCount} dismissed vulnerability for the source branch only" -msgid_plural "ciReport|%{reportType} %{status} detected %{dismissedCount} dismissed vulnerabilities for the source branch only" -msgstr[0] "" -msgstr[1] "" +msgid "You need to be logged in." +msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{fixedCount} fixed vulnerability" -msgid_plural "ciReport|%{reportType} %{status} detected %{fixedCount} fixed vulnerabilities" -msgstr[0] "" -msgstr[1] "" +msgid "You need to register a two-factor authentication app before you can set up a U2F device." +msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{fixedCount} fixed, and %{dismissedCount} dismissed vulnerabilities" +msgid "You need to specify both an Access Token and a Host URL." msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{newCount} new vulnerability" -msgid_plural "ciReport|%{reportType} %{status} detected %{newCount} new vulnerabilities" -msgstr[0] "" -msgstr[1] "" +msgid "You need to upload a GitLab project export archive (ending in .gz)." +msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{newCount} new, %{fixedCount} fixed, and %{dismissedCount} dismissed vulnerabilities" +msgid "You need to upload a Google Takeout archive." msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{newCount} new, and %{dismissedCount} dismissed vulnerabilities" +msgid "You tried to fork %{link_to_the_project} but it failed for the following reason:" msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{newCount} new, and %{dismissedCount} dismissed vulnerabilities for the source branch only" +msgid "You will lose all changes you've made to this file. This action cannot be undone." msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{newCount} new, and %{fixedCount} fixed vulnerabilities" +msgid "You will lose all the unstaged changes you've made in this project. This action cannot be undone." msgstr "" -msgid "ciReport|%{reportType} %{status} detected %{newCount} vulnerability for the source branch only" -msgid_plural "ciReport|%{reportType} %{status} detected %{newCount} vulnerabilities for the source branch only" -msgstr[0] "" -msgstr[1] "" +msgid "You will need to update your local repositories to point to the new location." +msgstr "" -msgid "ciReport|%{reportType} %{status} detected no new vulnerabilities" +msgid "You will not get any notifications via email" msgstr "" -msgid "ciReport|%{reportType} %{status} detected no vulnerabilities" +msgid "You will only receive notifications for the events you choose" msgstr "" -msgid "ciReport|%{reportType} %{status} detected no vulnerabilities for the source branch only" +msgid "You will only receive notifications for threads you have participated in" msgstr "" -msgid "ciReport|%{reportType} detected %{vulnerabilityCount} vulnerability" -msgid_plural "ciReport|%{reportType} detected %{vulnerabilityCount} vulnerabilities" -msgstr[0] "" -msgstr[1] "" +msgid "You will receive notifications for any activity" +msgstr "" -msgid "ciReport|%{reportType} detected no vulnerabilities" +msgid "You will receive notifications only for comments in which you were @mentioned" msgstr "" -msgid "ciReport|%{reportType} is loading" +msgid "You won't be able to pull or push project code via %{protocol} until you %{set_password_link} on your account" msgstr "" -msgid "ciReport|%{reportType}: Loading resulted in an error" +msgid "You won't be able to pull or push project code via SSH until you %{add_ssh_key_link} to your profile" msgstr "" -msgid "ciReport|%{vulnerability} in %{featurename}" +msgid "You won't be able to pull or push project code via SSH until you add an SSH key to your profile" msgstr "" -msgid "ciReport|(errors when loading results)" +msgid "You'll need to use different branch names to get a valid comparison." msgstr "" -msgid "ciReport|(is loading)" +msgid "You're not allowed to %{tag_start}edit%{tag_end} files in this project directly. Please fork this project, make your changes there, and submit a merge request." msgstr "" -msgid "ciReport|(is loading, errors when loading results)" +msgid "You're not allowed to make changes to this project directly. A fork of this project has been created that you can make changes in, so you can submit a merge request." msgstr "" -msgid "ciReport|All confidence levels" +msgid "You're not allowed to make changes to this project directly. A fork of this project is being created that you can make changes in, so you can submit a merge request." msgstr "" -msgid "ciReport|All projects" +msgid "You're only seeing %{startTag}other activity%{endTag} in the feed. To add a comment, switch to one of the following options." msgstr "" -msgid "ciReport|All report types" +msgid "You're receiving this email because %{reason}." msgstr "" -msgid "ciReport|All severities" +msgid "You're receiving this email because of your account on %{host}." msgstr "" -msgid "ciReport|Automatically apply the patch in a new branch" +msgid "You're receiving this email because of your account on %{host}. %{manage_notifications_link} · %{help_link}" msgstr "" -msgid "ciReport|Class" +msgid "You've already enabled two-factor authentication using one time password authenticators. In order to register a different device, you must first disable two-factor authentication." msgstr "" -msgid "ciReport|Code quality" +msgid "YouTube" msgstr "" -msgid "ciReport|Confidence" +msgid "Your Commit Email will be used for web based operations, such as edits and merges." msgstr "" -msgid "ciReport|Container Scanning" +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." msgstr "" -msgid "ciReport|Container scanning" +msgid "Your Default Notification Email will be used for account notifications if a %{openingTag}group-specific email address%{closingTag} is not set." msgstr "" -msgid "ciReport|Container scanning detects known vulnerabilities in your docker images." +msgid "Your GPG keys (%{count})" msgstr "" -msgid "ciReport|Create a merge request to implement this solution, or download and apply the patch manually." +msgid "Your Groups" msgstr "" -msgid "ciReport|Create issue" +msgid "Your New Personal Access Token" msgstr "" -msgid "ciReport|DAST" +msgid "Your Primary Email will be used for avatar detection." msgstr "" -msgid "ciReport|Dependency Scanning" +msgid "Your Projects (default)" msgstr "" -msgid "ciReport|Dependency Scanning detects known vulnerabilities in your source code's dependencies." +msgid "Your Projects' Activity" msgstr "" -msgid "ciReport|Dependency scanning" +msgid "Your Public Email will be displayed on your public profile." msgstr "" -msgid "ciReport|Description" +msgid "Your SSH keys (%{count})" msgstr "" -msgid "ciReport|Download patch to resolve" +msgid "Your To-Do List" msgstr "" -msgid "ciReport|Download the patch to apply it manually" +msgid "Your U2F device did not send a valid JSON response." msgstr "" -msgid "ciReport|Dynamic Application Security Testing (DAST) detects known vulnerabilities in your web application." +msgid "Your U2F device needs to be set up. Plug it in (if not already) and click the button on the left." msgstr "" -msgid "ciReport|Failed to load %{reportName} report" +msgid "Your U2F device was registered!" msgstr "" -msgid "ciReport|File" +msgid "Your access request to the %{source_type} has been withdrawn." msgstr "" -msgid "ciReport|Fixed:" +msgid "Your account uses dedicated credentials for the \"%{group_name}\" group and can only be updated through SSO." msgstr "" -msgid "ciReport|Identifiers" +msgid "Your applications (%{size})" msgstr "" -msgid "ciReport|Image" +msgid "Your authorized applications" msgstr "" -msgid "ciReport|Instances" +msgid "Your browser doesn't support U2F. Please use Google Chrome desktop (version 41 or newer)." msgstr "" -msgid "ciReport|Investigate this vulnerability by creating an issue" +msgid "Your changes can be committed to %{branch_name} because a merge request is open." msgstr "" -msgid "ciReport|Learn more about interacting with security reports" +msgid "Your changes have been committed. Commit %{commitId} %{commitStats}" msgstr "" -msgid "ciReport|Links" +msgid "Your changes have been saved" msgstr "" -msgid "ciReport|Loading %{reportName} report" +msgid "Your changes have been successfully committed." msgstr "" -msgid "ciReport|Manage licenses" +msgid "Your comment could not be submitted! Please check your network connection and try again." msgstr "" -msgid "ciReport|Method" +msgid "Your comment could not be updated! Please check your network connection and try again." msgstr "" -msgid "ciReport|Namespace" +msgid "Your deployment services will be broken, you will need to manually fix the services after renaming." msgstr "" -msgid "ciReport|No changes to code quality" +msgid "Your device was successfully set up! Give it a name and register it with the GitLab server." msgstr "" -msgid "ciReport|No changes to performance metrics" +msgid "Your groups" msgstr "" -msgid "ciReport|Performance metrics" +msgid "Your issues are being imported. Once finished, you'll get a confirmation email." msgstr "" -msgid "ciReport|Resolve with merge request" +msgid "Your issues will be imported in the background. Once finished, you'll get a confirmation email." msgstr "" -msgid "ciReport|SAST" +msgid "Your message here" msgstr "" -msgid "ciReport|Security scanning" +msgid "Your name" msgstr "" -msgid "ciReport|Security scanning failed loading any results" +msgid "Your new personal access token has been created." msgstr "" -msgid "ciReport|Severity" +msgid "Your pages are served under:" msgstr "" -msgid "ciReport|Solution" +msgid "Your password reset token has expired." msgstr "" -msgid "ciReport|Static Application Security Testing (SAST) detects known vulnerabilities in your source code." +msgid "Your project limit is %{limit} projects! Please contact your administrator to increase it" msgstr "" -msgid "ciReport|There was an error creating the issue. Please try again." +msgid "Your projects" msgstr "" -msgid "ciReport|There was an error creating the merge request. Please try again." +msgid "Your request for access has been queued for review." msgstr "" -msgid "ciReport|There was an error dismissing the vulnerability. Please try again." +msgid "Zoom meeting added" msgstr "" -msgid "ciReport|There was an error loading DAST report" +msgid "Zoom meeting removed" msgstr "" -msgid "ciReport|There was an error loading SAST report" +msgid "a deleted user" msgstr "" -msgid "ciReport|There was an error loading container scanning report" +msgid "added %{created_at_timeago}" msgstr "" -msgid "ciReport|There was an error loading dependency scanning report" +msgid "added a Zoom call to this issue" msgstr "" -msgid "ciReport|There was an error reverting the dismissal. Please try again." +msgid "ago" msgstr "" -msgid "ciReport|Upgrade %{name} from %{version} to %{fixed}." +msgid "allowed to fail" msgstr "" -msgid "ciReport|Upgrade %{name} to %{fixed}." +msgid "already being used for another group or project milestone." msgstr "" -msgid "ciReport|Upgrade to %{fixed}." +msgid "already shared with this group" msgstr "" -msgid "ciReport|Used by %{packagesString}" -msgid_plural "ciReport|Used by %{packagesString}, and %{lastPackage}" -msgstr[0] "" -msgstr[1] "" +msgid "among other things" +msgstr "" -msgid "ciReport|View full report" +msgid "assign yourself" msgstr "" -msgid "comment" +msgid "attach a new file" msgstr "" -msgid "commented on %{link_to_project}" +msgid "authored" msgstr "" -msgid "commit %{commit_id}" +msgid "branch name" msgstr "" -msgid "confidence|Confirmed" +msgid "by" msgstr "" -msgid "confidence|Experimental" +msgid "cannot be changed if a personal project has container registry tags." msgstr "" -msgid "confidence|High" +msgid "cannot be enabled unless all domains have TLS certificates" msgstr "" -msgid "confidence|Ignore" +msgid "cannot include leading slash or directory traversal." msgstr "" -msgid "confidence|Low" +msgid "cannot merge" msgstr "" -msgid "confidence|Medium" +msgid "comment" msgstr "" -msgid "confidence|Undefined" +msgid "commented on %{link_to_project}" msgstr "" -msgid "confidence|Unknown" +msgid "commit %{commit_id}" msgstr "" msgid "confidentiality|You are going to turn off the confidentiality. This means everyone will be able to see and leave a comment on this issue." @@ -18573,12 +13892,6 @@ msgstr[1] "" msgid "deleted" msgstr "" -msgid "deploy" -msgstr "" - -msgid "design" -msgstr "" - msgid "detached" msgstr "" @@ -18588,20 +13901,12 @@ msgstr "" msgid "done" msgstr "" -msgid "draft" -msgid_plural "drafts" -msgstr[0] "" -msgstr[1] "" - msgid "e.g. %{token}" msgstr "" msgid "element is not a hierarchy" msgstr "" -msgid "email '%{email}' does not match the allowed domain of '%{email_domain}'" -msgstr "" - msgid "enabled" msgstr "" @@ -18617,9 +13922,6 @@ msgstr "" msgid "entries cannot contain HTML tags" msgstr "" -msgid "epic" -msgstr "" - msgid "error" msgstr "" @@ -18662,9 +13964,6 @@ msgstr "" msgid "has already been taken" msgstr "" -msgid "help" -msgstr "" - msgid "here" msgstr "" @@ -18689,29 +13988,9 @@ msgstr "" msgid "index" msgstr "" -msgid "instance completed" -msgid_plural "instances completed" -msgstr[0] "" -msgstr[1] "" - msgid "invalid milestone state `%{state}`" msgstr "" -msgid "is an invalid IP address range" -msgstr "" - -msgid "is enabled." -msgstr "" - -msgid "is invalid because there is downstream lock" -msgstr "" - -msgid "is invalid because there is upstream lock" -msgstr "" - -msgid "is not a descendant of the Group owning the template" -msgstr "" - msgid "is not a valid X509 certificate." msgstr "" @@ -18748,12 +14027,6 @@ msgstr "" msgid "leave %{group_name}" msgstr "" -msgid "locked by %{path_lock_user_name} %{created_at}" -msgstr "" - -msgid "log in" -msgstr "" - msgid "manual" msgstr "" @@ -18763,9 +14036,6 @@ msgstr "" msgid "math|There was an error rendering this math block" msgstr "" -msgid "may expose confidential information" -msgstr "" - msgid "merge request" msgid_plural "merge requests" msgstr[0] "" @@ -18810,36 +14080,9 @@ msgstr "" msgid "mrWidget|%{metricsLinkStart} Memory %{metricsLinkEnd} usage is %{emphasisStart} unchanged %{emphasisEnd} at %{memoryFrom}MB" msgstr "" -msgid "mrWidget|Added to the merge train at position %{mergeTrainPosition}" -msgstr "" - -msgid "mrWidget|Added to the merge train by" -msgstr "" - msgid "mrWidget|Allows commits from members who can merge to the target branch" msgstr "" -msgid "mrWidget|An error occurred while removing your approval." -msgstr "" - -msgid "mrWidget|An error occurred while retrieving approval data for this merge request." -msgstr "" - -msgid "mrWidget|An error occurred while submitting your approval." -msgstr "" - -msgid "mrWidget|Approval password is invalid." -msgstr "" - -msgid "mrWidget|Approve" -msgstr "" - -msgid "mrWidget|Approve additionally" -msgstr "" - -msgid "mrWidget|Approved by" -msgstr "" - msgid "mrWidget|Cancel automatic merge" msgstr "" @@ -18912,21 +14155,9 @@ msgstr "" msgid "mrWidget|Merge locally" msgstr "" -msgid "mrWidget|Merge request approved." -msgstr "" - msgid "mrWidget|Merged by" msgstr "" -msgid "mrWidget|More information" -msgstr "" - -msgid "mrWidget|No approval required" -msgstr "" - -msgid "mrWidget|No approval required; you can still approve" -msgstr "" - msgid "mrWidget|Open in Web IDE" msgstr "" @@ -18948,9 +14179,6 @@ msgstr "" msgid "mrWidget|Refreshing now" msgstr "" -msgid "mrWidget|Remove from merge train" -msgstr "" - msgid "mrWidget|Request to merge" msgstr "" @@ -18969,9 +14197,6 @@ msgstr "" msgid "mrWidget|Revert this merge request in a new merge request" msgstr "" -msgid "mrWidget|Revoke approval" -msgstr "" - msgid "mrWidget|Set by" msgstr "" @@ -19020,18 +14245,9 @@ msgstr "" msgid "mrWidget|This merge request is in the process of being merged" msgstr "" -msgid "mrWidget|This merge request will be added to the merge train when pipeline %{linkStart}#%{pipelineId}%{linkEnd} succeeds." -msgstr "" - -msgid "mrWidget|This merge request will start a merge train when pipeline %{linkStart}#%{pipelineId}%{linkEnd} succeeds." -msgstr "" - msgid "mrWidget|This project is archived, write access has been disabled" msgstr "" -msgid "mrWidget|To approve this merge request, please enter your password. This project requires all approvals to be authenticated." -msgstr "" - msgid "mrWidget|When this merge request is ready, remove the WIP: prefix from the title to allow it to be merged" msgstr "" @@ -19044,9 +14260,6 @@ msgstr "" msgid "mrWidget|You can merge this merge request manually using the" msgstr "" -msgid "mrWidget|Your password" -msgstr "" - msgid "mrWidget|branch does not exist." msgstr "" @@ -19056,15 +14269,9 @@ msgstr "" msgid "mrWidget|into" msgstr "" -msgid "mrWidget|to be added to the merge train when the pipeline succeeds" -msgstr "" - msgid "mrWidget|to be merged automatically when the pipeline succeeds" msgstr "" -msgid "mrWidget|to start a merge train when the pipeline succeeds" -msgstr "" - msgid "must be greater than start date" msgstr "" @@ -19123,11 +14330,6 @@ msgstr "" msgid "pipeline" msgstr "" -msgid "point" -msgid_plural "points" -msgstr[0] "" -msgstr[1] "" - msgid "private" msgstr "" @@ -19138,9 +14340,7 @@ msgid "processing" msgstr "" msgid "project" -msgid_plural "projects" -msgstr[0] "" -msgstr[1] "" +msgstr "" msgid "project avatar" msgstr "" @@ -19163,9 +14363,6 @@ msgstr "" msgid "remove due date" msgstr "" -msgid "remove weight" -msgstr "" - msgid "removed a Zoom call from this issue" msgstr "" @@ -19177,36 +14374,9 @@ msgid_plural "replies" msgstr[0] "" msgstr[1] "" -msgid "reset it." -msgstr "" - msgid "score" msgstr "" -msgid "security Reports|There was an error creating the merge request" -msgstr "" - -msgid "severity|Critical" -msgstr "" - -msgid "severity|High" -msgstr "" - -msgid "severity|Info" -msgstr "" - -msgid "severity|Low" -msgstr "" - -msgid "severity|Medium" -msgstr "" - -msgid "severity|Undefined" -msgstr "" - -msgid "severity|Unknown" -msgstr "" - msgid "should be greater than or equal to %{access} inherited membership from group %{group_name}" msgstr "" @@ -19260,9 +14430,6 @@ msgid_plural "threads resolved" msgstr[0] "" msgstr[1] "" -msgid "to help your contributors communicate effectively!" -msgstr "" - msgid "to list" msgstr "" @@ -19311,27 +14478,6 @@ msgstr "" msgid "view the blob" msgstr "" -msgid "vulnerability|Add a comment or reason for dismissal" -msgstr "" - -msgid "vulnerability|Add comment" -msgstr "" - -msgid "vulnerability|Add comment & dismiss" -msgstr "" - -msgid "vulnerability|Dismiss vulnerability" -msgstr "" - -msgid "vulnerability|Save comment" -msgstr "" - -msgid "vulnerability|Undo dismiss" -msgstr "" - -msgid "vulnerability|dismissed" -msgstr "" - msgid "with %{additions} additions, %{deletions} deletions." msgstr ""