From 2d075756cebf66d7dbf0a5fc7e709f87a8bbabc7 Mon Sep 17 00:00:00 2001
From: GitLab Bot
[import and export projects
between instances](user/project/settings/import_export.md) | Create, duplicate, and move projects. |
diff --git a/doc/administration/index.md b/doc/administration/index.md
index ed079abf70870..e60be2a2c3b47 100644
--- a/doc/administration/index.md
+++ b/doc/administration/index.md
@@ -60,7 +60,7 @@ Learn how to install, configure, update, and maintain your GitLab instance.
- [Diff limits](../user/admin_area/diff_limits.md): Configure the diff rendering size limits of branch comparison pages.
- [Merge request diffs storage](merge_request_diffs.md): Configure merge requests diffs external storage.
- [Broadcast Messages](../user/admin_area/broadcast_messages.md): Send messages to GitLab users through the UI.
-- [Elasticsearch](../integration/elasticsearch.md): Enable Elasticsearch to empower GitLab's Advanced Global Search. Useful when you deal with a huge amount of data. **(STARTER ONLY)**
+- [Elasticsearch](../integration/elasticsearch.md): Enable Elasticsearch to empower GitLab's Advanced Search. Useful when you deal with a huge amount of data. **(STARTER ONLY)**
- [External Classification Policy Authorization](../user/admin_area/settings/external_authorization.md) **(PREMIUM ONLY)**
- [Upload a license](../user/admin_area/license.md): Upload a license to unlock features that are in paid tiers of GitLab. **(STARTER ONLY)**
- [Admin Area](../user/admin_area/index.md): for self-managed instance-wide configuration and maintenance.
diff --git a/doc/administration/instance_limits.md b/doc/administration/instance_limits.md
index d4ecba9f5abc0..bf4e00a2d537e 100644
--- a/doc/administration/instance_limits.md
+++ b/doc/administration/instance_limits.md
@@ -438,7 +438,7 @@ Reports that go over the 20 MB limit won't be loaded. Affected reports:
- [CI/CD parameter `artifacts:expose_as`](../ci/yaml/README.md#artifactsexpose_as)
- [Unit test reports](../ci/unit_test_reports.md)
-## Advanced Global Search limits
+## Advanced Search limits
### Maximum file size indexed
diff --git a/doc/administration/logs.md b/doc/administration/logs.md
index 2e8d0bf746111..6bd27670f964c 100644
--- a/doc/administration/logs.md
+++ b/doc/administration/logs.md
@@ -87,7 +87,7 @@ In addition, the log contains the originating IP address,
(`remote_ip`), the user's ID (`user_id`), and username (`username`).
Some endpoints such as `/search` may make requests to Elasticsearch if using
-[Advanced Global Search](../user/search/advanced_global_search.md). These will
+[Advanced Search](../user/search/advanced_global_search.md). These will
additionally log `elasticsearch_calls` and `elasticsearch_call_duration_s`,
which correspond to:
diff --git a/doc/development/migration_style_guide.md b/doc/development/migration_style_guide.md
index 2b9db7f951b51..267b95f6374a2 100644
--- a/doc/development/migration_style_guide.md
+++ b/doc/development/migration_style_guide.md
@@ -260,7 +260,9 @@ def up
end
def down
- drop_table :issues
+ with_lock_retries do
+ drop_table :issues
+ end
end
```
diff --git a/doc/integration/README.md b/doc/integration/README.md
index fdaff74ca5821..9d09e79a5593b 100644
--- a/doc/integration/README.md
+++ b/doc/integration/README.md
@@ -56,7 +56,7 @@ GitLab can be integrated with the following enhancements:
- Configure [PlantUML](../administration/integration/plantuml.md) to use diagrams in AsciiDoc documents.
- Attach merge requests to [Trello](trello_power_up.md) cards.
- Enable integrated code intelligence powered by [Sourcegraph](sourcegraph.md).
-- Add [Elasticsearch](elasticsearch.md) for [Advanced Global Search](../user/search/advanced_global_search.md),
+- Add [Elasticsearch](elasticsearch.md) for [Advanced Search](../user/search/advanced_global_search.md),
[Advanced System Search](../user/search/advanced_search_syntax.md), and faster searching.
## Integrations
diff --git a/doc/integration/elasticsearch.md b/doc/integration/elasticsearch.md
index 0408a03a63081..07b32177ff8dd 100644
--- a/doc/integration/elasticsearch.md
+++ b/doc/integration/elasticsearch.md
@@ -14,7 +14,7 @@ This document describes how to set up Elasticsearch with GitLab. After
Elasticsearch is enabled, you'll have the benefit of fast search response times
and the advantage of the following special searches:
-- [Advanced Global Search](../user/search/advanced_global_search.md)
+- [Advanced Search](../user/search/advanced_global_search.md)
- [Advanced Syntax Search](../user/search/advanced_search_syntax.md)
## Version requirements
diff --git a/doc/user/clusters/applications.md b/doc/user/clusters/applications.md
index dfd7f88158fc0..50d1bec90fc8b 100644
--- a/doc/user/clusters/applications.md
+++ b/doc/user/clusters/applications.md
@@ -529,7 +529,7 @@ fewer than 3 nodes or consisting of `f1-micro`, `g1-small`, `n1-standard-1`, or
NOTE: **Note:**
The Elastic Stack cluster application is intended as a log aggregation solution and is not related to our
-[Advanced Global Search](../search/advanced_global_search.md) functionality, which uses a separate
+[Advanced Search](../search/advanced_global_search.md) functionality, which uses a separate
Elasticsearch cluster.
#### Optional: deploy Kibana to perform advanced queries
diff --git a/doc/user/index.md b/doc/user/index.md
index 938000ab85fe1..88e0687f7f76b 100644
--- a/doc/user/index.md
+++ b/doc/user/index.md
@@ -57,7 +57,7 @@ With GitLab Enterprise Edition, you can also:
- [Multiple Issue Boards](project/issue_board.md#multiple-issue-boards).
- Create formal relationships between issues with [Related Issues](project/issues/related_issues.md).
- Use [Burndown Charts](project/milestones/burndown_charts.md) to track progress during a sprint or while working on a new version of their software.
-- Leverage [Elasticsearch](../integration/elasticsearch.md) with [Advanced Global Search](search/advanced_global_search.md) and [Advanced Syntax Search](search/advanced_search_syntax.md) for faster, more advanced code search across your entire GitLab instance.
+- Leverage [Elasticsearch](../integration/elasticsearch.md) with [Advanced Search](search/advanced_global_search.md) and [Advanced Syntax Search](search/advanced_search_syntax.md) for faster, more advanced code search across your entire GitLab instance.
- [Authenticate users with Kerberos](../integration/kerberos.md).
- [Mirror a repository](project/repository/repository_mirroring.md) from elsewhere on your local server.
- [Export issues as CSV](project/issues/csv_export.md).
diff --git a/doc/user/project/merge_requests/test_coverage_visualization.md b/doc/user/project/merge_requests/test_coverage_visualization.md
index 6751dde155c95..05a67764e5580 100644
--- a/doc/user/project/merge_requests/test_coverage_visualization.md
+++ b/doc/user/project/merge_requests/test_coverage_visualization.md
@@ -8,11 +8,14 @@ type: reference, howto
# Test Coverage Visualization **(CORE ONLY)**
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/3708) in GitLab 12.9.
-> - It's deployed behind a feature flag, disabled by default.
+> - It's [deployed behind a feature flag](../../../user/feature_flags.md), disabled by default.
> - It's disabled on GitLab.com.
> - It can be enabled or disabled per-project.
> - To use it in GitLab self-managed instances, ask a GitLab administrator to [enable it](#enabling-the-feature). **(CORE ONLY)**
+CAUTION: **Caution:**
+This feature might not be available to you. Check the **version history** note above for details.
+
With the help of [GitLab CI/CD](../../../ci/README.md), you can collect the test
coverage information of your favorite testing or coverage-analysis tool, and visualize
this information inside the file diff view of your merge requests (MRs). This will allow you
diff --git a/doc/user/search/advanced_global_search.md b/doc/user/search/advanced_global_search.md
index 820d66e4cd618..8de924b1c7021 100644
--- a/doc/user/search/advanced_global_search.md
+++ b/doc/user/search/advanced_global_search.md
@@ -5,12 +5,12 @@ info: "To determine the technical writer assigned to the Stage/Group associated
type: reference
---
-# Advanced Global Search **(STARTER)**
+# Advanced Search **(STARTER)**
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/109) in GitLab [Starter](https://about.gitlab.com/pricing/) 8.4.
NOTE: **GitLab.com availability:**
-Advanced Global Search (powered by Elasticsearch) is enabled for Bronze and above on GitLab.com since 2020-07-10.
+Advanced Search (powered by Elasticsearch) is enabled for Bronze and above on GitLab.com since 2020-07-10.
Leverage Elasticsearch for faster, more advanced code search across your entire
GitLab instance.
@@ -20,7 +20,7 @@ visit the [administrator documentation](../../integration/elasticsearch.md).
## Overview
-The Advanced Global Search in GitLab is a powerful search service that saves
+The Advanced 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 projects that can help your own project.
@@ -39,12 +39,12 @@ searching in:
## Use cases
-The Advanced Global Search can be useful in various scenarios.
+The Advanced Search can be useful in various scenarios.
### Faster searches
If you are dealing with huge amount of data and want to keep GitLab's search
-fast, the Advanced Global Search will help you achieve that.
+fast, the Advanced Search will help you achieve that.
### Promote innersourcing
@@ -58,7 +58,7 @@ throughout the GitLab instance and find the code they search for.
Just use the search as before and GitLab will show you matching code from each
project you have access to.
-![Advanced Global Search](img/advanced_global_search.png)
+![Advanced Search](img/advanced_global_search.png)
You can also use the [Advanced Syntax Search](advanced_search_syntax.md) which
provides some useful queries.
@@ -66,5 +66,5 @@ provides some useful queries.
NOTE: **Note:**
Elasticsearch has only data for the default branch. That means that if you go
to the repository tree and switch the branch from the default to something else,
-then the "Code" tab in the search result page will be served by the regular
+then the "Code" tab in the search result page will be served by the basic
search even if Elasticsearch is enabled.
diff --git a/doc/user/search/advanced_search_syntax.md b/doc/user/search/advanced_search_syntax.md
index d8fce3223ed95..79a34c0847638 100644
--- a/doc/user/search/advanced_search_syntax.md
+++ b/doc/user/search/advanced_search_syntax.md
@@ -10,7 +10,7 @@ type: reference
> - Introduced in [GitLab Enterprise Starter](https://about.gitlab.com/pricing/) 9.2
NOTE: **GitLab.com availability:**
-Advanced Global Search (powered by Elasticsearch) is enabled for Bronze and above on GitLab.com since 2020-07-10.
+Advanced Search (powered by Elasticsearch) is enabled for Bronze and above on GitLab.com since 2020-07-10.
Use advanced queries for more targeted search results.
@@ -20,10 +20,10 @@ visit the [administrator documentation](../../integration/elasticsearch.md).
## Overview
The Advanced Syntax Search is a subset of the
-[Advanced Global Search](advanced_global_search.md), which you can use if you
+[Advanced Search](advanced_global_search.md), which you can use if you
want to have more specific search results.
-Advanced Global Search only supports searching the [default branch](../project/repository/branches/index.md#default-branch).
+Advanced Search only supports searching the [default branch](../project/repository/branches/index.md#default-branch).
## Use cases
diff --git a/doc/user/search/index.md b/doc/user/search/index.md
index 00fe341041f9e..569492519bb1e 100644
--- a/doc/user/search/index.md
+++ b/doc/user/search/index.md
@@ -208,12 +208,12 @@ and **Labels**, select multiple issues to add to a list of your choice:
![search and select issues to add to board](img/search_issues_board.png)
-## Advanced Global Search **(STARTER)**
+## Advanced Search **(STARTER)**
Leverage Elasticsearch for faster, more advanced code search across your entire
GitLab instance.
-[Learn how to use the Advanced Global Search.](advanced_global_search.md)
+[Learn how to use the Advanced Search.](advanced_global_search.md)
## Advanced Syntax Search **(STARTER)**
diff --git a/locale/am_ET/gitlab.po b/locale/am_ET/gitlab.po
index fa1349e52b351..d03ef83e0e483 100644
--- a/locale/am_ET/gitlab.po
+++ b/locale/am_ET/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ar_SA/gitlab.po b/locale/ar_SA/gitlab.po
index 2988b380b80ee..60252287dfe4f 100644
--- a/locale/ar_SA/gitlab.po
+++ b/locale/ar_SA/gitlab.po
@@ -13219,7 +13219,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24430,7 +24430,7 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26686,7 +26686,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/as_IN/gitlab.po b/locale/as_IN/gitlab.po
index 969f884cbcec1..8868e3f4fc61b 100644
--- a/locale/as_IN/gitlab.po
+++ b/locale/as_IN/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/az_AZ/gitlab.po b/locale/az_AZ/gitlab.po
index 7ff4d439a42ac..ae772e0268a09 100644
--- a/locale/az_AZ/gitlab.po
+++ b/locale/az_AZ/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ba_RU/gitlab.po b/locale/ba_RU/gitlab.po
index d478c0621377e..320d323f6ccc0 100644
--- a/locale/ba_RU/gitlab.po
+++ b/locale/ba_RU/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,7 +25981,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/bg/gitlab.po b/locale/bg/gitlab.po
index 680c022e75f21..2d00df5ef7ab4 100644
--- a/locale/bg/gitlab.po
+++ b/locale/bg/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/bn_BD/gitlab.po b/locale/bn_BD/gitlab.po
index 50fd42f6de307..3b44334f3d333 100644
--- a/locale/bn_BD/gitlab.po
+++ b/locale/bn_BD/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/bn_IN/gitlab.po b/locale/bn_IN/gitlab.po
index 558dcdf927fb0..951d0363733d4 100644
--- a/locale/bn_IN/gitlab.po
+++ b/locale/bn_IN/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/bs_BA/gitlab.po b/locale/bs_BA/gitlab.po
index db76d3d9bcf9e..e362e5dac9c4f 100644
--- a/locale/bs_BA/gitlab.po
+++ b/locale/bs_BA/gitlab.po
@@ -12910,7 +12910,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24016,7 +24016,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26263,7 +26263,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ca_ES/gitlab.po b/locale/ca_ES/gitlab.po
index 1430be805a436..4327e3b298ffb 100644
--- a/locale/ca_ES/gitlab.po
+++ b/locale/ca_ES/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/cs_CZ/gitlab.po b/locale/cs_CZ/gitlab.po
index 80b663b4911f4..318979ca027c6 100644
--- a/locale/cs_CZ/gitlab.po
+++ b/locale/cs_CZ/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/cy_GB/gitlab.po b/locale/cy_GB/gitlab.po
index 239330076ef44..2678acd80d89c 100644
--- a/locale/cy_GB/gitlab.po
+++ b/locale/cy_GB/gitlab.po
@@ -13219,7 +13219,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24430,7 +24430,7 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26686,7 +26686,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/da_DK/gitlab.po b/locale/da_DK/gitlab.po
index 45971e3eb4997..5cc0e702a4179 100644
--- a/locale/da_DK/gitlab.po
+++ b/locale/da_DK/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/de/gitlab.po b/locale/de/gitlab.po
index a9992240a493f..ade27edcb2ad7 100644
--- a/locale/de/gitlab.po
+++ b/locale/de/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr "Verbessere Merge-Requests und den Kundensupport mit GitLab Enterprise Ed
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "Verbessere die Suche mit der „Erweiterten globalen Suche“ und GitLab Enterprise Edition."
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr "Die „Erweiterte Globale Suche“ in GitLab ist ein leistungsfähiger Suchdienst, der dir Zeit spart. Anstatt doppelten Code zu erstellen und Zeit zu verschwenden, kannst du nun bei anderen Teams nach Code suchen, der für dein eigenes Projekt hilfreich sein kann."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Aktualisiere deinen Tarif, um die erweiterte globale Suche zu aktivieren."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/el_GR/gitlab.po b/locale/el_GR/gitlab.po
index 1f4fbdce3d97e..520d264273543 100644
--- a/locale/el_GR/gitlab.po
+++ b/locale/el_GR/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/eo/gitlab.po b/locale/eo/gitlab.po
index d3dc1c8d04bfd..80c124940b1b2 100644
--- a/locale/eo/gitlab.po
+++ b/locale/eo/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/es/gitlab.po b/locale/es/gitlab.po
index e7896674e263e..579bb32ee6b50 100644
--- a/locale/es/gitlab.po
+++ b/locale/es/gitlab.po
@@ -12807,8 +12807,8 @@ msgstr "Mejore los merge request y la atención al cliente con GitLab Enterprise
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
-msgstr "Mejore la búsqueda con Advanced Global Search y GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
+msgstr "Mejore la búsqueda con Advanced Search y GitLab Enterprise Edition."
msgid "In %{time_to_now}"
msgstr "En %{time_to_now}"
@@ -23878,7 +23878,7 @@ msgid_plural "The %{type} contains the following errors:"
msgstr[0] "El %{type} contiene el siguiente error:"
msgstr[1] "El %{type} contiene los siguientes errores:"
-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 "The Advanced 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."
msgstr "La búsqueda avanzada global de GitLab es un potente servicio de búsqueda que le permite ahorrar tiempo. En vez de crear código duplicado y perder el tiempo, puede buscar código de otros equipos que le pueda ayudar a su propio proyecto."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Actualice su plan para activar la búsqueda global avanzada."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/et_EE/gitlab.po b/locale/et_EE/gitlab.po
index d7466714eee55..729b44cb6fb4e 100644
--- a/locale/et_EE/gitlab.po
+++ b/locale/et_EE/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/fa_IR/gitlab.po b/locale/fa_IR/gitlab.po
index 6debc0dbe1a0d..5f0fce7f6891a 100644
--- a/locale/fa_IR/gitlab.po
+++ b/locale/fa_IR/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/fi_FI/gitlab.po b/locale/fi_FI/gitlab.po
index 756d98a301df4..d9e5076a79788 100644
--- a/locale/fi_FI/gitlab.po
+++ b/locale/fi_FI/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/fil_PH/gitlab.po b/locale/fil_PH/gitlab.po
index 75e1dec729a87..7d2ff68dc5354 100644
--- a/locale/fil_PH/gitlab.po
+++ b/locale/fil_PH/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/fr/gitlab.po b/locale/fr/gitlab.po
index d27a397e947c3..24a633f4eaf53 100644
--- a/locale/fr/gitlab.po
+++ b/locale/fr/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "Améliorez vos recherches avec la recherche globale avancée de GitLab Enterprise Edition."
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr "La recherche globale avancée de Gitlab est un outil puissant qui vous fait gagner du temps. Au lieu de perdre du temps à recréer du code existant, vous pouvez maintenant faire des recherches dans le code d’autres équipes afin de vous aider sur votre projet."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Mettez à niveau votre forfait pour activer la recherche globale avancée."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/gitlab.pot b/locale/gitlab.pot
index a4ad93f4d59bb..8bb922780995a 100644
--- a/locale/gitlab.pot
+++ b/locale/gitlab.pot
@@ -1396,6 +1396,9 @@ msgstr ""
msgid "Activate Service Desk"
msgstr ""
+msgid "Activate user activity analysis"
+msgstr ""
+
msgid "Active"
msgstr ""
@@ -13004,7 +13007,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -21756,7 +21759,7 @@ msgstr ""
msgid "SecurityReports|Add a project to your dashboard"
msgstr ""
-msgid "SecurityReports|Add or remove projects from your dashboard"
+msgid "SecurityReports|Add or remove projects to monitor in the security area. Projects included in this list will have their results displayed in the security dashboard and vulnerability report."
msgstr ""
msgid "SecurityReports|Add projects"
@@ -21825,6 +21828,9 @@ msgstr ""
msgid "SecurityReports|Monitor vulnerabilities in your code"
msgstr ""
+msgid "SecurityReports|Monitored projects"
+msgstr ""
+
msgid "SecurityReports|More info"
msgstr ""
@@ -24312,7 +24318,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25806,9 +25812,6 @@ msgstr ""
msgid "To define internal users, first enable new users set to external"
msgstr ""
-msgid "To enable it and see User Cohorts, visit %{application_settings_link_start}application settings%{application_settings_link_end}."
-msgstr ""
-
msgid "To further protect your account, consider configuring a %{mfa_link_start}two-factor authentication%{mfa_link_end} method."
msgstr ""
@@ -26196,9 +26199,15 @@ msgstr ""
msgid "Turn On"
msgstr ""
+msgid "Turn on %{strongStart}usage ping%{strongEnd} to activate analysis of user activity, known as %{docLinkStart}Cohorts%{docLinkEnd}."
+msgstr ""
+
msgid "Turn on Service Desk"
msgstr ""
+msgid "Turn on usage ping"
+msgstr ""
+
msgid "Twitter"
msgstr ""
@@ -26601,7 +26610,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
@@ -26820,9 +26829,6 @@ msgstr ""
msgid "User %{username} was successfully removed."
msgstr ""
-msgid "User Cohorts are only shown when the %{usage_ping_link_start}usage ping%{usage_ping_link_end} is enabled."
-msgstr ""
-
msgid "User IDs"
msgstr ""
diff --git a/locale/gl_ES/gitlab.po b/locale/gl_ES/gitlab.po
index 5d3eff1e2f2fc..c61dbb24d08d3 100644
--- a/locale/gl_ES/gitlab.po
+++ b/locale/gl_ES/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/he_IL/gitlab.po b/locale/he_IL/gitlab.po
index e536d6818766c..7f81d76813d63 100644
--- a/locale/he_IL/gitlab.po
+++ b/locale/he_IL/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/hi_IN/gitlab.po b/locale/hi_IN/gitlab.po
index 4cfbb7d0a2f6d..8dda111fdcb17 100644
--- a/locale/hi_IN/gitlab.po
+++ b/locale/hi_IN/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/hr_HR/gitlab.po b/locale/hr_HR/gitlab.po
index b75132e0a88c2..65110942bfc47 100644
--- a/locale/hr_HR/gitlab.po
+++ b/locale/hr_HR/gitlab.po
@@ -12910,7 +12910,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24016,7 +24016,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26263,7 +26263,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/hu_HU/gitlab.po b/locale/hu_HU/gitlab.po
index 732e30a938516..a3b02fa8b07e1 100644
--- a/locale/hu_HU/gitlab.po
+++ b/locale/hu_HU/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/id_ID/gitlab.po b/locale/id_ID/gitlab.po
index 42113487edd63..f48eb466ce6fb 100644
--- a/locale/id_ID/gitlab.po
+++ b/locale/id_ID/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,7 +25981,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ig_NG/gitlab.po b/locale/ig_NG/gitlab.po
index 4d783a99e991e..e9df1839b21f1 100644
--- a/locale/ig_NG/gitlab.po
+++ b/locale/ig_NG/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,7 +25981,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/is_IS/gitlab.po b/locale/is_IS/gitlab.po
index c44cac32967ed..9dc599e28ae5f 100644
--- a/locale/is_IS/gitlab.po
+++ b/locale/is_IS/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/it/gitlab.po b/locale/it/gitlab.po
index 5e03ecab497aa..425cded8e2fe2 100644
--- a/locale/it/gitlab.po
+++ b/locale/it/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ja/gitlab.po b/locale/ja/gitlab.po
index e029bb075bd07..a8f3de8ebff98 100644
--- a/locale/ja/gitlab.po
+++ b/locale/ja/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr "GitLab エンタープライズエディションでは、マージリ
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "GitLab エンタープライズエディションを使用すると、検索機能が強化され、高度なグローバル検索が可能になります。"
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] "%{type} に次のエラーが含まれています。"
-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 "The Advanced 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."
msgstr "GitLab の高度なグローバル検索は、時間を節約できる強力な検索サービスです。重複したコードの作成をして時間を無駄にすることなく、自身のプロジェクトの助けとなる外のチームのコードを検索することができるようになります。"
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,8 +25981,8 @@ msgstr "カナリアデプロイ機能を実行できるようにするために
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
-msgstr "高度なグローバル検索を有効にするためにプランをアップグレードします。"
+msgid "Upgrade your plan to activate Advanced Search."
+msgstr "高度な検索を有効にするためにプランをアップグレードします。"
msgid "Upgrade your plan to activate Audit Events."
msgstr "監査イベントを有効にするために、プランをアップグレード"
diff --git a/locale/ka_GE/gitlab.po b/locale/ka_GE/gitlab.po
index 60fffe934fc0c..130d61c6655f0 100644
--- a/locale/ka_GE/gitlab.po
+++ b/locale/ka_GE/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ko/gitlab.po b/locale/ko/gitlab.po
index df295ffdd4929..ac90aa37315ee 100644
--- a/locale/ko/gitlab.po
+++ b/locale/ko/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "고급 Global 검색과 GitLab Enterprise Edition 을 통해 검색기능을 향상시키세요."
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,8 +25981,8 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
-msgstr "고급 글로벌 검색을 활성화하기 위해 플랜을 업그레이드하세요."
+msgid "Upgrade your plan to activate Advanced Search."
+msgstr "고급 검색을 사용하려면 플랜을 업그레이드하십시오."
msgid "Upgrade your plan to activate Audit Events."
msgstr ""
diff --git a/locale/ku_TR/gitlab.po b/locale/ku_TR/gitlab.po
index 98b4c9fb29590..e3e5edf338c90 100644
--- a/locale/ku_TR/gitlab.po
+++ b/locale/ku_TR/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ky_KG/gitlab.po b/locale/ky_KG/gitlab.po
index ad7247ba75d6e..c25743b16d87e 100644
--- a/locale/ky_KG/gitlab.po
+++ b/locale/ky_KG/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/lt_LT/gitlab.po b/locale/lt_LT/gitlab.po
index bf8fadf2f3f82..b14bcc960d34c 100644
--- a/locale/lt_LT/gitlab.po
+++ b/locale/lt_LT/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/mn_MN/gitlab.po b/locale/mn_MN/gitlab.po
index 701164cf47e53..a8f0d7a39d4f0 100644
--- a/locale/mn_MN/gitlab.po
+++ b/locale/mn_MN/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/nb_NO/gitlab.po b/locale/nb_NO/gitlab.po
index 4661c87bdb062..01a0bf039beb2 100644
--- a/locale/nb_NO/gitlab.po
+++ b/locale/nb_NO/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/nl_NL/gitlab.po b/locale/nl_NL/gitlab.po
index 36d9414ff78a4..3f8f1c10036fe 100644
--- a/locale/nl_NL/gitlab.po
+++ b/locale/nl_NL/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/pa_IN/gitlab.po b/locale/pa_IN/gitlab.po
index 459b84f0e43d1..bca48df716744 100644
--- a/locale/pa_IN/gitlab.po
+++ b/locale/pa_IN/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/pl_PL/gitlab.po b/locale/pl_PL/gitlab.po
index 41eefbe4c0bc2..94fa76dcb1d59 100644
--- a/locale/pl_PL/gitlab.po
+++ b/locale/pl_PL/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/pt_BR/gitlab.po b/locale/pt_BR/gitlab.po
index e3af87a3ecec4..2f22772560078 100644
--- a/locale/pt_BR/gitlab.po
+++ b/locale/pt_BR/gitlab.po
@@ -12807,8 +12807,8 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
-msgstr "Melhore a pesquisa com Advanced Global Search e GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
+msgstr "Melhore a pesquisa com Advanced Search e GitLab Enterprise Edition."
msgid "In %{time_to_now}"
msgstr ""
@@ -23878,8 +23878,8 @@ 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."
-msgstr "O Advanced Global Search no GitLab é um poderoso serviço de pesquisa que economiza seu tempo. Em vez de criar código duplicado e perder tempo, você pode agora procurar código dentro de outras equipes que podem ajudar seu próprio projeto."
+msgid "The Advanced 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."
+msgstr "O Advanced Search no GitLab é um poderoso serviço de pesquisa que economiza seu tempo. Em vez de criar código duplicado e perder tempo, você pode agora procurar código dentro de outras equipes que podem ajudar seu próprio projeto."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
msgstr ""
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Aprimore seu plano para ativar a Pesquisa Global Avançada."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/pt_PT/gitlab.po b/locale/pt_PT/gitlab.po
index a473503134feb..eac703680efb6 100644
--- a/locale/pt_PT/gitlab.po
+++ b/locale/pt_PT/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ro_RO/gitlab.po b/locale/ro_RO/gitlab.po
index 5189635b5b963..71011f6a4b418 100644
--- a/locale/ro_RO/gitlab.po
+++ b/locale/ro_RO/gitlab.po
@@ -12910,7 +12910,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24016,7 +24016,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26263,7 +26263,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ru/gitlab.po b/locale/ru/gitlab.po
index d860c277ca51c..f54108524d069 100644
--- a/locale/ru/gitlab.po
+++ b/locale/ru/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "Улучшить поиск при помощи Расширенного Глобального Поиска в версии GitLab Enterprise Edition."
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] "%{type} содержат следующие ошибки:"
msgstr[2] "%{type} содержат следующие ошибки:"
msgstr[3] "%{type} содержат следующие ошибки:"
-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 "The Advanced 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."
msgstr "Расширенный глобальный поиск в GitLab - это серьезный инструмент который сохраняет ваше время. Вместо создания дублирующего кода и траты времени, вы можете искать код внутри других команд, который поможет вам в вашем проекте."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr "Обновитесь на более высокий тарифный п
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Обновите Вашу подписку, чтобы активировать расширенный глобальный поиск."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/si_LK/gitlab.po b/locale/si_LK/gitlab.po
index 38afea2b800e6..a5bc4b8039358 100644
--- a/locale/si_LK/gitlab.po
+++ b/locale/si_LK/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sk_SK/gitlab.po b/locale/sk_SK/gitlab.po
index 511af422e99b9..60e1c8681b57d 100644
--- a/locale/sk_SK/gitlab.po
+++ b/locale/sk_SK/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sl_SI/gitlab.po b/locale/sl_SI/gitlab.po
index b604749559294..d939514d06eaa 100644
--- a/locale/sl_SI/gitlab.po
+++ b/locale/sl_SI/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24154,7 +24154,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26404,7 +26404,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sq_AL/gitlab.po b/locale/sq_AL/gitlab.po
index 58fa0128c8662..ff85270355a04 100644
--- a/locale/sq_AL/gitlab.po
+++ b/locale/sq_AL/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sr_CS/gitlab.po b/locale/sr_CS/gitlab.po
index b0e171b495055..c315512f06487 100644
--- a/locale/sr_CS/gitlab.po
+++ b/locale/sr_CS/gitlab.po
@@ -12910,7 +12910,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24016,7 +24016,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26263,7 +26263,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sr_SP/gitlab.po b/locale/sr_SP/gitlab.po
index 9a846913a661b..52ec23a09ef85 100644
--- a/locale/sr_SP/gitlab.po
+++ b/locale/sr_SP/gitlab.po
@@ -12910,7 +12910,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -24016,7 +24016,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26263,7 +26263,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sv_SE/gitlab.po b/locale/sv_SE/gitlab.po
index 2d6d43dbf7ea3..8ff5545fc4d6e 100644
--- a/locale/sv_SE/gitlab.po
+++ b/locale/sv_SE/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/sw_KE/gitlab.po b/locale/sw_KE/gitlab.po
index 76d1275ed53e0..8a1921938061d 100644
--- a/locale/sw_KE/gitlab.po
+++ b/locale/sw_KE/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/tr_TR/gitlab.po b/locale/tr_TR/gitlab.po
index efcf253cff8a8..8a4177a1602cd 100644
--- a/locale/tr_TR/gitlab.po
+++ b/locale/tr_TR/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,8 +23878,8 @@ 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."
-msgstr "GitLab'daki Gelişmiş Genel arama, size zaman kazandıran güçlü bir arama hizmetidir. Yinelenen kod oluşturmak ve zaman kaybetmek yerine, artık kendi projenize yardımcı olabilecek diğer ekiplerin içinde kod arayabilirsiniz."
+msgid "The Advanced 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."
+msgstr "GitLab'daki Gelişmiş Arama, size zaman kazandıran güçlü bir arama hizmetidir. Yinelenen kod oluşturmak ve zaman kaybetmek yerine, artık kendi projenize yardımcı olabilecek diğer ekiplerin içinde kod arayabilirsiniz."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
msgstr ""
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Gelişmiş Genel aramayı etkinleştirmek için planınızı yükseltin."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/uk/gitlab.po b/locale/uk/gitlab.po
index 716c6efd78985..6e129fcc2e6d8 100644
--- a/locale/uk/gitlab.po
+++ b/locale/uk/gitlab.po
@@ -13013,7 +13013,7 @@ msgstr "Покращити запити на злиття та підтримк
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "Покращити пошук за допомогою розширеного глобального пошук в версії GitLab Enterprise Edition."
msgid "In %{time_to_now}"
@@ -24154,8 +24154,8 @@ msgstr[1] "%{type} містить наступні помилки:"
msgstr[2] "%{type} містить наступні помилки:"
msgstr[3] "%{type} містить наступні помилки:"
-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."
-msgstr "Розширений глобальний пошук в GitLab — це потужний інструмент який заощаджує ваш час. Замість дублювання коду і витрати часу, ви можете шукати код інших команд, який може допомогти у вашому проекті."
+msgid "The Advanced 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."
+msgstr "Розширений пошук в GitLab — це потужний інструмент який заощаджує ваш час. Замість дублювання коду і витрати часу, ви можете шукати код інших команд, який може допомогти у вашому проекті."
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
msgstr ""
@@ -26404,7 +26404,7 @@ msgstr "Перейдіть на вищий тарифний план, щоб о
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr "Перейдіть на вищий тарифний план щоб активувати Покращений Глобальний Пошук."
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/ur_PK/gitlab.po b/locale/ur_PK/gitlab.po
index d4b0f6ec39118..7619f2aabc7a1 100644
--- a/locale/ur_PK/gitlab.po
+++ b/locale/ur_PK/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/uz_UZ/gitlab.po b/locale/uz_UZ/gitlab.po
index 56157dfb70928..a97b2be357b63 100644
--- a/locale/uz_UZ/gitlab.po
+++ b/locale/uz_UZ/gitlab.po
@@ -12807,7 +12807,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23878,7 +23878,7 @@ 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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -26122,7 +26122,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/vi_VN/gitlab.po b/locale/vi_VN/gitlab.po
index 258bc1fa81c0d..fd8ff8993f738 100644
--- a/locale/vi_VN/gitlab.po
+++ b/locale/vi_VN/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,7 +25981,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/zh_CN/gitlab.po b/locale/zh_CN/gitlab.po
index 0fa7da6f42a28..a262ceb57e4a5 100644
--- a/locale/zh_CN/gitlab.po
+++ b/locale/zh_CN/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr "使用GitLab Enterprise Edition以获得增强的合并请求功能和
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr "使用GitLab企业版全局搜索带来的增强搜索功能"
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] "%{type} 包含以下错误:"
-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 "The Advanced 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."
msgstr "GitLab 中的高级全局搜索功能是一个强大且节省您的时间的搜索服务。您可以搜索其他团队的代码以帮助您完善自己项目中的代码。从而避免创建重复的代码或浪费时间。"
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,8 +25981,8 @@ msgstr "升级到可使用金丝雀部署功能的方案"
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
-msgstr "升级您的订阅计划以启用高级全局搜索。"
+msgid "Upgrade your plan to activate Advanced Search."
+msgstr "升级您的订阅计划以启用高级搜索。"
msgid "Upgrade your plan to activate Audit Events."
msgstr "升级您的订阅计划以激活审计事件。"
diff --git a/locale/zh_HK/gitlab.po b/locale/zh_HK/gitlab.po
index c297fdeacf810..ec2e017fc2150 100644
--- a/locale/zh_HK/gitlab.po
+++ b/locale/zh_HK/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,7 +25981,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/locale/zh_TW/gitlab.po b/locale/zh_TW/gitlab.po
index f380d64fb4198..c3969e879cb57 100644
--- a/locale/zh_TW/gitlab.po
+++ b/locale/zh_TW/gitlab.po
@@ -12704,7 +12704,7 @@ msgstr ""
msgid "Improve customer support with GitLab Service Desk."
msgstr ""
-msgid "Improve search with Advanced Global Search and GitLab Enterprise Edition."
+msgid "Improve search with Advanced Search and GitLab Enterprise Edition."
msgstr ""
msgid "In %{time_to_now}"
@@ -23740,7 +23740,7 @@ msgid "The %{type} contains the following error:"
msgid_plural "The %{type} contains the following errors:"
msgstr[0] ""
-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 "The Advanced 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."
msgstr ""
msgid "The CSV export will be created in the background. Once finished, it will be sent to %{strong_open}%{email}%{strong_close} in an attachment."
@@ -25981,7 +25981,7 @@ msgstr ""
msgid "Upgrade your plan"
msgstr ""
-msgid "Upgrade your plan to activate Advanced Global Search."
+msgid "Upgrade your plan to activate Advanced Search."
msgstr ""
msgid "Upgrade your plan to activate Audit Events."
diff --git a/spec/features/admin/admin_cohorts_spec.rb b/spec/features/admin/admin_cohorts_spec.rb
index 375e10f0babdb..f91446ed222f9 100644
--- a/spec/features/admin/admin_cohorts_spec.rb
+++ b/spec/features/admin/admin_cohorts_spec.rb
@@ -5,15 +5,27 @@
RSpec.describe 'Cohorts page' do
before do
sign_in(create(:admin))
+ end
+
+ context 'with usage ping enabled' do
+ it 'shows users count per month' do
+ stub_application_setting(usage_ping_enabled: true)
+
+ create_list(:user, 2)
+
+ visit admin_cohorts_path
- stub_application_setting(usage_ping_enabled: true)
+ expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
+ end
end
- it 'See users count per month' do
- create_list(:user, 2)
+ context 'with usage ping disabled' do
+ it 'shows empty state', :js do
+ stub_application_setting(usage_ping_enabled: false)
- visit admin_cohorts_path
+ visit admin_cohorts_path
- expect(page).to have_content("#{Time.now.strftime('%b %Y')} 3 0")
+ expect(page).to have_selector(".js-empty-state")
+ end
end
end
diff --git a/spec/frontend/awards_handler_spec.js b/spec/frontend/awards_handler_spec.js
index 1a1738ecf4a18..f0ed18248f049 100644
--- a/spec/frontend/awards_handler_spec.js
+++ b/spec/frontend/awards_handler_spec.js
@@ -4,7 +4,6 @@ import MockAdapter from 'axios-mock-adapter';
import { useFakeRequestAnimationFrame } from 'helpers/fake_request_animation_frame';
import axios from '~/lib/utils/axios_utils';
import loadAwardsHandler from '~/awards_handler';
-import { setTestTimeout } from './helpers/timeout';
import { EMOJI_VERSION } from '~/emoji';
window.gl = window.gl || {};
@@ -17,7 +16,44 @@ const urlRoot = gon.relative_url_root;
describe('AwardsHandler', () => {
useFakeRequestAnimationFrame();
- const emojiData = getJSONFixture('emojis/emojis.json');
+ const emojiData = {
+ '8ball': {
+ c: 'activity',
+ e: '🎱',
+ d: 'billiards',
+ u: '6.0',
+ },
+ grinning: {
+ c: 'people',
+ e: '😀',
+ d: 'grinning face',
+ u: '6.1',
+ },
+ angel: {
+ c: 'people',
+ e: '👼',
+ d: 'baby angel',
+ u: '6.0',
+ },
+ anger: {
+ c: 'symbols',
+ e: '💢',
+ d: 'anger symbol',
+ u: '6.0',
+ },
+ alien: {
+ c: 'people',
+ e: '👽',
+ d: 'extraterrestrial alien',
+ u: '6.0',
+ },
+ sunglasses: {
+ c: 'people',
+ e: '😎',
+ d: 'smiling face with sunglasses',
+ u: '6.0',
+ },
+ };
preloadFixtures('snippets/show.html');
const openAndWaitForEmojiMenu = (sel = '.js-add-award') => {
@@ -25,7 +61,7 @@ describe('AwardsHandler', () => {
.eq(0)
.click();
- jest.advanceTimersByTime(200);
+ jest.runOnlyPendingTimers();
const $menu = $('.emoji-menu');
@@ -37,10 +73,6 @@ describe('AwardsHandler', () => {
};
beforeEach(async () => {
- // These tests have had some timeout issues
- // https://gitlab.com/gitlab-org/gitlab/-/issues/221086
- setTestTimeout(6000);
-
mock = new MockAdapter(axios);
mock.onGet(`/-/emojis/${EMOJI_VERSION}/emojis.json`).reply(200, emojiData);
diff --git a/spec/frontend/behaviors/gl_emoji_spec.js b/spec/frontend/behaviors/gl_emoji_spec.js
index ef6b1673b7c83..46b4e5d3d5cfe 100644
--- a/spec/frontend/behaviors/gl_emoji_spec.js
+++ b/spec/frontend/behaviors/gl_emoji_spec.js
@@ -10,7 +10,20 @@ jest.mock('~/emoji/support');
describe('gl_emoji', () => {
let mock;
- const emojiData = getJSONFixture('emojis/emojis.json');
+ const emojiData = {
+ grey_question: {
+ c: 'symbols',
+ e: '❔',
+ d: 'white question mark ornament',
+ u: '6.0',
+ },
+ bomb: {
+ c: 'objects',
+ e: '💣',
+ d: 'bomb',
+ u: '6.0',
+ },
+ };
beforeAll(() => {
jest.spyOn(EmojiUnicodeSupport, 'default').mockReturnValue(true);
diff --git a/spec/frontend/design_management/components/design_sidebar_spec.js b/spec/frontend/design_management/components/design_sidebar_spec.js
index e098e7de867c7..520575f97e120 100644
--- a/spec/frontend/design_management/components/design_sidebar_spec.js
+++ b/spec/frontend/design_management/components/design_sidebar_spec.js
@@ -7,6 +7,9 @@ import DesignDiscussion from '~/design_management/components/design_notes/design
import design from '../mock_data/design';
import updateActiveDiscussionMutation from '~/design_management/graphql/mutations/update_active_discussion.mutation.graphql';
+const scrollIntoViewMock = jest.fn();
+HTMLElement.prototype.scrollIntoView = scrollIntoViewMock;
+
const updateActiveDiscussionMutationVariables = {
mutation: updateActiveDiscussionMutation,
variables: {
@@ -53,6 +56,7 @@ describe('Design management design sidebar component', () => {
mutate,
},
},
+ stubs: { GlPopover },
});
}
@@ -220,6 +224,10 @@ describe('Design management design sidebar component', () => {
expect(findPopover().exists()).toBe(true);
});
+ it('scrolls to resolved threads link', () => {
+ expect(scrollIntoViewMock).toHaveBeenCalled();
+ });
+
it('dismisses a popover on the outside click', () => {
wrapper.trigger('click');
return wrapper.vm.$nextTick(() => {
diff --git a/spec/frontend/design_management/pages/design/__snapshots__/index_spec.js.snap b/spec/frontend/design_management/pages/design/__snapshots__/index_spec.js.snap
index 823294efc3870..5fdc41bbfbf9e 100644
--- a/spec/frontend/design_management/pages/design/__snapshots__/index_spec.js.snap
+++ b/spec/frontend/design_management/pages/design/__snapshots__/index_spec.js.snap
@@ -92,7 +92,7 @@ exports[`Design management design index page renders design index 1`] = `