{tabs.map((tab) => (
@@ -35,12 +35,17 @@ export function TabsLayoutManagerRenderer({ model }: SceneComponentProps
{currentTab && }
- >
+
);
}
const getStyles = (theme: GrafanaTheme2) => ({
- tabsWrapper: css({
+ tabLayoutContainer: css({
+ display: 'flex',
+ flexDirection: 'column',
+ flex: '1 1 auto',
+ }),
+ tabsBar: css({
overflow: 'hidden',
}),
tabsRow: css({
@@ -60,9 +65,7 @@ const getStyles = (theme: GrafanaTheme2) => ({
backgroundColor: 'transparent',
display: 'flex',
flex: 1,
- height: '100%',
- overflow: 'auto',
- scrollbarWidth: 'thin',
+ minHeight: 0,
padding: '2px 2px 0 2px',
}),
});
diff --git a/public/app/features/dashboard-scene/scene/layouts-shared/addNew.ts b/public/app/features/dashboard-scene/scene/layouts-shared/addNew.ts
index 68827d0ab11..379e2f83f55 100644
--- a/public/app/features/dashboard-scene/scene/layouts-shared/addNew.ts
+++ b/public/app/features/dashboard-scene/scene/layouts-shared/addNew.ts
@@ -1,18 +1,22 @@
-import { SceneGridRow, SceneObject } from '@grafana/scenes';
+import { SceneGridRow } from '@grafana/scenes';
+import { NewObjectAddedToCanvasEvent } from '../../edit-pane/shared';
import { DefaultGridLayoutManager } from '../layout-default/DefaultGridLayoutManager';
import { RowItem } from '../layout-rows/RowItem';
import { RowsLayoutManager } from '../layout-rows/RowsLayoutManager';
import { TabItem } from '../layout-tabs/TabItem';
import { TabsLayoutManager } from '../layout-tabs/TabsLayoutManager';
+import { DashboardLayoutManager } from '../types/DashboardLayoutManager';
import { isLayoutParent } from '../types/LayoutParent';
-export function addNewTabTo(sceneObject: SceneObject): TabItem {
- if (sceneObject instanceof TabsLayoutManager) {
- return sceneObject.addNewTab();
+export function addNewTabTo(layout: DashboardLayoutManager): TabItem {
+ if (layout instanceof TabsLayoutManager) {
+ const tab = layout.addNewTab();
+ layout.publishEvent(new NewObjectAddedToCanvasEvent(tab), true);
+ return tab;
}
- const layoutParent = sceneObject.parent!;
+ const layoutParent = layout.parent!;
if (!isLayoutParent(layoutParent)) {
throw new Error('Parent layout is not a LayoutParent');
}
@@ -20,24 +24,31 @@ export function addNewTabTo(sceneObject: SceneObject): TabItem {
const tabsLayout = TabsLayoutManager.createFromLayout(layoutParent.getLayout());
layoutParent.switchLayout(tabsLayout);
- return tabsLayout.state.tabs[0];
+ const tab = tabsLayout.state.tabs[0];
+ layout.publishEvent(new NewObjectAddedToCanvasEvent(tab), true);
+
+ return tab;
}
-export function addNewRowTo(sceneObject: SceneObject): RowItem | SceneGridRow {
- if (sceneObject instanceof RowsLayoutManager) {
- return sceneObject.addNewRow();
+export function addNewRowTo(layout: DashboardLayoutManager): RowItem | SceneGridRow {
+ if (layout instanceof RowsLayoutManager) {
+ const row = layout.addNewRow();
+ layout.publishEvent(new NewObjectAddedToCanvasEvent(row), true);
+ return row;
}
- if (sceneObject instanceof DefaultGridLayoutManager) {
- return sceneObject.addNewRow();
+ if (layout instanceof DefaultGridLayoutManager) {
+ const row = layout.addNewRow();
+ layout.publishEvent(new NewObjectAddedToCanvasEvent(row), true);
+ return row;
}
- if (sceneObject instanceof TabsLayoutManager) {
- const currentTab = sceneObject.getCurrentTab();
+ if (layout instanceof TabsLayoutManager) {
+ const currentTab = layout.getCurrentTab();
return addNewRowTo(currentTab.state.layout);
}
- const layoutParent = sceneObject.parent!;
+ const layoutParent = layout.parent!;
if (!isLayoutParent(layoutParent)) {
throw new Error('Parent layout is not a LayoutParent');
}
@@ -45,5 +56,8 @@ export function addNewRowTo(sceneObject: SceneObject): RowItem | SceneGridRow {
const rowsLayout = RowsLayoutManager.createFromLayout(layoutParent.getLayout());
layoutParent.switchLayout(rowsLayout);
- return rowsLayout.state.rows[0];
+ const row = rowsLayout.state.rows[0];
+ layout.publishEvent(new NewObjectAddedToCanvasEvent(row), true);
+
+ return row;
}
diff --git a/public/app/features/dashboard-scene/scene/layouts-shared/utils.ts b/public/app/features/dashboard-scene/scene/layouts-shared/utils.ts
index 61a6d574877..9d4dbc3b2ce 100644
--- a/public/app/features/dashboard-scene/scene/layouts-shared/utils.ts
+++ b/public/app/features/dashboard-scene/scene/layouts-shared/utils.ts
@@ -1,3 +1,5 @@
+import { useEffect, useRef } from 'react';
+
import { SceneObject } from '@grafana/scenes';
import { DashboardLayoutManager, isDashboardLayoutManager } from '../types/DashboardLayoutManager';
@@ -15,3 +17,20 @@ export function findParentLayout(sceneObject: SceneObject): DashboardLayoutManag
return null;
}
+
+export interface EditPaneInputAutoFocusProps {
+ noAutoFocus?: boolean;
+}
+
+export function useEditPaneInputAutoFocus({ noAutoFocus }: EditPaneInputAutoFocusProps = {}) {
+ const ref = useRef
(null);
+
+ useEffect(() => {
+ if (ref.current && !noAutoFocus) {
+ // Need the setTimeout here for some reason
+ setTimeout(() => ref.current?.focus(), 200);
+ }
+ }, [noAutoFocus]);
+
+ return ref;
+}
diff --git a/public/app/features/dashboard-scene/scene/setDashboardPanelContext.ts b/public/app/features/dashboard-scene/scene/setDashboardPanelContext.ts
index 81b3cc012c6..119b5d0ba8d 100644
--- a/public/app/features/dashboard-scene/scene/setDashboardPanelContext.ts
+++ b/public/app/features/dashboard-scene/scene/setDashboardPanelContext.ts
@@ -12,10 +12,10 @@ import { DashboardScene } from './DashboardScene';
export function setDashboardPanelContext(vizPanel: VizPanel, context: PanelContext) {
const dashboard = getDashboardSceneFor(vizPanel);
- context.app = dashboard.state.isEditing ? CoreApp.PanelEditor : CoreApp.Dashboard;
+ context.app = dashboard.state.editPanel ? CoreApp.PanelEditor : CoreApp.Dashboard;
dashboard.subscribeToState((state) => {
- if (state.isEditing) {
+ if (state.editPanel) {
context.app = CoreApp.PanelEditor;
} else {
context.app = CoreApp.Dashboard;
diff --git a/public/app/features/dashboard-scene/scene/types/EditableDashboardElement.ts b/public/app/features/dashboard-scene/scene/types/EditableDashboardElement.ts
index 9a41fc9b867..9ae7b3969f3 100644
--- a/public/app/features/dashboard-scene/scene/types/EditableDashboardElement.ts
+++ b/public/app/features/dashboard-scene/scene/types/EditableDashboardElement.ts
@@ -1,11 +1,6 @@
-import { ReactNode } from 'react';
-
import { IconName } from '@grafana/data';
-import { SceneObject } from '@grafana/scenes';
import { OptionsPaneCategoryDescriptor } from 'app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor';
-import { MultiSelectedEditableDashboardElement } from './MultiSelectedEditableDashboardElement';
-
/**
* Interface for elements that have options
*/
@@ -24,29 +19,29 @@ export interface EditableDashboardElement {
useEditPaneOptions(): OptionsPaneCategoryDescriptor[];
/**
- * Panel Actions
- **/
- renderActions?(): ReactNode;
+ * Supports delete action
+ */
+ onDelete?(): void;
/**
- * creates a new multi-selection element from a list of selected items
+ * Supports duplicate action
*/
- createMultiSelectedElement?(items: SceneObject[]): MultiSelectedEditableDashboardElement;
+ onDuplicate?(): void;
/**
- * Return custom title for the edit panel header
+ * Supports copy action
*/
- renderTitle?(): ReactNode;
+ onCopy?(): void;
/**
- * determines if first edit panel header can be collapsed
+ * creates a new multi-selection element from a list of selected items
*/
- isOpenable?: Readonly;
+ createMultiSelectedElement?(elements: this[]): EditableDashboardElement;
}
export interface EditableDashboardElementInfo {
- name: string;
- typeId: string;
+ instanceName: string;
+ typeName: string;
icon: IconName;
}
diff --git a/public/app/features/dashboard-scene/scene/types/MultiSelectedEditableDashboardElement.ts b/public/app/features/dashboard-scene/scene/types/MultiSelectedEditableDashboardElement.ts
deleted file mode 100644
index a5dd47ccbdc..00000000000
--- a/public/app/features/dashboard-scene/scene/types/MultiSelectedEditableDashboardElement.ts
+++ /dev/null
@@ -1,44 +0,0 @@
-import { ReactNode } from 'react';
-
-import { OptionsPaneCategoryDescriptor } from 'app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor';
-
-import { EditableDashboardElementInfo } from './EditableDashboardElement';
-
-export interface MultiSelectedEditableDashboardElement {
- /**
- * Marks this object as an element that can be selected and edited directly on the canvas
- */
- isMultiSelectedEditableDashboardElement: true;
-
- /** A descriptor used by editing pane */
- getEditableElementInfo(): EditableDashboardElementInfo;
-
- /**
- * Extremely useful for being able to access the useState inside the contained items
- */
- key: Readonly;
-
- /**
- * Hook that returns edit pane options
- */
- useEditPaneOptions?(): OptionsPaneCategoryDescriptor[];
-
- /**
- * Panel Actions
- **/
- renderActions?(): ReactNode;
-
- /**
- * Return custom title for the edit panel header
- */
- renderTitle?(): ReactNode;
-
- /**
- * determines if first edit panel header can be collapsed
- */
- isOpenable?: Readonly;
-}
-
-export function isMultiSelectedEditableDashboardElement(obj: object): obj is MultiSelectedEditableDashboardElement {
- return 'isMultiSelectedEditableDashboardElement' in obj;
-}
diff --git a/public/app/features/dashboard-scene/utils/utils.ts b/public/app/features/dashboard-scene/utils/utils.ts
index 05358cfd0d2..f22210dd3d2 100644
--- a/public/app/features/dashboard-scene/utils/utils.ts
+++ b/public/app/features/dashboard-scene/utils/utils.ts
@@ -19,6 +19,7 @@ import { LibraryPanelBehavior } from '../scene/LibraryPanelBehavior';
import { VizPanelLinks, VizPanelLinksMenu } from '../scene/PanelLinks';
import { panelMenuBehavior } from '../scene/PanelMenuBehavior';
import { DashboardGridItem } from '../scene/layout-default/DashboardGridItem';
+import { setDashboardPanelContext } from '../scene/setDashboardPanelContext';
import { DashboardLayoutManager, isDashboardLayoutManager } from '../scene/types/DashboardLayoutManager';
import { containsCloneKey, getLastKeyFromClone, getOriginalKey, isInCloneChain } from './clone';
@@ -323,6 +324,7 @@ export function getDefaultVizPanel(): VizPanel {
titleItems: [new VizPanelLinks({ menu: new VizPanelLinksMenu({}) })],
hoverHeaderOffset: 0,
$behaviors: [],
+ extendPanelContext: setDashboardPanelContext,
menu: new VizPanelMenu({
$behaviors: [panelMenuBehavior],
}),
diff --git a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx
index 623bf612880..2ce0a19527a 100644
--- a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx
+++ b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategory.tsx
@@ -21,7 +21,6 @@ export interface OptionsPaneCategoryProps {
isNested?: boolean;
children: ReactNode;
sandboxId?: string;
- isOpenable?: boolean;
}
const CATEGORY_PARAM_NAME = 'showCategory' as const;
@@ -38,13 +37,12 @@ export const OptionsPaneCategory = React.memo(
itemsCount,
isNested = false,
sandboxId,
- isOpenable = true,
}: OptionsPaneCategoryProps) => {
const [savedState, setSavedState] = useLocalStorage(getOptionGroupStorageKey(id), {
isExpanded: isOpenDefault,
});
- const [isExpanded, setIsExpanded] = useState(!isOpenable || (savedState?.isExpanded ?? isOpenDefault));
+ const [isExpanded, setIsExpanded] = useState(savedState?.isExpanded ?? isOpenDefault);
const manualClickTime = useRef(0);
const ref = useRef(null);
const [queryParams, updateQueryParams] = useQueryParams();
@@ -68,9 +66,6 @@ export const OptionsPaneCategory = React.memo(
}, [forceOpen, isExpanded, isOpenFromUrl]);
const onToggle = useCallback(() => {
- if (!isOpenable) {
- return;
- }
manualClickTime.current = Date.now();
updateQueryParams(
{
@@ -80,7 +75,7 @@ export const OptionsPaneCategory = React.memo(
);
setSavedState({ isExpanded: !isExpanded });
setIsExpanded(!isExpanded);
- }, [isOpenable, updateQueryParams, isExpanded, id, setSavedState]);
+ }, [updateQueryParams, isExpanded, id, setSavedState]);
if (!renderTitle) {
renderTitle = function defaultTitle(isExpanded: boolean) {
@@ -106,7 +101,6 @@ export const OptionsPaneCategory = React.memo(
);
const headerStyles = cx(styles.header, {
- [styles.headerHover]: isOpenable,
[styles.headerExpanded]: isExpanded,
[styles.headerNested]: isNested,
});
@@ -129,19 +123,18 @@ export const OptionsPaneCategory = React.memo(
- {isOpenable ? (
-
- ) : null}
+
+
{isExpanded && (
@@ -179,8 +172,6 @@ const getStyles = (theme: GrafanaTheme2) => ({
padding: theme.spacing(0.5, 1.5),
color: theme.colors.text.primary,
fontWeight: theme.typography.fontWeightMedium,
- }),
- headerHover: css({
cursor: 'pointer',
'&:hover': {
background: theme.colors.emphasize(theme.colors.background.primary, 0.03),
diff --git a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor.tsx b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor.tsx
index bb1c76969d1..854b5be01e7 100644
--- a/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor.tsx
+++ b/public/app/features/dashboard/components/PanelEditor/OptionsPaneCategoryDescriptor.tsx
@@ -16,7 +16,6 @@ export interface OptionsPaneCategoryDescriptorProps {
itemsCount?: number;
customRender?: () => React.ReactNode;
sandboxId?: string;
- isOpenable?: boolean;
}
/**
@@ -60,8 +59,12 @@ export class OptionsPaneCategoryDescriptor {
return this.props.customRender();
}
- if (this.props.id === '') {
- return
{this.items.map((item) => item.render(searchQuery))} ;
+ if (this.props.title === '') {
+ return (
+
+ {this.items.map((item) => item.render(searchQuery))}
+
+ );
}
return (
diff --git a/public/app/features/folders/api/baseAPI.ts b/public/app/features/folders/api/baseAPI.ts
new file mode 100644
index 00000000000..c5957bea332
--- /dev/null
+++ b/public/app/features/folders/api/baseAPI.ts
@@ -0,0 +1,14 @@
+import { createApi } from '@reduxjs/toolkit/query/react';
+
+import { createBaseQuery } from 'app/api/createBaseQuery';
+import { getAPIBaseURL } from 'app/api/utils';
+
+export const BASE_URL = getAPIBaseURL('folder.grafana.app', 'v0alpha1');
+
+export const baseAPI = createApi({
+ reducerPath: 'folderAPI',
+ baseQuery: createBaseQuery({
+ baseURL: BASE_URL,
+ }),
+ endpoints: () => ({}),
+});
diff --git a/public/app/features/folders/api/endpoints.gen.ts b/public/app/features/folders/api/endpoints.gen.ts
new file mode 100644
index 00000000000..5ede70048ec
--- /dev/null
+++ b/public/app/features/folders/api/endpoints.gen.ts
@@ -0,0 +1,125 @@
+import { baseAPI as api } from './baseAPI';
+export const addTagTypes = ['Folder'] as const;
+const injectedRtkApi = api
+ .enhanceEndpoints({
+ addTagTypes,
+ })
+ .injectEndpoints({
+ endpoints: (build) => ({
+ getFolder: build.query
({
+ query: (queryArg) => ({
+ url: `/folders/${queryArg.name}`,
+ params: {
+ pretty: queryArg.pretty,
+ },
+ }),
+ providesTags: ['Folder'],
+ }),
+ }),
+ overrideExisting: false,
+ });
+export { injectedRtkApi as generatedAPI };
+export type GetFolderResponse = /** status 200 OK */ Folder;
+export type GetFolderArg = {
+ /** name of the Folder */
+ name: string;
+ /** If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget). */
+ pretty?: string;
+};
+export type Time = string;
+export type FieldsV1 = object;
+export type ManagedFieldsEntry = {
+ /** APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted. */
+ apiVersion?: string;
+ /** FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1" */
+ fieldsType?: string;
+ /** FieldsV1 holds the first JSON version format as described in the "FieldsV1" type. */
+ fieldsV1?: FieldsV1;
+ /** Manager is an identifier of the workflow managing these fields. */
+ manager?: string;
+ /** Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'. */
+ operation?: string;
+ /** Subresource is the name of the subresource used to update that object, or empty string if the object was updated through the main resource. The value of this field is used to distinguish between managers, even if they share the same name. For example, a status update will be distinct from a regular update using the same manager name. Note that the APIVersion field is not related to the Subresource field and it always corresponds to the version of the main resource. */
+ subresource?: string;
+ /** Time is the timestamp of when the ManagedFields entry was added. The timestamp will also be updated if a field is added, the manager changes any of the owned fields value or removes a field. The timestamp does not update when a field is removed from the entry because another manager took it over. */
+ time?: Time;
+};
+export type OwnerReference = {
+ /** API version of the referent. */
+ apiVersion: string;
+ /** If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. See https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion for how the garbage collector interacts with this field and enforces the foreground deletion. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned. */
+ blockOwnerDeletion?: boolean;
+ /** If true, this reference points to the managing controller. */
+ controller?: boolean;
+ /** Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */
+ kind: string;
+ /** Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names */
+ name: string;
+ /** UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids */
+ uid: string;
+};
+export type ObjectMeta = {
+ /** Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations */
+ annotations?: {
+ [key: string]: string;
+ };
+ /** CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
+
+ Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata */
+ creationTimestamp?: Time;
+ /** Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only. */
+ deletionGracePeriodSeconds?: number;
+ /** DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
+
+ Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata */
+ deletionTimestamp?: Time;
+ /** Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list. */
+ finalizers?: string[];
+ /** GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.
+
+ If this field is specified and the generated name exists, the server will return a 409.
+
+ Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency */
+ generateName?: string;
+ /** A sequence number representing a specific generation of the desired state. Populated by the system. Read-only. */
+ generation?: number;
+ /** Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels */
+ labels?: {
+ [key: string]: string;
+ };
+ /** ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object. */
+ managedFields?: ManagedFieldsEntry[];
+ /** Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names */
+ name?: string;
+ /** Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.
+
+ Must be a DNS_LABEL. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces */
+ namespace?: string;
+ /** List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller. */
+ ownerReferences?: OwnerReference[];
+ /** An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.
+
+ Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency */
+ resourceVersion?: string;
+ /** Deprecated: selfLink is a legacy read-only field that is no longer populated by the system. */
+ selfLink?: string;
+ /** UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.
+
+ Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#uids */
+ uid?: string;
+};
+export type Spec = {
+ /** Describe the feature toggle */
+ description?: string;
+ /** Describe the feature toggle */
+ title: string;
+};
+export type Folder = {
+ /** APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources */
+ apiVersion?: string;
+ /** Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds */
+ kind?: string;
+ metadata?: ObjectMeta;
+ spec?: Spec;
+};
+export const { useGetFolderQuery } = injectedRtkApi;
diff --git a/public/app/features/folders/api/index.ts b/public/app/features/folders/api/index.ts
new file mode 100644
index 00000000000..9ef7d3ae9c7
--- /dev/null
+++ b/public/app/features/folders/api/index.ts
@@ -0,0 +1,7 @@
+import { generatedAPI } from './endpoints.gen';
+
+export const folderAPI = generatedAPI.enhanceEndpoints({});
+
+export const { useGetFolderQuery } = folderAPI;
+// eslint-disable-next-line no-barrel-files/no-barrel-files
+export { type Spec, type Folder } from './endpoints.gen';
diff --git a/public/app/plugins/datasource/loki/components/AnnotationsQueryEditor.tsx b/public/app/plugins/datasource/loki/components/AnnotationsQueryEditor.tsx
index 03c30178b6e..fd291c42b86 100644
--- a/public/app/plugins/datasource/loki/components/AnnotationsQueryEditor.tsx
+++ b/public/app/plugins/datasource/loki/components/AnnotationsQueryEditor.tsx
@@ -1,13 +1,10 @@
-// Libraries
import { memo } from 'react';
import { AnnotationQuery } from '@grafana/data';
import { EditorField, EditorRow } from '@grafana/plugin-ui';
import { Input, Stack } from '@grafana/ui';
-// Types
-import { getNormalizedLokiQuery } from '../queryUtils';
-import { LokiQuery, LokiQueryType } from '../types';
+import { LokiQuery } from '../types';
import { LokiOptionFields } from './LokiOptionFields';
import { LokiQueryField } from './LokiQueryField';
@@ -27,17 +24,11 @@ export const LokiAnnotationsQueryEditor = memo(function LokiAnnotationQueryEdito
}
const onChangeQuery = (query: LokiQuery) => {
- // the current version of annotations only stores an optional boolean
- // field `instant` to handle the instant/range switch.
- // we need to maintain compatibility for now, so we do the same.
- // we explicitly call `getNormalizedLokiQuery` to make sure `queryType`
- // is set up correctly.
- const instant = getNormalizedLokiQuery(query).queryType === LokiQueryType.Instant;
onAnnotationChange({
...annotation,
expr: query.expr,
maxLines: query.maxLines,
- instant,
+ queryType: 'range',
});
};
@@ -60,7 +51,6 @@ export const LokiAnnotationsQueryEditor = memo(function LokiAnnotationQueryEdito
ExtraFieldElement={
{}}
onChange={onChangeQuery}
diff --git a/public/app/plugins/datasource/loki/components/LokiOptionFields.test.tsx b/public/app/plugins/datasource/loki/components/LokiOptionFields.test.tsx
index e82312af944..7deaaf8c05d 100644
--- a/public/app/plugins/datasource/loki/components/LokiOptionFields.test.tsx
+++ b/public/app/plugins/datasource/loki/components/LokiOptionFields.test.tsx
@@ -1,17 +1,15 @@
-import { render, screen, waitFor, fireEvent } from '@testing-library/react';
+import { render, screen } from '@testing-library/react';
import { LokiOptionFieldsProps, LokiOptionFields, preprocessMaxLines } from './LokiOptionFields';
const setup = () => {
const lineLimitValue = '1';
- const resolution = 1;
const query = { refId: '1', expr: 'query' };
const onChange = jest.fn();
const onRunQuery = jest.fn();
const props: LokiOptionFieldsProps = {
lineLimitValue,
- resolution,
query,
onChange,
onRunQuery,
@@ -20,35 +18,6 @@ const setup = () => {
return props;
};
-describe('Query Type Field', () => {
- it('should render a query type field', () => {
- const props = setup();
- render( );
- expect(screen.getByTestId('queryTypeField')).toBeInTheDocument();
- });
-
- it('should have a default value of "Range"', () => {
- const props = setup();
- render( );
- expect(screen.getByLabelText('Range')).toBeChecked();
- expect(screen.getByLabelText('Instant')).not.toBeChecked();
- });
-
- it('should call onChange when value is changed', async () => {
- const props = setup();
- render( );
- fireEvent.click(screen.getByLabelText('Instant')); // (`userEvent.click()` triggers an error, so switching here to `fireEvent`.)
- await waitFor(() => expect(props.onChange).toHaveBeenCalledTimes(1));
- });
-
- it('renders as expected when the query type is instant', () => {
- const props = setup();
- render( );
- expect(screen.getByLabelText('Instant')).toBeChecked();
- expect(screen.getByLabelText('Range')).not.toBeChecked();
- });
-});
-
describe('Line Limit Field', () => {
it('should render a line limit field', () => {
const props = setup();
@@ -69,26 +38,6 @@ describe('Line Limit Field', () => {
});
});
-describe('Resolution Field', () => {
- it('should render the resolution field', () => {
- const props = setup();
- render( );
- expect(screen.getByRole('combobox')).toBeInTheDocument();
- });
-
- it('should have a default value of 1', async () => {
- const props = setup();
- render( );
- expect(await screen.findByText('1/1')).toBeInTheDocument();
- });
-
- it('displays the expected resolution value', async () => {
- const props = setup();
- render( );
- expect(await screen.findByText('1/5')).toBeInTheDocument();
- });
-});
-
describe('preprocessMaxLines', () => {
test.each([
{ inputValue: '', expected: undefined },
diff --git a/public/app/plugins/datasource/loki/components/LokiOptionFields.tsx b/public/app/plugins/datasource/loki/components/LokiOptionFields.tsx
index 73b7e7689ad..089591e4111 100644
--- a/public/app/plugins/datasource/loki/components/LokiOptionFields.tsx
+++ b/public/app/plugins/datasource/loki/components/LokiOptionFields.tsx
@@ -1,19 +1,14 @@
-// Libraries
-import { map } from 'lodash';
import { memo } from 'react';
import * as React from 'react';
-// Types
import { SelectableValue } from '@grafana/data';
import { config } from '@grafana/runtime';
-import { InlineFormLabel, RadioButtonGroup, InlineField, Input, Select, Stack } from '@grafana/ui';
+import { InlineField, Input, Stack } from '@grafana/ui';
-import { getLokiQueryType } from '../queryUtils';
import { LokiQuery, LokiQueryDirection, LokiQueryType } from '../types';
export interface LokiOptionFieldsProps {
lineLimitValue: string;
- resolution: number;
query: LokiQuery;
onChange: (value: LokiQuery) => void;
onRunQuery: () => void;
@@ -51,41 +46,15 @@ export function getQueryDirectionLabel(direction: LokiQueryDirection) {
return queryDirections.find((queryDirection) => queryDirection.value === direction)?.label ?? 'Unknown';
}
-if (config.featureToggles.lokiExperimentalStreaming) {
- queryTypeOptions.push({
- value: LokiQueryType.Stream,
- label: 'Stream',
- description: 'Run a query and keep sending results on an interval',
- });
-}
-
-export const DEFAULT_RESOLUTION: SelectableValue = {
- value: 1,
- label: '1/1',
-};
-
-export const RESOLUTION_OPTIONS: Array> = [DEFAULT_RESOLUTION].concat(
- map([2, 3, 4, 5, 10], (value: number) => ({
- value,
- label: '1/' + value,
- }))
-);
-
export function LokiOptionFields(props: LokiOptionFieldsProps) {
- const { lineLimitValue, resolution, onRunQuery, runOnBlur, onChange } = props;
+ const { lineLimitValue, onRunQuery, runOnBlur, onChange } = props;
const query = props.query ?? {};
- const queryType = getLokiQueryType(query);
function onChangeQueryLimit(value: string) {
const nextQuery = { ...query, maxLines: preprocessMaxLines(value) };
onChange(nextQuery);
}
- function onQueryTypeChange(queryType: LokiQueryType) {
- const { instant, range, ...rest } = query;
- onChange({ ...rest, queryType });
- }
-
function onMaxLinesChange(e: React.SyntheticEvent) {
if (query.maxLines !== preprocessMaxLines(e.currentTarget.value)) {
onChangeQueryLimit(e.currentTarget.value);
@@ -98,28 +67,8 @@ export function LokiOptionFields(props: LokiOptionFieldsProps) {
}
}
- function onResolutionChange(option: SelectableValue) {
- const nextQuery = { ...query, resolution: option.value };
- onChange(nextQuery);
- }
-
return (
- {/*Query type field*/}
-
- Query type
-
- {
- onQueryTypeChange(type);
- if (runOnBlur) {
- onRunQuery();
- }
- }}
- />
-
{/*Line limit field*/}
@@ -138,20 +87,6 @@ export function LokiOptionFields(props: LokiOptionFieldsProps) {
}}
/>
-
-
-
);
diff --git a/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.test.tsx b/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.test.tsx
index 10253f5851a..6e48e201798 100644
--- a/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.test.tsx
+++ b/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.test.tsx
@@ -122,35 +122,13 @@ describe('LokiQueryBuilderOptions', () => {
});
it('shows correct options for metric query', async () => {
- setup({ expr: 'rate({foo="bar"}[5m]', step: '1m', resolution: 2 });
+ setup({ expr: 'rate({foo="bar"}[5m]', step: '1m' });
expect(screen.queryByText('Line limit: 20')).not.toBeInTheDocument();
expect(screen.getByText('Type: Range')).toBeInTheDocument();
expect(screen.getByText('Step: 1m')).toBeInTheDocument();
- expect(screen.getByText('Resolution: 1/2')).toBeInTheDocument();
expect(screen.queryByText(/Direction/)).not.toBeInTheDocument();
});
- it('does not show resolution field if resolution is not set', async () => {
- setup({ expr: 'rate({foo="bar"}[5m]' });
- await userEvent.click(screen.getByRole('button', { name: /Options/ }));
- expect(screen.queryByText('Resolution')).not.toBeInTheDocument();
- });
-
- it('does not show resolution field if resolution is set to default value 1', async () => {
- setup({ expr: 'rate({foo="bar"}[5m]', resolution: 1 });
- await userEvent.click(screen.getByRole('button', { name: /Options/ }));
- expect(screen.queryByText('Resolution')).not.toBeInTheDocument();
- });
-
- it('does shows resolution field with warning if resolution is set to non-default value', async () => {
- setup({ expr: 'rate({foo="bar"}[5m]', resolution: 2 });
- await userEvent.click(screen.getByRole('button', { name: /Options/ }));
- expect(screen.getByText('Resolution')).toBeInTheDocument();
- expect(
- screen.getByText("The 'Resolution' is deprecated. Use 'Step' editor instead to change step parameter.")
- ).toBeInTheDocument();
- });
-
it.each(['abc', 10])('shows correct options for metric query with invalid step', async (step: string | number) => {
// @ts-expect-error Expected for backward compatibility test
setup({ expr: 'rate({foo="bar"}[5m]', step });
diff --git a/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.tsx b/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.tsx
index cb4fed551f5..69da069fb91 100644
--- a/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.tsx
+++ b/public/app/plugins/datasource/loki/querybuilder/components/LokiQueryBuilderOptions.tsx
@@ -8,19 +8,17 @@ import {
isValidGrafanaDuration,
LogSortOrderChangeEvent,
LogsSortOrder,
- SelectableValue,
store,
} from '@grafana/data';
import { EditorField, EditorRow, QueryOptionGroup } from '@grafana/plugin-ui';
-import { config, getAppEvents, reportInteraction } from '@grafana/runtime';
-import { Alert, AutoSizeInput, RadioButtonGroup, Select } from '@grafana/ui';
+import { config, getAppEvents } from '@grafana/runtime';
+import { AutoSizeInput, RadioButtonGroup } from '@grafana/ui';
import {
getQueryDirectionLabel,
preprocessMaxLines,
queryDirections,
queryTypeOptions,
- RESOLUTION_OPTIONS,
} from '../../components/LokiOptionFields';
import { getLokiQueryType, isLogsQuery } from '../../queryUtils';
import { LokiQuery, LokiQueryDirection, LokiQueryType, QueryStats } from '../../types';
@@ -70,15 +68,6 @@ export const LokiQueryBuilderOptions = React.memo(
[onChange, onRunQuery, query]
);
- const onResolutionChange = (option: SelectableValue) => {
- reportInteraction('grafana_loki_resolution_clicked', {
- app,
- resolution: option.value,
- });
- onChange({ ...query, resolution: option.value });
- onRunQuery();
- };
-
const onChunkRangeChange = (evt: React.FormEvent) => {
const value = evt.currentTarget.value;
if (!isValidDuration(value)) {
@@ -209,26 +198,6 @@ export const LokiQueryBuilderOptions = React.memo(
onCommitChange={onStepChange}
/>
- {query.resolution !== undefined && query.resolution > 1 && (
- <>
-
-
-
-
- >
- )}
>
)}
{config.featureToggles.lokiQuerySplittingConfig && config.featureToggles.lokiQuerySplitting && (
@@ -261,7 +230,6 @@ function getCollapsedInfo(
direction: LokiQueryDirection | undefined
): string[] {
const queryTypeLabel = queryTypeOptions.find((x) => x.value === queryType);
- const resolutionLabel = RESOLUTION_OPTIONS.find((x) => x.value === (query.resolution ?? 1));
const items: string[] = [];
@@ -278,10 +246,6 @@ function getCollapsedInfo(
if (query.step) {
items.push(`Step: ${isValidStep ? query.step : 'Invalid value'}`);
}
-
- if (query.resolution) {
- items.push(`Resolution: ${resolutionLabel?.label}`);
- }
}
return items;
diff --git a/public/app/plugins/datasource/tempo/datasource.ts b/public/app/plugins/datasource/tempo/datasource.ts
index b06a9d7bcc3..ee8727ce74f 100644
--- a/public/app/plugins/datasource/tempo/datasource.ts
+++ b/public/app/plugins/datasource/tempo/datasource.ts
@@ -312,7 +312,7 @@ export class TempoDatasource extends DataSourceWithBackend) {
cloudMigrationAPI.middleware,
userPreferencesAPI.middleware,
iamApi.middleware,
+ provisioningAPI.middleware,
+ folderAPI.middleware,
...extraMiddleware
),
devTools: process.env.NODE_ENV !== 'production',
diff --git a/public/app/types/unified-alerting-dto.ts b/public/app/types/unified-alerting-dto.ts
index bf112911756..6669d4fded9 100644
--- a/public/app/types/unified-alerting-dto.ts
+++ b/public/app/types/unified-alerting-dto.ts
@@ -262,6 +262,7 @@ export interface PostableGrafanaRuleDefinition {
record?: {
metric: string;
from: string;
+ target_datasource_uid?: string;
};
intervalSeconds?: number;
}
diff --git a/public/locales/cs-CZ/grafana.json b/public/locales/cs-CZ/grafana.json
new file mode 100644
index 00000000000..af5d7e65575
--- /dev/null
+++ b/public/locales/cs-CZ/grafana.json
@@ -0,0 +1,4038 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_few": "",
+ "used-by_many": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_few": "",
+ "used-by-rules_many": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_few": "",
+ "n-instances_many": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_few": "",
+ "n-more-policies_many": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_few": "",
+ "alertRule_many": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_few": "",
+ "dashboard_many": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_few": "",
+ "folder_many": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_few": "",
+ "libraryPanel_many": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_few": "",
+ "total_many": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_few": "",
+ "body_many": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_few": "",
+ "dashboard-count_many": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_few": "",
+ "text_many": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_few": "",
+ "folder-picker-text_many": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_few": "",
+ "text_many": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/de-DE/grafana.json b/public/locales/de-DE/grafana.json
index f19fca1d4f4..f58adc0d513 100644
--- a/public/locales/de-DE/grafana.json
+++ b/public/locales/de-DE/grafana.json
@@ -184,7 +184,8 @@
"rule-identifier": "",
"rule-type": "",
"state-error-timeout": "",
- "state-no-data": ""
+ "state-no-data": "",
+ "target-datasource-uid": ""
},
"alert-recording-rule-form": {
"evaluation-behaviour": {
@@ -504,6 +505,10 @@
"preview": "",
"previewCondition": ""
},
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
"rule-form": {
"evaluation": {
"evaluation-group-and-interval": "",
@@ -1068,23 +1073,18 @@
"elements": {
"dashboard": "",
"objects": "",
+ "panel": "",
"panels": "",
+ "row": "",
"rows": "",
+ "tab": "",
"tabs": ""
},
- "objects": {
- "multi-select": {
- "selection-number": ""
- }
- },
"open": "",
"row": {
"header": {
"hide": "",
"title": ""
- },
- "multi-select": {
- "title": ""
}
}
},
@@ -1165,13 +1165,11 @@
"copy-or-duplicate": "",
"delete": "",
"duplicate": "",
- "layout": "",
- "panels-title": ""
+ "layout": ""
}
},
"options": {
"description": "",
- "title": "",
"title-option": ""
},
"outline": {
@@ -1214,7 +1212,6 @@
},
"rows-layout": {
"description": "",
- "item-name": "",
"name": "",
"option": {
"height": "",
@@ -1253,9 +1250,6 @@
"menu": {
"move-tab": ""
},
- "multi-select": {
- "title": ""
- },
"name": "",
"tab": {
"menu": {
@@ -1270,7 +1264,6 @@
"new": ""
},
"tab-options": {
- "title": "",
"title-option": ""
}
},
@@ -1347,7 +1340,6 @@
"description": "",
"open-edit": "",
"plugin-type-image": "",
- "title": "",
"title-option": "",
"transparent-background": ""
}
diff --git a/public/locales/en-US/grafana.json b/public/locales/en-US/grafana.json
index cef94684d01..a2dd8f62e0d 100644
--- a/public/locales/en-US/grafana.json
+++ b/public/locales/en-US/grafana.json
@@ -184,7 +184,8 @@
"rule-identifier": "Rule identifier",
"rule-type": "Rule type",
"state-error-timeout": "Alert state if execution error or timeout",
- "state-no-data": "Alert state if no data or all values are null"
+ "state-no-data": "Alert state if no data or all values are null",
+ "target-datasource-uid": "Target data source"
},
"alert-recording-rule-form": {
"evaluation-behaviour": {
@@ -504,6 +505,10 @@
"preview": "Preview",
"previewCondition": "Preview alert rule condition"
},
+ "recording-rules": {
+ "description-target-data-source": "The Prometheus data source to store the recording rule in",
+ "label-target-data-source": "Target data source"
+ },
"rule-form": {
"evaluation": {
"evaluation-group-and-interval": "Evaluation group and interval",
@@ -1068,23 +1073,18 @@
"elements": {
"dashboard": "Dashboard",
"objects": "Objects",
+ "panel": "Panel",
"panels": "Panels",
+ "row": "Row",
"rows": "Rows",
+ "tab": "Tab",
"tabs": "Tabs"
},
- "objects": {
- "multi-select": {
- "selection-number": "No. of objects selected: {{length}}"
- }
- },
"open": "Open options pane",
"row": {
"header": {
"hide": "Hide",
"title": "Row header"
- },
- "multi-select": {
- "title": "{{length}} rows selected"
}
}
},
@@ -1165,13 +1165,11 @@
"copy-or-duplicate": "Copy or Duplicate",
"delete": "Delete",
"duplicate": "Duplicate",
- "layout": "Layout",
- "panels-title": "{{length}} panels selected"
+ "layout": "Layout"
}
},
"options": {
"description": "Description",
- "title": "Dashboard options",
"title-option": "Title"
},
"outline": {
@@ -1214,7 +1212,6 @@
},
"rows-layout": {
"description": "Rows layout",
- "item-name": "Row",
"name": "Rows",
"option": {
"height": "Height",
@@ -1253,9 +1250,6 @@
"menu": {
"move-tab": "Move tab"
},
- "multi-select": {
- "title": "{{length}} tabs selected"
- },
"name": "Tabs",
"tab": {
"menu": {
@@ -1270,7 +1264,6 @@
"new": "New tab"
},
"tab-options": {
- "title": "Tab",
"title-option": "Title"
}
},
@@ -1345,9 +1338,8 @@
"viz-panel": {
"options": {
"description": "Description",
- "open-edit": "Open Panel Edit",
+ "open-edit": "Open panel editor",
"plugin-type-image": "Image of plugin type",
- "title": "Panel",
"title-option": "Title",
"transparent-background": "Transparent background"
}
diff --git a/public/locales/es-ES/grafana.json b/public/locales/es-ES/grafana.json
index deb63c2a931..ca06ff0f505 100644
--- a/public/locales/es-ES/grafana.json
+++ b/public/locales/es-ES/grafana.json
@@ -184,7 +184,8 @@
"rule-identifier": "",
"rule-type": "",
"state-error-timeout": "",
- "state-no-data": ""
+ "state-no-data": "",
+ "target-datasource-uid": ""
},
"alert-recording-rule-form": {
"evaluation-behaviour": {
@@ -504,6 +505,10 @@
"preview": "",
"previewCondition": ""
},
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
"rule-form": {
"evaluation": {
"evaluation-group-and-interval": "",
@@ -1068,23 +1073,18 @@
"elements": {
"dashboard": "",
"objects": "",
+ "panel": "",
"panels": "",
+ "row": "",
"rows": "",
+ "tab": "",
"tabs": ""
},
- "objects": {
- "multi-select": {
- "selection-number": ""
- }
- },
"open": "",
"row": {
"header": {
"hide": "",
"title": ""
- },
- "multi-select": {
- "title": ""
}
}
},
@@ -1165,13 +1165,11 @@
"copy-or-duplicate": "",
"delete": "",
"duplicate": "",
- "layout": "",
- "panels-title": ""
+ "layout": ""
}
},
"options": {
"description": "",
- "title": "",
"title-option": ""
},
"outline": {
@@ -1214,7 +1212,6 @@
},
"rows-layout": {
"description": "",
- "item-name": "",
"name": "",
"option": {
"height": "",
@@ -1253,9 +1250,6 @@
"menu": {
"move-tab": ""
},
- "multi-select": {
- "title": ""
- },
"name": "",
"tab": {
"menu": {
@@ -1270,7 +1264,6 @@
"new": ""
},
"tab-options": {
- "title": "",
"title-option": ""
}
},
@@ -1347,7 +1340,6 @@
"description": "",
"open-edit": "",
"plugin-type-image": "",
- "title": "",
"title-option": "",
"transparent-background": ""
}
diff --git a/public/locales/fr-FR/grafana.json b/public/locales/fr-FR/grafana.json
index 7e32cde652b..cec4d85c830 100644
--- a/public/locales/fr-FR/grafana.json
+++ b/public/locales/fr-FR/grafana.json
@@ -184,7 +184,8 @@
"rule-identifier": "",
"rule-type": "",
"state-error-timeout": "",
- "state-no-data": ""
+ "state-no-data": "",
+ "target-datasource-uid": ""
},
"alert-recording-rule-form": {
"evaluation-behaviour": {
@@ -504,6 +505,10 @@
"preview": "",
"previewCondition": ""
},
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
"rule-form": {
"evaluation": {
"evaluation-group-and-interval": "",
@@ -1068,23 +1073,18 @@
"elements": {
"dashboard": "",
"objects": "",
+ "panel": "",
"panels": "",
+ "row": "",
"rows": "",
+ "tab": "",
"tabs": ""
},
- "objects": {
- "multi-select": {
- "selection-number": ""
- }
- },
"open": "",
"row": {
"header": {
"hide": "",
"title": ""
- },
- "multi-select": {
- "title": ""
}
}
},
@@ -1165,13 +1165,11 @@
"copy-or-duplicate": "",
"delete": "",
"duplicate": "",
- "layout": "",
- "panels-title": ""
+ "layout": ""
}
},
"options": {
"description": "",
- "title": "",
"title-option": ""
},
"outline": {
@@ -1214,7 +1212,6 @@
},
"rows-layout": {
"description": "",
- "item-name": "",
"name": "",
"option": {
"height": "",
@@ -1253,9 +1250,6 @@
"menu": {
"move-tab": ""
},
- "multi-select": {
- "title": ""
- },
"name": "",
"tab": {
"menu": {
@@ -1270,7 +1264,6 @@
"new": ""
},
"tab-options": {
- "title": "",
"title-option": ""
}
},
@@ -1347,7 +1340,6 @@
"description": "",
"open-edit": "",
"plugin-type-image": "",
- "title": "",
"title-option": "",
"transparent-background": ""
}
diff --git a/public/locales/hu-HU/grafana.json b/public/locales/hu-HU/grafana.json
new file mode 100644
index 00000000000..f3a7ee625b6
--- /dev/null
+++ b/public/locales/hu-HU/grafana.json
@@ -0,0 +1,4010 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/id-ID/grafana.json b/public/locales/id-ID/grafana.json
new file mode 100644
index 00000000000..7d47740aff8
--- /dev/null
+++ b/public/locales/id-ID/grafana.json
@@ -0,0 +1,3996 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_other": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_other": "",
+ "dashboard_other": "",
+ "folder_other": "",
+ "libraryPanel_other": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_other": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/it-IT/grafana.json b/public/locales/it-IT/grafana.json
new file mode 100644
index 00000000000..f3a7ee625b6
--- /dev/null
+++ b/public/locales/it-IT/grafana.json
@@ -0,0 +1,4010 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/ja-JP/grafana.json b/public/locales/ja-JP/grafana.json
new file mode 100644
index 00000000000..7d47740aff8
--- /dev/null
+++ b/public/locales/ja-JP/grafana.json
@@ -0,0 +1,3996 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_other": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_other": "",
+ "dashboard_other": "",
+ "folder_other": "",
+ "libraryPanel_other": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_other": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/ko-KR/grafana.json b/public/locales/ko-KR/grafana.json
new file mode 100644
index 00000000000..7d47740aff8
--- /dev/null
+++ b/public/locales/ko-KR/grafana.json
@@ -0,0 +1,3996 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_other": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_other": "",
+ "dashboard_other": "",
+ "folder_other": "",
+ "libraryPanel_other": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_other": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/nl-NL/grafana.json b/public/locales/nl-NL/grafana.json
new file mode 100644
index 00000000000..f3a7ee625b6
--- /dev/null
+++ b/public/locales/nl-NL/grafana.json
@@ -0,0 +1,4010 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/pl-PL/grafana.json b/public/locales/pl-PL/grafana.json
new file mode 100644
index 00000000000..af5d7e65575
--- /dev/null
+++ b/public/locales/pl-PL/grafana.json
@@ -0,0 +1,4038 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_few": "",
+ "used-by_many": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_few": "",
+ "used-by-rules_many": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_few": "",
+ "n-instances_many": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_few": "",
+ "n-more-policies_many": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_few": "",
+ "alertRule_many": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_few": "",
+ "dashboard_many": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_few": "",
+ "folder_many": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_few": "",
+ "libraryPanel_many": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_few": "",
+ "total_many": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_few": "",
+ "body_many": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_few": "",
+ "dashboard-count_many": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_few": "",
+ "text_many": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_few": "",
+ "folder-picker-text_many": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_few": "",
+ "text_many": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/pseudo-LOCALE/grafana.json b/public/locales/pseudo-LOCALE/grafana.json
deleted file mode 100644
index a2f227ebf67..00000000000
--- a/public/locales/pseudo-LOCALE/grafana.json
+++ /dev/null
@@ -1,4018 +0,0 @@
-{
- "_comment": "Ŧĥę čőđę įş ŧĥę şőūřčę őƒ ŧřūŧĥ ƒőř Ēʼnģľįşĥ pĥřäşęş. Ŧĥęy şĥőūľđ þę ūpđäŧęđ įʼn ŧĥę čőmpőʼnęʼnŧş đįřęčŧľy, äʼnđ äđđįŧįőʼnäľ pľūřäľş şpęčįƒįęđ įʼn ŧĥįş ƒįľę.",
- "access-control": {
- "add-permission": {
- "role-label": "Ŗőľę",
- "serviceaccount-label": "Ŝęřvįčę Åččőūʼnŧ",
- "team-label": "Ŧęäm",
- "title": "Åđđ pęřmįşşįőʼn ƒőř",
- "user-label": "Ůşęř"
- },
- "add-permissions": {
- "save": "Ŝävę"
- },
- "permission-list": {
- "permission": "Pęřmįşşįőʼn"
- },
- "permission-list-item": {
- "inherited": "Ĩʼnĥęřįŧęđ ƒřőm ƒőľđęř"
- },
- "permissions": {
- "add-label": "Åđđ ä pęřmįşşįőʼn",
- "no-permissions": "Ŧĥęřę äřę ʼnő pęřmįşşįőʼnş",
- "permissions-change-warning": "Ŧĥįş ŵįľľ čĥäʼnģę pęřmįşşįőʼnş ƒőř ŧĥįş ƒőľđęř äʼnđ äľľ įŧş đęşčęʼnđäʼnŧş. Ĩʼn ŧőŧäľ, ŧĥįş ŵįľľ 䃃ęčŧ:",
- "role": "Ŗőľę",
- "serviceaccount": "Ŝęřvįčę Åččőūʼnŧ",
- "team": "Ŧęäm",
- "title": "Pęřmįşşįőʼnş",
- "user": "Ůşęř"
- }
- },
- "action-editor": {
- "modal": {
- "cancel-button": "Cäʼnčęľ",
- "save-button": "Ŝävę"
- }
- },
- "admin": {
- "anon-users": {
- "not-found": "Ńő äʼnőʼnymőūş ūşęřş ƒőūʼnđ."
- },
- "edit-org": {
- "access-denied": "Ÿőū đő ʼnőŧ ĥävę pęřmįşşįőʼn ŧő şęę ūşęřş įʼn ŧĥįş őřģäʼnįžäŧįőʼn. Ŧő ūpđäŧę ŧĥįş őřģäʼnįžäŧįőʼn, čőʼnŧäčŧ yőūř şęřvęř äđmįʼnįşŧřäŧőř.",
- "heading": "Ēđįŧ Øřģäʼnįžäŧįőʼn",
- "update-button": "Ůpđäŧę",
- "users-heading": "Øřģäʼnįžäŧįőʼn ūşęřş"
- },
- "feature-toggles": {
- "sub-title": "Vįęŵ äʼnđ ęđįŧ ƒęäŧūřę ŧőģģľęş. Ŗęäđ mőřę äþőūŧ ƒęäŧūřę ŧőģģľęş äŧ <2>ģřäƒäʼnä.čőm2>."
- },
- "get-enterprise": {
- "contact-us": "Cőʼnŧäčŧ ūş äʼnđ ģęŧ ä ƒřęę ŧřįäľ",
- "description": "Ÿőū čäʼn ūşę ŧĥę ŧřįäľ vęřşįőʼn ƒőř ƒřęę ƒőř 30 đäyş. Ŵę ŵįľľ řęmįʼnđ yőū äþőūŧ įŧ ƒįvę đäyş þęƒőřę ŧĥę ŧřįäľ pęřįőđ ęʼnđş.",
- "features-heading": "Ēʼnĥäʼnčęđ ƒūʼnčŧįőʼnäľįŧy",
- "included-description": "Ĩʼnđęmʼnįƒįčäŧįőʼn, ŵőřĸįʼnģ ŵįŧĥ Ğřäƒäʼnä Ŀäþş őʼn ƒūŧūřę přįőřįŧįžäŧįőʼn, äʼnđ ŧřäįʼnįʼnģ ƒřőm ŧĥę čőřę Ğřäƒäʼnä ŧęäm.",
- "included-heading": "Åľşő įʼnčľūđęđ:",
- "service-title": "Åŧ yőūř şęřvįčę",
- "team-sync-details": "ĿĐÅP, ĞįŧĦūþ ØÅūŧĥ, Åūŧĥ Přőχy, Øĸŧä",
- "title": "Ğęŧ Ğřäƒäʼnä Ēʼnŧęřpřįşę"
- },
- "ldap": {
- "test-mapping-heading": "Ŧęşŧ ūşęř mäppįʼnģ",
- "test-mapping-run-button": "Ŗūʼn"
- },
- "ldap-permissions": {
- "active": "<0>0> Åčŧįvę",
- "admin": "<0>0> Ÿęş",
- "inactive": "<0>0> Ĩʼnäčŧįvę"
- },
- "ldap-status": {
- "title": "ĿĐÅP Cőʼnʼnęčŧįőʼn"
- },
- "ldap-sync": {
- "debug-button": "Đęþūģ ĿĐÅP Mäppįʼnģ",
- "external-sync-description": "Ůşęř şyʼnčęđ vįä ĿĐÅP. Ŝőmę čĥäʼnģęş mūşŧ þę đőʼnę įʼn ĿĐÅP őř mäppįʼnģş.",
- "external-sync-label": "Ēχŧęřʼnäľ şyʼnč",
- "next-sync-label": "Ńęχŧ şčĥęđūľęđ şyʼnčĥřőʼnįžäŧįőʼn",
- "not-enabled": "Ńőŧ ęʼnäþľęđ",
- "sync-button": "Ŝyʼnč ūşęř",
- "title": "ĿĐÅP Ŝyʼnčĥřőʼnįşäŧįőʼn"
- },
- "ldap-sync-info": {
- "title": "ĿĐÅP Ŝyʼnčĥřőʼnįžäŧįőʼn"
- },
- "ldap-user-groups": {
- "no-org-found": "Ńő mäŧčĥ <2><0>0>2>"
- },
- "ldap-user-info": {
- "no-team": "Ńő ŧęämş ƒőūʼnđ vįä ĿĐÅP"
- },
- "org-uers": {
- "last-seen-never": "Ńęvęř"
- },
- "org-users": {
- "not-editable": "Ŧĥįş ūşęř'ş řőľę įş ʼnőŧ ęđįŧäþľę þęčäūşę įŧ įş şyʼnčĥřőʼnįžęđ ƒřőm yőūř äūŧĥ přővįđęř. Ŗęƒęř ŧő ŧĥę <1>Ğřäƒäʼnä äūŧĥęʼnŧįčäŧįőʼn đőčş1> ƒőř đęŧäįľş."
- },
- "orgs": {
- "delete-body": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő đęľęŧę '{{deleteOrgName}}'?<3>3> <5>Åľľ đäşĥþőäřđş ƒőř ŧĥįş őřģäʼnįžäŧįőʼn ŵįľľ þę řęmővęđ!5>",
- "id-header": "ĨĐ",
- "name-header": "Ńämę",
- "new-org-button": "Ńęŵ őřģ"
- },
- "server-settings": {
- "alerts-button": "Mäʼnäģę äľęřŧş",
- "dashboards-button": "Mäʼnäģę đäşĥþőäřđş",
- "data-sources-button": "Mäʼnäģę đäŧä şőūřčęş",
- "not-found": "Ńő şŧäŧş ƒőūʼnđ.",
- "title": "Ĩʼnşŧäʼnčę şŧäŧįşŧįčş",
- "users-button": "Mäʼnäģę ūşęřş"
- },
- "settings": {
- "info-description": "Ŧĥęşę şyşŧęm şęŧŧįʼnģş äřę đęƒįʼnęđ įʼn ģřäƒäʼnä.įʼnį őř čūşŧőm.įʼnį (őř ővęřřįđđęʼn įʼn ĒŃV väřįäþľęş). Ŧő čĥäʼnģę ŧĥęşę yőū čūřřęʼnŧľy ʼnęęđ ŧő řęşŧäřŧ Ğřäƒäʼnä."
- },
- "upgrade-info": {
- "title": "Ēʼnŧęřpřįşę ľįčęʼnşę"
- },
- "user-orgs": {
- "add-button": "Åđđ ūşęř ŧő őřģäʼnįžäŧįőʼn",
- "change-role-button": "Cĥäʼnģę řőľę",
- "external-user-tooltip": "Ŧĥįş ūşęř'ş þūįľŧ-įʼn řőľę įş ʼnőŧ ęđįŧäþľę þęčäūşę įŧ įş şyʼnčĥřőʼnįžęđ ƒřőm yőūř äūŧĥ přővįđęř. Ŗęƒęř ŧő ŧĥę <1>Ğřäƒäʼnä äūŧĥęʼnŧįčäŧįőʼn đőčş1> ƒőř đęŧäįľş.",
- "remove-button": "Ŗęmővę ƒřőm őřģäʼnįžäŧįőʼn",
- "role-not-editable": "Ŧĥįş ūşęř'ş řőľę įş ʼnőŧ ęđįŧäþľę þęčäūşę įŧ įş şyʼnčĥřőʼnįžęđ ƒřőm yőūř äūŧĥ přővįđęř. Ŗęƒęř ŧő ŧĥę <1>Ğřäƒäʼnä äūŧĥęʼnŧįčäŧįőʼn đőčş1> ƒőř đęŧäįľş.",
- "title": "Øřģäʼnįžäŧįőʼnş"
- },
- "user-orgs-modal": {
- "add-button": "Åđđ ŧő őřģäʼnįžäŧįőʼn",
- "cancel-button": "Cäʼnčęľ"
- },
- "user-permissions": {
- "change-button": "Cĥäʼnģę",
- "grafana-admin-key": "Ğřäƒäʼnä Åđmįʼn",
- "grafana-admin-no": "Ńő",
- "grafana-admin-yes": "Ÿęş",
- "title": "Pęřmįşşįőʼnş"
- },
- "user-profile": {
- "delete-button": "Đęľęŧę ūşęř",
- "disable-button": "Đįşäþľę ūşęř",
- "edit-button": "Ēđįŧ",
- "enable-button": "Ēʼnäþľę ūşęř",
- "title": "Ůşęř įʼnƒőřmäŧįőʼn"
- },
- "user-sessions": {
- "browser-column": "ßřőŵşęř äʼnđ ØŜ",
- "force-logout-all-button": "Főřčę ľőģőūŧ ƒřőm äľľ đęvįčęş",
- "force-logout-button": "Főřčę ľőģőūŧ",
- "ip-column": "ĨP äđđřęşş",
- "last-seen-column": "Ŀäşŧ şęęʼn",
- "logged-on-column": "Ŀőģģęđ őʼn",
- "title": "Ŝęşşįőʼnş"
- },
- "users-create": {
- "create-button": "Cřęäŧę ūşęř"
- },
- "users-list": {
- "create-button": "Ńęŵ ūşęř"
- },
- "users-table": {
- "last-seen-never": "Ńęvęř",
- "no-licensed-roles": "Ńőŧ äşşįģʼnęđ"
- }
- },
- "alert-labels": {
- "button": {
- "hide": "Ħįđę čőmmőʼn ľäþęľş",
- "show": {
- "tooltip": "Ŝĥőŵ čőmmőʼn ľäþęľş"
- }
- }
- },
- "alerting": {
- "alert": {
- "alert-state": "Åľęřŧ şŧäŧę",
- "annotations": "Åʼnʼnőŧäŧįőʼnş",
- "evaluation": "Ēväľūäŧįőʼn",
- "evaluation-paused": "Åľęřŧ ęväľūäŧįőʼn čūřřęʼnŧľy päūşęđ",
- "evaluation-paused-description": "Ńőŧįƒįčäŧįőʼnş ƒőř ŧĥįş řūľę ŵįľľ ʼnőŧ ƒįřę äʼnđ ʼnő äľęřŧ įʼnşŧäʼnčęş ŵįľľ þę čřęäŧęđ ūʼnŧįľ ŧĥę řūľę įş ūʼn-päūşęđ.",
- "last-evaluated": "Ŀäşŧ ęväľūäŧęđ",
- "last-evaluation-duration": "Ŀäşŧ ęväľūäŧįőʼn đūřäŧįőʼn",
- "last-updated-at": "Ŀäşŧ ūpđäŧęđ äŧ",
- "last-updated-by": "Ŀäşŧ ūpđäŧęđ þy",
- "no-annotations": "Ńő äʼnʼnőŧäŧįőʼnş",
- "pending-period": "Pęʼnđįʼnģ pęřįőđ",
- "rule": "Ŗūľę",
- "rule-identifier": "Ŗūľę įđęʼnŧįƒįęř",
- "rule-type": "Ŗūľę ŧypę",
- "state-error-timeout": "Åľęřŧ şŧäŧę įƒ ęχęčūŧįőʼn ęřřőř őř ŧįmęőūŧ",
- "state-no-data": "Åľęřŧ şŧäŧę įƒ ʼnő đäŧä őř äľľ väľūęş äřę ʼnūľľ"
- },
- "alert-recording-rule-form": {
- "evaluation-behaviour": {
- "description": {
- "text": "Đęƒįʼnę ĥőŵ ŧĥę řęčőřđįʼnģ řūľę įş ęväľūäŧęđ."
- }
- }
- },
- "alert-rules": {
- "firing-for": "Fįřįʼnģ ƒőř",
- "next-evaluation": "Ńęχŧ ęväľūäŧįőʼn",
- "next-evaluation-in": "ʼnęχŧ ęväľūäŧįőʼn įʼn",
- "rule-definition": "Ŗūľę đęƒįʼnįŧįőʼn"
- },
- "alertform": {
- "labels": {
- "alerting": "Åđđ ľäþęľş ŧő yőūř řūľę ƒőř şęäřčĥįʼnģ, şįľęʼnčįʼnģ, őř řőūŧįʼnģ ŧő ä ʼnőŧįƒįčäŧįőʼn pőľįčy.",
- "recording": "Åđđ ľäþęľş ŧő yőūř řūľę."
- }
- },
- "alertVersionHistory": {
- "alerting": "Åľęřŧįʼnģ",
- "alerting-change-description": "Ŧĥįş ūpđäŧę ŵäş mäđę þy ŧĥę äľęřŧįʼnģ şyşŧęm đūę ŧő őŧĥęř čĥäʼnģęş. Főř ęχämpľę, ŵĥęʼn řęʼnämįʼnģ ä čőʼnŧäčŧ pőįʼnŧ ŧĥäŧ įş ūşęđ ƒőř şįmpľįƒįęđ řőūŧįʼnģ, ŧĥįş ŵįľľ ūpđäŧę 䃃ęčŧęđ řūľęş",
- "annotations": "Åʼnʼnőŧäŧįőʼnş",
- "compare": "Cőmpäřę",
- "compare-with-latest": "Cőmpäřę ŵįŧĥ ľäŧęşŧ vęřşįőʼn",
- "compareVersions": "Cőmpäřę vęřşįőʼnş",
- "comparing-versions": "Cőmpäřįʼnģ vęřşįőʼnş",
- "condition": "Åľęřŧ čőʼnđįŧįőʼn",
- "contactPointRouting": "Cőʼnŧäčŧ pőįʼnŧ řőūŧįʼnģ",
- "description": "Ēäčĥ ŧįmę yőū ęđįŧ ŧĥę äľęřŧ řūľę, ä ʼnęŵ vęřşįőʼn įş čřęäŧęđ. Ŝęľęčŧ ŧŵő vęřşįőʼnş þęľőŵ äʼnđ čőmpäřę ŧĥęįř đįƒƒęřęʼnčęş.",
- "errorloading": "Fäįľęđ ŧő ľőäđ äľęřŧ řūľę vęřşįőʼnş",
- "execErrorState": "Åľęřŧ şŧäŧę ŵĥęʼn ęχęčūŧįőʼn ęřřőř",
- "intervalSeconds": "Ēväľūäŧįőʼn įʼnŧęřväľ",
- "labels": "Ŀäþęľş",
- "latest": "Ŀäŧęşŧ",
- "name": "Ńämę",
- "namespace_uid": "Főľđęř ŮĨĐ",
- "noDataState": "Åľęřŧ şŧäŧę ŵĥęʼn ʼnő đäŧä",
- "noVersionsFound": "Ńő vęřşįőʼnş ƒőūʼnđ ƒőř ŧĥįş řūľę",
- "paused": "Päūşęđ şŧäŧę",
- "pendingPeriod": "Pęʼnđįʼnģ pęřįőđ",
- "provisioning": "Přővįşįőʼnįʼnģ",
- "provisioning-change-description": "Vęřşįőʼn ūpđäŧę ŵäş mäđę vįä přővįşįőʼnįʼnģ",
- "queryAndAlertCondition": "Qūęřy äʼnđ äľęřŧ čőʼnđįŧįőʼn",
- "restore": "Ŗęşŧőřę",
- "restore-manually": "Ÿőūř äľęřŧ řūľę čőūľđ ʼnőŧ þę řęşŧőřęđ. Ŧĥįş mäy þę đūę ŧő čĥäʼnģęş ŧő őŧĥęř ęʼnŧįŧįęş şūčĥ äş čőʼnŧäčŧ pőįʼnŧş, đäŧä şőūřčęş ęŧč. Pľęäşę mäʼnūäľľy řęşŧőřę ŧĥę řūľę vęřşįőʼn",
- "restore-modal": {
- "body": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő řęşŧőřę ŧĥę äľęřŧ řūľę đęƒįʼnįŧįőʼn ŧő ŧĥįş vęřşįőʼn? Åľľ ūʼnşävęđ čĥäʼnģęş ŵįľľ þę ľőşŧ.",
- "confirm": "Ÿęş, řęşŧőřę čőʼnƒįģūřäŧįőʼn",
- "error": "Cőūľđ ʼnőŧ řęşŧőřę äľęřŧ řūľę vęřşįőʼn ",
- "summary": "Ŝūmmäřy őƒ čĥäʼnģęş ŧő þę äppľįęđ:",
- "title": "Ŗęşŧőřę vęřşįőʼn"
- },
- "restore-version": "Ŗęşŧőřę ŧő vęřşįőʼn {{version}}",
- "rule_group": "Ŗūľę ģřőūp",
- "unknown": "Ůʼnĸʼnőŵʼn",
- "unknown-change-description": "Ŧĥįş ūpđäŧę ŵäş mäđę přįőř ŧő ŧĥę įmpľęmęʼnŧäŧįőʼn őƒ äľęřŧ řūľę vęřşįőʼn ĥįşŧőřy. Ŧĥę ūşęř ŵĥő mäđę ŧĥę čĥäʼnģę įş ʼnőŧ ŧřäčĸęđ, þūŧ ƒūŧūřę čĥäʼnģęş ŵįľľ įʼnčľūđę ŧĥę ūşęř",
- "user-id": "Ůşęř ĨĐ {{uid}}",
- "warning-restore-manually": "Ÿőū äřę mäʼnūäľľy řęşŧőřįʼnģ äʼn őľđ vęřşįőʼn őƒ ŧĥįş äľęřŧ řūľę. Pľęäşę řęvįęŵ ŧĥę čĥäʼnģęş čäřęƒūľľy þęƒőřę şävįʼnģ ŧĥę řūľę đęƒįʼnįŧįőʼn.",
- "warning-restore-manually-title": "Ŗęşŧőřįʼnģ řūľę mäʼnūäľľy"
- },
- "annotations": {
- "description": "Åđđ mőřę čőʼnŧęχŧ ŧő yőūř äľęřŧ ʼnőŧįƒįčäŧįőʼnş.",
- "title": "Cőʼnƒįģūřę ʼnőŧįƒįčäŧįőʼn męşşäģę"
- },
- "central-alert-history": {
- "details": {
- "error": "Ēřřőř ľőäđįʼnģ řūľę ƒőř ŧĥįş ęvęʼnŧ.",
- "header": {
- "alert-rule": "Åľęřŧ řūľę",
- "instance": "Ĩʼnşŧäʼnčę",
- "state": "Ŝŧäŧę",
- "timestamp": "Ŧįmęşŧämp"
- },
- "loading": "Ŀőäđįʼnģ...",
- "no-recognized-state": "Ńő řęčőģʼnįžęđ şŧäŧę",
- "no-values": "Ńő väľūęş",
- "not-found": "Ŗūľę ʼnőŧ ƒőūʼnđ ƒőř ŧĥįş ęvęʼnŧ.",
- "number-transitions": "Ŝŧäŧę ŧřäʼnşįŧįőʼnş ƒőř şęľęčŧęđ pęřįőđ:",
- "state": {
- "alerting": "Åľęřŧįʼnģ",
- "error": "Ēřřőř",
- "no-data": "Ńő đäŧä",
- "normal": "Ńőřmäľ",
- "pending": "Pęʼnđįʼnģ"
- },
- "state-transitions": "Ŝŧäŧę ŧřäʼnşįŧįőʼn",
- "unknown-event-state": "Ůʼnĸʼnőŵʼn",
- "unknown-rule": "Ůʼnĸʼnőŵʼn",
- "value-in-transition": "Väľūę įʼn ŧřäʼnşįŧįőʼn"
- },
- "error": "Ŝőmęŧĥįʼnģ ŵęʼnŧ ŵřőʼnģ ľőäđįʼnģ ŧĥę äľęřŧ şŧäŧę ĥįşŧőřy",
- "filter": {
- "clear": "Cľęäř ƒįľŧęřş",
- "info": {
- "label1": "Fįľŧęř ęvęʼnŧş ūşįʼnģ ľäþęľ qūęřyįʼnģ ŵįŧĥőūŧ şpäčęş, ęχ:",
- "label2": "Ĩʼnväľįđ ūşę őƒ şpäčęş:",
- "label3": "Väľįđ ūşę őƒ şpäčęş:",
- "label4": "Fįľŧęř äľęřŧş ūşįʼnģ ľäþęľ qūęřyįʼnģ ŵįŧĥőūŧ þřäčęş, ęχ:"
- }
- },
- "filterBy": "Fįľŧęř þy:",
- "too-many-events": {
- "text": "Ŧĥę şęľęčŧęđ ŧįmę pęřįőđ ĥäş ŧőő mäʼny ęvęʼnŧş ŧő đįşpľäy. Đįpľäyįʼnģ ŧĥę ľäŧęşŧ 5000 ęvęʼnŧş. Ŧřy ūşįʼnģ ä şĥőřŧęř ŧįmę pęřįőđ.",
- "title": "Ůʼnäþľę ŧő đįşpľäy äľľ ęvęʼnŧş"
- }
- },
- "common": {
- "cancel": "Cäʼnčęľ",
- "clear-filters": "Cľęäř ƒįľŧęřş",
- "delete": "Đęľęŧę",
- "edit": "Ēđįŧ",
- "export": "Ēχpőřŧ",
- "export-all": "Ēχpőřŧ äľľ",
- "loading": "Ŀőäđįʼnģ...",
- "search-by-matchers": "Ŝęäřčĥ þy mäŧčĥęřş",
- "titles": {
- "notification-templates": "Ńőŧįƒįčäŧįőʼn Ŧęmpľäŧęş"
- },
- "view": "Vįęŵ"
- },
- "contact-points": {
- "create": "Cřęäŧę čőʼnŧäčŧ pőįʼnŧ",
- "custom-template-value": "Cūşŧőm ŧęmpľäŧę väľūę",
- "delete-reasons": {
- "heading": "Cőʼnŧäčŧ pőįʼnŧ čäʼnʼnőŧ þę đęľęŧęđ ƒőř ŧĥę ƒőľľőŵįʼnģ řęäşőʼnş:",
- "no-permissions": "Ÿőū đő ʼnőŧ ĥävę ŧĥę řęqūįřęđ pęřmįşşįőʼn ŧő đęľęŧę ŧĥįş čőʼnŧäčŧ pőįʼnŧ",
- "policies": "Cőʼnŧäčŧ pőįʼnŧ įş řęƒęřęʼnčęđ þy őʼnę őř mőřę ʼnőŧįƒįčäŧįőʼn pőľįčįęş",
- "provisioned": "Cőʼnŧäčŧ pőįʼnŧ įş přővįşįőʼnęđ äʼnđ čäʼnʼnőŧ þę đęľęŧęđ vįä ŧĥę ŮĨ",
- "rules": "Cőʼnŧäčŧ pőįʼnŧ įş řęƒęřęʼnčęđ þy őʼnę őř mőřę äľęřŧ řūľęş"
- },
- "delivered-to": "Đęľįvęřęđ ŧő",
- "delivery-duration": "Ŀäşŧ đęľįvęřy ŧőőĸ <1>1>",
- "empty-state": {
- "title": "Ÿőū đőʼn'ŧ ĥävę äʼny čőʼnŧäčŧ pőįʼnŧş yęŧ"
- },
- "key-value-map": {
- "add": "Åđđ",
- "confirm-add": "Cőʼnƒįřm ŧő äđđ"
- },
- "last-delivery-attempt": "Ŀäşŧ đęľįvęřy äŧŧęmpŧ",
- "last-delivery-failed": "Ŀäşŧ đęľįvęřy äŧŧęmpŧ ƒäįľęđ",
- "no-contact-points-found": "Ńő čőʼnŧäčŧ pőįʼnŧş ƒőūʼnđ",
- "no-delivery-attempts": "Ńő đęľįvęřy äŧŧęmpŧş",
- "no-integrations": "Ńő įʼnŧęģřäŧįőʼnş čőʼnƒįģūřęđ",
- "only-firing": "Đęľįvęřįʼnģ <1>őʼnľy ƒįřįʼnģ1> ʼnőŧįƒįčäŧįőʼnş",
- "receiver-summary": {
- "jira": "Cřęäŧęş ä \"{{issueType}}\" įşşūę įʼn ŧĥę \"{{project}}\" přőĵęčŧ"
- },
- "telegram": {
- "parse-mode-warning-body": "Ĩƒ yőū ūşę ä <1>päřşę_mőđę1> őpŧįőʼn őŧĥęř ŧĥäʼn <3>Ńőʼnę3>, ŧřūʼnčäŧįőʼn mäy řęşūľŧ įʼn äʼn įʼnväľįđ męşşäģę, čäūşįʼnģ ŧĥę ʼnőŧįƒįčäŧįőʼn ŧő ƒäįľ. Főř ľőʼnģęř męşşäģęş, ŵę řęčőmmęʼnđ ūşįʼnģ äʼn äľŧęřʼnäŧįvę čőʼnŧäčŧ męŧĥőđ.",
- "parse-mode-warning-title": "Ŧęľęģřäm męşşäģęş äřę ľįmįŧęđ ŧő 4096 ŮŦF-8 čĥäřäčŧęřş."
- },
- "used-by_one": "Ůşęđ þy {{ count }} ʼnőŧįƒįčäŧįőʼn pőľįčy",
- "used-by_other": "Ůşęđ þy {{ count }} ʼnőŧįƒįčäŧįőʼn pőľįčy",
- "used-by-rules_one": "Ůşęđ þy {{ count }} äľęřŧ řūľę",
- "used-by-rules_other": "Ůşęđ þy {{ count }} äľęřŧ řūľę"
- },
- "contactPointFilter": {
- "label": "Cőʼnŧäčŧ pőįʼnŧ"
- },
- "copy-to-clipboard": "Cőpy \"{{label}}\" ŧő čľįpþőäřđ",
- "dag": {
- "missing-reference": "Ēχpřęşşįőʼn \"{{source}}\" ƒäįľęđ ŧő řūʼn þęčäūşę \"{{target}}\" įş mįşşįʼnģ őř äľşő ƒäįľęđ.",
- "self-reference": "Ÿőū čäʼn'ŧ ľįʼnĸ äʼn ęχpřęşşįőʼn ŧő įŧşęľƒ"
- },
- "export": {
- "subtitle": {
- "formats": "Ŝęľęčŧ ŧĥę ƒőřmäŧ äʼnđ đőŵʼnľőäđ ŧĥę ƒįľę őř čőpy ŧĥę čőʼnŧęʼnŧş ŧő čľįpþőäřđ",
- "one-format": "Đőŵʼnľőäđ ŧĥę ƒįľę őř čőpy ŧĥę čőʼnŧęʼnŧş ŧő čľįpþőäřđ"
- }
- },
- "folderAndGroup": {
- "evaluation": {
- "modal": {
- "text": {
- "alerting": "Cřęäŧę ä ʼnęŵ ęväľūäŧįőʼn ģřőūp ŧő ūşę ƒőř ŧĥįş äľęřŧ řūľę.",
- "recording": "Cřęäŧę ä ʼnęŵ ęväľūäŧįőʼn ģřőūp ŧő ūşę ƒőř ŧĥįş řęčőřđįʼnģ řūľę."
- }
- }
- }
- },
- "group-actions": {
- "actions-trigger": "Ŗūľę ģřőūp äčŧįőʼnş",
- "delete": "Đęľęŧę",
- "edit": "Ēđįŧ",
- "export": "Ēχpőřŧ",
- "reorder": "Ŗę-őřđęř řūľęş"
- },
- "list-view": {
- "empty": {
- "new-alert-rule": "Ńęŵ äľęřŧ řūľę",
- "new-recording-rule": "Ńęŵ řęčőřđįʼnģ řūľę",
- "provisioning": "Ÿőū čäʼn äľşő đęƒįʼnę řūľęş ŧĥřőūģĥ ƒįľę přővįşįőʼnįʼnģ őř Ŧęřřäƒőřm. <2>Ŀęäřʼn mőřę2>"
- },
- "section": {
- "dataSourceManaged": {
- "title": "Đäŧä şőūřčę-mäʼnäģęđ"
- },
- "grafanaManaged": {
- "export-new-rule": "Ēχpőřŧ řūľę đęƒįʼnįŧįőʼn",
- "export-rules": "Ēχpőřŧ řūľęş",
- "loading": "Ŀőäđįʼnģ...",
- "new-recording-rule": "Ńęŵ řęčőřđįʼnģ řūľę",
- "title": "Ğřäƒäʼnä-mäʼnäģęđ"
- }
- }
- },
- "manage-permissions": {
- "button": "Mäʼnäģę pęřmįşşįőʼnş",
- "title": "Mäʼnäģę pęřmįşşįőʼnş"
- },
- "mute_timings": {
- "error-loading": {
- "description": "Cőūľđ ʼnőŧ ľőäđ mūŧę ŧįmįʼnģş. Pľęäşę ŧřy äģäįʼn ľäŧęř.",
- "title": "Ēřřőř ľőäđįʼnģ mūŧę ŧįmįʼnģş"
- }
- },
- "mute-timings": {
- "add-mute-timing": "Åđđ mūŧę ŧįmįʼnģ",
- "description": "Ēʼnŧęř şpęčįƒįč ŧįmę įʼnŧęřväľş ŵĥęʼn ʼnőŧ ŧő şęʼnđ ʼnőŧįƒįčäŧįőʼnş őř ƒřęęžę ʼnőŧįƒįčäŧįőʼnş ƒőř řęčūřřįʼnģ pęřįőđş őƒ ŧįmę.",
- "save": "Ŝävę mūŧę ŧįmįʼnģ",
- "saving": "Ŝävįʼnģ mūŧę ŧįmįʼnģ"
- },
- "notification-preview": {
- "alertmanager": "Åľęřŧmäʼnäģęř:",
- "error": "Cőūľđ ʼnőŧ ľőäđ řőūŧįʼnģ přęvįęŵ ƒőř {{alertmanager}}",
- "initialized": "ßäşęđ őʼn ŧĥę ľäþęľş äđđęđ, äľęřŧ įʼnşŧäʼnčęş äřę řőūŧęđ ŧő ŧĥę ƒőľľőŵįʼnģ ʼnőŧįƒįčäŧįőʼn pőľįčįęş. Ēχpäʼnđ ęäčĥ ʼnőŧįƒįčäŧįőʼn pőľįčy þęľőŵ ŧő vįęŵ mőřę đęŧäįľş.",
- "preview-routing": "Přęvįęŵ řőūŧįʼnģ",
- "title": "Åľęřŧ įʼnşŧäʼnčę řőūŧįʼnģ přęvįęŵ",
- "uninitialized": "Ŵĥęʼn yőū ĥävę yőūř ƒőľđęř şęľęčŧęđ äʼnđ yőūř qūęřy äʼnđ ľäþęľş äřę čőʼnƒįģūřęđ, čľįčĸ \"Přęvįęŵ řőūŧįʼnģ\" ŧő şęę ŧĥę řęşūľŧş ĥęřę."
- },
- "notification-templates": {
- "duplicate": {
- "subTitle": "Đūpľįčäŧę ä ģřőūp őƒ ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş",
- "title": "Đūpľįčäŧę ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧę ģřőūp"
- },
- "edit": {
- "subTitle": "Ēđįŧ ä ģřőūp őƒ ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş",
- "title": "Ēđįŧ ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧę ģřőūp"
- },
- "new": {
- "subTitle": "Cřęäŧę ä ʼnęŵ ģřőūp őƒ ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş",
- "title": "Ńęŵ ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧę ģřőūp"
- }
- },
- "policies": {
- "default-policy": {
- "description": "Åľľ äľęřŧ įʼnşŧäʼnčęş ŵįľľ þę ĥäʼnđľęđ þy ŧĥę đęƒäūľŧ pőľįčy įƒ ʼnő őŧĥęř mäŧčĥįʼnģ pőľįčįęş äřę ƒőūʼnđ.",
- "title": "Đęƒäūľŧ pőľįčy",
- "update": "Ůpđäŧę đęƒäūľŧ pőľįčy"
- },
- "delete": {
- "confirm": "Ÿęş, đęľęŧę pőľįčy",
- "warning-1": "Đęľęŧįʼnģ ŧĥįş ʼnőŧįƒįčäŧįőʼn pőľįčy ŵįľľ pęřmäʼnęʼnŧľy řęmővę įŧ.",
- "warning-2": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő đęľęŧę ŧĥįş pőľįčy?"
- },
- "filter-description": "Fįľŧęř ʼnőŧįƒįčäŧįőʼn pőľįčįęş þy ūşįʼnģ ä čőmmä şępäřäŧęđ ľįşŧ őƒ mäŧčĥęřş, ę.ģ.:<1>şęvęřįŧy=čřįŧįčäľ, řęģįőʼn=ĒMĒÅ1>",
- "generated-policies": "Åūŧő-ģęʼnęřäŧęđ pőľįčįęş",
- "matchers": "Mäŧčĥęřş",
- "metadata": {
- "active-time": "Åčŧįvę ŵĥęʼn",
- "delivered-to": "Đęľįvęřęđ ŧő",
- "grouped-by": "Ğřőūpęđ þy",
- "grouping": {
- "none": "Ńőŧ ģřőūpįʼnģ",
- "single-group": "Ŝįʼnģľę ģřőūp"
- },
- "inherited": "Ĩʼnĥęřįŧęđ",
- "mute-time": "Mūŧęđ ŵĥęʼn",
- "n-instances_one": "įʼnşŧäʼnčę",
- "n-instances_other": "įʼnşŧäʼnčę",
- "timingOptions": {
- "groupInterval": {
- "description": "Ħőŵ ľőʼnģ ŧő ŵäįŧ þęƒőřę şęʼnđįʼnģ ä ʼnőŧįƒįčäŧįőʼn äþőūŧ ʼnęŵ äľęřŧş ŧĥäŧ äřę äđđęđ ŧő ä ģřőūp őƒ äľęřŧş ƒőř ŵĥįčĥ äʼn įʼnįŧįäľ ʼnőŧįƒįčäŧįőʼn ĥäş äľřęäđy þęęʼn şęʼnŧ.",
- "label": "Ŵäįŧ <1>1> þęƒőřę şęʼnđįʼnģ ūpđäŧęş"
- },
- "groupWait": {
- "description": "Ħőŵ ľőʼnģ ŧő įʼnįŧįäľľy ŵäįŧ ŧő şęʼnđ ä ʼnőŧįƒįčäŧįőʼn ƒőř ä ģřőūp őƒ äľęřŧ įʼnşŧäʼnčęş.",
- "label": "Ŵäįŧ <1>1> ŧő ģřőūp įʼnşŧäʼnčęş"
- },
- "repeatInterval": {
- "description": "Ħőŵ őƒŧęʼn ʼnőŧįƒįčäŧįőʼnş äřę şęʼnŧ įƒ ŧĥę ģřőūp őƒ äľęřŧş ĥäş ʼnőŧ čĥäʼnģęđ şįʼnčę ŧĥę ľäşŧ ʼnőŧįƒįčäŧįőʼn.",
- "label": "Ŗępęäŧęđ ęvęřy <1>1>"
- }
- }
- },
- "n-more-policies_one": "{{count}} äđđįŧįőʼnäľ pőľįčįęş",
- "n-more-policies_other": "{{count}} äđđįŧįőʼnäľ pőľįčįęş",
- "new-child": "Ńęŵ čĥįľđ pőľįčy",
- "new-policy": "Åđđ ʼnęŵ pőľįčy",
- "no-matchers": "Ńő mäŧčĥęřş",
- "reload-policies": "Ŗęľőäđ pőľįčįęş",
- "save-policy": "Ŝävę pőľįčy",
- "update": {
- "please-wait": "Pľęäşę ŵäįŧ ŵĥįľę ŵę ūpđäŧę yőūř ʼnőŧįƒįčäŧįőʼn pőľįčįęş.",
- "update-policy": "Ůpđäŧę pőľįčy",
- "updating": "Ůpđäŧįʼnģ..."
- },
- "update-errors": {
- "conflict": "Ŧĥę ʼnőŧįƒįčäŧįőʼn pőľįčy ŧřęę ĥäş þęęʼn ūpđäŧęđ þy äʼnőŧĥęř ūşęř.",
- "error-code": "Ēřřőř męşşäģę: \"{{error}}\"",
- "fallback": "Ŝőmęŧĥįʼnģ ŵęʼnŧ ŵřőʼnģ ŵĥęʼn ūpđäŧįʼnģ yőūř ʼnőŧįƒįčäŧįőʼn pőľįčįęş.",
- "suffix": "Pľęäşę řęƒřęşĥ ŧĥę päģę äʼnđ ŧřy äģäįʼn.",
- "title": "Ēřřőř şävįʼnģ ʼnőŧįƒįčäŧįőʼn pőľįčy"
- }
- },
- "provisioning": {
- "badge-tooltip-provenance": "Ŧĥįş řęşőūřčę ĥäş þęęʼn přővįşįőʼnęđ vįä {{provenance}} äʼnđ čäʼnʼnőŧ þę ęđįŧęđ ŧĥřőūģĥ ŧĥę ŮĨ",
- "badge-tooltip-standard": "Ŧĥįş řęşőūřčę ĥäş þęęʼn přővįşįőʼnęđ äʼnđ čäʼnʼnőŧ þę ęđįŧęđ ŧĥřőūģĥ ŧĥę ŮĨ"
- },
- "queryAndExpressionsStep": {
- "disableAdvancedOptions": {
- "text": "Ŧĥę şęľęčŧęđ qūęřįęş äʼnđ ęχpřęşşįőʼnş čäʼnʼnőŧ þę čőʼnvęřŧęđ ŧő đęƒäūľŧ. Ĩƒ yőū đęäčŧįväŧę äđväʼnčęđ őpŧįőʼnş, yőūř qūęřy äʼnđ čőʼnđįŧįőʼn ŵįľľ þę řęşęŧ ŧő đęƒäūľŧ şęŧŧįʼnģş."
- },
- "preview": "Přęvįęŵ",
- "previewCondition": "Přęvįęŵ äľęřŧ řūľę čőʼnđįŧįőʼn"
- },
- "rule-form": {
- "evaluation": {
- "evaluation-group-and-interval": "Ēväľūäŧįőʼn ģřőūp äʼnđ įʼnŧęřväľ",
- "group": {
- "cancel": "Cäʼnčęľ",
- "create": "Cřęäŧę",
- "interval": "Ēväľūäŧįőʼn įʼnŧęřväľ"
- },
- "group-name": "Ēväľūäŧįőʼn ģřőūp ʼnämę",
- "group-text": "Åľľ řūľęş įʼn ŧĥę şęľęčŧęđ ģřőūp äřę ęväľūäŧęđ ęvęřy {{evaluateEvery}}.",
- "new-group": "Ńęŵ ęväľūäŧįőʼn ģřőūp",
- "pause": {
- "alerting": "Ŧūřʼn őʼn ŧő päūşę ęväľūäŧįőʼn ƒőř ŧĥįş äľęřŧ řūľę.",
- "recording": "Ŧūřʼn őʼn ŧő päūşę ęväľūäŧįőʼn ƒőř ŧĥįş řęčőřđįʼnģ řūľę."
- },
- "select-folder-before": "Ŝęľęčŧ ä ƒőľđęř þęƒőřę şęŧŧįʼnģ ęväľūäŧįőʼn ģřőūp äʼnđ įʼnŧęřväľ"
- },
- "evaluation-behaviour": {
- "description": {
- "text": "Đęƒįʼnę ĥőŵ ŧĥę äľęřŧ řūľę įş ęväľūäŧęđ."
- },
- "info-help": {
- "text": "Đęƒįʼnę ŧĥę äľęřŧ þęĥävįőř ŵĥęʼn ŧĥę ęväľūäŧįőʼn ƒäįľş őř ŧĥę qūęřy řęŧūřʼnş ʼnő đäŧä."
- },
- "pending-period": "Pęʼnđįʼnģ pęřįőđ"
- },
- "evaluation-behaviour-description1": "Ēväľūäŧįőʼn ģřőūpş äřę čőʼnŧäįʼnęřş ƒőř ęväľūäŧįʼnģ äľęřŧ äʼnđ řęčőřđįʼnģ řūľęş.",
- "evaluation-behaviour-description2": "Åʼn ęväľūäŧįőʼn ģřőūp đęƒįʼnęş äʼn ęväľūäŧįőʼn įʼnŧęřväľ - ĥőŵ őƒŧęʼn ä řūľę įş ęväľūäŧęđ. Åľęřŧ řūľęş ŵįŧĥįʼn ŧĥę şämę ęväľūäŧįőʼn ģřőūp äřę ęväľūäŧęđ ővęř ŧĥę şämę ęväľūäŧįőʼn įʼnŧęřväľ.",
- "evaluation-behaviour-description3": "Pęʼnđįʼnģ pęřįőđ şpęčįƒįęş ĥőŵ ľőʼnģ ŧĥę ŧĥřęşĥőľđ čőʼnđįŧįőʼn mūşŧ þę męŧ þęƒőřę ŧĥę äľęřŧ şŧäřŧş ƒįřįʼnģ. Ŧĥįş őpŧįőʼn ĥęľpş přęvęʼnŧ äľęřŧş ƒřőm þęįʼnģ ŧřįģģęřęđ þy ŧęmpőřäřy įşşūęş.",
- "evaluation-behaviour-for": {
- "error-parsing": "Fäįľęđ ŧő päřşę đūřäŧįőʼn",
- "validation": "Pęʼnđįʼnģ pęřįőđ mūşŧ þę ģřęäŧęř ŧĥäʼn őř ęqūäľ ŧő ŧĥę ęväľūäŧįőʼn įʼnŧęřväľ."
- },
- "folder": {
- "cancel": "Cäʼnčęľ",
- "create": "Cřęäŧę",
- "create-folder": "Cřęäŧę ä ʼnęŵ ƒőľđęř ŧő şŧőřę yőūř äľęřŧ řūľę įʼn.",
- "creating-new-folder": "Cřęäŧįʼnģ ʼnęŵ ƒőľđęř",
- "label": "Főľđęř",
- "name": "Főľđęř ʼnämę",
- "new-folder": "Ńęŵ ƒőľđęř",
- "new-folder-or": "őř"
- },
- "folder-and-labels": "Øřģäʼnįžę yőūř äľęřŧ řūľę ŵįŧĥ ä ƒőľđęř äʼnđ şęŧ őƒ ľäþęľş.",
- "folders": {
- "help-info": "Főľđęřş äřę ūşęđ ƒőř şŧőřįʼnģ äľęřŧ řūľęş. Ÿőū čäʼn ęχŧęʼnđ ŧĥę äččęşş přővįđęđ þy ä řőľę ŧő äľęřŧ řūľęş äʼnđ äşşįģʼn pęřmįşşįőʼnş ŧő įʼnđįvįđūäľ ƒőľđęřş."
- },
- "labels": {
- "help-info": "Ŀäþęľş äřę ūşęđ ŧő đįƒƒęřęʼnŧįäŧę äʼn äľęřŧ ƒřőm äľľ őŧĥęř äľęřŧş.Ÿőū čäʼn ūşę ŧĥęm ƒőř şęäřčĥįʼnģ, şįľęʼnčįʼnģ, äʼnđ řőūŧįʼnģ ʼnőŧįƒįčäŧįőʼnş."
- },
- "pause": {
- "label": "Päūşę ęväľūäŧįőʼn"
- },
- "threshold": {
- "recovery": {
- "stop-alerting-above": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn äþővę",
- "stop-alerting-bellow": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn þęľőŵ",
- "stop-alerting-equal": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn ęqūäľ ŧő",
- "stop-alerting-inside-range": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn įʼnşįđę řäʼnģę",
- "stop-alerting-less": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn ľęşş ŧĥäʼn",
- "stop-alerting-more": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn mőřę ŧĥäʼn",
- "stop-alerting-not-equal": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn ʼnőŧ ęqūäľ ŧő",
- "stop-alerting-outside-range": "Ŝŧőp äľęřŧįʼnģ ŵĥęʼn őūŧşįđę řäʼnģę",
- "title": "Cūşŧőm řęčővęřy ŧĥřęşĥőľđ"
- }
- }
- },
- "rule-groups": {
- "delete": {
- "success": "Ŝūččęşşƒūľľy đęľęŧęđ řūľę ģřőūp"
- },
- "move": {
- "success": "Ŝūččęşşƒūľľy mővęđ řūľę ģřőūp"
- },
- "rename": {
- "success": "Ŝūččęşşƒūľľy řęʼnämęđ řūľę ģřőūp"
- },
- "update": {
- "success": "Ŝūččęşşƒūľľy ūpđäŧęđ řūľę ģřőūp"
- }
- },
- "rule-list": {
- "configure-datasource": "Cőʼnƒįģūřę",
- "ds-error-boundary": {
- "description": "Cĥęčĸ ŧĥę đäŧä şőūřčę čőʼnƒįģūřäŧįőʼn. Đőęş ŧĥę đäŧä şőūřčę şūppőřŧ Přőmęŧĥęūş ÅPĨ?",
- "title": "Ůʼnäþľę ŧő ľőäđ řūľęş ƒřőm ŧĥįş đäŧä şőūřčę"
- },
- "filter-view": {
- "no-more-results": "Ńő mőřę řęşūľŧş – şĥőŵįʼnģ {{numberOfRules}} řūľęş",
- "no-rules-found": "Ńő äľęřŧ őř řęčőřđįʼnģ řūľęş mäŧčĥęđ yőūř čūřřęʼnŧ şęŧ őƒ ƒįľŧęřş."
- },
- "new-alert-rule": "Ńęŵ äľęřŧ řūľę",
- "pagination": {
- "next-page": "ʼnęχŧ päģę",
- "previous-page": "přęvįőūş päģę"
- },
- "return-button": {
- "title": "Åľęřŧ řūľęş"
- },
- "rulerrule-loading-error": "Fäįľęđ ŧő ľőäđ ŧĥę řūľę"
- },
- "rule-state": {
- "creating": "Cřęäŧįʼnģ",
- "deleting": "Đęľęŧįʼnģ",
- "paused": "Päūşęđ",
- "recording-rule": "Ŗęčőřđįʼnģ řūľę"
- },
- "rule-view": {
- "query": {
- "datasources-na": {
- "description": "Cäʼnʼnőŧ đįşpľäy ŧĥę qūęřy přęvįęŵ. Ŝőmę őƒ ŧĥę đäŧä şőūřčęş ūşęđ įʼn ŧĥę qūęřįęş äřę ʼnőŧ äväįľäþľę.",
- "title": "Qūęřy ʼnőŧ äväįľäþľę"
- }
- }
- },
- "rule-viewer": {
- "error-loading": "Ŝőmęŧĥįʼnģ ŵęʼnŧ ŵřőʼnģ ľőäđįʼnģ ŧĥę řūľę",
- "prometheus-consistency-check": {
- "alert-message": "Åľęřŧ řūľę ĥäş þęęʼn ūpđäŧęđ. Cĥäʼnģęş mäy ŧäĸę ūp ŧő ä mįʼnūŧę ŧő äppęäř őʼn ŧĥę Åľęřŧ řūľęş ľįşŧ vįęŵ.",
- "alert-title": "Ůpđäŧę įʼn přőģřęşş"
- }
- },
- "rules": {
- "add-rule": {
- "success": "Ŗūľę äđđęđ şūččęşşƒūľľy"
- },
- "delete-rule": {
- "success": "Ŗūľę şūččęşşƒūľľy đęľęŧęđ"
- },
- "pause-rule": {
- "success": "Ŗūľę ęväľūäŧįőʼn päūşęđ"
- },
- "resume-rule": {
- "success": "Ŗūľę ęväľūäŧįőʼn řęşūmęđ"
- },
- "update-rule": {
- "success": "Ŗūľę ūpđäŧęđ şūččęşşƒūľľy"
- }
- },
- "search": {
- "property": {
- "data-source": "Đäŧä şőūřčę",
- "evaluation-group": "Ēväľūäŧįőʼn ģřőūp",
- "labels": "Ŀäþęľş",
- "namespace": "Főľđęř / Ńämęşpäčę",
- "rule-health": "Ħęäľŧĥ",
- "rule-name": "Åľęřŧįʼnģ řūľę ʼnämę",
- "rule-type": "Ŧypę",
- "state": "Ŝŧäŧę"
- },
- "save-query": "Ŝävę čūřřęʼnŧ şęäřčĥ"
- },
- "silences": {
- "affected-instances": "Ńƒęčŧęđ äľęřŧ įʼnşŧäʼnčęş",
- "only-firing-instances": "Øʼnľy äľęřŧ įʼnşŧäʼnčęş įʼn ŧĥę ƒįřįʼnģ şŧäŧę äřę đįşpľäyęđ.",
- "preview-affected-instances": "Přęvįęŵ ŧĥę äľęřŧ įʼnşŧäʼnčęş äƒƒęčŧęđ þy ŧĥįş şįľęʼnčę."
- },
- "simpleCondition": {
- "alertCondition": "Åľęřŧ čőʼnđįŧįőʼn"
- },
- "templates": {
- "editor": {
- "add-example": "Åđđ ęχämpľę",
- "auto-complete": "Főř äūŧő-čőmpľęŧįőʼn őƒ čőmmőʼn ŧęmpľäŧįʼnģ čőđę, ŧypę ŧĥę ƒőľľőŵįʼnģ ĸęyŵőřđş įʼn ŧĥę čőʼnŧęʼnŧ ęđįŧőř:",
- "goto-docs": "Ńőŧįƒįčäŧįőʼn ŧęmpľäŧęş đőčūmęʼnŧäŧįőʼn"
- },
- "help": {
- "intro": "Ńőŧįƒįčäŧįőʼn ŧęmpľäŧęş ūşę Ğő ŧęmpľäŧįʼnģ ľäʼnģūäģę ŧő čřęäŧę ʼnőŧįƒįčäŧįőʼn męşşäģęş.\n\nĨʼn Ğřäƒäʼnä, ä ŧęmpľäŧę ģřőūp čäʼn đęƒįʼnę mūľŧįpľę ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş ūşįʼnģ {{ define \"\" }}.\nŦĥęşę ŧęmpľäŧęş čäʼn ŧĥęʼn þę ūşęđ įʼn čőʼnŧäčŧ pőįʼnŧş äʼnđ ŵįŧĥįʼn őŧĥęř ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş þy čäľľįʼnģ {{ template \"\" }}.\nFőř đęŧäįľęđ įʼnƒőřmäŧįőʼn äþőūŧ ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş, řęƒęř ŧő őūř đőčūmęʼnŧäŧįőʼn."
- },
- "misconfigured-badge-text": "Mįşčőʼnƒįģūřęđ",
- "misconfigured-warning": "Ŧĥįş ŧęmpľäŧę įş mįşčőʼnƒįģūřęđ.",
- "misconfigured-warning-details": "Ŧęmpľäŧęş mūşŧ þę đęƒįʼnęđ įʼn þőŧĥ ŧĥę <1>1> äʼnđ <4>4> şęčŧįőʼnş őƒ yőūř äľęřŧmäʼnäģęř čőʼnƒįģūřäŧįőʼn."
- },
- "threshold": {
- "to": "ŦØ"
- }
- },
- "annotations": {
- "empty-state": {
- "button-title": "Åđđ äʼnʼnőŧäŧįőʼn qūęřy",
- "info-box-content": "<0>Åʼnʼnőŧäŧįőʼnş přővįđę ä ŵäy ŧő įʼnŧęģřäŧę ęvęʼnŧ đäŧä įʼnŧő yőūř ģřäpĥş. Ŧĥęy äřę vįşūäľįžęđ äş vęřŧįčäľ ľįʼnęş äʼnđ įčőʼnş őʼn äľľ ģřäpĥ päʼnęľş. Ŵĥęʼn yőū ĥővęř ővęř äʼn äʼnʼnőŧäŧįőʼn įčőʼn yőū čäʼn ģęŧ ęvęʼnŧ ŧęχŧ & ŧäģş ƒőř ŧĥę ęvęʼnŧ. Ÿőū čäʼn äđđ äʼnʼnőŧäŧįőʼn ęvęʼnŧş đįřęčŧľy ƒřőm ģřäƒäʼnä þy ĥőľđįʼnģ CŦŖĿ őř CMĐ + čľįčĸ őʼn ģřäpĥ (őř đřäģ řęģįőʼn). Ŧĥęşę ŵįľľ þę şŧőřęđ įʼn Ğřäƒäʼnä'ş äʼnʼnőŧäŧįőʼn đäŧäþäşę.0>",
- "info-box-content-2": "Cĥęčĸőūŧ ŧĥę <2>Åʼnʼnőŧäŧįőʼnş đőčūmęʼnŧäŧįőʼn2> ƒőř mőřę įʼnƒőřmäŧįőʼn.",
- "title": "Ŧĥęřę äřę ʼnő čūşŧőm äʼnʼnőŧäŧįőʼn qūęřįęş äđđęđ yęŧ"
- }
- },
- "api-keys": {
- "empty-state": {
- "message": "Ńő ÅPĨ ĸęyş ƒőūʼnđ"
- }
- },
- "app-chrome": {
- "skip-content-button": "Ŝĸįp ŧő mäįʼn čőʼnŧęʼnŧ",
- "top-bar": {
- "sign-in": "Ŝįģʼn įʼn"
- }
- },
- "app-notification": {
- "item": {
- "trace-id": "Ŧřäčę ĨĐ: {{traceId}}"
- }
- },
- "bookmarks-page": {
- "empty": {
- "message": "Ĩŧ ľőőĸş ľįĸę yőū ĥävęʼn’ŧ čřęäŧęđ äʼny þőőĸmäřĸş yęŧ",
- "tip": "Ħővęř ővęř äʼny įŧęm įʼn ŧĥę ʼnäv męʼnū äʼnđ čľįčĸ őʼn ŧĥę þőőĸmäřĸ įčőʼn ŧő äđđ įŧ ĥęřę."
- }
- },
- "bouncing-loader": {
- "label": "Ŀőäđįʼnģ"
- },
- "browse-dashboards": {
- "action": {
- "cancel-button": "Cäʼnčęľ",
- "cannot-move-folders": "Főľđęřş čäʼnʼnőŧ þę mővęđ",
- "confirmation-text": "Đęľęŧę",
- "delete-button": "Đęľęŧę",
- "delete-modal-invalid-text": "Øʼnę őř mőřę ƒőľđęřş čőʼnŧäįʼn ľįþřäřy päʼnęľş őř äľęřŧ řūľęş. Đęľęŧę ŧĥęşę ƒįřşŧ įʼn őřđęř ŧő přőčęęđ.",
- "delete-modal-invalid-title": "Cäʼnʼnőŧ đęľęŧę ƒőľđęř",
- "delete-modal-restore-dashboards-text": "Ŧĥįş äčŧįőʼn ŵįľľ đęľęŧę ŧĥę şęľęčŧęđ ƒőľđęřş įmmęđįäŧęľy þūŧ ŧĥę şęľęčŧęđ đäşĥþőäřđş ŵįľľ þę mäřĸęđ ƒőř đęľęŧįőʼn įʼn 30 đäyş. Ÿőūř őřģäʼnįžäŧįőʼn äđmįʼnįşŧřäŧőř čäʼn řęşŧőřę ŧĥę đäşĥþőäřđş äʼnyŧįmę þęƒőřę ŧĥę 30 đäyş ęχpįřę. Főľđęřş čäʼnʼnőŧ þę řęşŧőřęđ.",
- "delete-modal-text": "Ŧĥįş äčŧįőʼn ŵįľľ đęľęŧę ŧĥę ƒőľľőŵįʼnģ čőʼnŧęʼnŧ:",
- "delete-modal-title": "Đęľęŧę",
- "deleting": "Đęľęŧįʼnģ...",
- "manage-permissions-button": "Mäʼnäģę pęřmįşşįőʼnş",
- "move-button": "Mővę",
- "move-modal-alert": "Mővįʼnģ ŧĥįş įŧęm mäy čĥäʼnģę įŧş pęřmįşşįőʼnş.",
- "move-modal-field-label": "Főľđęř ʼnämę",
- "move-modal-text": "Ŧĥįş äčŧįőʼn ŵįľľ mővę ŧĥę ƒőľľőŵįʼnģ čőʼnŧęʼnŧ:",
- "move-modal-title": "Mővę",
- "moving": "Mővįʼnģ...",
- "new-folder-name-required-phrase": "Főľđęř ʼnämę įş řęqūįřęđ."
- },
- "actions": {
- "button-to-recently-deleted": "Ŗęčęʼnŧľy đęľęŧęđ"
- },
- "counts": {
- "alertRule_one": "{{count}} äľęřŧ řūľę",
- "alertRule_other": "{{count}} äľęřŧ řūľę",
- "dashboard_one": "{{count}} đäşĥþőäřđ",
- "dashboard_other": "{{count}} đäşĥþőäřđ",
- "folder_one": "{{count}} ƒőľđęř",
- "folder_other": "{{count}} ƒőľđęř",
- "libraryPanel_one": "{{count}} ľįþřäřy päʼnęľ",
- "libraryPanel_other": "{{count}} ľįþřäřy päʼnęľ",
- "total_one": "{{count}} įŧęm",
- "total_other": "{{count}} įŧęm"
- },
- "dashboards-tree": {
- "collapse-folder-button": "Cőľľäpşę ƒőľđęř {{title}}",
- "expand-folder-button": "Ēχpäʼnđ ƒőľđęř {{title}}",
- "name-column": "Ńämę",
- "select-all-header-checkbox": "Ŝęľęčŧ äľľ",
- "select-checkbox": "Ŝęľęčŧ",
- "tags-column": "Ŧäģş"
- },
- "empty-state": {
- "button-title": "Cřęäŧę đäşĥþőäřđ",
- "pro-tip": "Åđđ/mővę đäşĥþőäřđş ŧő yőūř ƒőľđęř äŧ <2>ßřőŵşę đäşĥþőäřđş2>",
- "title": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny đäşĥþőäřđş yęŧ",
- "title-folder": "Ŧĥįş ƒőľđęř đőęşʼn'ŧ ĥävę äʼny đäşĥþőäřđş yęŧ"
- },
- "folder-actions-button": {
- "delete": "Đęľęŧę",
- "folder-actions": "Főľđęř äčŧįőʼnş",
- "manage-permissions": "Mäʼnäģę pęřmįşşįőʼnş",
- "move": "Mővę"
- },
- "folder-picker": {
- "accessible-label": "Ŝęľęčŧ ƒőľđęř: {{ label }} čūřřęʼnŧľy şęľęčŧęđ",
- "button-label": "Ŝęľęčŧ ƒőľđęř",
- "clear-selection": "Cľęäř şęľęčŧįőʼn",
- "empty-message": "Ńő ƒőľđęřş ƒőūʼnđ",
- "error-title": "Ēřřőř ľőäđįʼnģ ƒőľđęřş",
- "non-folder-item": "Ńőʼn-ƒőľđęř {{itemKind}} {{itemUID}}",
- "search-placeholder": "Ŝęäřčĥ ƒőľđęřş",
- "unknown-error": "Ůʼnĸʼnőŵʼn ęřřőř"
- },
- "hard-delete": {
- "success": "Đäşĥþőäřđ {{name}} đęľęŧęđ"
- },
- "manage-folder-nav": {
- "alert-rules": "Åľęřŧ řūľęş",
- "dashboards": "Đäşĥþőäřđş",
- "panels": "Päʼnęľş"
- },
- "new-folder-form": {
- "cancel-label": "Cäʼnčęľ",
- "create-label": "Cřęäŧę",
- "name-label": "Főľđęř ʼnämę"
- },
- "no-results": {
- "clear": "Cľęäř şęäřčĥ äʼnđ ƒįľŧęřş",
- "text": "Ńő řęşūľŧş ƒőūʼnđ ƒőř yőūř qūęřy"
- },
- "soft-delete": {
- "success": "Đäşĥþőäřđ {{name}} mővęđ ŧő Ŗęčęʼnŧľy đęľęŧęđ"
- }
- },
- "clipboard-button": {
- "inline-toast": {
- "success": "Cőpįęđ"
- }
- },
- "combobox": {
- "async": {
- "error": "Åʼn ęřřőř őččūřřęđ ŵĥįľę ľőäđįʼnģ őpŧįőʼnş."
- },
- "clear": {
- "title": "Cľęäř väľūę"
- },
- "custom-value": {
- "description": "Ůşę čūşŧőm väľūę"
- },
- "group": {
- "undefined": "Ńő ģřőūp"
- },
- "options": {
- "no-found": "Ńő őpŧįőʼnş ƒőūʼnđ."
- }
- },
- "command-palette": {
- "action": {
- "change-theme": "Cĥäʼnģę ŧĥęmę...",
- "dark-theme": "Đäřĸ",
- "light-theme": "Ŀįģĥŧ"
- },
- "empty-state": {
- "message": "Ńő řęşūľŧş ƒőūʼnđ"
- },
- "search-box": {
- "placeholder": "Ŝęäřčĥ őř ĵūmp ŧő..."
- },
- "section": {
- "actions": "Åčŧįőʼnş",
- "dashboard-search-results": "Đäşĥþőäřđş",
- "folder-search-results": "Főľđęřş",
- "pages": "Päģęş",
- "preferences": "Přęƒęřęʼnčęş",
- "recent-dashboards": "Ŗęčęʼnŧ đäşĥþőäřđş"
- }
- },
- "common": {
- "apply": "Åppľy",
- "cancel": "Cäʼnčęľ",
- "clear": "Cľęäř",
- "close": "Cľőşę",
- "collapse": "Cőľľäpşę",
- "edit": "Ēđįŧ",
- "help": "Ħęľp",
- "loading": "Ŀőäđįʼnģ...",
- "locale": {
- "default": "Đęƒäūľŧ"
- },
- "save": "Ŝävę",
- "search": "Ŝęäřčĥ",
- "view": "Vįęŵ"
- },
- "configuration-tracker": {
- "config-card": {
- "complete": "čőmpľęŧę"
- }
- },
- "connections": {
- "connect-data": {
- "category-header-label": "Đäŧä şőūřčęş",
- "empty-message": "Ńő řęşūľŧş mäŧčĥįʼnģ yőūř qūęřy ŵęřę ƒőūʼnđ",
- "request-data-source": "Ŗęqūęşŧ ä ʼnęŵ đäŧä şőūřčę",
- "roadmap": "Vįęŵ řőäđmäp"
- },
- "search": {
- "placeholder": "Ŝęäřčĥ äľľ"
- }
- },
- "core": {
- "versionHistory": {
- "comparison": {
- "header": {
- "hide-json-diff": "Ħįđę ĴŜØŃ đįƒƒ ",
- "show-json-diff": "Ŝĥőŵ ĴŜØŃ đįƒƒ ",
- "text": "Vęřşįőʼn {{version}} ūpđäŧęđ þy {{createdBy}} ({{ageString}}) {{message}}"
- },
- "select": "Ŝęľęčŧ ŧŵő vęřşįőʼnş ŧő şŧäřŧ čőmpäřįʼnģ"
- },
- "no-properties-changed": "Ńő řęľęväʼnŧ přőpęřŧįęş čĥäʼnģęđ",
- "table": {
- "updated": "Đäŧę",
- "updatedBy": "Ůpđäŧęđ ßy",
- "version": "Vęřşįőʼn"
- },
- "view-json-diff": "Vįęŵ ĴŜØŃ đįƒƒ ŧő şęę äľľ čĥäʼnģęş"
- }
- },
- "correlations": {
- "add-new": "Åđđ ʼnęŵ",
- "alert": {
- "error-message": "Åʼn ūʼnĸʼnőŵʼn ęřřőř őččūřřęđ ŵĥįľę ƒęŧčĥįʼnģ čőřřęľäŧįőʼn đäŧä. Pľęäşę ŧřy äģäįʼn.",
- "title": "Ēřřőř ƒęŧčĥįʼnģ čőřřęľäŧįőʼn đäŧä"
- },
- "basic-info-form": {
- "description-description": "Øpŧįőʼnäľ đęşčřįpŧįőʼn ŵįŧĥ mőřę įʼnƒőřmäŧįőʼn äþőūŧ ŧĥę ľįʼnĸ",
- "description-label": "Đęşčřįpŧįőʼn",
- "label-description": "Ŧĥįş ʼnämę ŵįľľ þę ūşęđ äş ŧĥę ľäþęľ ƒőř ŧĥę čőřřęľäŧįőʼn. Ŧĥįş ŵįľľ şĥőŵ äş þūŧŧőʼn ŧęχŧ, ä męʼnū įŧęm, őř ĥővęř ŧęχŧ őʼn ä ľįʼnĸ.",
- "label-label": "Ŀäþęľ",
- "label-placeholder": "ę.ģ. Ŧęmpő ŧřäčęş",
- "label-required": "Ŧĥįş ƒįęľđ įş řęqūįřęđ.",
- "sub-text": "<0>Đęƒįʼnę ŧęχŧ ŧĥäŧ ŵįľľ đęşčřįþę ŧĥę čőřřęľäŧįőʼn.0>",
- "title": "Đęƒįʼnę čőřřęľäŧįőʼn ľäþęľ (Ŝŧęp 1 őƒ 3)"
- },
- "empty-state": {
- "button-title": "Åđđ čőřřęľäŧįőʼn",
- "pro-tip": "Ÿőū čäʼn äľşő đęƒįʼnę čőřřęľäŧįőʼnş vįä đäŧäşőūřčę přővįşįőʼnįʼnģ",
- "title": "Ÿőū ĥävęʼn'ŧ đęƒįʼnęđ äʼny čőřřęľäŧįőʼnş yęŧ"
- },
- "list": {
- "delete": "đęľęŧę čőřřęľäŧįőʼn",
- "label": "Ŀäþęľ",
- "loading": "ľőäđįʼnģ...",
- "read-only": "Ŗęäđ őʼnľy",
- "source": "Ŝőūřčę",
- "target": "Ŧäřģęŧ"
- },
- "navigation-form": {
- "add-button": "Åđđ",
- "back-button": "ßäčĸ",
- "next-button": "Ńęχŧ",
- "save-button": "Ŝävę"
- },
- "page-content": "Ŧő ęʼnäþľę Cőřřęľäŧįőʼnş, äđđ įŧ įʼn ŧĥę Ğřäƒäʼnä čőʼnƒįģ:",
- "page-heading": "Cőřřęľäŧįőʼnş äřę đįşäþľęđ",
- "query-editor": {
- "control-rules": "Ŧĥę şęľęčŧęđ ŧäřģęŧ đäŧä şőūřčę mūşŧ ęχpőřŧ ä qūęřy ęđįŧőř.",
- "data-source-text": "Pľęäşę şęľęčŧ ä ŧäřģęŧ đäŧä şőūřčę ƒįřşŧ.",
- "data-source-title": "Ńő đäŧä şőūřčę şęľęčŧęđ",
- "error-text": "Ŧĥę şęľęčŧęđ đäŧä şőūřčę čőūľđ ʼnőŧ þę ľőäđęđ.",
- "error-title": "Ēřřőř ľőäđįʼnģ đäŧä şőūřčę",
- "loading": "Ŀőäđįʼnģ qūęřy ęđįŧőř...",
- "query-description": "Đęƒįʼnę ŧĥę qūęřy ŧĥäŧ įş řūʼn ŵĥęʼn ŧĥę ľįʼnĸ įş čľįčĸęđ. Ÿőū čäʼn ūşę <2>väřįäþľęş2> ŧő äččęşş şpęčįƒįč ƒįęľđ väľūęş.",
- "query-editor-title": "Đäŧä şőūřčę đőęş ʼnőŧ ęχpőřŧ ä qūęřy ęđįŧőř.",
- "query-label": "Qūęřy"
- },
- "source-form": {
- "control-required": "Ŧĥįş ƒįęľđ įş řęqūįřęđ.",
- "description": "Å đäŧä pőįʼnŧ ʼnęęđş ŧő přővįđę väľūęş ŧő äľľ väřįäþľęş äş ƒįęľđş őř äş ŧřäʼnşƒőřmäŧįőʼnş őūŧpūŧ ŧő mäĸę ŧĥę čőřřęľäŧįőʼn þūŧŧőʼn äppęäř įʼn ŧĥę vįşūäľįžäŧįőʼn.<1>1>Ńőŧę: Ńőŧ ęvęřy väřįäþľę ʼnęęđş ŧő þę ęχpľįčįŧľy đęƒįʼnęđ þęľőŵ. Å ŧřäʼnşƒőřmäŧįőʼn şūčĥ äş <4>ľőģƒmŧ4> ŵįľľ čřęäŧę väřįäþľęş ƒőř ęvęřy ĸęy/väľūę päįř.",
- "description-external-pre": "Ÿőū ĥävę ūşęđ ƒőľľőŵįʼnģ väřįäþľęş įʼn ŧĥę ŧäřģęŧ ŮŖĿ:",
- "description-query-pre": "Ÿőū ĥävę ūşęđ ƒőľľőŵįʼnģ väřįäþľęş įʼn ŧĥę ŧäřģęŧ qūęřy:",
- "external-title": "Cőʼnƒįģūřę ŧĥę đäŧä şőūřčę ŧĥäŧ ŵįľľ ūşę ŧĥę ŮŖĿ (Ŝŧęp 3 őƒ 3)",
- "heading-external": "Väřįäþľęş ūşęđ įʼn ŧĥę ŧäřģęŧ ŮŖĿ",
- "heading-query": "Väřįäþľęş ūşęđ įʼn ŧĥę ŧäřģęŧ qūęřy",
- "query-title": "Cőʼnƒįģūřę ŧĥę đäŧä şőūřčę ŧĥäŧ ŵįľľ ľįʼnĸ ŧő {{dataSourceName}} (Ŝŧęp 3 őƒ 3)",
- "results-description": "Ŧĥę ľįʼnĸ ŵįľľ þę şĥőŵʼn ʼnęχŧ ŧő ŧĥę väľūę őƒ ŧĥįş ƒįęľđ",
- "results-label": "Ŗęşūľŧş ƒįęľđ",
- "results-required": "Ŧĥįş ƒįęľđ įş řęqūįřęđ.",
- "source-description": "Ŗęşūľŧş ƒřőm şęľęčŧęđ şőūřčę đäŧä şőūřčę ĥävę ľįʼnĸş đįşpľäyęđ įʼn ŧĥę päʼnęľ",
- "source-label": "Ŝőūřčę",
- "sub-text": "<0>Đęƒįʼnę ŵĥäŧ đäŧä şőūřčę ŵįľľ đįşpľäy ŧĥę čőřřęľäŧįőʼn, äʼnđ ŵĥäŧ đäŧä ŵįľľ řępľäčę přęvįőūşľy đęƒįʼnęđ väřįäþľęş.0>"
- },
- "sub-title": "Đęƒįʼnę ĥőŵ đäŧä ľįvįʼnģ įʼn đįƒƒęřęʼnŧ đäŧä şőūřčęş řęľäŧęş ŧő ęäčĥ őŧĥęř. Ŗęäđ mőřę įʼn ŧĥę <2>đőčūmęʼnŧäŧįőʼn<1>1>2>",
- "target-form": {
- "control-rules": "Ŧĥįş ƒįęľđ įş řęqūįřęđ.",
- "sub-text": "<0>Đęƒįʼnę ŵĥäŧ ŧĥę čőřřęľäŧįőʼn ŵįľľ ľįʼnĸ ŧő. Ŵįŧĥ ŧĥę qūęřy ŧypę, ä qūęřy ŵįľľ řūʼn ŵĥęʼn ŧĥę čőřřęľäŧįőʼn įş čľįčĸęđ. Ŵįŧĥ ŧĥę ęχŧęřʼnäľ ŧypę, čľįčĸįʼnģ ŧĥę čőřřęľäŧįőʼn ŵįľľ őpęʼn ä ŮŖĿ.0>",
- "target-description-external": "Ŝpęčįƒy ŧĥę ŮŖĿ ŧĥäŧ ŵįľľ őpęʼn ŵĥęʼn ŧĥę ľįʼnĸ įş čľįčĸęđ",
- "target-description-query": "Ŝpęčįƒy ŵĥįčĥ đäŧä şőūřčę įş qūęřįęđ ŵĥęʼn ŧĥę ľįʼnĸ įş čľįčĸęđ",
- "target-label": "Ŧäřģęŧ",
- "target-type-description": "Ŝpęčįƒy ŧĥę ŧypę őƒ čőřřęľäŧįőʼn",
- "title": "Ŝęŧūp ŧĥę ŧäřģęŧ ƒőř ŧĥę čőřřęľäŧįőʼn (Ŝŧęp 2 őƒ 3)",
- "type-label": "Ŧypę"
- },
- "trans-details": {
- "logfmt-description": "Päřşę přővįđęđ ƒįęľđ ŵįŧĥ ľőģƒmŧ ŧő ģęŧ väřįäþľęş",
- "logfmt-label": "Ŀőģƒmŧ",
- "regex-description": "Fįęľđ ŵįľľ þę päřşęđ ŵįŧĥ řęģęχ. Ůşę ʼnämęđ čäpŧūřę ģřőūpş ŧő řęŧūřʼn mūľŧįpľę väřįäþľęş, őř ä şįʼnģľę ūʼnʼnämęđ čäpŧūřę ģřőūp ŧő äđđ väřįäþľę ŧő ʼnämęđ mäp väľūę. Ŗęģęχ įş čäşę įʼnşęʼnşįŧįvę.",
- "regex-expression": "Ůşę čäpŧūřę ģřőūpş ŧő ęχŧřäčŧ ä pőřŧįőʼn őƒ ŧĥę ƒįęľđ.",
- "regex-label": "Ŗęģūľäř ęχpřęşşįőʼn",
- "regex-map-values": "Đęƒįʼnęş ŧĥę ʼnämę őƒ ŧĥę väřįäþľę įƒ ŧĥę čäpŧūřę ģřőūp įş ʼnőŧ ʼnämęđ."
- },
- "transform": {
- "add-button": "Åđđ ŧřäʼnşƒőřmäŧįőʼn",
- "heading": "Ŧřäʼnşƒőřmäŧįőʼnş",
- "no-transform": "Ńő ŧřäʼnşƒőřmäŧįőʼnş đęƒįʼnęđ."
- },
- "transform-row": {
- "expression-label": "Ēχpřęşşįőʼn",
- "expression-required": "Pľęäşę đęƒįʼnę äʼn ęχpřęşşįőʼn",
- "expression-tooltip": "Ŗęqūįřęđ ƒőř řęģūľäř ęχpřęşşįőʼn. Ŧĥę ęχpřęşşįőʼn ŧĥę ŧřäʼnşƒőřmäŧįőʼn ŵįľľ ūşę. Ŀőģƒmŧ đőęş ʼnőŧ ūşę ƒūřŧĥęř şpęčįƒįčäŧįőʼnş.",
- "field-input": "ƒįęľđ",
- "field-label": "Fįęľđ",
- "field-tooltip": "Øpŧįőʼnäľ. Ŧĥę ƒįęľđ ŧő ŧřäʼnşƒőřm. Ĩƒ ʼnőŧ şpęčįƒįęđ, ŧĥę ŧřäʼnşƒőřmäŧįőʼn ŵįľľ þę äppľįęđ ŧő ŧĥę řęşūľŧş ƒįęľđ.",
- "map-value-label": "Mäp väľūę",
- "map-value-tooltip": "Øpŧįőʼnäľ. Đęƒįʼnęş ŧĥę ʼnämę őƒ ŧĥę väřįäþľę. Ŧĥįş įş čūřřęʼnŧľy őʼnľy väľįđ ƒőř řęģūľäř ęχpřęşşįőʼnş ŵįŧĥ ä şįʼnģľę, ūʼnʼnämęđ čäpŧūřę ģřőūp.",
- "remove-button": "Ŗęmővę",
- "remove-tooltip": "Ŗęmővę ŧřäʼnşƒőřmäŧįőʼn",
- "transform-required": "Pľęäşę şęľęčŧ ä ŧřäʼnşƒőřmäŧįőʼn ŧypę",
- "type-label": "Ŧypę",
- "type-tooltip": "Ŧĥę ŧypę őƒ ŧřäʼnşƒőřmäŧįőʼn ŧĥäŧ ŵįľľ þę äppľįęđ ŧő ŧĥę şőūřčę đäŧä."
- }
- },
- "dashboard": {
- "add-menu": {
- "import": "Ĩmpőřŧ ƒřőm ľįþřäřy",
- "paste-panel": "Päşŧę päʼnęľ",
- "row": "Ŗőŵ",
- "visualization": "Vįşūäľįžäŧįőʼn"
- },
- "alert-rules-drawer": {
- "redirect-link": "Ŀįşŧ įʼn Ğřäƒäʼnä Åľęřŧįʼnģ",
- "subtitle": "Åľęřŧ řūľęş řęľäŧęđ ŧő ŧĥįş đäşĥþőäřđ"
- },
- "default-layout": {
- "description": "Mäʼnūäľľy şįžę äʼnđ pőşįŧįőʼn päʼnęľş",
- "item-options": {
- "repeat": {
- "direction": {
- "horizontal": "Ħőřįžőʼnŧäľ",
- "title": "Ŗępęäŧ đįřęčŧįőʼn",
- "vertical": "Vęřŧįčäľ"
- },
- "max": "Mäχ pęř řőŵ",
- "title": "Ŗępęäŧ őpŧįőʼnş",
- "variable": {
- "description": "Ŗępęäŧ ŧĥįş päʼnęľ ƒőř ęäčĥ väľūę įʼn ŧĥę şęľęčŧęđ väřįäþľę. Ŧĥįş įş ʼnőŧ vįşįþľę ŵĥįľę įʼn ęđįŧ mőđę. Ÿőū ʼnęęđ ŧő ģő þäčĸ ŧő đäşĥþőäřđ äʼnđ ŧĥęʼn ūpđäŧę ŧĥę väřįäþľę őř řęľőäđ ŧĥę đäşĥþőäřđ.",
- "title": "Ŗępęäŧ þy väřįäþľę"
- }
- }
- },
- "name": "Cūşŧőm",
- "row-actions": {
- "delete": "Đęľęŧę řőŵ",
- "modal": {
- "alt-action": "Đęľęŧę řőŵ őʼnľy",
- "text": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő řęmővę ŧĥįş řőŵ äʼnđ äľľ įŧş päʼnęľş?",
- "title": "Đęľęŧę řőŵ"
- }
- },
- "row-options": {
- "button": {
- "label": "Ŗőŵ őpŧįőʼnş"
- },
- "form": {
- "cancel": "Cäʼnčęľ",
- "repeat-for": {
- "label": "Ŗępęäŧ ƒőř",
- "learn-more": "Ŀęäřʼn mőřę",
- "warning": {
- "text": "Päʼnęľş įʼn ŧĥįş řőŵ ūşę ŧĥę {{SHARED_DASHBOARD_QUERY}} đäŧä şőūřčę. Ŧĥęşę päʼnęľş ŵįľľ řęƒęřęʼnčę ŧĥę päʼnęľ įʼn ŧĥę őřįģįʼnäľ řőŵ, ʼnőŧ ŧĥę őʼnęş įʼn ŧĥę řępęäŧęđ řőŵş."
- }
- },
- "title": "Ŧįŧľę",
- "update": "Ůpđäŧę"
- },
- "modal": {
- "title": "Ŗőŵ őpŧįőʼnş"
- },
- "repeat": {
- "title": "Ŗępęäŧ őpŧįőʼnş",
- "variable": {
- "title": "Väřįäþľę"
- }
- },
- "title": "Ŗőŵ őpŧįőʼnş"
- }
- },
- "edit-pane": {
- "elements": {
- "dashboard": "Đäşĥþőäřđ",
- "objects": "Øþĵęčŧş",
- "panels": "Päʼnęľş",
- "rows": "Ŗőŵş",
- "tabs": "Ŧäþş"
- },
- "objects": {
- "multi-select": {
- "selection-number": "Ńő. őƒ őþĵęčŧş şęľęčŧęđ: {{length}}"
- }
- },
- "open": "Øpęʼn őpŧįőʼnş päʼnę",
- "row": {
- "header": {
- "hide": "Ħįđę",
- "title": "Ŗőŵ ĥęäđęř"
- },
- "multi-select": {
- "title": "{{length}} řőŵş şęľęčŧęđ"
- }
- }
- },
- "editpane": {
- "add": "Åđđ",
- "configure": "Cőʼnƒįģūřę",
- "outline": "Øūŧľįʼnę"
- },
- "empty": {
- "add-library-panel-body": "Åđđ vįşūäľįžäŧįőʼnş ŧĥäŧ äřę şĥäřęđ ŵįŧĥ őŧĥęř đäşĥþőäřđş.",
- "add-library-panel-button": "Åđđ ľįþřäřy päʼnęľ",
- "add-library-panel-header": "Ĩmpőřŧ päʼnęľ",
- "add-visualization-body": "Ŝęľęčŧ ä đäŧä şőūřčę äʼnđ ŧĥęʼn qūęřy äʼnđ vįşūäľįžę yőūř đäŧä ŵįŧĥ čĥäřŧş, şŧäŧş äʼnđ ŧäþľęş őř čřęäŧę ľįşŧş, mäřĸđőŵʼnş äʼnđ őŧĥęř ŵįđģęŧş.",
- "add-visualization-button": "Åđđ vįşūäľįžäŧįőʼn",
- "add-visualization-header": "Ŝŧäřŧ yőūř ʼnęŵ đäşĥþőäřđ þy äđđįʼnģ ä vįşūäľįžäŧįőʼn",
- "import-a-dashboard-body": "Ĩmpőřŧ đäşĥþőäřđş ƒřőm ƒįľęş őř <1>ģřäƒäʼnä.čőm1>.",
- "import-a-dashboard-header": "Ĩmpőřŧ ä đäşĥþőäřđ",
- "import-dashboard-button": "Ĩmpőřŧ đäşĥþőäřđ"
- },
- "errors": {
- "failed-to-load": "Fäįľęđ ŧő ľőäđ đäşĥþőäřđ"
- },
- "inspect": {
- "data-tab": "Đäŧä",
- "error-tab": "Ēřřőř",
- "json-tab": "ĴŜØŃ",
- "meta-tab": "Męŧä đäŧä",
- "query-tab": "Qūęřy",
- "stats-tab": "Ŝŧäŧş",
- "subtitle": "{{queryCount}} qūęřįęş ŵįŧĥ ŧőŧäľ qūęřy ŧįmę őƒ {{formatted}}",
- "title": "Ĩʼnşpęčŧ: {{panelTitle}}"
- },
- "inspect-data": {
- "data-options": "Đäŧä őpŧįőʼnş",
- "dataframe-aria-label": "Ŝęľęčŧ đäŧäƒřämę",
- "dataframe-label": "Ŝĥőŵ đäŧä ƒřämę",
- "download-csv": "Đőŵʼnľőäđ CŜV",
- "download-excel-description": "Åđđş ĥęäđęř ŧő CŜV ƒőř ūşę ŵįŧĥ Ēχčęľ",
- "download-excel-label": "Đőŵʼnľőäđ ƒőř Ēχčęľ",
- "download-logs": "Đőŵʼnľőäđ ľőģş",
- "download-service": "Đőŵʼnľőäđ şęřvįčę ģřäpĥ",
- "download-traces": "Đőŵʼnľőäđ ŧřäčęş",
- "excel-header": "Ēχčęľ ĥęäđęř",
- "formatted": "Főřmäŧŧęđ đäŧä",
- "formatted-data-description": "Ŧäþľę đäŧä įş ƒőřmäŧŧęđ ŵįŧĥ őpŧįőʼnş đęƒįʼnęđ įʼn ŧĥę Fįęľđ äʼnđ Øvęřřįđę ŧäþş.",
- "formatted-data-label": "Főřmäŧŧęđ đäŧä",
- "panel-transforms": "Päʼnęľ ŧřäʼnşƒőřmş",
- "series-to-columns": "Ŝęřįęş ĵőįʼnęđ þy ŧįmę",
- "transformation": "Ŝęřįęş ĵőįʼnęđ þy ŧįmę",
- "transformations-description": "Ŧäþľę đäŧä įş đįşpľäyęđ ŵįŧĥ ŧřäʼnşƒőřmäŧįőʼnş đęƒįʼnęđ įʼn ŧĥę päʼnęľ Ŧřäʼnşƒőřm ŧäþ.",
- "transformations-label": "Åppľy päʼnęľ ŧřäʼnşƒőřmäŧįőʼnş"
- },
- "inspect-json": {
- "dataframe-description": "Ŗäŵ đäŧä ŵįŧĥőūŧ ŧřäʼnşƒőřmäŧįőʼnş äʼnđ ƒįęľđ čőʼnƒįģ äppľįęđ. ",
- "dataframe-label": "ĐäŧäFřämę ĴŜØŃ (ƒřőm Qūęřy)",
- "panel-data-description": "Ŧĥę řäŵ mőđęľ päşşęđ ŧő ŧĥę päʼnęľ vįşūäľįžäŧįőʼn",
- "panel-data-label": "Päʼnęľ đäŧä",
- "panel-json-description": "Ŧĥę mőđęľ şävęđ įʼn ŧĥę đäşĥþőäřđ ĴŜØŃ ŧĥäŧ čőʼnƒįģūřęş ĥőŵ ęvęřyŧĥįʼnģ ŵőřĸş.",
- "panel-json-label": "Päʼnęľ ĴŜØŃ",
- "select-source": "Ŝęľęčŧ şőūřčę",
- "unknown": "Ůʼnĸʼnőŵʼn Øþĵęčŧ: {{show}}"
- },
- "inspect-meta": {
- "no-inspector": "Ńő Męŧäđäŧä Ĩʼnşpęčŧőř"
- },
- "inspect-stats": {
- "data-title": "Đäŧä şőūřčę şŧäŧş",
- "data-traceids": "Ŧřäčę ĨĐş",
- "processing-time": "Đäŧä přőčęşşįʼnģ ŧįmę",
- "queries": "Ńūmþęř őƒ qūęřįęş",
- "request-time": "Ŧőŧäľ řęqūęşŧ ŧįmę",
- "rows": "Ŧőŧäľ ʼnūmþęř řőŵş",
- "table-title": "Ŝŧäŧş"
- },
- "layout": {
- "common": {
- "copy": "Cőpy",
- "copy-or-duplicate": "Cőpy őř Đūpľįčäŧę",
- "delete": "Đęľęŧę",
- "duplicate": "Đūpľįčäŧę",
- "layout": "Ŀäyőūŧ",
- "panels-title": "{{length}} päʼnęľş şęľęčŧęđ"
- }
- },
- "options": {
- "description": "Đęşčřįpŧįőʼn",
- "title": "Đäşĥþőäřđ őpŧįőʼnş",
- "title-option": "Ŧįŧľę"
- },
- "outline": {
- "tree": {
- "item": {
- "collapse": "Cőľľäpşę įŧęm",
- "empty": "(ęmpŧy)",
- "expand": "Ēχpäʼnđ įŧęm"
- }
- }
- },
- "panel-edit": {
- "alerting-tab": {
- "dashboard-not-saved": "Đäşĥþőäřđ mūşŧ þę şävęđ þęƒőřę äľęřŧş čäʼn þę äđđęđ.",
- "no-rules": "Ŧĥęřę äřę ʼnő äľęřŧ řūľęş ľįʼnĸęđ ŧő ŧĥįş päʼnęľ."
- }
- },
- "responsive-layout": {
- "description": "Åūŧőmäŧįčäľľy pőşįŧįőʼnş päʼnęľş įʼnŧő ä ģřįđ.",
- "item-options": {
- "hide-no-data": "Ħįđę ŵĥęʼn ʼnő đäŧä",
- "repeat": {
- "variable": {
- "description": "Ŗępęäŧ ŧĥįş päʼnęľ ƒőř ęäčĥ väľūę įʼn ŧĥę şęľęčŧęđ väřįäþľę. Ŧĥįş įş ʼnőŧ vįşįþľę ŵĥįľę įʼn ęđįŧ mőđę. Ÿőū ʼnęęđ ŧő ģő þäčĸ ŧő đäşĥþőäřđ äʼnđ ŧĥęʼn ūpđäŧę ŧĥę väřįäþľę őř řęľőäđ ŧĥę đäşĥþőäřđ.",
- "title": "Ŗępęäŧ þy väřįäþľę"
- }
- },
- "title": "Ŀäyőūŧ őpŧįőʼnş"
- },
- "name": "Åūŧő",
- "options": {
- "columns": "Cőľūmʼnş",
- "fixed": "Fįχęđ: {{size}}pχ",
- "min": "Mįʼn: {{size}}pχ",
- "one-column": "1 čőľūmʼn",
- "rows": "Ŗőŵş",
- "three-columns": "3 čőľūmʼnş",
- "two-columns": "2 čőľūmʼnş"
- }
- },
- "rows-layout": {
- "description": "Ŗőŵş ľäyőūŧ",
- "item-name": "Ŗőŵ",
- "name": "Ŗőŵş",
- "option": {
- "height": "Ħęįģĥŧ",
- "hide-header": "Ħįđę řőŵ ĥęäđęř",
- "repeat": "Ŗępęäŧ ƒőř",
- "title": "Ŧįŧľę"
- },
- "options": {
- "height-expand": "Ēχpäʼnđ",
- "height-min": "Mįʼn"
- },
- "row": {
- "collapse": "Cőľľäpşę řőŵ",
- "expand": "Ēχpäʼnđ řőŵ",
- "menu": {
- "add": "Åđđ řőŵ",
- "add-panel": "Päʼnęľ",
- "add-row-above": "Ŗőŵ äþővę",
- "add-row-below": "Ŗőŵ þęľőŵ",
- "move-down": "Mővę řőŵ đőŵʼn",
- "move-row": "Mővę řőŵ",
- "move-up": "Mővę řőŵ ūp"
- },
- "new": "Ńęŵ řőŵ",
- "repeat": {
- "learn-more": "Ŀęäřʼn mőřę",
- "warning": "Päʼnęľş įʼn ŧĥįş řőŵ ūşę ŧĥę {{SHARED_DASHBOARD_QUERY}} đäŧä şőūřčę. Ŧĥęşę päʼnęľş ŵįľľ řęƒęřęʼnčę ŧĥę päʼnęľ įʼn ŧĥę őřįģįʼnäľ řőŵ, ʼnőŧ ŧĥę őʼnęş įʼn ŧĥę řępęäŧęđ řőŵş."
- }
- },
- "row-options": {
- "title-option": "Ŧįŧľę"
- }
- },
- "tabs-layout": {
- "description": "Ŧäþş ľäyőūŧ",
- "menu": {
- "move-tab": "Mővę ŧäþ"
- },
- "multi-select": {
- "title": "{{length}} ŧäþş şęľęčŧęđ"
- },
- "name": "Ŧäþş",
- "tab": {
- "menu": {
- "add": "Åđđ ŧäþ",
- "add-panel": "Päʼnęľ",
- "add-tab-above": "Ŧäþ þęƒőřę",
- "add-tab-after": "Ŧäþ äƒŧęř",
- "add-tab-before": "Ŧäþ þęƒőřę",
- "move-left": "Mővę ŧäþ ľęƒŧ",
- "move-right": "Mővę ŧäþ řįģĥŧ"
- },
- "new": "Ńęŵ ŧäþ"
- },
- "tab-options": {
- "title": "Ŧäþ",
- "title-option": "Ŧįŧľę"
- }
- },
- "toolbar": {
- "add": "Åđđ",
- "add-panel": "Päʼnęľ",
- "add-panel-description": "Å čőʼnŧäįʼnęř ƒőř vįşūäľįžäŧįőʼnş äʼnđ őŧĥęř čőʼnŧęʼnŧ",
- "add-panel-lib": "Ĩmpőřŧ ľįþřäřy päʼnęľ",
- "add-row": "Ŗőŵ",
- "add-tab": "Ŧäþ",
- "alert-rules": "Åľęřŧ řūľęş",
- "back-to-dashboard": "ßäčĸ ŧő đäşĥþőäřđ",
- "dashboard-settings": {
- "label": "Ŝęŧŧįʼnģş",
- "tooltip": "Đäşĥþőäřđ şęŧŧįʼnģş"
- },
- "discard-library-panel-changes": "Đįşčäřđ ľįþřäřy päʼnęľ čĥäʼnģęş",
- "discard-panel": "Đįşčäřđ päʼnęľ čĥäʼnģęş",
- "discard-panel-new": "Đįşčäřđ päʼnęľ",
- "edit": {
- "label": "Ēđįŧ",
- "tooltip": "Ēʼnŧęř ęđįŧ mőđę"
- },
- "edit-dashboard-v2-schema": "Ēđįŧ đäşĥþőäřđ v2 şčĥęmä",
- "enter-edit-mode": {
- "label": "Mäĸę ęđįŧäþľę",
- "tooltip": "Ŧĥįş đäşĥþőäřđ ŵäş mäřĸęđ äş řęäđ őʼnľy"
- },
- "exit-edit-mode": {
- "label": "Ēχįŧ ęđįŧ",
- "tooltip": "Ēχįŧş ęđįŧ mőđę äʼnđ đįşčäřđş ūʼnşävęđ čĥäʼnģęş"
- },
- "libray-panel-description": "Ŀįþřäy päʼnęľş äľľőŵ yőū şĥäřę äʼnđ řęūşę päʼnęľş þęŧŵęęʼn đäşĥþőäřđş",
- "mark-favorite": "Mäřĸ äş ƒävőřįŧę",
- "more-save-options": "Mőřę şävę őpŧįőʼnş",
- "open-original": "Øpęʼn őřįģįʼnäľ đäşĥþőäřđ",
- "playlist-next": "Ğő ŧő ʼnęχŧ đäşĥþőäřđ",
- "playlist-previous": "Ğő ŧő přęvįőūş đäşĥþőäřđ",
- "playlist-stop": "Ŝŧőp pľäyľįşŧ",
- "public-dashboard": "Pūþľįč",
- "refresh": "Ŗęƒřęşĥ đäşĥþőäřđ",
- "row-description": "Å ģřőūp őƒ päʼnęľş ŵįŧĥ äʼn őpŧįőʼnäľ ĥęäđęř",
- "save": "Ŝävę đäşĥþőäřđ",
- "save-dashboard": {
- "label": "Ŝävę đäşĥþőäřđ",
- "tooltip": "Ŝävę čĥäʼnģęş"
- },
- "save-dashboard-copy": {
- "label": "Ŝävę äş čőpy",
- "tooltip": "Ŝävę äş čőpy"
- },
- "save-dashboard-short": "Ŝävę",
- "save-library-panel": "Ŝävę ľįþřäřy päʼnęľ",
- "settings": "Đäşĥþőäřđ şęŧŧįʼnģş",
- "share": {
- "label": "Ŝĥäřę",
- "tooltip": "Ŝĥäřę đäşĥþőäřđ"
- },
- "share-button": "Ŝĥäřę",
- "show-hidden-elements": "Ŝĥőŵ ĥįđđęʼn",
- "switch-old-dashboard": "Ŝŵįŧčĥ ŧő őľđ đäşĥþőäřđ päģę",
- "tabs-description": "ßřęäĸ ūp yőūř đäşĥþőäřđ įʼnŧő đįƒƒęřęʼnŧ ĥőřįžőʼnŧäľ ŧäþş",
- "unlink-library-panel": "Ůʼnľįʼnĸ ľįþřäřy päʼnęľ",
- "unmark-favorite": "Ůʼnmäřĸ äş ƒävőřįŧę"
- },
- "validation": {
- "invalid-dashboard-id": "Cőūľđ ʼnőŧ ƒįʼnđ ä väľįđ Ğřäƒäʼnä.čőm ĨĐ",
- "invalid-json": "Ńőŧ väľįđ ĴŜØŃ",
- "tags-expected-array": "ŧäģş ęχpęčŧęđ äřřäy",
- "tags-expected-strings": "ŧäģş ęχpęčŧęđ äřřäy őƒ şŧřįʼnģş"
- },
- "viz-panel": {
- "options": {
- "description": "Đęşčřįpŧįőʼn",
- "open-edit": "Øpęʼn Päʼnęľ Ēđįŧ",
- "plugin-type-image": "Ĩmäģę őƒ pľūģįʼn ŧypę",
- "title": "Päʼnęľ",
- "title-option": "Ŧįŧľę",
- "transparent-background": "Ŧřäʼnşpäřęʼnŧ þäčĸģřőūʼnđ"
- }
- }
- },
- "dashboard-import": {
- "file-dropzone": {
- "primary-text": "Ůpľőäđ đäşĥþőäřđ ĴŜØŃ ƒįľę",
- "secondary-text": "Đřäģ äʼnđ đřőp ĥęřę őř čľįčĸ ŧő þřőŵşę"
- },
- "form-actions": {
- "cancel": "Cäʼnčęľ",
- "load": "Ŀőäđ"
- },
- "gcom-field": {
- "label": "Fįʼnđ äʼnđ įmpőřŧ đäşĥþőäřđş ƒőř čőmmőʼn äppľįčäŧįőʼnş äŧ <1>1>",
- "load-button": "Ŀőäđ",
- "placeholder": "Ğřäƒäʼnä.čőm đäşĥþőäřđ ŮŖĿ őř ĨĐ",
- "validation-required": "Å Ğřäƒäʼnä đäşĥþőäřđ ŮŖĿ őř ĨĐ įş řęqūįřęđ"
- },
- "json-field": {
- "label": "Ĩmpőřŧ vįä đäşĥþőäřđ ĴŜØŃ mőđęľ",
- "validation-required": "Ńęęđ ä đäşĥþőäřđ ĴŜØŃ mőđęľ"
- }
- },
- "dashboard-links": {
- "empty-state": {
- "button-title": "Åđđ đäşĥþőäřđ ľįʼnĸ",
- "info-box-content": "Đäşĥþőäřđ ľįʼnĸş äľľőŵ yőū ŧő pľäčę ľįʼnĸş ŧő őŧĥęř đäşĥþőäřđş äʼnđ ŵęþ şįŧęş đįřęčŧľy þęľőŵ ŧĥę đäşĥþőäřđ ĥęäđęř. <2>Ŀęäřʼn mőřę2>",
- "title": "Ŧĥęřę äřę ʼnő đäşĥþőäřđ ľįʼnĸş äđđęđ yęŧ"
- }
- },
- "dashboard-settings": {
- "annotations": {
- "title": "Åʼnʼnőŧäŧįőʼnş"
- },
- "dashboard-delete-button": "Đęľęŧę đäşĥþőäřđ",
- "delete-modal": {
- "confirmation-text": "Đęľęŧę",
- "delete-button": "Đęľęŧę",
- "title": "Đęľęŧę"
- },
- "delete-modal-restore-dashboards-text": "Ŧĥįş äčŧįőʼn ŵįľľ mäřĸ ŧĥę đäşĥþőäřđ ƒőř đęľęŧįőʼn įʼn 30 đäyş. Ÿőūř őřģäʼnįžäŧįőʼn äđmįʼnįşŧřäŧőř čäʼn řęşŧőřę įŧ äʼnyŧįmę þęƒőřę ŧĥę 30 đäyş ęχpįřę.",
- "delete-modal-text": "Đő yőū ŵäʼnŧ ŧő đęľęŧę ŧĥįş đäşĥþőäřđ?",
- "general": {
- "auto-refresh-description": "Đęƒįʼnę ŧĥę äūŧő řęƒřęşĥ įʼnŧęřväľş ŧĥäŧ şĥőūľđ þę äväįľäþľę įʼn ŧĥę äūŧő řęƒřęşĥ ľįşŧ. Ůşę ŧĥę ƒőřmäŧ '5ş' ƒőř şęčőʼnđş, '1m' ƒőř mįʼnūŧęş, '1ĥ' ƒőř ĥőūřş, äʼnđ '1đ' ƒőř đäyş (ę.ģ.: '5ş,10ş,30ş,1m,5m,15m,30m,1ĥ,2ĥ,1đ').",
- "auto-refresh-label": "Åūŧő řęƒřęşĥ",
- "description-label": "Đęşčřįpŧįőʼn",
- "editable-description": "Ŝęŧ ŧő řęäđ-őʼnľy ŧő đįşäþľę äľľ ęđįŧįʼnģ. Ŗęľőäđ ŧĥę đäşĥþőäřđ ƒőř čĥäʼnģęş ŧő ŧäĸę ęƒƒęčŧ",
- "editable-label": "Ēđįŧäþľę",
- "folder-label": "Főľđęř",
- "panel-options-graph-tooltip-description": "Cőʼnŧřőľş ŧőőľŧįp äʼnđ ĥővęř ĥįģĥľįģĥŧ þęĥävįőř äčřőşş đįƒƒęřęʼnŧ päʼnęľş. Ŗęľőäđ ŧĥę đäşĥþőäřđ ƒőř čĥäʼnģęş ŧő ŧäĸę ęƒƒęčŧ",
- "panel-options-graph-tooltip-label": "Ğřäpĥ ŧőőľŧįp",
- "panel-options-label": "Päʼnęľ őpŧįőʼnş",
- "panels-preload-description": "Ŵĥęʼn ęʼnäþľęđ äľľ päʼnęľş ŵįľľ şŧäřŧ ľőäđįʼnģ äş şőőʼn äş ŧĥę đäşĥþőäřđ ĥäş þęęʼn ľőäđęđ.",
- "panels-preload-label": "Přęľőäđ päʼnęľş",
- "tags-label": "Ŧäģş",
- "title": "Ğęʼnęřäľ",
- "title-label": "Ŧįŧľę"
- },
- "json-editor": {
- "save-button": "Ŝävę čĥäʼnģęş",
- "subtitle": "Ŧĥę ĴŜØŃ mőđęľ þęľőŵ įş ŧĥę đäŧä şŧřūčŧūřę ŧĥäŧ đęƒįʼnęş ŧĥę đäşĥþőäřđ. Ŧĥįş įʼnčľūđęş đäşĥþőäřđ şęŧŧįʼnģş, päʼnęľ şęŧŧįʼnģş, ľäyőūŧ, qūęřįęş, äʼnđ şő őʼn.",
- "title": "ĴŜØŃ Mőđęľ"
- },
- "links": {
- "title": "Ŀįʼnĸş"
- },
- "permissions": {
- "title": "Pęřmįşşįőʼnş"
- },
- "provisioned-delete-modal": {
- "confirm-button": "ØĶ",
- "text-1": "Ŧĥįş đäşĥþőäřđ įş mäʼnäģęđ þy Ğřäƒäʼnä přővįşįőʼnįʼnģ äʼnđ čäʼnʼnőŧ þę đęľęŧęđ. Ŗęmővę ŧĥę đäşĥþőäřđ ƒřőm ŧĥę čőʼnƒįģ ƒįľę ŧő đęľęŧę įŧ.",
- "text-2": "Ŝęę ģřäƒäʼnä đőčūmęʼnŧäŧįőʼn ƒőř mőřę įʼnƒőřmäŧįőʼn äþőūŧ přővįşįőʼnįʼnģ. ",
- "text-3": "Fįľę päŧĥ: {{provisionedId}}",
- "text-link": "Ğő ŧő đőčş päģę",
- "title": "Cäʼnʼnőŧ đęľęŧę přővįşįőʼnęđ đäşĥþőäřđ"
- },
- "settings": {
- "title": "Ŝęŧŧįʼnģş"
- },
- "time-picker": {
- "hide-time-picker": "Ħįđę ŧįmę pįčĸęř",
- "now-delay-description": "Ēχčľūđę řęčęʼnŧ đäŧä ŧĥäŧ mäy þę įʼnčőmpľęŧę.",
- "now-delay-label": "Ńőŵ đęľäy",
- "refresh-live-dashboards-description": "Cőʼnŧįʼnūőūşľy řę-đřäŵ päʼnęľş ŵĥęřę ŧĥę ŧįmę řäʼnģę řęƒęřęʼnčęş 'ʼnőŵ'",
- "refresh-live-dashboards-label": "Ŗęƒřęşĥ ľįvę đäşĥþőäřđş",
- "time-options-label": "Ŧįmę őpŧįőʼnş",
- "time-zone-label": "Ŧįmę žőʼnę",
- "week-start-label": "Ŵęęĸ şŧäřŧ"
- },
- "time-regions": {
- "advanced-description-cron": "Cřőʼn şyʼnŧäχ",
- "advanced-description-rest": " ŧő đęƒįʼnę ä řęčūřřęʼnčę şčĥęđūľę äʼnđ đūřäŧįőʼn",
- "advanced-description-use": "Ůşę ",
- "advanced-label": "Åđväʼnčęđ"
- },
- "variables": {
- "title": "Väřįäþľęş"
- },
- "versions": {
- "title": "Vęřşįőʼnş"
- }
- },
- "dashboards": {
- "panel-edit": {
- "angular-deprecation-button-open-panel-json": "Øpęʼn ĴŜØŃ ęđįŧőř",
- "angular-deprecation-description": "Åʼnģūľäř päʼnęľş őpŧįőʼnş čäʼn őʼnľy þę ęđįŧęđ ūşįʼnģ ŧĥę ĴŜØŃ ęđįŧőř.",
- "angular-deprecation-heading": "Päʼnęľ őpŧįőʼnş"
- },
- "panel-queries": {
- "add-query-from-library": "Åđđ qūęřy ƒřőm ľįþřäřy"
- },
- "settings": {
- "variables": {
- "dependencies": {
- "button": "Ŝĥőŵ đępęʼnđęʼnčįęş",
- "title": "Đępęʼnđęʼnčįęş"
- }
- }
- }
- },
- "data-source-list": {
- "empty-state": {
- "button-title": "Åđđ đäŧä şőūřčę",
- "pro-tip": "Ÿőū čäʼn äľşő đęƒįʼnę đäŧä şőūřčęş ŧĥřőūģĥ čőʼnƒįģūřäŧįőʼn ƒįľęş. <2>Ŀęäřʼn mőřę2>",
- "title": "Ńő đäŧä şőūřčęş đęƒįʼnęđ"
- }
- },
- "data-source-picker": {
- "add-new-data-source": "Cőʼnƒįģūřę ä ʼnęŵ đäŧä şőūřčę",
- "built-in-list": {
- "description-dashboard": "Ŗęūşę qūęřy řęşūľŧş ƒřőm őŧĥęř vįşūäľįžäŧįőʼnş",
- "description-grafana": "Đįşčővęř vįşūäľįžäŧįőʼnş ūşįʼnģ mőčĸ đäŧä",
- "description-mixed": "Ůşę mūľŧįpľę đäŧä şőūřčęş"
- },
- "list": {
- "no-data-source-message": "Ńő đäŧä şőūřčęş ƒőūʼnđ"
- },
- "modal": {
- "configure-new-data-source": "Øpęʼn ä ʼnęŵ ŧäþ äʼnđ čőʼnƒįģūřę ä đäŧä şőūřčę",
- "input-placeholder": "Ŝęľęčŧ đäŧä şőūřčę",
- "title": "Ŝęľęčŧ đäŧä şőūřčę"
- },
- "open-advanced-button": "Øpęʼn äđväʼnčęđ đäŧä şőūřčę pįčĸęř"
- },
- "data-source-testing-status-page": {
- "error-more-details-link": "Cľįčĸ <2>ĥęřę2> ŧő ľęäřʼn mőřę äþőūŧ ŧĥįş ęřřőř.",
- "success-more-details-links": "Ńęχŧ, yőū čäʼn şŧäřŧ ŧő vįşūäľįžę đäŧä þy <2>þūįľđįʼnģ ä đäşĥþőäřđ2>, őř þy qūęřyįʼnģ đäŧä įʼn ŧĥę <5>Ēχpľőřę vįęŵ5>."
- },
- "data-sources": {
- "datasource-add-button": {
- "label": "Åđđ ʼnęŵ đäŧä şőūřčę"
- },
- "empty-state": {
- "message": "Ńő đäŧä şőūřčęş ƒőūʼnđ"
- }
- },
- "embed": {
- "share": {
- "time-range-description": "Cĥäʼnģę ŧĥę čūřřęʼnŧ řęľäŧįvę ŧįmę řäʼnģę ŧő äʼn äþşőľūŧę ŧįmę řäʼnģę",
- "time-range-label": "Ŀőčĸ ŧįmę řäʼnģę"
- }
- },
- "empty-list-cta": {
- "pro-tip": "PřőŦįp: {{proTip}}"
- },
- "entity-not-found": {
- "description": "Ŵę'řę ľőőĸįʼnģ þūŧ čäʼn'ŧ şęęm ŧő ƒįʼnđ ŧĥįş {{lowerCaseEntity}}. Ŧřy řęŧūřʼnįʼnģ <4>ĥőmę4> őř şęęĸįʼnģ ĥęľp őʼn ŧĥę <7>čőmmūʼnįŧy şįŧę.7>"
- },
- "errors": {
- "dashboard-settings": {
- "annotations": {
- "datasource": "Ŧĥę şęľęčŧęđ đäŧä şőūřčę đőęş ʼnőŧ şūppőřŧ äʼnʼnőŧäŧįőʼnş. Pľęäşę şęľęčŧ ä đįƒƒęřęʼnŧ đäŧä şőūřčę."
- }
- }
- },
- "explore": {
- "add-to-dashboard": "Åđđ ŧő đäşĥþőäřđ",
- "drilldownInfo": {
- "action": "Ğő ŧő Ğřäƒäʼnä Đřįľľđőŵʼn",
- "description": "Ŀőőĸįʼnģ ƒőř ŧĥę Ğřäƒäʼnä Ēχpľőřę äppş? Ŧĥęy äřę ʼnőŵ čäľľęđ ŧĥę Ğřäƒäʼnä Đřįľľđőŵʼn äppş äʼnđ čäʼn þę ƒőūʼnđ ūʼnđęř <1>Męʼnū > Đřįľľđőŵʼn1>",
- "title": "Ēχpľőřę Męŧřįčş, Ŀőģş, Ŧřäčęş äʼnđ Přőƒįľęş ĥävę mővęđ!"
- },
- "logs": {
- "logs-volume": {
- "add-filters": "Åđđ mőřę ľäþęľş ŧő yőūř qūęřy ŧő ʼnäřřőŵ đőŵʼn yőūř şęäřčĥ.",
- "decrease-timerange": "Đęčřęäşę ŧĥę ŧįmę řäʼnģę őƒ yőūř qūęřy.",
- "much-data": "Ŧĥę qūęřy įş ŧřyįʼnģ ŧő äččęşş ŧőő mūčĥ đäŧä. Ŧřy őʼnę őř mőřę őƒ ŧĥę ƒőľľőŵįʼnģ:"
- },
- "maximum-pinned-logs": "Mäχįmūm őƒ {{PINNED_LOGS_LIMIT}} pįʼnʼnęđ ľőģş řęäčĥęđ. Ůʼnpįʼn ä ľőģ ŧő äđđ äʼnőŧĥęř.",
- "no-logs-found": "Ńő ľőģş ƒőūʼnđ.",
- "scan-for-older-logs": "Ŝčäʼn ƒőř őľđęř ľőģş",
- "stop-scan": "Ŝŧőp şčäʼn"
- },
- "rich-history": {
- "close-tooltip": "Cľőşę qūęřy ĥįşŧőřy",
- "datasource-a-z": "Đäŧä şőūřčę Å-Ż",
- "datasource-z-a": "Đäŧä şőūřčę Ż-Å",
- "newest-first": "Ńęŵęşŧ ƒįřşŧ",
- "oldest-first": "Øľđęşŧ ƒįřşŧ",
- "query-history": "Qūęřy ĥįşŧőřy",
- "query-library": "Qūęřy ľįþřäřy",
- "settings": "Ŝęŧŧįʼnģş",
- "starred": "Ŝŧäřřęđ"
- },
- "rich-history-card": {
- "add-comment-form": "Åđđ čőmmęʼnŧ ƒőřm",
- "add-comment-tooltip": "Åđđ čőmmęʼnŧ",
- "add-to-library": "Åđđ ŧő ľįþřäřy",
- "cancel": "Cäʼnčęľ",
- "confirm-delete": "Đęľęŧę",
- "copy-query-tooltip": "Cőpy qūęřy ŧő čľįpþőäřđ",
- "copy-shortened-link-tooltip": "Cőpy şĥőřŧęʼnęđ ľįʼnĸ ŧő čľįpþőäřđ",
- "datasource-icon-label": "Đäŧä şőūřčę įčőʼn",
- "datasource-name-label": "Đäŧä şőūřčę ʼnämę",
- "datasource-not-exist": "Đäŧä şőūřčę đőęş ʼnőŧ ęχįşŧ äʼnymőřę",
- "delete-query-confirmation-title": "Đęľęŧę",
- "delete-query-title": "Đęľęŧę qūęřy",
- "delete-query-tooltip": "Đęľęŧę qūęřy",
- "delete-starred-query-confirmation-text": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő pęřmäʼnęʼnŧľy đęľęŧę yőūř şŧäřřęđ qūęřy?",
- "edit-comment-tooltip": "Ēđįŧ čőmmęʼnŧ",
- "optional-description": "Åʼn őpŧįőʼnäľ đęşčřįpŧįőʼn őƒ ŵĥäŧ ŧĥę qūęřy đőęş.",
- "query-comment-label": "Qūęřy čőmmęʼnŧ",
- "query-text-label": "Qūęřy ŧęχŧ",
- "save-comment": "Ŝävę čőmmęʼnŧ",
- "star-query-tooltip": "Ŝŧäř qūęřy",
- "unstar-query-tooltip": "Ůʼnşŧäř qūęřy",
- "update-comment-form": "Ůpđäŧę čőmmęʼnŧ ƒőřm"
- },
- "rich-history-container": {
- "loading": "Ŀőäđįʼnģ..."
- },
- "rich-history-notification": {
- "query-copied": "Qūęřy čőpįęđ ŧő čľįpþőäřđ",
- "query-deleted": "Qūęřy đęľęŧęđ"
- },
- "rich-history-queries-tab": {
- "displaying-partial-queries": "Đįşpľäyįʼnģ {{ count }} qūęřįęş",
- "displaying-queries": "{{ count }} qūęřįęş",
- "filter-aria-label": "Fįľŧęř qūęřįęş ƒőř đäŧä şőūřčęş(ş)",
- "filter-history": "Fįľŧęř ĥįşŧőřy",
- "filter-placeholder": "Fįľŧęř qūęřįęş ƒőř đäŧä şőūřčęş(ş)",
- "history-local": "Ŧĥę ĥįşŧőřy įş ľőčäľ ŧő yőūř þřőŵşęř äʼnđ įş ʼnőŧ şĥäřęđ ŵįŧĥ őŧĥęřş.",
- "loading": "Ŀőäđįʼnģ...",
- "loading-results": "Ŀőäđįʼnģ řęşūľŧş...",
- "search-placeholder": "Ŝęäřčĥ qūęřįęş",
- "showing-queries": "Ŝĥőŵįʼnģ {{ shown }} őƒ {{ total }} <0>Ŀőäđ mőřę0>",
- "sort-aria-label": "Ŝőřŧ qūęřįęş",
- "sort-placeholder": "Ŝőřŧ qūęřįęş þy"
- },
- "rich-history-settings-tab": {
- "alert-info": "Ğřäƒäʼnä ŵįľľ ĸęęp ęʼnŧřįęş ūp ŧő {{optionLabel}}.Ŝŧäřřęđ ęʼnŧřįęş ŵőʼn'ŧ þę đęľęŧęđ.",
- "change-default-tab": "Cĥäʼnģę ŧĥę đęƒäūľŧ äčŧįvę ŧäþ ƒřőm “Qūęřy ĥįşŧőřy” ŧő “Ŝŧäřřęđ”",
- "clear-history-info": "Đęľęŧę äľľ őƒ yőūř qūęřy ĥįşŧőřy, pęřmäʼnęʼnŧľy.",
- "clear-query-history": "Cľęäř qūęřy ĥįşŧőřy",
- "clear-query-history-button": "Cľęäř qūęřy ĥįşŧőřy",
- "delete-confirm": "Đęľęŧę",
- "delete-confirm-text": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő pęřmäʼnęʼnŧľy đęľęŧę yőūř qūęřy ĥįşŧőřy?",
- "delete-title": "Đęľęŧę",
- "history-time-span": "Ħįşŧőřy ŧįmę şpäʼn",
- "history-time-span-description": "Ŝęľęčŧ ŧĥę pęřįőđ őƒ ŧįmę ƒőř ŵĥįčĥ Ğřäƒäʼnä ŵįľľ şävę yőūř qūęřy ĥįşŧőřy. Ůp ŧő {{MAX_HISTORY_ITEMS}} ęʼnŧřįęş ŵįľľ þę şŧőřęđ.",
- "only-show-active-datasource": "Øʼnľy şĥőŵ qūęřįęş ƒőř đäŧä şőūřčę čūřřęʼnŧľy äčŧįvę įʼn Ēχpľőřę",
- "query-history-deleted": "Qūęřy ĥįşŧőřy đęľęŧęđ",
- "retention-period": {
- "1-week": "1 ŵęęĸ",
- "2-days": "2 đäyş",
- "2-weeks": "2 ŵęęĸş",
- "5-days": "5 đäyş"
- }
- },
- "rich-history-starred-tab": {
- "filter-queries-aria-label": "Fįľŧęř qūęřįęş ƒőř đäŧä şőūřčęş(ş)",
- "filter-queries-placeholder": "Fįľŧęř qūęřįęş ƒőř đäŧä şőūřčęş(ş)",
- "loading": "Ŀőäđįʼnģ...",
- "loading-results": "Ŀőäđįʼnģ řęşūľŧş...",
- "local-history-message": "Ŧĥę ĥįşŧőřy įş ľőčäľ ŧő yőūř þřőŵşęř äʼnđ įş ʼnőŧ şĥäřęđ ŵįŧĥ őŧĥęřş.",
- "search-queries-placeholder": "Ŝęäřčĥ qūęřįęş",
- "showing-queries": "Ŝĥőŵįʼnģ {{ shown }} őƒ {{ total }} <0>Ŀőäđ mőřę0>",
- "sort-queries-aria-label": "Ŝőřŧ qūęřįęş",
- "sort-queries-placeholder": "Ŝőřŧ qūęřįęş þy"
- },
- "rich-history-utils": {
- "a-week-ago": "ä ŵęęĸ äģő",
- "days-ago": "{{num}} đäyş äģő",
- "default-from": "ʼnőŵ-1ĥ",
- "default-to": "ʼnőŵ",
- "today": "ŧőđäy",
- "two-weeks-ago": "ŧŵő ŵęęĸş äģő",
- "yesterday": "yęşŧęřđäy"
- },
- "rich-history-utils-notification": {
- "saving-failed": "Ŝävįʼnģ řįčĥ ĥįşŧőřy ƒäįľęđ",
- "update-failed": "Ŗįčĥ Ħįşŧőřy ūpđäŧę ƒäįľęđ"
- },
- "run-query": {
- "left-pane": "Ŀęƒŧ päʼnę",
- "right-pane": "Ŗįģĥŧ päʼnę",
- "run-query-button": "Ŗūʼn qūęřy",
- "switch-datasource-button": "Ŝŵįŧčĥ đäŧä şőūřčę äʼnđ řūʼn qūęřy"
- },
- "secondary-actions": {
- "add-from-query-library": "Åđđ qūęřy ƒřőm ľįþřäřy",
- "query-add-button": "Åđđ qūęřy",
- "query-add-button-aria-label": "Åđđ qūęřy",
- "query-history-button": "Qūęřy ĥįşŧőřy",
- "query-history-button-aria-label": "Qūęřy ĥįşŧőřy",
- "query-inspector-button": "Qūęřy įʼnşpęčŧőř",
- "query-inspector-button-aria-label": "Qūęřy įʼnşpęčŧőř"
- },
- "table": {
- "no-data": "0 şęřįęş řęŧūřʼnęđ",
- "title": "Ŧäþľę",
- "title-with-name": "Ŧäþľę - {{name}}"
- },
- "toolbar": {
- "add-to-extensions": "Åđđ",
- "add-to-queryless-extensions": "Ğő qūęřyľęşş",
- "aria-label": "Ēχpľőřę ŧőőľþäř",
- "copy-link": "Cőpy ŮŖĿ",
- "copy-link-abs-time": "Cőpy äþşőľūŧę ŮŖĿ",
- "copy-links-absolute-category": "Ŧįmę-şyʼnč ŮŖĿ ľįʼnĸş (şĥäřę ŵįŧĥ ŧįmę řäʼnģę įʼnŧäčŧ)",
- "copy-links-normal-category": "Ńőřmäľ ŮŖĿ ľįʼnĸş",
- "copy-shortened-link": "Cőpy şĥőřŧęʼnęđ ŮŖĿ",
- "copy-shortened-link-abs-time": "Cőpy äþşőľūŧę şĥőřŧęʼnęđ ŮŖĿ",
- "copy-shortened-link-label": "Ŝĥäřę",
- "copy-shortened-link-menu": "Øpęʼn čőpy ľįʼnĸ őpŧįőʼnş",
- "refresh-picker-cancel": "Cäʼnčęľ",
- "refresh-picker-run": "Ŗūʼn qūęřy",
- "split-close": " Cľőşę ",
- "split-close-tooltip": "Cľőşę şpľįŧ päʼnę",
- "split-narrow": "Ńäřřőŵ päʼnę",
- "split-title": "Ŝpľįŧ",
- "split-tooltip": "Ŝpľįŧ ŧĥę päʼnę",
- "split-widen": "Ŵįđęʼn päʼnę"
- }
- },
- "explore-metrics": {
- "breakdown": {
- "clearFilter": "Cľęäř ƒįľŧęř",
- "labelSelect": "Ŝęľęčŧ",
- "missing-otel-labels": "Ŧĥįş męŧřįč ĥäş ŧőő mäʼny ĵőþ äʼnđ įʼnşŧäʼnčę ľäþęľ väľūęş ŧő čäľľ ŧĥę Přőmęŧĥęūş ľäþęľ_väľūęş ęʼnđpőįʼnŧ ŵįŧĥ ŧĥę mäŧčĥ[] päřämęŧęř. Ŧĥęşę ľäþęľ väľūęş äřę ūşęđ ŧő ĵőįʼn ŧĥę męŧřįč ŵįŧĥ ŧäřģęŧ_įʼnƒő, ŵĥįčĥ čőʼnŧäįʼnş ŧĥę řęşőūřčę äŧŧřįþūŧęş. Pľęäşę įʼnčľūđę mőřę řęşőūřčę äŧŧřįþūŧęş ƒįľŧęřş.",
- "noMatchingValue": "Ńő väľūęş ƒőūʼnđ mäŧčĥįʼnģ; {{filter}}",
- "sortBy": "Ŝőřŧ þy"
- },
- "related-logs": {
- "LrrDocsLink": "Ŀőĸį Ŗęčőřđįʼnģ Ŗūľę",
- "openExploreLogs": "Øpęʼn Ēχpľőřę Ŀőģş",
- "relatedLogsUnavailable": "Ńő řęľäŧęđ ľőģş ƒőūʼnđ. Ŧő şęę řęľäŧęđ ľőģş, yőū čäʼn ęįŧĥęř:<1><0>äđĵūşŧ ŧĥę ľäþęľ ƒįľŧęř ŧő ƒįʼnđ ľőģş ŵįŧĥ ŧĥę şämę ľäþęľş äş ŧĥę čūřřęʼnŧľy-şęľęčŧęđ męŧřįč0><1>şęľęčŧ ä męŧřįč čřęäŧęđ þy ä <2><0>Ŀőĸį Ŗęčőřđįʼnģ Ŗūľę0>2>1>1>",
- "warnExperimentalFeature": "Ŗęľäŧęđ ľőģş įş äʼn ęχpęřįmęʼnŧäľ ƒęäŧūřę."
- },
- "viewBy": "Vįęŵ þy"
- },
- "export": {
- "json": {
- "cancel-button": "Cäʼnčęľ",
- "copy-button": "Cőpy ŧő čľįpþőäřđ",
- "download-button": "Đőŵʼnľőäđ ƒįľę",
- "download-successful_toast_message": "Ÿőūř ĴŜØŃ ĥäş þęęʼn đőŵʼnľőäđęđ",
- "export-externally-label": "Ēχpőřŧ ŧĥę đäşĥþőäřđ ŧő ūşę įʼn äʼnőŧĥęř įʼnşŧäʼnčę",
- "info-text": "Cőpy őř đőŵʼnľőäđ ä ĴŜØŃ ƒįľę čőʼnŧäįʼnįʼnģ ŧĥę ĴŜØŃ őƒ yőūř đäşĥþőäřđ",
- "title": "Ēχpőřŧ đäşĥþőäřđ ĴŜØŃ"
- },
- "menu": {
- "export-as-json-label": "Ēχpőřŧ",
- "export-as-json-tooltip": "Ēχpőřŧ"
- }
- },
- "folder-filter": {
- "clear-folder-button": "Cľęäř ƒőľđęřş"
- },
- "folder-picker": {
- "create-instructions": "Přęşş ęʼnŧęř ŧő čřęäŧę ŧĥę ʼnęŵ ƒőľđęř.",
- "loading": "Ŀőäđįʼnģ ƒőľđęřş..."
- },
- "forgot-password": {
- "back-button": "ßäčĸ ŧő ľőģįʼn",
- "change-password": {
- "skip-button": "Ŝĸįp",
- "submit-button": "Ŝūþmįŧ"
- },
- "contact-admin": "Đįđ yőū ƒőřģęŧ yőūř ūşęřʼnämę őř ęmäįľ? Cőʼnŧäčŧ yőūř Ğřäƒäʼnä äđmįʼnįşŧřäŧőř.",
- "email-sent": "Åʼn ęmäįľ ŵįŧĥ ä řęşęŧ ľįʼnĸ ĥäş þęęʼn şęʼnŧ ŧő ŧĥę ęmäįľ äđđřęşş. Ÿőū şĥőūľđ řęčęįvę įŧ şĥőřŧľy.",
- "reset-password-header": "Ŗęşęŧ päşşŵőřđ",
- "send-email-button": "Ŝęʼnđ řęşęŧ ęmäįľ"
- },
- "form-prompt": {
- "continue-button": "Cőʼnŧįʼnūę ęđįŧįʼnģ",
- "description": "Cĥäʼnģęş ŧĥäŧ yőū mäđę mäy ʼnőŧ þę şävęđ.",
- "discard-button": "Đįşčäřđ ūʼnşävęđ čĥäʼnģęş"
- },
- "gen-ai": {
- "apply-suggestion": "Åppľy",
- "incomplete-request-error": "Ŝőřřy, Ĩ ŵäş ūʼnäþľę ŧő čőmpľęŧę yőūř řęqūęşŧ. Pľęäşę ŧřy äģäįʼn.",
- "send-custom-feedback": "Ŝęʼnđ"
- },
- "get-enterprise": {
- "requires-license": "Ŗęqūįřęş ä Ğřäƒäʼnä Ēʼnŧęřpřįşę ľįčęʼnşę",
- "title": "Ēʼnŧęřpřįşę"
- },
- "grafana-ui": {
- "action-editor": {
- "button": {
- "confirm": "Cőʼnƒįřm",
- "confirm-action": "Cőʼnƒįřm äčŧįőʼn"
- },
- "inline": {
- "add-action": "Åđđ äčŧįőʼn",
- "edit-action": "Ēđįŧ äčŧįőʼn"
- },
- "modal": {
- "action-body": "ßőđy",
- "action-method": "Męŧĥőđ",
- "action-query-params": "Qūęřy päřämęŧęřş",
- "action-title": "Ŧįŧľę",
- "action-title-placeholder": "Åčŧįőʼn ŧįŧľę",
- "one-click-description": "Øʼnľy őʼnę ľįʼnĸ őř äčŧįőʼn čäʼn ĥävę őʼnę čľįčĸ ęʼnäþľęđ äŧ ä ŧįmę"
- }
- },
- "alert": {
- "close-button": "Cľőşę äľęřŧ"
- },
- "auto-save-field": {
- "saved": "Ŝävęđ!",
- "saving": "Ŝävįʼnģ <1>1>"
- },
- "card": {
- "option": "őpŧįőʼn"
- },
- "cascader": {
- "clear-button": "Cľęäř şęľęčŧįőʼn"
- },
- "color-picker-popover": {
- "palette-tab": "Cőľőřş",
- "spectrum-tab": "Cūşŧőm"
- },
- "confirm-button": {
- "cancel": "Cäʼnčęľ"
- },
- "confirm-content": {
- "placeholder": "Ŧypę \"{{confirmPromptText}}\" ŧő čőʼnƒįřm"
- },
- "data-link-editor": {
- "info": "Ŵįŧĥ đäŧä ľįʼnĸş yőū čäʼn řęƒęřęʼnčę đäŧä väřįäþľęş ľįĸę şęřįęş ʼnämę, ľäþęľş äʼnđ väľūęş. Ŧypę CMĐ+Ŝpäčę, CŦŖĿ+Ŝpäčę, őř $ ŧő őpęʼn väřįäþľę şūģģęşŧįőʼnş.",
- "new-tab-label": "Øpęʼn įʼn ʼnęŵ ŧäþ",
- "title-label": "Ŧįŧľę",
- "title-placeholder": "Ŝĥőŵ đęŧäįľş",
- "url-label": "ŮŖĿ"
- },
- "data-link-editor-modal": {
- "cancel": "Cäʼnčęľ",
- "one-click-description": "Øʼnľy őʼnę ľįʼnĸ čäʼn ĥävę őʼnę čľįčĸ ęʼnäþľęđ äŧ ä ŧįmę",
- "save": "Ŝävę"
- },
- "data-link-inline-editor": {
- "one-click": "Øʼnę čľįčĸ"
- },
- "data-links-inline-editor": {
- "add-link": "Åđđ ľįʼnĸ",
- "edit-link": "Ēđįŧ ľįʼnĸ",
- "one-click": "Øʼnę čľįčĸ",
- "one-click-enabled": "Øʼnę čľįčĸ ęʼnäþľęđ",
- "title-not-provided": "Ŧįŧľę ʼnőŧ přővįđęđ",
- "tooltip-edit": "Ēđįŧ",
- "tooltip-remove": "Ŗęmővę",
- "url-not-provided": "Đäŧä ľįʼnĸ ūřľ ʼnőŧ přővįđęđ"
- },
- "data-source-basic-auth-settings": {
- "user-label": "Ůşęř",
- "user-placeholder": "ūşęř"
- },
- "data-source-http-proxy-settings": {
- "oauth-identity-label": "Főřŵäřđ ØÅūŧĥ Ĩđęʼnŧįŧy",
- "oauth-identity-tooltip": "Főřŵäřđ ŧĥę ūşęř'ş ūpşŧřęäm ØÅūŧĥ įđęʼnŧįŧy ŧő ŧĥę đäŧä şőūřčę (Ŧĥęįř äččęşş ŧőĸęʼn ģęŧş päşşęđ äľőʼnģ).",
- "skip-tls-verify-label": "Ŝĸįp ŦĿŜ Vęřįƒy",
- "ts-client-auth-label": "ŦĿŜ Cľįęʼnŧ Åūŧĥ",
- "with-ca-cert-label": "Ŵįŧĥ CÅ Cęřŧ",
- "with-ca-cert-tooltip": "Ńęęđęđ ƒőř vęřįƒyįʼnģ şęľƒ-şįģʼnęđ ŦĿŜ Cęřŧş"
- },
- "data-source-http-settings": {
- "access-help": "Ħęľp <1>1>",
- "access-help-details": "Åččęşş mőđę čőʼnŧřőľş ĥőŵ řęqūęşŧş ŧő ŧĥę đäŧä şőūřčę ŵįľľ þę ĥäʼnđľęđ.<1> <1>Ŝęřvęř1>1> şĥőūľđ þę ŧĥę přęƒęřřęđ ŵäy įƒ ʼnőŧĥįʼnģ ęľşę įş şŧäŧęđ.",
- "access-label": "Åččęşş",
- "access-options-browser": "ßřőŵşęř",
- "access-options-proxy": "Ŝęřvęř (đęƒäūľŧ)",
- "allowed-cookies": "Åľľőŵęđ čőőĸįęş",
- "allowed-cookies-tooltip": "Ğřäƒäʼnä přőχy đęľęŧęş ƒőřŵäřđęđ čőőĸįęş þy đęƒäūľŧ. Ŝpęčįƒy čőőĸįęş þy ʼnämę ŧĥäŧ şĥőūľđ þę ƒőřŵäřđęđ ŧő ŧĥę đäŧä şőūřčę.",
- "auth": "Åūŧĥ",
- "azure-auth-label": "Åžūřę Åūŧĥęʼnŧįčäŧįőʼn",
- "azure-auth-tooltip": "Ůşę Åžūřę äūŧĥęʼnŧįčäŧįőʼn ƒőř Åžūřę ęʼnđpőįʼnŧ.",
- "basic-auth": "ßäşįč Åūŧĥ Đęŧäįľş",
- "basic-auth-label": "ßäşįč äūŧĥ",
- "browser-mode-description": "Åľľ řęqūęşŧş ŵįľľ þę mäđę ƒřőm ŧĥę þřőŵşęř đįřęčŧľy ŧő ŧĥę đäŧä şőūřčę äʼnđ mäy þę şūþĵęčŧ ŧő Cřőşş-Øřįģįʼn Ŗęşőūřčę Ŝĥäřįʼnģ (CØŖŜ) řęqūįřęmęʼnŧş. Ŧĥę ŮŖĿ ʼnęęđş ŧő þę äččęşşįþľę ƒřőm ŧĥę þřőŵşęř įƒ yőū şęľęčŧ ŧĥįş äččęşş mőđę.",
- "browser-mode-title": "<0>ßřőŵşęř äččęşş mőđę:0>",
- "default-url-access-select": "Åččęşş",
- "default-url-tooltip": "Ŝpęčįƒy ä čőmpľęŧę ĦŦŦP ŮŖĿ (ƒőř ęχämpľę ĥŧŧp://yőūř_şęřvęř:8080)",
- "direct-url-tooltip": "Ÿőūř äččęşş męŧĥőđ įş <1>ßřőŵşęř1>, ŧĥįş męäʼnş ŧĥę ŮŖĿ ʼnęęđş ŧő þę äččęşşįþľę ƒřőm ŧĥę þřőŵşęř.",
- "heading": "ĦŦŦP",
- "proxy-url-tooltip": "Ÿőūř äččęşş męŧĥőđ įş <1>Ŝęřvęř1>, ŧĥįş męäʼnş ŧĥę ŮŖĿ ʼnęęđş ŧő þę äččęşşįþľę ƒřőm ŧĥę ģřäƒäʼnä þäčĸęʼnđ/şęřvęř.",
- "server-mode-description": "Åľľ řęqūęşŧş ŵįľľ þę mäđę ƒřőm ŧĥę þřőŵşęř ŧő Ğřäƒäʼnä þäčĸęʼnđ/şęřvęř ŵĥįčĥ įʼn ŧūřʼn ŵįľľ ƒőřŵäřđ ŧĥę řęqūęşŧş ŧő ŧĥę đäŧä şőūřčę äʼnđ þy ŧĥäŧ čįřčūmvęʼnŧ pőşşįþľę Cřőşş-Øřįģįʼn Ŗęşőūřčę Ŝĥäřįʼnģ (CØŖŜ) řęqūįřęmęʼnŧş. Ŧĥę ŮŖĿ ʼnęęđş ŧő þę äččęşşįþľę ƒřőm ŧĥę ģřäƒäʼnä þäčĸęʼnđ/şęřvęř įƒ yőū şęľęčŧ ŧĥįş äččęşş mőđę.",
- "server-mode-title": "<0>Ŝęřvęř äččęşş mőđę (Đęƒäūľŧ):0>",
- "timeout-form-label": "Ŧįmęőūŧ",
- "timeout-label": "Ŧįmęőūŧ įʼn şęčőʼnđş",
- "timeout-tooltip": "ĦŦŦP řęqūęşŧ ŧįmęőūŧ įʼn şęčőʼnđş",
- "url-label": "ŮŖĿ",
- "with-credential-label": "Ŵįŧĥ Cřęđęʼnŧįäľş",
- "with-credential-tooltip": "Ŵĥęŧĥęř čřęđęʼnŧįäľş şūčĥ äş čőőĸįęş őř äūŧĥ ĥęäđęřş şĥőūľđ þę şęʼnŧ ŵįŧĥ čřőşş-şįŧę řęqūęşŧş."
- },
- "data-source-settings": {
- "alerting-settings-heading": "Åľęřŧįʼnģ",
- "alerting-settings-label": "Mäʼnäģę äľęřŧ řūľęş įʼn Åľęřŧįʼnģ ŮĨ",
- "alerting-settings-tooltip": "Mäʼnäģę äľęřŧ řūľęş ƒőř ŧĥįş đäŧä şőūřčę. Ŧő mäʼnäģę őŧĥęř äľęřŧįʼnģ řęşőūřčęş, äđđ äʼn Åľęřŧmäʼnäģęř đäŧä şőūřčę.",
- "cert-key-reset": "Ŗęşęŧ",
- "custom-headers-add": "Åđđ ĥęäđęř",
- "custom-headers-header": "Ħęäđęř",
- "custom-headers-header-placeholder": "Ħęäđęř Väľūę",
- "custom-headers-header-remove": "Ŗęmővę ĥęäđęř",
- "custom-headers-header-value": "Väľūę",
- "custom-headers-title": "Cūşŧőm ĦŦŦP Ħęäđęřş",
- "secure-socks-heading": "Ŝęčūřę Ŝőčĸş Přőχy",
- "secure-socks-label": "Ēʼnäþľęđ",
- "secure-socks-tooltip": "Cőʼnʼnęčŧ ŧő ŧĥįş đäŧäşőūřčę vįä ŧĥę şęčūřę şőčĸş přőχy.",
- "tls-certification-label": "CÅ Cęřŧ",
- "tls-certification-placeholder": "ßęģįʼnş ŵįŧĥ {{certificateBeginsWith}}",
- "tls-client-certification-label": "Cľįęʼnŧ Cęřŧ",
- "tls-client-key-label": "Cľįęʼnŧ Ķęy",
- "tls-client-key-placeholder": "ßęģįʼnş ŵįŧĥ {{privateKeyBeginsWith}}",
- "tls-heading": "ŦĿŜ/ŜŜĿ Åūŧĥ Đęŧäįľş",
- "tls-server-name-label": "ŜęřvęřŃämę",
- "tls-tooltip": "ŦĿŜ/ŜŜĿ Cęřŧş äřę ęʼnčřypŧęđ äʼnđ şŧőřęđ įʼn ŧĥę Ğřäƒäʼnä đäŧäþäşę."
- },
- "date-time-picker": {
- "apply": "Åppľy",
- "calendar-icon-label": "Ŧįmę pįčĸęř",
- "cancel": "Cäʼnčęľ",
- "next-label": "Ńęχŧ mőʼnŧĥ",
- "previous-label": "Přęvįőūş mőʼnŧĥ",
- "select-placeholder": "Ŝęľęčŧ đäŧę/ŧįmę"
- },
- "drawer": {
- "close": "Cľőşę"
- },
- "feature-badge": {
- "experimental": "Ēχpęřįmęʼnŧäľ",
- "new": "Ńęŵ!",
- "preview": "Přęvįęŵ",
- "private-preview": "Přįväŧę přęvįęŵ"
- },
- "field-link-list": {
- "external-links-heading": "Ēχŧęřʼnäľ ľįʼnĸş"
- },
- "file-dropzone": {
- "cancel-upload": "Cäʼnčęľ ūpľőäđ",
- "file-too-large": "Fįľę įş ľäřģęř ŧĥäʼn {{size}}"
- },
- "filter-input": {
- "clear": "Cľęäř"
- },
- "modal": {
- "close-tooltip": "Cľőşę"
- },
- "named-colors-palette": {
- "text-color-swatch": "Ŧęχŧ čőľőř",
- "transparent-swatch": "Ŧřäʼnşpäřęʼnŧ"
- },
- "page-toolbar": {
- "go-back": "Ğő þäčĸ (Ēşč)",
- "search-dashboard-name": "Ŝęäřčĥ đäşĥþőäřđ þy ʼnämę",
- "search-links": "Ŝęäřčĥ ľįʼnĸş",
- "search-parent-folder": "Ŝęäřčĥ đäşĥþőäřđ įʼn ŧĥę {{parent}} ƒőľđęř"
- },
- "pagination": {
- "next-page": "ʼnęχŧ päģę",
- "previous-page": "přęvįőūş päģę"
- },
- "secret-form-field": {
- "reset": "Ŗęşęŧ"
- },
- "segment-async": {
- "error": "Fäįľęđ ŧő ľőäđ őpŧįőʼnş",
- "loading": "Ŀőäđįʼnģ őpŧįőʼnş...",
- "no-options": "Ńő őpŧįőʼnş ƒőūʼnđ"
- },
- "select": {
- "default-create-label": "Ħįŧ ęʼnŧęř ŧő äđđ",
- "no-options-label": "Ńő őpŧįőʼnş ƒőūʼnđ",
- "placeholder": "Cĥőőşę"
- },
- "series-color-picker-popover": {
- "y-axis-usage": "Ůşę řįģĥŧ y-äχįş"
- },
- "spinner": {
- "aria-label": "Ŀőäđįʼnģ"
- },
- "table": {
- "copy": "Cőpy ŧő Cľįpþőäřđ",
- "csv-counts": "Ŗőŵş:{{rows}}, Cőľūmʼnş:{{columns}} <5>5>",
- "filter-popup-apply": "Øĸ",
- "filter-popup-cancel": "Cäʼnčęľ",
- "filter-popup-clear": "Cľęäř ƒįľŧęř",
- "filter-popup-heading": "Fįľŧęř þy väľūęş:",
- "no-values-label": "Ńő väľūęş",
- "pagination-summary": "{{itemsRangeStart}} - {{displayedEnd}} őƒ {{numRows}} řőŵş"
- },
- "tags-input": {
- "add": "Åđđ"
- },
- "user-icon": {
- "active-text": "Åčŧįvę ľäşŧ 15m"
- },
- "value-pill": {
- "remove-button": "Ŗęmővę {{children}}"
- },
- "viz-legend": {
- "right-axis-indicator": "(řįģĥŧ y-äχįş)"
- },
- "viz-tooltip": {
- "actions-confirmation-input-placeholder": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő {{ actionTitle }}?",
- "actions-confirmation-label": "Cőʼnƒįřmäŧįőʼn męşşäģę",
- "actions-confirmation-message": "Přővįđę ä đęşčřįpŧįvę přőmpŧ ŧő čőʼnƒįřm őř čäʼnčęľ ŧĥę äčŧįőʼn.",
- "footer-add-annotation": "Åđđ äʼnʼnőŧäŧįőʼn",
- "footer-click-to-action": "Cľįčĸ ŧő {{actionTitle}}",
- "footer-click-to-navigate": "Cľįčĸ ŧő őpęʼn {{linkTitle}}"
- }
- },
- "graph": {
- "container": {
- "content": "Ŗęʼnđęřįʼnģ ŧőő mäʼny şęřįęş įʼn ä şįʼnģľę päʼnęľ mäy įmpäčŧ pęřƒőřmäʼnčę äʼnđ mäĸę đäŧä ĥäřđęř ŧő řęäđ. Cőʼnşįđęř řęƒįʼnįʼnģ yőūř qūęřįęş.",
- "show-all-series": "Ŝĥőŵ äľľ {{length}}",
- "show-only-series": "Ŝĥőŵįʼnģ őʼnľy {{MAX_NUMBER_OF_TIME_SERIES}} şęřįęş",
- "title": "Ğřäpĥ"
- }
- },
- "help-modal": {
- "column-headers": {
- "description": "Đęşčřįpŧįőʼn",
- "keys": "Ķęyş"
- },
- "shortcuts-category": {
- "dashboard": "Đäşĥþőäřđ",
- "focused-panel": "Főčūşęđ päʼnęľ",
- "global": "Ğľőþäľ",
- "time-range": "Ŧįmę řäʼnģę"
- },
- "shortcuts-description": {
- "change-theme": "Cĥäʼnģę ŧĥęmę",
- "collapse-all-rows": "Cőľľäpşę äľľ řőŵş",
- "copy-time-range": "Cőpy ŧįmę řäʼnģę",
- "dashboard-settings": "Đäşĥþőäřđ şęŧŧįʼnģş",
- "duplicate-panel": "Đūpľįčäŧę Päʼnęľ",
- "exit-edit/setting-views": "Ēχįŧ ęđįŧ/şęŧŧįʼnģ vįęŵş",
- "expand-all-rows": "Ēχpäʼnđ äľľ řőŵş",
- "go-to-dashboards": "Ğő ŧő Đäşĥþőäřđş",
- "go-to-explore": "Ğő ŧő Ēχpľőřę",
- "go-to-home-dashboard": "Ğő ŧő Ħőmę Đäşĥþőäřđ",
- "go-to-profile": "Ğő ŧő Přőƒįľę",
- "make-time-range-permanent": "Mäĸę ŧįmę řäʼnģę äþşőľūŧę/pęřmäʼnęʼnŧ",
- "move-time-range-back": "Mővę ŧįmę řäʼnģę þäčĸ",
- "move-time-range-forward": "Mővę ŧįmę řäʼnģę ƒőřŵäřđ",
- "open-search": "Øpęʼn şęäřčĥ",
- "open-shared-modal": "Øpęʼn Päʼnęľ Ŝĥäřę Mőđäľ",
- "paste-time-range": "Päşŧę ŧįmę řäʼnģę",
- "refresh-all-panels": "Ŗęƒřęşĥ äľľ päʼnęľş",
- "remove-panel": "Ŗęmővę Päʼnęľ",
- "save-dashboard": "Ŝävę đäşĥþőäřđ",
- "show-all-shortcuts": "Ŝĥőŵ äľľ ĸęyþőäřđ şĥőřŧčūŧş",
- "toggle-active-mode": "Ŧőģģľę įʼn-äčŧįvę / vįęŵ mőđę",
- "toggle-all-panel-legends": "Ŧőģģľę äľľ päʼnęľ ľęģęʼnđş",
- "toggle-auto-fit": "Ŧőģģľę äūŧő ƒįŧ päʼnęľş (ęχpęřįmęʼnŧäľ ƒęäŧūřę)",
- "toggle-exemplars": "Ŧőģģľę ęχęmpľäřş įʼn äľľ päʼnęľ",
- "toggle-graph-crosshair": "Ŧőģģľę şĥäřęđ ģřäpĥ čřőşşĥäįř",
- "toggle-kiosk": "Ŧőģģľę ĸįőşĸ mőđę (ĥįđęş ŧőp ʼnäv)",
- "toggle-panel-edit": "Ŧőģģľę päʼnęľ ęđįŧ vįęŵ",
- "toggle-panel-fullscreen": "Ŧőģģľę päʼnęľ ƒūľľşčřęęʼn vįęŵ",
- "toggle-panel-legend": "Ŧőģģľę päʼnęľ ľęģęʼnđ",
- "zoom-out-time-range": "Żőőm őūŧ ŧįmę řäʼnģę"
- },
- "title": "Ŝĥőřŧčūŧş"
- },
- "help-wizard": {
- "download-snapshot": "Đőŵʼnľőäđ şʼnäpşĥőŧ",
- "github-comment": "Cőpy Ğįŧĥūþ čőmmęʼnŧ",
- "support-bundle": "Ÿőū čäʼn äľşő řęŧřįęvę ä şūppőřŧ þūʼnđľę čőʼnŧäįʼnįʼnģ įʼnƒőřmäŧįőʼn čőʼnčęřʼnįʼnģ yőūř Ğřäƒäʼnä įʼnşŧäʼnčę äʼnđ čőʼnƒįģūřęđ đäŧäşőūřčęş įʼn ŧĥę <1>şūppőřŧ þūʼnđľęş şęčŧįőʼn1>.",
- "troubleshooting-help": "Ŧő řęqūęşŧ ŧřőūþľęşĥőőŧįʼnģ ĥęľp, şęʼnđ ä şʼnäpşĥőŧ őƒ ŧĥįş päʼnęľ ŧő Ğřäƒäʼnä Ŀäþş Ŧęčĥʼnįčäľ Ŝūppőřŧ. Ŧĥę şʼnäpşĥőŧ čőʼnŧäįʼnş qūęřy řęşpőʼnşę đäŧä äʼnđ päʼnęľ şęŧŧįʼnģş."
- },
- "inspector": {
- "query": {
- "collapse-all": "Cőľľäpşę äľľ",
- "copy-to-clipboard": "Cőpy ŧő čľįpþőäřđ",
- "description": "Qūęřy įʼnşpęčŧőř äľľőŵş yőū ŧő vįęŵ řäŵ řęqūęşŧ äʼnđ řęşpőʼnşę. Ŧő čőľľęčŧ ŧĥįş đäŧä Ğřäƒäʼnä ʼnęęđş ŧő įşşūę ä ʼnęŵ qūęřy. Cľįčĸ řęƒřęşĥ þūŧŧőʼn þęľőŵ ŧő ŧřįģģęř ä ʼnęŵ qūęřy.",
- "expand-all": "Ēχpäʼnđ äľľ",
- "no-data": "Ńő řęqūęşŧ äʼnđ řęşpőʼnşę čőľľęčŧęđ yęŧ. Ħįŧ řęƒřęşĥ þūŧŧőʼn",
- "refresh": "Ŗęƒřęşĥ"
- }
- },
- "ldap-drawer": {
- "attributes-section": {
- "description": "Ŝpęčįƒy ŧĥę ĿĐÅP äŧŧřįþūŧęş ŧĥäŧ mäp ŧő ŧĥę ūşęř'ş ģįvęʼn ʼnämę, şūřʼnämę, äʼnđ ęmäįľ äđđřęşş, ęʼnşūřįʼnģ ŧĥę äppľįčäŧįőʼn čőřřęčŧľy řęŧřįęvęş äʼnđ đįşpľäyş ūşęř įʼnƒőřmäŧįőʼn.",
- "email-label": "Ēmäįľ",
- "label": "Åŧŧřįþūŧęş",
- "member-of-label": "Męmþęř ؃",
- "name-label": "Ńämę",
- "surname-label": "Ŝūřʼnämę",
- "username-label": "Ůşęřʼnämę"
- },
- "extra-security-section": {
- "client-cert-label": "Cľįęʼnŧ čęřŧįƒįčäŧę päŧĥ",
- "client-cert-placeholder": "/päŧĥ/ŧő/čľįęʼnŧ_čęřŧ.pęm",
- "client-cert-value-label": "Cľįęʼnŧ čęřŧįƒįčäŧę čőʼnŧęʼnŧ",
- "client-cert-value-placeholder": "Cľįęʼnŧ čęřŧįƒįčäŧę čőʼnŧęʼnŧ įʼn þäşę64",
- "client-key-label": "Cľįęʼnŧ ĸęy päŧĥ",
- "client-key-placeholder": "/päŧĥ/ŧő/čľįęʼnŧ_ĸęy.pęm",
- "client-key-value-label": "Cľįęʼnŧ ĸęy čőʼnŧęʼnŧ",
- "client-key-value-placeholder": "Cľįęʼnŧ ĸęy čőʼnŧęʼnŧ įʼn þäşę64",
- "encryption-provider-base-64": "ßäşę64-ęʼnčőđęđ čőʼnŧęʼnŧ",
- "encryption-provider-description": "X.509 čęřŧįƒįčäŧę přővįđęş ŧĥę pūþľįč päřŧ, ŵĥįľę ŧĥę přįväŧę ĸęy įşşūęđ įʼn ä PĶCŜ#8 ƒőřmäŧ přővįđęş ŧĥę přįväŧę päřŧ őƒ ŧĥę äşymmęŧřįč ęʼnčřypŧįőʼn.",
- "encryption-provider-file-path": "Päŧĥ ŧő ƒįľęş",
- "encryption-provider-label": "Ēʼnčřypŧįőʼn ĸęy äʼnđ čęřŧįƒįčäŧę přővįşįőʼn şpęčįƒįčäŧįőʼn.",
- "label": "Ēχŧřä şęčūřįŧy męäşūřęş",
- "min-tls-version-description": "Ŧĥįş įş ŧĥę mįʼnįmūm ŦĿŜ vęřşįőʼn äľľőŵęđ. Åččępŧęđ väľūęş äřę: ŦĿŜ1.2, ŦĿŜ1.3.",
- "min-tls-version-label": "Mįʼn ŦĿŜ vęřşįőʼn",
- "root-ca-cert-label": "Ŗőőŧ CÅ čęřŧįƒįčäŧę päŧĥ",
- "root-ca-cert-placeholder": "/päŧĥ/ŧő/řőőŧ_čä_čęřŧ.pęm",
- "root-ca-cert-value-label": "Ŗőőŧ CÅ čęřŧįƒįčäŧę čőʼnŧęʼnŧ",
- "root-ca-cert-value-placeholder": "ęχämpľę: ĿŜ0ŧĿŜ1CŖŮđĴŦįßĐŖVĴŮŜŮŻĴQ0FŮŖŜ0ŧĿŜ0ŧ",
- "start-tls-description": "Ĩƒ şęŧ ŧő ŧřūę, ūşę ĿĐÅP ŵįŧĥ ŜŦÅŖŦŦĿŜ įʼnşŧęäđ őƒ ĿĐÅPŜ",
- "start-tls-label": "Ŝŧäřŧ ŦĿŜ",
- "tls-ciphers-label": "ŦĿŜ čįpĥęřş",
- "tls-ciphers-placeholder": "ęχämpľę: ŦĿŜ_ÅĒŜ_256_ĞCM_ŜĦÅ384",
- "use-ssl-description": "Ŝęŧ ŧő ŧřūę įƒ ĿĐÅP şęřvęř şĥőūľđ ūşę ŦĿŜ čőʼnʼnęčŧįőʼn (ęįŧĥęř ŵįŧĥ ŜŦÅŖŦŦĿŜ őř ĿĐÅPŜ)",
- "use-ssl-label": "Ůşę ŜŜĿ",
- "use-ssl-tooltip": "Főř ä čőmpľęŧę ľįşŧ őƒ şūppőřŧęđ čįpĥęřş äʼnđ ŦĿŜ vęřşįőʼnş, řęƒęř ŧő:"
- },
- "group-mapping": {
- "grafana-admin": {
- "description": "Ĩƒ ęʼnäþľęđ, äľľ ūşęřş ƒřőm ŧĥįş ģřőūp ŵįľľ þę Ğřäƒäʼnä Åđmįʼnş",
- "label": "Ğřäƒäʼnä Åđmįʼn"
- },
- "group-dn": {
- "description": "Ŧĥę ʼnämę őƒ ŧĥę ĸęy ūşęđ ŧő ęχŧřäčŧ ŧĥę ĨĐ ŧőĸęʼn ƒřőm ŧĥę řęŧūřʼnęđ ØÅūŧĥ2 ŧőĸęʼn.",
- "label": "Ğřőūp ĐŃ"
- },
- "org-id": {
- "description": "Ŧĥę Ğřäƒäʼnä őřģäʼnįžäŧįőʼn đäŧäþäşę įđ. Đęƒäūľŧ őřģ (ĨĐ 1) ŵįľľ þę ūşęđ įƒ ľęƒŧ őūŧ",
- "label": "Øřģ ĨĐ"
- },
- "org-role": {
- "label": "Øřģ řőľę *"
- },
- "remove": {
- "button": "Ŗęmővę ģřőūp mäppįʼnģ"
- }
- },
- "group-mapping-section": {
- "add": {
- "button": "Åđđ ģřőūp mäppįʼnģ"
- },
- "description": "Mäp ĿĐÅP ģřőūpş ŧő Ğřäƒäʼnä őřģ řőľęş",
- "group-search-base-dns-label": "Ğřőūp şęäřčĥ þäşę ĐŃŜ",
- "group-search-base-dns-placeholder": "ęχämpľę: őū=ģřőūpş,đč=ęχämpľę,đč=čőm",
- "group-search-filter-description": "Ůşęđ ŧő ƒįľŧęř äʼnđ įđęʼnŧįƒy ģřőūp ęʼnŧřįęş ŵįŧĥįʼn ŧĥę đįřęčŧőřy",
- "group-search-filter-label": "Ğřőūp şęäřčĥ ƒįľŧęř",
- "group-search-filter-user-attribute-description": "Ĩđęʼnŧįƒįęş ūşęřş ŵįŧĥįʼn ģřőūp ęʼnŧřįęş ƒőř ƒįľŧęřįʼnģ pūřpőşęş",
- "group-search-filter-user-attribute-label": "Ğřőūp ʼnämę äŧŧřįþūŧę",
- "label": "Ğřőūp mäppįʼnģ",
- "skip-org-role-sync-description": "Přęvęʼnŧ şyʼnčĥřőʼnįžįʼnģ ūşęřş’ őřģäʼnįžäŧįőʼn řőľęş ƒřőm yőūř ĨđP",
- "skip-org-role-sync-label": "Ŝĸįp őřģäʼnįžäŧįőʼn řőľę şyʼnč"
- },
- "misc-section": {
- "allow-sign-up-descrition": "Ĩƒ ʼnőŧ ęʼnäþľęđ, őʼnľy ęχįşŧįʼnģ Ğřäƒäʼnä ūşęřş čäʼn ľőģ įʼn ūşįʼnģ ĿĐÅP",
- "allow-sign-up-label": "Åľľőŵ şįģʼn-ūp",
- "label": "Mįşč",
- "port-description": "Đęƒäūľŧ pőřŧ įş 389 ŵįŧĥőūŧ ŜŜĿ őř 636 ŵįŧĥ ŜŜĿ",
- "port-label": "Pőřŧ",
- "timeout-description": "Ŧįmęőūŧ įʼn şęčőʼnđş ƒőř ŧĥę čőʼnʼnęčŧįőʼn ŧő ŧĥę ĿĐÅP şęřvęř",
- "timeout-label": "Ŧįmęőūŧ"
- },
- "title": "Åđväʼnčęđ şęŧŧįʼnģş"
- },
- "ldap-settings-page": {
- "advanced-settings-section": {
- "edit-button": "Ēđįŧ",
- "subtitle": "Mäppįʼnģş, ęχŧřä şęčūřįŧy męäşūřęş, äʼnđ mőřę.",
- "title": "Åđväʼnčęđ Ŝęŧŧįʼnģş"
- },
- "alert": {
- "discard-success": "ĿĐÅP şęŧŧįʼnģş đįşčäřđęđ",
- "error-fetching": "Ēřřőř ƒęŧčĥįʼnģ ĿĐÅP şęŧŧįʼnģş",
- "error-saving": "Ēřřőř şävįʼnģ ĿĐÅP şęŧŧįʼnģş",
- "error-validate-form": "Ēřřőř väľįđäŧįʼnģ ĿĐÅP şęŧŧįʼnģş",
- "feature-flag-disabled": "Ŧĥįş päģę įş őʼnľy äččęşşįþľę þy ęʼnäþľįʼnģ ŧĥę <1>şşőŜęŧŧįʼnģşĿĐÅP1> ƒęäŧūřę ƒľäģ.",
- "saved": "ĿĐÅP şęŧŧįʼnģş şävęđ"
- },
- "bind-dn": {
- "description": "Đįşŧįʼnģūįşĥęđ ʼnämę őƒ ŧĥę äččőūʼnŧ ūşęđ ŧő þįʼnđ äʼnđ äūŧĥęʼnŧįčäŧę ŧő ŧĥę ĿĐÅP şęřvęř.",
- "label": "ßįʼnđ ĐŃ",
- "placeholder": "ęχämpľę: čʼn=äđmįʼn,đč=ģřäƒäʼnä,đč=őřģ"
- },
- "bind-password": {
- "label": "ßįʼnđ päşşŵőřđ"
- },
- "buttons-section": {
- "disable-button": "Đįşäþľę",
- "discard-button": "Đįşčäřđ",
- "save-and-enable-button": "Ŝävę äʼnđ ęʼnäþľę",
- "save-button": "Ŝävę"
- },
- "documentation": "đőčūmęʼnŧäŧįőʼn",
- "host": {
- "description": "Ħőşŧʼnämę őř ĨP äđđřęşş őƒ ŧĥę ĿĐÅP şęřvęř yőū ŵįşĥ ŧő čőʼnʼnęčŧ ŧő.",
- "error": "Ŝęřvęř ĥőşŧ įş ä řęqūįřęđ ƒįęľđ",
- "label": "Ŝęřvęř ĥőşŧ",
- "placeholder": "ęχämpľę: 127.0.0.1"
- },
- "login-form-alert": {
- "description": "Ÿőūř ĿĐÅP čőʼnƒįģūřäŧįőʼn įş ʼnőŧ ŵőřĸįʼnģ þęčäūşę ŧĥę þäşįč ľőģįʼn ƒőřm įş čūřřęʼnŧľy đįşäþľęđ. Pľęäşę ęʼnäþľę ŧĥę ľőģįʼn ƒőřm ŧő ūşę ĿĐÅP äūŧĥęʼnŧįčäŧįőʼn. Ÿőū čäʼn ęʼnäþľę įŧ őʼn ŧĥę Åūŧĥęʼnŧįčäŧįőʼn päģę ūʼnđęř “Åūŧĥ şęŧŧįʼnģş”.",
- "title": "ßäşįč ľőģįʼn đįşäþľęđ"
- },
- "search_filter": {
- "description": "ĿĐÅP şęäřčĥ ƒįľŧęř ūşęđ ŧő ľőčäŧę şpęčįƒįč ęʼnŧřįęş ŵįŧĥįʼn ŧĥę đįřęčŧőřy.",
- "error": "Ŝęäřčĥ ƒįľŧęř įş ä řęqūįřęđ ƒįęľđ",
- "label": "Ŝęäřčĥ ƒįľŧęř",
- "placeholder": "ęχämpľę: čʼn=%ş"
- },
- "search-base-dns": {
- "description": "Åʼn äřřäy őƒ þäşę đʼnş ŧő şęäřčĥ ŧĥřőūģĥ.",
- "error": "Ŝęäřčĥ þäşę ĐŃŜ įş ä řęqūįřęđ ƒįęľđ",
- "label": "Ŝęäřčĥ þäşę ĐŃŜ",
- "placeholder": "ęχämpľę: đč=ģřäƒäʼnä,đč=őřģ"
- },
- "subtitle": "Ŧĥę ĿĐÅP įʼnŧęģřäŧįőʼn įʼn Ğřäƒäʼnä äľľőŵş yőūř Ğřäƒäʼnä ūşęřş ŧő ľőģ įʼn ŵįŧĥ ŧĥęįř ĿĐÅP čřęđęʼnŧįäľş. Fįʼnđ őūŧ mőřę įʼn őūř <2><0>đőčūmęʼnŧäŧįőʼn0>2>.",
- "title": "ßäşįč Ŝęŧŧįʼnģş"
- },
- "library-panel": {
- "add-modal": {
- "cancel": "Cäʼnčęľ",
- "create": "Cřęäŧę ľįþřäřy päʼnęľ",
- "error": "Ŀįþřäřy päʼnęľ ŵįŧĥ ŧĥįş ʼnämę äľřęäđy ęχįşŧş",
- "folder": "Ŝävę įʼn ƒőľđęř",
- "folder-description": "Ŀįþřäřy päʼnęľ pęřmįşşįőʼnş äřę đęřįvęđ ƒřőm ŧĥę ƒőľđęř pęřmįşşįőʼnş",
- "name": "Ŀįþřäřy päʼnęľ ʼnämę"
- },
- "add-widget": {
- "title": "Åđđ päʼnęľ ƒřőm päʼnęľ ľįþřäřy"
- },
- "empty-state": {
- "message": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny ľįþřäřy päʼnęľş yęŧ",
- "more-info": "Cřęäŧę ä ľįþřäřy päʼnęľ ƒřőm äʼny ęχįşŧįʼnģ đäşĥþőäřđ päʼnęľ ŧĥřőūģĥ ŧĥę päʼnęľ čőʼnŧęχŧ męʼnū. <2>Ŀęäřʼn mőřę2>"
- }
- },
- "library-panels": {
- "empty-state": {
- "message": "Ńő ľįþřäřy päʼnęľş ƒőūʼnđ"
- },
- "loading-panel-text": "Ŀőäđįʼnģ ľįþřäřy päʼnęľ",
- "modal": {
- "body_one": "Ŧĥįş päʼnęľ įş þęįʼnģ ūşęđ įʼn {{count}} đäşĥþőäřđ. Pľęäşę čĥőőşę ŵĥįčĥ đäşĥþőäřđ ŧő vįęŵ ŧĥę päʼnęľ įʼn:",
- "body_other": "Ŧĥįş päʼnęľ įş þęįʼnģ ūşęđ įʼn {{count}} đäşĥþőäřđ. Pľęäşę čĥőőşę ŵĥįčĥ đäşĥþőäřđ ŧő vįęŵ ŧĥę päʼnęľ įʼn:",
- "button-cancel": "Cäʼnčęľ",
- "button-view-panel1": "Vįęŵ päʼnęľ įʼn {{label}}...",
- "button-view-panel2": "Vįęŵ päʼnęľ įʼn đäşĥþőäřđ...",
- "panel-not-linked": "Päʼnęľ įş ʼnőŧ ľįʼnĸęđ ŧő ä đäşĥþőäřđ. Åđđ ŧĥę päʼnęľ ŧő ä đäşĥþőäřđ äʼnđ řęŧřy.",
- "select-no-options-message": "Ńő đäşĥþőäřđş ƒőūʼnđ",
- "select-placeholder": "Ŝŧäřŧ ŧypįʼnģ ŧő şęäřčĥ ƒőř đäşĥþőäřđ",
- "title": "Vįęŵ päʼnęľ įʼn đäşĥþőäřđ"
- },
- "save": {
- "error": "Ēřřőř şävįʼnģ ľįþřäřy päʼnęľ: \"{{errorMsg}}\"",
- "success": "Ŀįþřäřy päʼnęľ şävęđ"
- }
- },
- "link": {
- "share": {
- "config-alert-description": "Ůpđäŧįʼnģ yőūř şęŧŧįʼnģş ŵįľľ mőđįƒy ŧĥę đęƒäūľŧ čőpy ľįʼnĸ ŧő įʼnčľūđę ŧĥęşę čĥäʼnģęş. Pľęäşę ʼnőŧę ŧĥäŧ ŧĥęşę şęŧŧįʼnģş äřę şävęđ ŵįŧĥįʼn yőūř čūřřęʼnŧ þřőŵşęř şčőpę.",
- "config-alert-title": "Ŀįʼnĸ şęŧŧįʼnģş",
- "config-description": "Cřęäŧę ä pęřşőʼnäľįžęđ, đįřęčŧ ľįʼnĸ ŧő şĥäřę yőūř đäşĥþőäřđ ŵįŧĥįʼn yőūř őřģäʼnįžäŧįőʼn, ŵįŧĥ ŧĥę ƒőľľőŵįʼnģ čūşŧőmįžäŧįőʼn şęŧŧįʼnģş:",
- "copy-link-button": "Cőpy ľįʼnĸ",
- "copy-to-clipboard": "Ŀįʼnĸ čőpįęđ ŧő čľįpþőäřđ",
- "short-url-label": "Ŝĥőřŧęʼn ľįʼnĸ",
- "time-range-description": "Cĥäʼnģę ŧĥę čūřřęʼnŧ řęľäŧįvę ŧįmę řäʼnģę ŧő äʼn äþşőľūŧę ŧįmę řäʼnģę",
- "time-range-label": "Ŀőčĸ ŧįmę řäʼnģę"
- },
- "share-panel": {
- "config-description": "Cřęäŧę ä pęřşőʼnäľįžęđ, đįřęčŧ ľįʼnĸ ŧő şĥäřę yőūř päʼnęľ ŵįŧĥįʼn yőūř őřģäʼnįžäŧįőʼn, ŵįŧĥ ŧĥę ƒőľľőŵįʼnģ čūşŧőmįžäŧįőʼn şęŧŧįʼnģş:",
- "download-image": "Đőŵʼnľőäđ įmäģę",
- "render-image": "Ğęʼnęřäŧę įmäģę",
- "render-image-error": "Fäįľęđ ŧő řęʼnđęř päʼnęľ įmäģę",
- "render-image-error-description": "Åʼn ęřřőř őččūřřęđ ŵĥęʼn ģęʼnęřäŧįʼnģ ŧĥę įmäģę"
- }
- },
- "lock-icon": "ľőčĸ įčőʼn",
- "login": {
- "divider": {
- "connecting-text": "őř"
- },
- "error": {
- "blocked": "Ÿőū ĥävę ęχčęęđęđ ŧĥę ʼnūmþęř őƒ ľőģįʼn äŧŧęmpŧş ƒőř ŧĥįş ūşęř. Pľęäşę ŧřy äģäįʼn ľäŧęř.",
- "invalid-user-or-password": "Ĩʼnväľįđ ūşęřʼnämę őř päşşŵőřđ",
- "title": "Ŀőģįʼn ƒäįľęđ",
- "unknown": "Ůʼnĸʼnőŵʼn ęřřőř őččūřřęđ"
- },
- "forgot-password": "Főřģőŧ yőūř päşşŵőřđ?",
- "form": {
- "confirmation-code": "Cőʼnƒįřmäŧįőʼn čőđę įş řęqūįřęđ",
- "confirmation-code-label": "Cőʼnƒįřmäŧįőʼn čőđę",
- "confirmation-code-placeholder": "čőʼnƒįřmäŧįőʼn čőđę",
- "email-label": "Ēmäįľ",
- "email-placeholder": "ęmäįľ",
- "email-required": "Ēmäįľ įş řęqūįřęđ",
- "name-label": "Ńämę",
- "name-placeholder": "ʼnämę",
- "password-label": "Päşşŵőřđ",
- "password-placeholder": "päşşŵőřđ",
- "password-required": "Päşşŵőřđ įş řęqūįřęđ",
- "submit-label": "Ŀőģ įʼn",
- "submit-loading-label": "Ŀőģģįʼnģ įʼn...",
- "username-label": "Ēmäįľ őř ūşęřʼnämę",
- "username-placeholder": "ęmäįľ őř ūşęřʼnämę",
- "username-required": "Ēmäįľ őř ūşęřʼnämę įş řęqūįřęđ",
- "verify-email-label": "Ŝęʼnđ ä vęřįƒįčäŧįőʼn ęmäįľ",
- "verify-email-loading-label": "Ŝęʼnđįʼnģ ęmäįľ..."
- },
- "layout": {
- "update-password": "Ůpđäŧę yőūř päşşŵőřđ"
- },
- "services": {
- "sing-in-with-prefix": "Ŝįģʼn įʼn ŵįŧĥ {{serviceName}}"
- },
- "signup": {
- "button-label": "Ŝįģʼn ūp",
- "new-to-question": "Ńęŵ ŧő Ğřäƒäʼnä?"
- }
- },
- "logs": {
- "infinite-scroll": {
- "end-of-range": "Ēʼnđ őƒ ŧĥę şęľęčŧęđ ŧįmę řäʼnģę.",
- "load-more": "Ŝčřőľľ ŧő ľőäđ mőřę",
- "load-newer": "Ŀőäđįʼnģ ʼnęŵęř ľőģş...",
- "load-older": "Ŀőäđįʼnģ őľđęř ľőģş...",
- "older-logs": "Øľđęř ľőģş"
- },
- "log-details": {
- "fields": "Fįęľđş",
- "links": "Ŀįʼnĸş",
- "log-line": "Ŀőģ ľįʼnę",
- "no-details": "Ńő đęŧäįľş äväįľäþľę"
- },
- "log-line-menu": {
- "copy-link": "Cőpy ľįʼnĸ ŧő ľőģ ľįʼnę",
- "copy-log": "Cőpy ľőģ ľįʼnę",
- "icon-label": "Ŀőģ męʼnū",
- "pin-to-outline": "Pįʼn ľőģ",
- "show-context": "Ŝĥőŵ čőʼnŧęχŧ",
- "unpin-from-outline": "Ůʼnpįʼn ľőģ"
- },
- "log-row-message": {
- "ellipsis": "… ",
- "more": "mőřę",
- "see-details": "Ŝęę ľőģ đęŧäįľş"
- },
- "log-rows": {
- "disable-popover": {
- "confirm": "Cőʼnƒįřm",
- "message": "Ÿőū äřę äþőūŧ ŧő đįşäþľę ŧĥę ľőģş ƒįľŧęř męʼnū. Ŧő řę-ęʼnäþľę įŧ, şęľęčŧ ŧęχŧ įʼn ä ľőģ ľįʼnę ŵĥįľę ĥőľđįʼnģ ŧĥę äľŧ ĸęy.",
- "title": "Đįşäþľę męʼnū"
- },
- "disable-popover-message": {
- "shortcut": "äľŧ+şęľęčŧ ŧő ęʼnäþľę äģäįʼn"
- }
- },
- "logs-navigation": {
- "newer-logs": "Ńęŵęř ľőģş",
- "older-logs": "Øľđęř ľőģş",
- "scroll-bottom": "Ŝčřőľľ ŧő þőŧŧőm",
- "scroll-top": "Ŝčřőľľ ŧő ŧőp",
- "start-of-range": "Ŝŧäřŧ őƒ řäʼnģę"
- },
- "popover-menu": {
- "copy": "Cőpy şęľęčŧįőʼn",
- "disable-menu": "Đįşäþľę męʼnū",
- "line-contains": "Åđđ äş ľįʼnę čőʼnŧäįʼnş ƒįľŧęř",
- "line-contains-not": "Åđđ äş ľįʼnę đőęş ʼnőŧ čőʼnŧäįʼn ƒįľŧęř"
- }
- },
- "migrate-to-cloud": {
- "build-snapshot": {
- "description": "Ŧĥįş ŧőőľ čäʼn mįģřäŧę şőmę řęşőūřčęş ƒřőm ŧĥįş įʼnşŧäľľäŧįőʼn ŧő yőūř čľőūđ şŧäčĸ. Ŧő ģęŧ şŧäřŧęđ, yőū'ľľ ʼnęęđ ŧő čřęäŧę ä şʼnäpşĥőŧ őƒ ŧĥįş įʼnşŧäľľäŧįőʼn. Cřęäŧįʼnģ ä şʼnäpşĥőŧ ŧypįčäľľy ŧäĸęş ľęşş ŧĥäʼn ŧŵő mįʼnūŧęş. Ŧĥę şʼnäpşĥőŧ įş şŧőřęđ äľőʼnģşįđę ŧĥįş Ğřäƒäʼnä įʼnşŧäľľäŧįőʼn.",
- "title": "Ńő şʼnäpşĥőŧ ęχįşŧş",
- "when-complete": "Øʼnčę ŧĥę şʼnäpşĥőŧ įş čőmpľęŧę, yőū ŵįľľ þę äþľę ŧő ūpľőäđ įŧ ŧő yőūř čľőūđ şŧäčĸ."
- },
- "building-snapshot": {
- "description": "Ŵę'řę čřęäŧįʼnģ ä pőįʼnŧ-įʼn-ŧįmę şʼnäpşĥőŧ őƒ ŧĥę čūřřęʼnŧ şŧäŧę őƒ ŧĥįş įʼnşŧäľľäŧįőʼn. Øʼnčę ŧĥę şʼnäpşĥőŧ įş čőmpľęŧę. yőū'ľľ þę äþľę ŧő ūpľőäđ įŧ ŧő Ğřäƒäʼnä Cľőūđ.",
- "description-eta": "Cřęäŧįʼnģ ä şʼnäpşĥőŧ ŧypįčäľľy ŧäĸęş ľęşş ŧĥäʼn ŧŵő mįʼnūŧęş.",
- "title": "ßūįľđįʼnģ įʼnşŧäľľäŧįőʼn şʼnäpşĥőŧ"
- },
- "can-i-move": {
- "body": "Øʼnčę yőū čőʼnʼnęčŧ ŧĥįş įʼnşŧäľľäŧįőʼn ŧő ä čľőūđ şŧäčĸ, yőū'ľľ þę äþľę ŧő ūpľőäđ đäŧä şőūřčęş äʼnđ đäşĥþőäřđş.",
- "link-title": "Ŀęäřʼn äþőūŧ mįģřäŧįʼnģ őŧĥęř şęŧŧįʼnģş",
- "title": "Cäʼn Ĩ mővę ŧĥįş įʼnşŧäľľäŧįőʼn ŧő Ğřäƒäʼnä Cľőūđ?"
- },
- "connect-modal": {
- "body-cloud-stack": "Ÿőū'ľľ äľşő ʼnęęđ ä čľőūđ şŧäčĸ. Ĩƒ yőū ĵūşŧ şįģʼnęđ ūp, ŵę'ľľ äūŧőmäŧįčäľľy čřęäŧę yőūř ƒįřşŧ şŧäčĸ. Ĩƒ yőū ĥävę äʼn äččőūʼnŧ, yőū'ľľ ʼnęęđ ŧő şęľęčŧ őř čřęäŧę ä şŧäčĸ.",
- "body-get-started": "Ŧő ģęŧ şŧäřŧęđ, yőū'ľľ ʼnęęđ ä Ğřäƒäʼnä.čőm äččőūʼnŧ.",
- "body-sign-up": "Ŝįģʼn ūp ƒőř ä Ğřäƒäʼnä.čőm äččőūʼnŧ",
- "body-token": "Ÿőūř şęľƒ-mäʼnäģęđ Ğřäƒäʼnä įʼnşŧäľľäŧįőʼn ʼnęęđş şpęčįäľ äččęşş ŧő şęčūřęľy mįģřäŧę čőʼnŧęʼnŧ. Ÿőū'ľľ ʼnęęđ ŧő čřęäŧę ä mįģřäŧįőʼn ŧőĸęʼn őʼn yőūř čĥőşęʼn čľőūđ şŧäčĸ.",
- "body-token-field": "Mįģřäŧįőʼn ŧőĸęʼn",
- "body-token-field-placeholder": "Päşŧę ŧőĸęʼn ĥęřę",
- "body-token-instructions": "Ŀőģ įʼnŧő yőūř čľőūđ şŧäčĸ äʼnđ ʼnävįģäŧę ŧő Åđmįʼnįşŧřäŧįőʼn, Ğęʼnęřäľ, Mįģřäŧę ŧő Ğřäƒäʼnä Cľőūđ. Cřęäŧę ä mįģřäŧįőʼn ŧőĸęʼn őʼn ŧĥäŧ şčřęęʼn äʼnđ päşŧę ŧĥę ŧőĸęʼn ĥęřę.",
- "body-view-stacks": "Vįęŵ my čľőūđ şŧäčĸş",
- "cancel": "Cäʼnčęľ",
- "connect": "Cőʼnʼnęčŧ ŧő ŧĥįş şŧäčĸ",
- "connecting": "Cőʼnʼnęčŧįʼnģ ŧő ŧĥįş şŧäčĸ...",
- "title": "Cőʼnʼnęčŧ ŧő ä čľőūđ şŧäčĸ",
- "token-error-title": "Ēřřőř şävįʼnģ ŧőĸęʼn",
- "token-errors": {
- "instance-request-error": "Åʼn ęřřőř őččūřřęđ ŵĥįľę äŧŧęmpŧįʼnģ ŧő vęřįƒy ŧĥę čľőūđ įʼnşŧäʼnčę'ş čőʼnʼnęčŧįvįŧy. Pľęäşę čĥęčĸ ŧĥę ʼnęŧŵőřĸ şęŧŧįʼnģş őř čľőūđ įʼnşŧäʼnčę şŧäŧūş.",
- "instance-unreachable": "Ŧĥę čľőūđ įʼnşŧäʼnčę čäʼnʼnőŧ þę řęäčĥęđ. Mäĸę şūřę ŧĥę įʼnşŧäʼnčę įş řūʼnʼnįʼnģ äʼnđ ŧřy äģäįʼn.",
- "migration-disabled": "Cľőūđ mįģřäŧįőʼnş äřę đįşäþľęđ őʼn ŧĥįş įʼnşŧäʼnčę.",
- "session-creation-failure": "Ŧĥęřę ŵäş äʼn ęřřőř čřęäŧįʼnģ ŧĥę mįģřäŧįőʼn. Pľęäşę ŧřy äģäįʼn.",
- "token-invalid": "Ŧőĸęʼn įş ʼnőŧ väľįđ. Ğęʼnęřäŧę ä ʼnęŵ ŧőĸęʼn őʼn yőūř čľőūđ įʼnşŧäʼnčę äʼnđ ŧřy äģäįʼn.",
- "token-not-saved": "Ŧĥęřę ŵäş äʼn ęřřőř şävįʼnģ ŧĥę ŧőĸęʼn. Ŝęę ŧĥę Ğřäƒäʼnä şęřvęř ľőģş ƒőř mőřę đęŧäįľş.",
- "token-request-error": "Åʼn ęřřőř őččūřřęđ ŵĥįľę väľįđäŧįʼnģ ŧĥę ŧőĸęʼn. Pľęäşę čĥęčĸ ŧĥę Ğřäƒäʼnä įʼnşŧäʼnčę ľőģş.",
- "token-validation-failure": "Ŧőĸęʼn įş ʼnőŧ väľįđ. Pľęäşę ęʼnşūřę ŧĥę ŧőĸęʼn mäŧčĥęş ŧĥę mįģřäŧįőʼn ŧőĸęʼn őʼn yőūř čľőūđ įʼnşŧäʼnčę."
- },
- "token-required-error": "Mįģřäŧįőʼn ŧőĸęʼn įş řęqūįřęđ"
- },
- "cta": {
- "button": "Mįģřäŧę ŧĥįş įʼnşŧäʼnčę ŧő Cľőūđ",
- "header": "Ŀęŧ ūş mäʼnäģę yőūř Ğřäƒäʼnä şŧäčĸ"
- },
- "delete-migration-token-confirm": {
- "body": "Ĩƒ yőū'vę äľřęäđy ūşęđ ŧĥįş ŧőĸęʼn ŵįŧĥ ä şęľƒ-mäʼnäģęđ įʼnşŧäľľäŧįőʼn, ŧĥäŧ įʼnşŧäľľäŧįőʼn ŵįľľ ʼnő ľőʼnģęř þę äþľę ŧő ūpľőäđ čőʼnŧęʼnŧ.",
- "confirm-button": "Đęľęŧę ŧőĸęʼn",
- "error-title": "Ēřřőř đęľęŧįʼnģ ŧőĸęʼn",
- "title": "Đęľęŧę mįģřäŧįőʼn ŧőĸęʼn"
- },
- "disconnect-modal": {
- "body": "Ŧĥįş ŵįľľ řęmővę ŧĥę mįģřäŧįőʼn ŧőĸęʼn ƒřőm ŧĥįş įʼnşŧäľľäŧįőʼn. Ĩƒ yőū ŵįşĥ ŧő ūpľőäđ mőřę řęşőūřčęş įʼn ŧĥę ƒūŧūřę, yőū ŵįľľ ʼnęęđ ŧő ęʼnŧęř ä ʼnęŵ mįģřäŧįőʼn ŧőĸęʼn.",
- "cancel": "Cäʼnčęľ",
- "disconnect": "Đįşčőʼnʼnęčŧ",
- "disconnecting": "Đįşčőʼnʼnęčŧįʼnģ...",
- "error": "Ŧĥęřę ŵäş äʼn ęřřőř đįşčőʼnʼnęčŧįʼnģ",
- "title": "Đįşčőʼnʼnęčŧ ƒřőm čľőūđ şŧäčĸ"
- },
- "get-started": {
- "body": "Ŧĥę mįģřäŧįőʼn přőčęşş mūşŧ þę şŧäřŧęđ ƒřőm yőūř şęľƒ-mäʼnäģęđ Ğřäƒäʼnä įʼnşŧäʼnčę.",
- "configure-pdc-link": "Cőʼnƒįģūřę PĐC ƒőř ŧĥįş şŧäčĸ",
- "link-title": "Ŀęäřʼn mőřę äþőūŧ Přįväŧę Đäŧä Ŝőūřčę Cőʼnʼnęčŧ",
- "step-1": "Ŀőģ įʼn ŧő yőūř şęľƒ-mäʼnäģęđ įʼnşŧäʼnčę äʼnđ ʼnävįģäŧę ŧő Åđmįʼnįşŧřäŧįőʼn, Ğęʼnęřäľ, Mįģřäŧę ŧő Ğřäƒäʼnä Cľőūđ.",
- "step-2": "Ŝęľęčŧ \"Mįģřäŧę ŧĥįş įʼnşŧäʼnčę ŧő Cľőūđ\".",
- "step-3": "Ÿőū'ľľ þę přőmpŧęđ ƒőř ä mįģřäŧįőʼn ŧőĸęʼn. Ğęʼnęřäŧę őʼnę ƒřőm ŧĥįş şčřęęʼn.",
- "step-4": "Ĩʼn yőūř şęľƒ-mäʼnäģęđ įʼnşŧäʼnčę, şęľęčŧ \"Ůpľőäđ ęvęřyŧĥįʼnģ\" ŧő ūpľőäđ đäŧä şőūřčęş äʼnđ đäşĥþőäřđş ŧő ŧĥįş čľőūđ şŧäčĸ.",
- "step-5": "Ĩƒ şőmę őƒ yőūř đäŧä şőūřčęş ŵįľľ ʼnőŧ ŵőřĸ ővęř ŧĥę pūþľįč įʼnŧęřʼnęŧ, yőū’ľľ ʼnęęđ ŧő įʼnşŧäľľ Přįväŧę Đäŧä Ŝőūřčę Cőʼnʼnęčŧ įʼn yőūř şęľƒ-mäʼnäģęđ ęʼnvįřőʼnmęʼnŧ.",
- "title": "Pęřƒőřmįʼnģ ä mįģřäŧįőʼn"
- },
- "is-it-secure": {
- "body": "Ğřäƒäʼnä Ŀäþş įş čőmmįŧŧęđ ŧő mäįʼnŧäįʼnįʼnģ ŧĥę ĥįģĥęşŧ şŧäʼnđäřđş őƒ đäŧä přįväčy äʼnđ şęčūřįŧy. ßy įmpľęmęʼnŧįʼnģ įʼnđūşŧřy-şŧäʼnđäřđ şęčūřįŧy ŧęčĥʼnőľőģįęş äʼnđ přőčęđūřęş, ŵę ĥęľp přőŧęčŧ őūř čūşŧőmęřş' đäŧä ƒřőm ūʼnäūŧĥőřįžęđ äččęşş, ūşę, őř đįşčľőşūřę.",
- "link-title": "Ğřäƒäʼnä Ŀäþş Ŧřūşŧ Cęʼnŧęř",
- "title": "Ĩş įŧ şęčūřę?"
- },
- "migrate-to-this-stack": {
- "body": "Ÿőū čäʼn mįģřäŧę şőmę řęşőūřčęş ƒřőm yőūř şęľƒ-mäʼnäģęđ Ğřäƒäʼnä įʼnşŧäľľäŧįőʼn ŧő ŧĥįş čľőūđ şŧäčĸ. Ŧő đő ŧĥįş şęčūřęľy, yőū'ľľ ʼnęęđ ŧő ģęʼnęřäŧę ä mįģřäŧįőʼn ŧőĸęʼn. Ÿőūř şęľƒ-mäʼnäģęđ įʼnşŧäʼnčę ŵįľľ ūşę ŧĥę ŧőĸęʼn ŧő äūŧĥęʼnŧįčäŧę ŵįŧĥ ŧĥįş čľőūđ şŧäčĸ.",
- "link-title": "Vįęŵ ŧĥę ƒūľľ mįģřäŧįőʼn ģūįđę",
- "title": "Ŀęŧ ūş ĥęľp yőū mįģřäŧę ŧő ŧĥįş şŧäčĸ"
- },
- "migrated-counts": {
- "alert_rule_groups": "äľęřŧ řūľę ģřőūpş",
- "alert_rules": "äľęřŧ řūľęş",
- "contact_points": "čőʼnŧäčŧ pőįʼnŧş",
- "dashboards": "đäşĥþőäřđş",
- "datasources": "đäŧä şőūřčęş",
- "folders": "ƒőľđęřş",
- "library_elements": "ľįþřäřy ęľęmęʼnŧş",
- "mute_timings": "mūŧę ŧįmįʼnģş",
- "notification_policies": "ʼnőŧįƒįčäŧįőʼn pőľįčįęş",
- "notification_templates": "ʼnőŧįƒįčäŧįőʼn ŧęmpľäŧęş",
- "plugins": "pľūģįʼnş"
- },
- "migration-token": {
- "delete-button": "Đęľęŧę ŧőĸęʼn",
- "delete-modal-body": "Ĩƒ yőū'vę äľřęäđy ūşęđ ŧĥįş ŧőĸęʼn ŵįŧĥ ä şęľƒ-mäʼnäģęđ įʼnşŧäľľäŧįőʼn, ŧĥäŧ įʼnşŧäľľäŧįőʼn ŵįľľ ʼnő ľőʼnģęř þę äþľę ŧő ūpľőäđ čőʼnŧęʼnŧ.",
- "delete-modal-cancel": "Cäʼnčęľ",
- "delete-modal-confirm": "Đęľęŧę",
- "delete-modal-deleting": "Đęľęŧįʼnģ...",
- "delete-modal-title": "Đęľęŧę mįģřäŧįőʼn ŧőĸęʼn",
- "error-body": "Ůʼnäþľę ŧő ģęʼnęřäŧę ä mįģřäŧįőʼn ŧőĸęʼn. Pľęäşę ŧřy äģäįʼn ľäŧęř.",
- "error-title": "Ŝőmęŧĥįʼnģ ŵęʼnŧ ŵřőʼnģ",
- "generate-button": "Ğęʼnęřäŧę ä mįģřäŧįőʼn ŧőĸęʼn",
- "generate-button-loading": "Ğęʼnęřäŧįʼnģ ä mįģřäŧįőʼn ŧőĸęʼn...",
- "modal-close": "Cľőşę",
- "modal-copy-and-close": "Cőpy ŧő čľįpþőäřđ äʼnđ čľőşę",
- "modal-copy-button": "Cőpy ŧő čľįpþőäřđ",
- "modal-field-description": "Cőpy ŧĥę ŧőĸęʼn ʼnőŵ äş yőū ŵįľľ ʼnőŧ þę äþľę ŧő şęę įŧ äģäįʼn. Ŀőşįʼnģ ä ŧőĸęʼn řęqūįřęş čřęäŧįʼnģ ä ʼnęŵ őʼnę.",
- "modal-field-label": "Ŧőĸęʼn",
- "modal-title": "Mįģřäŧįőʼn ŧőĸęʼn čřęäŧęđ",
- "status": "Cūřřęʼnŧ şŧäŧūş: <2>2>"
- },
- "onprem": {
- "cancel-snapshot-error-title": "Ēřřőř čäʼnčęľľįʼnģ čřęäŧįʼnģ şʼnäpşĥőŧ",
- "create-snapshot-error-title": "Ēřřőř čřęäŧįʼnģ şʼnäpşĥőŧ",
- "disconnect-error-title": "Ēřřőř đįşčőʼnʼnęčŧįʼnģ",
- "error-see-server-logs": "Ŝęę ŧĥę Ğřäƒäʼnä şęřvęř ľőģş ƒőř mőřę đęŧäįľş",
- "get-session-error-title": "Ēřřőř ľőäđįʼnģ mįģřäŧįőʼn čőʼnƒįģūřäŧįőʼn",
- "get-snapshot-error-title": "Ēřřőř ľőäđįʼnģ şʼnäpşĥőŧ",
- "migration-finished-with-caveat-title": "Ŗęşőūřčę mįģřäŧįőʼn čőmpľęŧę",
- "migration-finished-with-errors-body": "Ŧĥę mįģřäŧįőʼn ĥäş čőmpľęŧęđ, þūŧ şőmę įŧęmş čőūľđ ʼnőŧ þę mįģřäŧęđ ŧő ŧĥę čľőūđ şŧäčĸ. Cĥęčĸ ŧĥę ƒäįľęđ řęşőūřčęş ƒőř mőřę đęŧäįľş",
- "migration-finished-with-warnings-body": "Ŧĥę mįģřäŧįőʼn ĥäş čőmpľęŧęđ ŵįŧĥ şőmę ŵäřʼnįʼnģş. Cĥęčĸ įʼnđįvįđūäľ řęşőūřčęş ƒőř mőřę đęŧäįľş",
- "snapshot-error-status-body": "Ŧĥęřę ŵäş äʼn ęřřőř čřęäŧįʼnģ ŧĥę şʼnäpşĥőŧ őř şŧäřŧįʼnģ ŧĥę mįģřäŧįőʼn přőčęşş. Ŝęę ŧĥę Ğřäƒäʼnä şęřvęř ľőģş ƒőř mőřę đęŧäįľş",
- "snapshot-error-status-title": "Ēřřőř mįģřäŧįʼnģ řęşőūřčęş",
- "success-message": "Ŝūččęşşƒūľľy mįģřäŧęđ {{successCount}} {{types, list}} ŧő yőūř Ğřäƒäʼnä Cľőūđ įʼnşŧäʼnčę.",
- "success-message-generic": "Ŝūččęşşƒūľľy mįģřäŧęđ {{successCount}} řęşőūřčęş ŧő yőūř Ğřäƒäʼnä Cľőūđ įʼnşŧäʼnčę.",
- "success-title": "Mįģřäŧįőʼn čőmpľęŧęđ!",
- "upload-snapshot-error-title": "Ēřřőř ūpľőäđįʼnģ şʼnäpşĥőŧ"
- },
- "pdc": {
- "body": "Ēχpőşįʼnģ yőūř đäŧä şőūřčęş ŧő ŧĥę įʼnŧęřʼnęŧ čäʼn řäįşę şęčūřįŧy čőʼnčęřʼnş. Přįväŧę đäŧä şőūřčę čőʼnʼnęčŧ (PĐC) äľľőŵş Ğřäƒäʼnä Cľőūđ ŧő äččęşş yőūř ęχįşŧįʼnģ đäŧä şőūřčęş ővęř ä şęčūřę ʼnęŧŵőřĸ ŧūʼnʼnęľ.",
- "link-title": "Ŀęäřʼn äþőūŧ PĐC",
- "title": "Ńőŧ äľľ my đäŧä şőūřčęş äřę őʼn ŧĥę pūþľįč įʼnŧęřʼnęŧ"
- },
- "pricing": {
- "body": "Ğřäƒäʼnä Cľőūđ ĥäş ä ģęʼnęřőūş ƒřęę pľäʼn äʼnđ ä 14 đäy ūʼnľįmįŧęđ ūşäģę ŧřįäľ. Ńŧęř yőūř ŧřįäľ ęχpįřęş, yőū'ľľ þę þįľľęđ þäşęđ őʼn ūşäģę ővęř ŧĥę ƒřęę pľäʼn ľįmįŧş.",
- "link-title": "Ğřäƒäʼnä Cľőūđ přįčįʼnģ",
- "title": "Ħőŵ mūčĥ đőęş įŧ čőşŧ?"
- },
- "public-preview": {
- "button-text": "Ğįvę ƒęęđþäčĸ",
- "message": "<0>Vįşįŧ őūř đőčş0> ŧő ľęäřʼn mőřę äþőūŧ ŧĥįş ƒęäŧūřę!",
- "message-cloud": "Ÿőūř şęľƒ-mäʼnäģęđ įʼnşŧäʼnčę őƒ Ğřäƒäʼnä řęqūįřęş vęřşįőʼn 11.5+, őř 11.2+ ŵįŧĥ ŧĥę őʼnPřęmŦőCľőūđMįģřäŧįőʼnş ƒęäŧūřę ƒľäģ ęʼnäþľęđ.",
- "title": "Mįģřäŧę ŧő Ğřäƒäʼnä Cľőūđ įş įʼn pūþľįč přęvįęŵ"
- },
- "resource-details": {
- "dismiss-button": "ØĶ",
- "error-messages": {
- "dashboard-already-managed": "Đäşĥþőäřđ įş äľřęäđy přővįşįőʼnęđ äʼnđ mäʼnäģęđ þy Ğřäƒäʼnä įʼn ŧĥę čľőūđ įʼnşŧäʼnčę. Ŵę řęčőmmęʼnđ ūşįʼnģ ŧĥę přővįşįőʼnęđ đäşĥþőäřđ ģőįʼnģ ƒőřŵäřđ. Ĩƒ yőū şŧįľľ ŵįşĥ ŧő čőpy ŧĥę đäşĥþőäřđ ŧő ŧĥę čľőūđ įʼnşŧäʼnčę, ŧĥęʼn čĥäʼnģę ŧĥę đäşĥþőäřđ ĨĐ įʼn ŧĥę đäşĥþőäřđ ĴŜØŃ, şävę ä ʼnęŵ şʼnäpşĥőŧ äʼnđ ūpľőäđ äģäįʼn.",
- "datasource-already-managed": "Đäŧä şőūřčę įş äľřęäđy přővįşįőʼnęđ äʼnđ mäʼnäģęđ þy Ğřäƒäʼnä įʼn ŧĥę čľőūđ įʼnşŧäʼnčę. Ĩƒ ŧĥįş įş ä đįƒƒęřęʼnŧ řęşőūřčę, şęŧ äʼnőŧĥęř ŮĨĐ äʼnđ ŧřy äģäįʼn.",
- "datasource-invalid-url": "Ŧĥęřę įş ä đäŧä şőūřčę ŵĥįčĥ ĥäş äʼn įʼnväľįđ ŮŖĿ. Přővįđę ä väľįđ ŮŖĿ äʼnđ ŧřy äģäįʼn.",
- "datasource-name-conflict": "Ŧĥęřę įş ä đäŧä şőūřčę ŵįŧĥ ŧĥę şämę ʼnämę įʼn ŧĥę ŧäřģęŧ įʼnşŧäʼnčę. Ŗęʼnämę őʼnę őƒ ŧĥęm äʼnđ ŧřy äģäįʼn.",
- "folder-name-conflict": "Ŧĥęřę įş ä ƒőľđęř ŵįŧĥ ŧĥę şämę ʼnämę įʼn ŧĥę ŧäřģęŧ įʼnşŧäʼnčę. Ŗęʼnämę őʼnę őƒ ŧĥęm äʼnđ ŧřy äģäįʼn.",
- "generic-error": "Ŧĥęřę ĥäş þęęʼn äʼn ęřřőř ŵĥįľę mįģřäŧįʼnģ. Pľęäşę čĥęčĸ ŧĥę čľőūđ mįģřäŧįőʼn ľőģş ƒőř mőřę įʼnƒőřmäŧįőʼn.",
- "internal-service-error": "Ŧĥęřę ĥäş þęęʼn äʼn ęřřőř ŵĥįľę mįģřäŧįʼnģ. Pľęäşę čĥęčĸ ŧĥę Ğřäƒäʼnä şęřvęř ľőģş ƒőř mőřę đęŧäįľş.",
- "library-element-name-conflict": "Ŧĥęřę įş ä ľįþřäřy ęľęmęʼnŧ ŵįŧĥ ŧĥę şämę ʼnämę įʼn ŧĥę ŧäřģęŧ įʼnşŧäʼnčę. Ŗęʼnämę őʼnę őƒ ŧĥęm äʼnđ ŧřy äģäįʼn.",
- "resource-conflict": "Ŧĥęřę įş ä řęşőūřčę čőʼnƒľįčŧ ŵįŧĥ ŧĥę ŧäřģęŧ įʼnşŧäʼnčę. Pľęäşę čĥęčĸ ŧĥę Ğřäƒäʼnä şęřvęř ľőģş ƒőř mőřę đęŧäįľş.",
- "unexpected-error": "Ŧĥęřę ĥäş þęęʼn äʼn ęřřőř ŵĥįľę mįģřäŧįʼnģ. Pľęäşę čĥęčĸ ŧĥę Ğřäƒäʼnä şęřvęř ľőģş ƒőř mőřę đęŧäįľş.",
- "unsupported-data-type": "Mįģřäŧįőʼn őƒ ŧĥįş đäŧä ŧypę įş ʼnőŧ čūřřęʼnŧľy şūppőřŧęđ."
- },
- "error-title": "Ůʼnäþľę ŧő mįģřäŧę ŧĥįş řęşőūřčę:",
- "generic-title": "Ŗęşőūřčę mįģřäŧįőʼn đęŧäįľş:",
- "missing-message": "Ńő męşşäģę přővįđęđ.",
- "resource-summary": "{{refId}} ({{typeName}})",
- "title": "Mįģřäŧįőʼn řęşőūřčę đęŧäįľş",
- "warning-title": "Ŗęşőūřčę mįģřäŧęđ ŵįŧĥ ä ŵäřʼnįʼnģ:"
- },
- "resource-status": {
- "error-details-button": "Đęŧäįľş",
- "failed": "Ēřřőř",
- "migrated": "Ůpľőäđęđ ŧő čľőūđ",
- "migrating": "Ůpľőäđįʼnģ...",
- "not-migrated": "Ńőŧ yęŧ ūpľőäđęđ",
- "unknown": "Ůʼnĸʼnőŵʼn",
- "warning": "Ůpľőäđęđ ŵįŧĥ ŵäřʼnįʼnģ",
- "warning-details-button": "Đęŧäįľş"
- },
- "resource-table": {
- "dashboard-load-error": "Ůʼnäþľę ŧő ľőäđ đäşĥþőäřđ",
- "error-library-element-sub": "Ŀįþřäřy Ēľęmęʼnŧ {ūįđ}",
- "error-library-element-title": "Ůʼnäþľę ŧő ľőäđ ľįþřäřy ęľęmęʼnŧ",
- "unknown-datasource-title": "Đäŧä şőūřčę {{datasourceUID}}",
- "unknown-datasource-type": "Ůʼnĸʼnőŵʼn đäŧä şőūřčę"
- },
- "resource-type": {
- "alert_rule": "Åľęřŧ Ŗūľę",
- "alert_rule_group": "Åľęřŧ Ŗūľę Ğřőūp",
- "contact_point": "Cőʼnŧäčŧ Pőįʼnŧ",
- "dashboard": "Đäşĥþőäřđ",
- "datasource": "Đäŧä şőūřčę",
- "folder": "Főľđęř",
- "library_element": "Ŀįþřäřy Ēľęmęʼnŧ",
- "mute_timing": "Mūŧę Ŧįmįʼnģ",
- "notification_policy": "Ńőŧįƒįčäŧįőʼn Pőľįčy",
- "notification_template": "Ńőŧįƒįčäŧįőʼn Ŧęmpľäŧę",
- "plugin": "Pľūģįʼn",
- "unknown": "Ůʼnĸʼnőŵʼn"
- },
- "summary": {
- "cancel-snapshot": "Cäʼnčęľ şʼnäpşĥőŧ",
- "disconnect": "Đįşčőʼnʼnęčŧ",
- "errored-resource-count": "Ēřřőřş",
- "page-loading": "Ŀőäđįʼnģ...",
- "rebuild-snapshot": "Ŗęþūįľđ şʼnäpşĥőŧ",
- "snapshot-date": "Ŝʼnäpşĥőŧ ŧįmęşŧämp",
- "snapshot-not-created": "Ńőŧ yęŧ čřęäŧęđ",
- "start-migration": "ßūįľđ şʼnäpşĥőŧ",
- "successful-resource-count": "Ŝūččęşşƒūľľy mįģřäŧęđ",
- "target-stack-title": "Ůpľőäđįʼnģ ŧő",
- "total-resource-count": "Ŧőŧäľ řęşőūřčęş",
- "upload-migration": "Ůpľőäđ şʼnäpşĥőŧ"
- },
- "support-types-disclosure": {
- "text": "Đäşĥþőäřđş, Főľđęřş, äʼnđ þūįľŧ-įʼn čőřę đäŧä şőūřčęş äřę mįģřäŧęđ ŧő yőūř Ğřäƒäʼnä Cľőūđ şŧäčĸ. <2>Ŀęäřʼn äþőūŧ mįģřäŧįʼnģ őŧĥęř şęŧŧįʼnģş.2>"
- },
- "token-status": {
- "active": "Ŧőĸęʼn čřęäŧęđ äʼnđ äčŧįvę",
- "no-active": "Ńő äčŧįvę ŧőĸęʼn",
- "unknown": "Ůʼnĸʼnőŵʼn",
- "unknown-error": "Ēřřőř řęŧřįęvįʼnģ ŧőĸęʼn"
- },
- "what-is-cloud": {
- "body": "Ğřäƒäʼnä čľőūđ įş ä ƒūľľy mäʼnäģęđ čľőūđ-ĥőşŧęđ őþşęřväþįľįŧy pľäŧƒőřm įđęäľ ƒőř čľőūđ ʼnäŧįvę ęʼnvįřőʼnmęʼnŧş. Ĩŧ'ş ęvęřyŧĥįʼnģ yőū ľővę äþőūŧ Ğřäƒäʼnä ŵįŧĥőūŧ ŧĥę ővęřĥęäđ őƒ mäįʼnŧäįʼnįʼnģ, ūpģřäđįʼnģ, äʼnđ şūppőřŧįʼnģ äʼn įʼnşŧäľľäŧįőʼn.",
- "link-title": "Ŀęäřʼn äþőūŧ čľőūđ ƒęäŧūřęş",
- "title": "Ŵĥäŧ įş Ğřäƒäʼnä Cľőūđ?"
- },
- "why-host": {
- "body": "Ĩʼn äđđįŧįőʼn ŧő ŧĥę čőʼnvęʼnįęʼnčę őƒ mäʼnäģęđ ĥőşŧįʼnģ, Ğřäƒäʼnä Cľőūđ įʼnčľūđęş mäʼny čľőūđ-ęχčľūşįvę ƒęäŧūřęş ľįĸę ŜĿØş, įʼnčįđęʼnŧ mäʼnäģęmęʼnŧ, mäčĥįʼnę ľęäřʼnįʼnģ, äʼnđ pőŵęřƒūľ őþşęřväþįľįŧy įʼnŧęģřäŧįőʼnş.",
- "link-title": "Mőřę qūęşŧįőʼnş? Ŧäľĸ ŧő äʼn ęχpęřŧ",
- "title": "Ŵĥy ĥőşŧ ŵįŧĥ Ğřäƒäʼnä?"
- }
- },
- "multicombobox": {
- "all": {
- "title": "Åľľ",
- "title-filtered": "Åľľ (ƒįľŧęřęđ)"
- },
- "clear": {
- "title": "Cľęäř äľľ"
- }
- },
- "nav": {
- "add-new-connections": {
- "title": "Åđđ ʼnęŵ čőʼnʼnęčŧįőʼn"
- },
- "admin": {
- "subtitle": "Mäʼnäģę şęřvęř-ŵįđę şęŧŧįʼnģş äʼnđ äččęşş ŧő řęşőūřčęş şūčĥ äş őřģäʼnįžäŧįőʼnş, ūşęřş, äʼnđ ľįčęʼnşęş",
- "title": "Ŝęřvęř äđmįʼn"
- },
- "alert-list-legacy": {
- "title": "Åľęřŧ řūľęş"
- },
- "alerting": {
- "subtitle": "Ŀęäřʼn äþőūŧ přőþľęmş įʼn yőūř şyşŧęmş mőmęʼnŧş äƒŧęř ŧĥęy őččūř",
- "title": "Åľęřŧįʼnģ"
- },
- "alerting-admin": {
- "subtitle": "Mäʼnäģę Åľęřŧmäʼnäģęř čőʼnƒįģūřäŧįőʼnş äʼnđ ęʼnäþľę řęčęįvįʼnģ Ğřäƒäʼnä-mäʼnäģęđ äľęřŧş",
- "title": "Ŝęŧŧįʼnģş"
- },
- "alerting-am-routes": {
- "subtitle": "Đęŧęřmįʼnę ĥőŵ äľęřŧş äřę řőūŧęđ ŧő čőʼnŧäčŧ pőįʼnŧş",
- "title": "Ńőŧįƒįčäŧįőʼn pőľįčįęş"
- },
- "alerting-channels": {
- "title": "Ńőŧįƒįčäŧįőʼn čĥäʼnʼnęľş"
- },
- "alerting-groups": {
- "subtitle": "Ŝęę ģřőūpęđ äľęřŧş ŵįŧĥ äčŧįvę ʼnőŧįƒįčäŧįőʼnş",
- "title": "Åčŧįvę ʼnőŧįƒįčäŧįőʼnş"
- },
- "alerting-home": {
- "title": "Ħőmę"
- },
- "alerting-legacy": {
- "title": "Åľęřŧįʼnģ (ľęģäčy)"
- },
- "alerting-list": {
- "subtitle": "Ŗūľęş ŧĥäŧ đęŧęřmįʼnę ŵĥęŧĥęř äʼn äľęřŧ ŵįľľ ƒįřę",
- "title": "Åľęřŧ řūľęş"
- },
- "alerting-receivers": {
- "subtitle": "Cĥőőşę ĥőŵ ŧő ʼnőŧįƒy yőūř čőʼnŧäčŧ pőįʼnŧş ŵĥęʼn äʼn äľęřŧ įʼnşŧäʼnčę ƒįřęş",
- "title": "Cőʼnŧäčŧ pőįʼnŧş"
- },
- "alerting-silences": {
- "subtitle": "Ŝŧőp ʼnőŧįƒįčäŧįőʼnş ƒřőm őʼnę őř mőřę äľęřŧįʼnģ řūľęş",
- "title": "Ŝįľęʼnčęş"
- },
- "alerting-upgrade": {
- "subtitle": "Ůpģřäđę yőūř ęχįşŧįʼnģ ľęģäčy äľęřŧş äʼnđ ʼnőŧįƒįčäŧįőʼn čĥäʼnʼnęľş ŧő ŧĥę ʼnęŵ Ğřäƒäʼnä Åľęřŧįʼnģ",
- "title": "Åľęřŧįʼnģ ūpģřäđę"
- },
- "alerts-and-incidents": {
- "subtitle": "Åľęřŧįʼnģ äʼnđ įʼnčįđęʼnŧ mäʼnäģęmęʼnŧ äppş",
- "title": "Åľęřŧş & ĨŖM"
- },
- "api-keys": {
- "subtitle": "Mäʼnäģę äʼnđ čřęäŧę ÅPĨ ĸęyş ŧĥäŧ äřę ūşęđ ŧő įʼnŧęřäčŧ ŵįŧĥ Ğřäƒäʼnä ĦŦŦP ÅPĨş",
- "title": "ÅPĨ ĸęyş"
- },
- "application": {
- "title": "Åppľįčäŧįőʼn"
- },
- "apps": {
- "subtitle": "Åpp pľūģįʼnş ŧĥäŧ ęχŧęʼnđ ŧĥę Ğřäƒäʼnä ęχpęřįęʼnčę",
- "title": "Mőřę äppş"
- },
- "authentication": {
- "title": "Åūŧĥęʼnŧįčäŧįőʼn"
- },
- "bookmarks": {
- "title": "ßőőĸmäřĸş"
- },
- "bookmarks-empty": {
- "title": "ßőőĸmäřĸ päģęş ƒőř ŧĥęm ŧő äppęäř ĥęřę"
- },
- "collector": {
- "title": "Cőľľęčŧőř"
- },
- "config": {
- "title": "Åđmįʼnįşŧřäŧįőʼn"
- },
- "config-access": {
- "subtitle": "Cőʼnƒįģūřę äččęşş ƒőř įʼnđįvįđūäľ ūşęřş, ŧęämş, äʼnđ şęřvįčę äččőūʼnŧş",
- "title": "Ůşęřş äʼnđ äččęşş"
- },
- "config-general": {
- "subtitle": "Mäʼnäģę đęƒäūľŧ přęƒęřęʼnčęş äʼnđ şęŧŧįʼnģş äčřőşş Ğřäƒäʼnä",
- "title": "Ğęʼnęřäľ"
- },
- "config-plugins": {
- "subtitle": "Ĩʼnşŧäľľ pľūģįʼnş äʼnđ đęƒįʼnę ŧĥę řęľäŧįőʼnşĥįpş þęŧŵęęʼn đäŧä",
- "title": "Pľūģįʼnş äʼnđ đäŧä"
- },
- "connect-data": {
- "title": "Cőʼnʼnęčŧ đäŧä"
- },
- "connections": {
- "subtitle": "ßřőŵşę äʼnđ čřęäŧę ʼnęŵ čőʼnʼnęčŧįőʼnş",
- "title": "Cőʼnʼnęčŧįőʼnş"
- },
- "correlations": {
- "subtitle": "Åđđ äʼnđ čőʼnƒįģūřę čőřřęľäŧįőʼnş",
- "title": "Cőřřęľäŧįőʼnş"
- },
- "create": {
- "title": "Cřęäŧę"
- },
- "create-alert": {
- "title": "Ńęŵ äľęřŧ řūľę"
- },
- "create-dashboard": {
- "title": "Đäşĥþőäřđ"
- },
- "create-folder": {
- "title": "Főľđęř"
- },
- "create-import": {
- "title": "Ĩmpőřŧ đäşĥþőäřđ"
- },
- "dashboards": {
- "subtitle": "Cřęäŧę äʼnđ mäʼnäģę đäşĥþőäřđş ŧő vįşūäľįžę yőūř đäŧä",
- "title": "Đäşĥþőäřđş"
- },
- "data-sources": {
- "subtitle": "Vįęŵ äʼnđ mäʼnäģę yőūř čőʼnʼnęčŧęđ đäŧä şőūřčę čőʼnʼnęčŧįőʼnş",
- "title": "Đäŧä şőūřčęş"
- },
- "databases": {
- "title": "Đäŧäþäşęş"
- },
- "datasources": {
- "subtitle": "Åđđ äʼnđ čőʼnƒįģūřę đäŧä şőūřčęş",
- "title": "Đäŧä şőūřčęş"
- },
- "detect": {
- "title": "Đęŧęčŧ"
- },
- "drilldown": {
- "title": "Đřįľľđőŵʼn"
- },
- "explore": {
- "title": "Ēχpľőřę"
- },
- "frontend": {
- "subtitle": "Ğäįʼn řęäľ ūşęř mőʼnįŧőřįʼnģ įʼnşįģĥŧş",
- "title": "Fřőʼnŧęʼnđ"
- },
- "frontend-app": {
- "title": "Fřőʼnŧęʼnđ"
- },
- "global-orgs": {
- "subtitle": "Ĩşőľäŧęđ įʼnşŧäʼnčęş őƒ Ğřäƒäʼnä řūʼnʼnįʼnģ őʼn ŧĥę şämę şęřvęř",
- "title": "Øřģäʼnįžäŧįőʼnş"
- },
- "global-users": {
- "subtitle": "Mäʼnäģę ūşęřş įʼn Ğřäƒäʼnä",
- "title": "Ůşęřş"
- },
- "grafana-quaderno": {
- "title": "Ğřäƒäʼnä Qūäđęřʼnő"
- },
- "groupsync": {
- "subtitle": "Mäʼnäģę mäppįʼnģş őƒ Ĩđęʼnŧįŧy Přővįđęř ģřőūpş ŧő Ğřäƒäʼnä Ŗőľęş"
- },
- "help": {
- "title": "Ħęľp"
- },
- "help/community": "Cőmmūʼnįŧy",
- "help/documentation": "Đőčūmęʼnŧäŧįőʼn",
- "help/keyboard-shortcuts": "Ķęyþőäřđ şĥőřŧčūŧş",
- "help/support": "Ŝūppőřŧ",
- "history-container": {
- "drawer-tittle": "Ħįşŧőřy"
- },
- "history-wrapper": {
- "collapse": "Cőľľäpşę",
- "expand": "Ēχpäʼnđ",
- "icon-selected": "Ŝęľęčŧęđ Ēʼnŧřy",
- "icon-unselected": "Ńőřmäľ Ēʼnŧřy",
- "show-more": "Ŝĥőŵ mőřę",
- "today": "Ŧőđäy",
- "yesterday": "Ÿęşŧęřđäy"
- },
- "home": {
- "title": "Ħőmę"
- },
- "incidents": {
- "title": "Ĩʼnčįđęʼnŧ"
- },
- "infrastructure": {
- "subtitle": "Ůʼnđęřşŧäʼnđ yőūř įʼnƒřäşŧřūčŧūřę'ş ĥęäľŧĥ",
- "title": "Ĩʼnƒřäşŧřūčŧūřę"
- },
- "integrations": {
- "title": "Ĩʼnŧęģřäŧįőʼnş"
- },
- "k6": {
- "title": "Pęřƒőřmäʼnčę"
- },
- "kubernetes": {
- "title": "Ķūþęřʼnęŧęş"
- },
- "library-panels": {
- "subtitle": "Ŗęūşäþľę päʼnęľş ŧĥäŧ čäʼn þę äđđęđ ŧő mūľŧįpľę đäşĥþőäřđş",
- "title": "Ŀįþřäřy päʼnęľş"
- },
- "machine-learning": {
- "title": "Mäčĥįʼnę ľęäřʼnįʼnģ"
- },
- "manage-folder": {
- "subtitle": "Mäʼnäģę ƒőľđęř đäşĥþőäřđş äʼnđ pęřmįşşįőʼnş"
- },
- "migrate-to-cloud": {
- "subtitle": "Cőpy čőʼnƒįģūřäŧįőʼn ƒřőm yőūř şęľƒ-mäʼnäģęđ įʼnşŧäľľäŧįőʼn ŧő ä čľőūđ şŧäčĸ",
- "title": "Mįģřäŧę ŧő Ğřäƒäʼnä Cľőūđ"
- },
- "monitoring": {
- "subtitle": "Øūŧ-őƒ-ŧĥę-þőχ őþşęřväþįľįŧy şőľūŧįőʼnş",
- "title": "Øþşęřväþįľįŧy"
- },
- "new": {
- "title": "Ńęŵ"
- },
- "new-dashboard": {
- "title": "Ńęŵ đäşĥþőäřđ"
- },
- "new-folder": {
- "title": "Ńęŵ ƒőľđęř"
- },
- "oncall": {
- "title": "ØʼnCäľľ"
- },
- "org-settings": {
- "subtitle": "Mäʼnäģę přęƒęřęʼnčęş äčřőşş äʼn őřģäʼnįžäŧįőʼn",
- "title": "Đęƒäūľŧ přęƒęřęʼnčęş"
- },
- "playlists": {
- "subtitle": "Ğřőūpş őƒ đäşĥþőäřđş ŧĥäŧ äřę đįşpľäyęđ įʼn ä şęqūęʼnčę",
- "title": "Pľäyľįşŧş"
- },
- "plugins": {
- "subtitle": "Ēχŧęʼnđ ŧĥę Ğřäƒäʼnä ęχpęřįęʼnčę ŵįŧĥ pľūģįʼnş",
- "title": "Pľūģįʼnş"
- },
- "private-data-source-connections": {
- "subtitle": "Qūęřy đäŧä ŧĥäŧ ľįvęş ŵįŧĥįʼn ä şęčūřęđ ʼnęŧŵőřĸ ŵįŧĥőūŧ őpęʼnįʼnģ ŧĥę ʼnęŧŵőřĸ ŧő įʼnþőūʼnđ ŧř䃃įč ƒřőm Ğřäƒäʼnä Cľőūđ. Ŀęäřʼn mőřę įʼn őūř đőčş.",
- "title": "Přįväŧę đäŧä şőūřčę čőʼnʼnęčŧ"
- },
- "profile/notifications": {
- "title": "Ńőŧįƒįčäŧįőʼn ĥįşŧőřy"
- },
- "profile/password": {
- "title": "Cĥäʼnģę päşşŵőřđ"
- },
- "profile/settings": {
- "title": "Přőƒįľę"
- },
- "profiles": {
- "title": "Přőƒįľęş"
- },
- "public": {
- "title": "Pūþľįč đäşĥþőäřđş"
- },
- "recently-deleted": {
- "subtitle": "Åʼny įŧęmş ľįşŧęđ ĥęřę ƒőř mőřę ŧĥäʼn 30 đäyş ŵįľľ þę äūŧőmäŧįčäľľy đęľęŧęđ.",
- "title": "Ŗęčęʼnŧľy đęľęŧęđ"
- },
- "recorded-queries": {
- "title": "Ŗęčőřđęđ qūęřįęş"
- },
- "reporting": {
- "title": "Ŗępőřŧįʼnģ"
- },
- "scenes": {
- "title": "Ŝčęʼnęş"
- },
- "search": {
- "placeholderCommandPalette": "Ŝęäřčĥ őř ĵūmp ŧő..."
- },
- "search-dashboards": {
- "title": "Ŝęäřčĥ đäşĥþőäřđş"
- },
- "server-settings": {
- "subtitle": "Vįęŵ ŧĥę şęŧŧįʼnģş đęƒįʼnęđ įʼn yőūř Ğřäƒäʼnä čőʼnƒįģ",
- "title": "Ŝęŧŧįʼnģş"
- },
- "service-accounts": {
- "subtitle": "Ůşę şęřvįčę äččőūʼnŧş ŧő řūʼn äūŧőmäŧęđ ŵőřĸľőäđş įʼn Ğřäƒäʼnä",
- "title": "Ŝęřvįčę äččőūʼnŧş"
- },
- "setup-guide": {
- "title": "Ŝęŧūp ģūįđę"
- },
- "shared-dashboard": {
- "subtitle": "Mäʼnäģę yőūř őřģäʼnįžäŧįőʼn'ş ęχŧęřʼnäľľy şĥäřęđ đäşĥþőäřđş",
- "title": "Ŝĥäřęđ đäşĥþőäřđş"
- },
- "sign-out": {
- "title": "Ŝįģʼn őūŧ"
- },
- "slo": {
- "title": "ŜĿØ"
- },
- "snapshots": {
- "subtitle": "Ĩʼnŧęřäčŧįvę, pūþľįčäľľy äväįľäþľę, pőįʼnŧ-įʼn-ŧįmę řępřęşęʼnŧäŧįőʼnş őƒ đäşĥþőäřđş äʼnđ päʼnęľş",
- "title": "Ŝʼnäpşĥőŧş"
- },
- "starred": {
- "title": "Ŝŧäřřęđ"
- },
- "starred-empty": {
- "title": "Ÿőūř şŧäřřęđ đäşĥþőäřđş ŵįľľ äppęäř ĥęřę"
- },
- "statistics-and-licensing": {
- "title": "Ŝŧäŧįşŧįčş äʼnđ ľįčęʼnşįʼnģ"
- },
- "storage": {
- "subtitle": "Mäʼnäģę ƒįľę şŧőřäģę",
- "title": "Ŝŧőřäģę"
- },
- "support-bundles": {
- "subtitle": "Đőŵʼnľőäđ şūppőřŧ þūʼnđľęş",
- "title": "Ŝūppőřŧ þūʼnđľęş"
- },
- "synthetics": {
- "title": "Ŝyʼnŧĥęŧįčş"
- },
- "teams": {
- "subtitle": "Ğřőūpş őƒ ūşęřş ŧĥäŧ ĥävę čőmmőʼn đäşĥþőäřđ äʼnđ pęřmįşşįőʼn ʼnęęđş",
- "title": "Ŧęämş"
- },
- "testing-and-synthetics": {
- "subtitle": "Øpŧįmįžę pęřƒőřmäʼnčę ŵįŧĥ ĸ6 äʼnđ Ŝyʼnŧĥęŧįč Mőʼnįŧőřįʼnģ įʼnşįģĥŧş",
- "title": "Ŧęşŧįʼnģ & şyʼnŧĥęŧįčş"
- },
- "upgrading": {
- "title": "Ŝŧäŧş äʼnđ ľįčęʼnşę"
- },
- "users": {
- "subtitle": "Ĩʼnvįŧę äʼnđ äşşįģʼn řőľęş ŧő ūşęřş",
- "title": "Ůşęřş"
- }
- },
- "navigation": {
- "invite-user": {
- "invite-button": "Ĩʼnvįŧę",
- "invite-tooltip": "Ĩʼnvįŧę ʼnęŵ męmþęř"
- },
- "item": {
- "add-bookmark": "Åđđ ŧő ßőőĸmäřĸş",
- "remove-bookmark": "Ŗęmővę ƒřőm ßőőĸmäřĸş"
- },
- "kiosk": {
- "tv-alert": "Přęşş ĒŜC ŧő ęχįŧ ĸįőşĸ mőđę"
- },
- "megamenu": {
- "close": "Cľőşę męʼnū",
- "dock": "Đőčĸ męʼnū",
- "list-label": "Ńävįģäŧįőʼn",
- "open": "Øpęʼn męʼnū",
- "undock": "Ůʼnđőčĸ męʼnū"
- },
- "rss-button": "Ŀäŧęşŧ ƒřőm ŧĥę þľőģ"
- },
- "news": {
- "drawer": {
- "close": "Cľőşę Đřäŵęř"
- },
- "title": "Ŀäŧęşŧ ƒřőm ŧĥę þľőģ"
- },
- "notifications": {
- "empty-state": {
- "description": "Ńőŧįƒįčäŧįőʼnş yőū ĥävę řęčęįvęđ ŵįľľ äppęäř ĥęřę",
- "title": "Ÿőū'řę äľľ čäūģĥŧ ūp!"
- },
- "starred-dashboard": "Đäşĥþőäřđ şŧäřřęđ",
- "unstarred-dashboard": "Đäşĥþőäřđ ūʼnşŧäřřęđ"
- },
- "oauth": {
- "form": {
- "server-discovery-action-button": "Ēʼnŧęř ØpęʼnĨĐ Cőʼnʼnęčŧ Đįşčővęřy ŮŖĿ",
- "server-discovery-modal-close": "Cľőşę",
- "server-discovery-modal-loading": "Ŀőäđįʼnģ...",
- "server-discovery-modal-submit": "Ŝūþmįŧ"
- },
- "login": {
- "error": "Ŀőģįʼn přővįđęř đęʼnįęđ ľőģįʼn řęqūęşŧ"
- }
- },
- "panel": {
- "header-menu": {
- "copy": "Cőpy",
- "create-library-panel": "Cřęäŧę ľįþřäřy päʼnęľ",
- "duplicate": "Đūpľįčäŧę",
- "edit": "Ēđįŧ",
- "explore": "Ēχpľőřę",
- "get-help": "Ğęŧ ĥęľp",
- "hide-legend": "Ħįđę ľęģęʼnđ",
- "inspect": "Ĩʼnşpęčŧ",
- "inspect-data": "Đäŧä",
- "inspect-json": "Päʼnęľ ĴŜØŃ",
- "more": "Mőřę...",
- "new-alert-rule": "Ńęŵ äľęřŧ řūľę",
- "query": "Qūęřy",
- "remove": "Ŗęmővę",
- "replace-library-panel": "Ŗępľäčę ľįþřäřy päʼnęľ",
- "share": "Ŝĥäřę",
- "show-legend": "Ŝĥőŵ ľęģęʼnđ",
- "unlink-library-panel": "Ůʼnľįʼnĸ ľįþřäřy päʼnęľ",
- "view": "Vįęŵ"
- }
- },
- "panel-search": {
- "no-matches": "Ńő mäŧčĥęş ƒőūʼnđ",
- "unsupported-layout": "Ůʼnşūppőřŧęđ ľäyőūŧ"
- },
- "panel-type-filter": {
- "clear-button": "Cľęäř ŧypęş"
- },
- "playlist-edit": {
- "error-prefix": "Ēřřőř ľőäđįʼnģ pľäyľįşŧ:",
- "form": {
- "add-tag-label": "Åđđ þy ŧäģ",
- "add-tag-placeholder": "Ŝęľęčŧ ä ŧäģ",
- "add-title-label": "Åđđ þy ŧįŧľę",
- "cancel": "Cäʼnčęľ",
- "heading": "Åđđ đäşĥþőäřđş",
- "interval-label": "Ĩʼnŧęřväľ",
- "interval-placeholder": "5m",
- "interval-required": "Ĩʼnŧęřväľ įş řęqūįřęđ",
- "name-label": "Ńämę",
- "name-placeholder": "Ńämę",
- "name-required": "Ńämę įş řęqūįřęđ",
- "save": "Ŝävę",
- "table-delete": "Đęľęŧę pľäyľįşŧ įŧęm",
- "table-drag": "Đřäģ äʼnđ đřőp ŧő řęőřđęř",
- "table-empty": "Pľäyľįşŧ įş ęmpŧy. Åđđ đäşĥþőäřđş þęľőŵ.",
- "table-heading": "Đäşĥþőäřđş"
- },
- "sub-title": "Å pľäyľįşŧ řőŧäŧęş ŧĥřőūģĥ ä přę-şęľęčŧęđ ľįşŧ őƒ đäşĥþőäřđş. Å pľäyľįşŧ čäʼn þę ä ģřęäŧ ŵäy ŧő þūįľđ şįŧūäŧįőʼnäľ äŵäřęʼnęşş, őř ĵūşŧ şĥőŵ őƒƒ yőūř męŧřįčş ŧő yőūř ŧęäm őř vįşįŧőřş.",
- "title": "Ēđįŧ pľäyľįşŧ"
- },
- "playlist-page": {
- "card": {
- "delete": "Đęľęŧę pľäyľįşŧ",
- "edit": "Ēđįŧ pľäyľįşŧ",
- "start": "Ŝŧäřŧ pľäyľįşŧ",
- "tooltip": "Ŝĥäřę pľäyľįşŧ"
- },
- "create-button": {
- "title": "Ńęŵ pľäyľįşŧ"
- },
- "delete-modal": {
- "body": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő đęľęŧę {{name}} pľäyľįşŧ?",
- "confirm-text": "Đęľęŧę"
- },
- "empty": {
- "button": "Cřęäŧę pľäyľįşŧ",
- "pro-tip": "Ÿőū čäʼn ūşę pľäyľįşŧş ŧő čyčľę đäşĥþőäřđş őʼn ŦVş ŵįŧĥőūŧ ūşęř čőʼnŧřőľ. <2>Ŀęäřʼn mőřę2>",
- "title": "Ŧĥęřę äřę ʼnő pľäyľįşŧş čřęäŧęđ yęŧ"
- }
- },
- "playlists": {
- "empty-state": {
- "message": "Ńő pľäyľįşŧş ƒőūʼnđ"
- }
- },
- "plugins": {
- "catalog": {
- "no-updates-available": "Ńő ūpđäŧęş äväįľäþľę",
- "update-all": {
- "all-plugins-updated": "Åľľ pľūģįʼnş ūpđäŧęđ!",
- "available-header": "Åväįľäþľę",
- "button": "Ůpđäŧę äľľ ({{length}})",
- "cloud-update-message": "* Ĩŧ mäy ŧäĸę ä ƒęŵ mįʼnūŧęş ƒőř ŧĥę pľūģįʼnş ŧő þę äväįľäþľę ƒőř ūşäģę.",
- "error": "Ēřřőř ūpđäŧįʼnģ pľūģįʼn:",
- "error-status-text": "ƒäįľęđ - şęę ęřřőř męşşäģęş",
- "header": "Ŧĥę ƒőľľőŵįʼnģ pľūģįʼnş ĥävę ūpđäŧę äväįľäþľę",
- "installed-header": "Ĩʼnşŧäľľęđ",
- "modal-confirmation": "Ůpđäŧę",
- "modal-dismiss": "Cľőşę",
- "modal-in-progress": "Ůpđäŧįʼnģ...",
- "modal-title": "Ůpđäŧę Pľūģįʼnş",
- "name-header": "Ńämę",
- "update-header": "Ůpđäŧę",
- "update-status-text": "pľūģįʼnş ūpđäŧęđ"
- },
- "versions": {
- "confirmation-text-1": "Åřę yőū řęäľľy şūřę yőū ŵäʼnŧ ŧő đőŵʼnģřäđę ŧő vęřşįőʼn",
- "confirmation-text-2": "Ÿőū şĥőūľđ ʼnőřmäľľy ʼnőŧ þę đőįʼnģ ŧĥįş",
- "downgrade-confirm": "Đőŵʼnģřäđę",
- "downgrade-title": "Đőŵʼnģřäđę pľūģįʼn vęřşįőʼn"
- }
- },
- "details": {
- "connections-tab": {
- "description": "Ÿőū čūřřęʼnŧľy ĥävę ŧĥę ƒőľľőŵįʼnģ đäŧä şőūřčęş čőʼnƒįģūřęđ ƒőř {{pluginName}}, čľįčĸ ä ŧįľę ŧő vįęŵ ŧĥę čőʼnƒįģūřäŧįőʼn đęŧäįľş. Ÿőū čäʼn ƒįʼnđ äľľ őƒ yőūř đäŧä şőūřčę čőʼnʼnęčŧįőʼnş įʼn <4><0>Cőʼnʼnęčŧįőʼnş0> - <3>Đäŧä şőūřčęş3>.4>"
- },
- "labels": {
- "contactGrafanaLabs": "Cőʼnŧäčŧ Ğřäƒäʼnä Ŀäþş",
- "customLinks": "Cūşŧőm ľįʼnĸş ",
- "customLinksTooltip": "Ŧĥęşę ľįʼnĸş äřę přővįđęđ þy ŧĥę pľūģįʼn đęvęľőpęř ŧő őƒƒęř äđđįŧįőʼnäľ, đęvęľőpęř-şpęčįƒįč řęşőūřčęş äʼnđ įʼnƒőřmäŧįőʼn",
- "dependencies": "Đępęʼnđęʼnčįęş",
- "documentation": "Đőčūmęʼnŧäŧįőʼn",
- "downloads": "Đőŵʼnľőäđş",
- "from": "Fřőm",
- "installedVersion": "Ĩʼnşŧäľľęđ Vęřşįőʼn",
- "lastCommitDate": "Ŀäşŧ čőmmįŧ đäŧę:",
- "latestVersion": "Ŀäŧęşŧ Vęřşįőʼn",
- "license": "Ŀįčęʼnşę",
- "raiseAnIssue": "Ŗäįşę äʼn įşşūę",
- "reportAbuse": "Ŗępőřŧ ä čőʼnčęřʼn ",
- "reportAbuseTooltip": "Ŗępőřŧ įşşūęş řęľäŧęđ ŧő mäľįčįőūş őř ĥäřmƒūľ pľūģįʼnş đįřęčŧľy ŧő Ğřäƒäʼnä Ŀäþş.",
- "repository": "Ŗępőşįŧőřy",
- "signature": "Ŝįģʼnäŧūřę",
- "status": "Ŝŧäŧūş",
- "updatedAt": "Ŀäşŧ ūpđäŧęđ:"
- },
- "modal": {
- "cancel": "Cäʼnčęľ",
- "copyEmail": "Cőpy ęmäįľ äđđřęşş",
- "description": "Ŧĥįş ƒęäŧūřę įş ƒőř řępőřŧįʼnģ mäľįčįőūş őř ĥäřmƒūľ þęĥävįőūř ŵįŧĥįʼn pľūģįʼnş. Főř pľūģįʼn čőʼnčęřʼnş, ęmäįľ ūş äŧ: ",
- "node": "Ńőŧę: Főř ģęʼnęřäľ pľūģįʼn įşşūęş ľįĸę þūģş őř ƒęäŧūřę řęqūęşŧş, pľęäşę čőʼnŧäčŧ ŧĥę pľūģįʼn äūŧĥőř ūşįʼnģ ŧĥę přővįđęđ ľįʼnĸş. ",
- "title": "Ŗępőřŧ ä pľūģįʼn čőʼnčęřʼn"
- }
- },
- "empty-state": {
- "message": "Ńő pľūģįʼnş ƒőūʼnđ"
- },
- "filter": {
- "disabled": "Ŧĥįş ƒįľŧęř ĥäş þęęʼn đįşäþľęđ þęčäūşę ŧĥę Ğřäƒäʼnä şęřvęř čäʼnʼnőŧ äččęşş ģřäƒäʼnä.čőm",
- "sort": "Ŝőřŧ",
- "sort-list": "Ŝőřŧ Pľūģįʼnş Ŀįşŧ",
- "state": "Ŝŧäŧę"
- },
- "plugin-help": {
- "error": "Åʼn ęřřőř őččūřřęđ ŵĥęʼn ľőäđįʼnģ ĥęľp.",
- "not-found": "Ńő qūęřy ĥęľp čőūľđ þę ƒőūʼnđ."
- }
- },
- "profile": {
- "change-password": {
- "cancel-button": "Cäʼnčęľ",
- "cannot-change-password-message": "Päşşŵőřđ čäʼnʼnőŧ þę čĥäʼnģęđ ĥęřę.",
- "change-password-button": "Cĥäʼnģę Päşşŵőřđ",
- "confirm-password-label": "Cőʼnƒįřm päşşŵőřđ",
- "confirm-password-required": "Ńęŵ päşşŵőřđ čőʼnƒįřmäŧįőʼn įş řęqūįřęđ",
- "ldap-auth-proxy-message": "Ÿőū čäʼnʼnőŧ čĥäʼnģę päşşŵőřđ ŵĥęʼn şįģʼnęđ įʼn ŵįŧĥ ĿĐÅP őř äūŧĥ přőχy.",
- "new-password-label": "Ńęŵ päşşŵőřđ",
- "new-password-required": "Ńęŵ päşşŵőřđ įş řęqūįřęđ",
- "new-password-same-as-old": "Ńęŵ päşşŵőřđ čäʼn'ŧ þę ŧĥę şämę äş ŧĥę őľđ őʼnę.",
- "old-password-label": "Øľđ päşşŵőřđ",
- "old-password-required": "Øľđ päşşŵőřđ įş řęqūįřęđ",
- "passwords-must-match": "Päşşŵőřđş mūşŧ mäŧčĥ",
- "strong-password-validation-register": "Päşşŵőřđ đőęş ʼnőŧ čőmpľy ŵįŧĥ ŧĥę şŧřőʼnģ päşşŵőřđ pőľįčy"
- }
- },
- "public-dashboard": {
- "acknowledgment-checkboxes": {
- "ack-title": "ßęƒőřę yőū mäĸę ŧĥę đäşĥþőäřđ pūþľįč, äčĸʼnőŵľęđģę ŧĥę ƒőľľőŵįʼnģ:",
- "data-src-ack-desc": "Pūþľįşĥįʼnģ čūřřęʼnŧľy őʼnľy ŵőřĸş ŵįŧĥ ä şūþşęŧ őƒ đäŧä şőūřčęş*",
- "data-src-ack-tooltip": "Ŀęäřʼn mőřę äþőūŧ pūþľįč đäŧäşőūřčęş",
- "public-ack-desc": "Ÿőūř ęʼnŧįřę đäşĥþőäřđ ŵįľľ þę pūþľįč*",
- "public-ack-tooltip": "Ŀęäřʼn mőřę äþőūŧ pūþľįč đäşĥþőäřđş",
- "usage-ack-desc": "Mäĸįʼnģ ä đäşĥþőäřđ pūþľįč ŵįľľ čäūşę qūęřįęş ŧő řūʼn ęäčĥ ŧįmę įŧ įş vįęŵęđ, ŵĥįčĥ mäy įʼnčřęäşę čőşŧş*",
- "usage-ack-desc-tooltip": "Ŀęäřʼn mőřę äþőūŧ qūęřy čäčĥįʼnģ"
- },
- "config": {
- "can-view-dashboard-radio-button-label": "Cäʼn vįęŵ đäşĥþőäřđ",
- "copy-button": "Cőpy",
- "dashboard-url-field-label": "Đäşĥþőäřđ ŮŖĿ",
- "email-share-type-option-label": "Øʼnľy şpęčįƒįęđ pęőpľę",
- "pause-sharing-dashboard-label": "Päūşę şĥäřįʼnģ đäşĥþőäřđ",
- "public-share-type-option-label": "Åʼnyőʼnę ŵįŧĥ ä ľįʼnĸ",
- "revoke-public-URL-button": "Ŗęvőĸę pūþľįč ŮŖĿ",
- "revoke-public-URL-button-title": "Ŗęvőĸę pūþľįč ŮŖĿ",
- "settings-title": "Ŝęŧŧįʼnģş"
- },
- "configuration": {
- "display-annotations-description": "Přęşęʼnŧ äʼnʼnőŧäŧįőʼnş őʼn ŧĥįş đäşĥþőäřđ",
- "display-annotations-label": "Đįşpľäy äʼnʼnőŧäŧįőʼnş",
- "enable-time-range-description": "Åľľőŵ pęőpľę ŧő čĥäʼnģę ŧįmę řäʼnģę",
- "enable-time-range-label": "Ēʼnäþľę ŧįmę řäʼnģę",
- "settings-label": "Ŝęŧŧįʼnģş",
- "success-pause": "Ÿőūř đäşĥþőäřđ äččęşş ĥäş þęęʼn päūşęđ",
- "success-resume": "Ÿőūř đäşĥþőäřđ äččęşş ĥäş þęęʼn řęşūmęđ",
- "success-update": "Ŝęŧŧįʼnģş ĥävę þęęʼn şūččęşşƒūľľy ūpđäŧęđ",
- "success-update-old": "Pūþľįč đäşĥþőäřđ ūpđäŧęđ!",
- "time-range-label": "Ŧįmę řäʼnģę",
- "time-range-tooltip": "Ŧĥę şĥäřęđ đäşĥþőäřđ ūşęş ŧĥę đęƒäūľŧ ŧįmę řäʼnģę şęŧŧįʼnģş őƒ ŧĥę đäşĥþőäřđ"
- },
- "create-page": {
- "generate-public-url-button": "Ğęʼnęřäŧę pūþľįč ŮŖĿ",
- "unsupported-features-desc": "Cūřřęʼnŧľy, ŵę đőʼn’ŧ şūppőřŧ ŧęmpľäŧę väřįäþľęş őř ƒřőʼnŧęʼnđ đäŧä şőūřčęş",
- "welcome-title": "Ŵęľčőmę ŧő pūþľįč đäşĥþőäřđş!"
- },
- "delete-modal": {
- "revoke-body-text": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő řęvőĸę ŧĥįş ŮŖĿ? Ŧĥę đäşĥþőäřđ ŵįľľ ʼnő ľőʼnģęř þę pūþľįč.",
- "revoke-title": "Ŗęvőĸę pūþľįč ŮŖĿ"
- },
- "email-sharing": {
- "accept-button": "Åččępŧ",
- "alert-text": "Ŝĥäřįʼnģ đäşĥþőäřđş þy ęmäįľ įş þįľľęđ pęř ūşęř ƒőř ŧĥę đūřäŧįőʼn őƒ ŧĥę 30-đäy ŧőĸęʼn, řęģäřđľęşş őƒ ĥőŵ mäʼny đäşĥþőäřđş äřę şĥäřęđ. ßįľľįʼnģ şŧőpş äƒŧęř 30 đäyş ūʼnľęşş yőū řęʼnęŵ ŧĥę ŧőĸęʼn.",
- "bill-ack": "Ĩ ūʼnđęřşŧäʼnđ ŧĥäŧ äđđįʼnģ ūşęřş řęqūįřęş päymęʼnŧ.*",
- "cancel-button": "Cäʼnčęľ",
- "input-invalid-email-text": "Ĩʼnväľįđ ęmäįľ",
- "input-required-email-text": "Ēmäįľ įş řęqūįřęđ",
- "invite-button": "Ĩʼnvįŧę",
- "invite-field-desc": "Ĩʼnvįŧę pęőpľę þy ęmäįľ",
- "invite-field-label": "Ĩʼnvįŧę",
- "learn-more-button": "Ŀęäřʼn mőřę",
- "recipient-email-placeholder": "Ēmäįľ",
- "recipient-invalid-email-text": "Ĩʼnväľįđ ęmäįľ",
- "recipient-invitation-button": "Ĩʼnvįŧę",
- "recipient-invitation-description": "Ĩʼnvįŧę şőmęőʼnę þy ęmäįľ",
- "recipient-invitation-tooltip": "Ŧĥįş đäşĥþőäřđ čőʼnŧäįʼnş şęʼnşįŧįvę đäŧä. ßy ūşįʼnģ ŧĥįş ƒęäŧūřę yőū ŵįľľ þę şĥäřįʼnģ ŵįŧĥ ęχŧęřʼnäľ pęőpľę.",
- "recipient-list-description": "Øʼnľy pęőpľę yőū'vę đįřęčŧľy įʼnvįŧęđ čäʼn äččęşş ŧĥįş đäşĥþőäřđ",
- "recipient-list-title": "Pęőpľę ŵįŧĥ äččęşş",
- "recipient-required-email-text": "Ēmäįľ įş řęqūįřęđ",
- "resend-button": "Ŗęşęʼnđ",
- "resend-button-title": "Ŗęşęʼnđ",
- "resend-invite-label": "Ŗęşęʼnđ įʼnvįŧę",
- "revoke-access-label": "Ŗęvőĸę äččęşş",
- "revoke-button": "Ŗęvőĸę",
- "revoke-button-title": "Ŗęvőĸę",
- "success-creation": "Ÿőūř đäşĥþőäřđ įş řęäđy ƒőř ęχŧęřʼnäľ şĥäřįʼnģ",
- "success-share-type-change": "Đäşĥþőäřđ äččęşş ūpđäŧęđ: Øʼnľy şpęčįƒįč pęőpľę čäʼn ʼnőŵ äččęşş ŵįŧĥ ŧĥę ľįʼnĸ"
- },
- "modal-alerts": {
- "no-upsert-perm-alert-desc": "Cőʼnŧäčŧ yőūř äđmįʼn ŧő ģęŧ pęřmįşşįőʼn ŧő {{mode}} pūþľįč đäşĥþőäřđş",
- "no-upsert-perm-alert-title": "Ÿőū đőʼn’ŧ ĥävę pęřmįşşįőʼn ŧő {{ mode }} ä pūþľįč đäşĥþőäřđ",
- "save-dashboard-changes-alert-title": "Pľęäşę şävę yőūř đäşĥþőäřđ čĥäʼnģęş þęƒőřę ūpđäŧįʼnģ ŧĥę pūþľįč čőʼnƒįģūřäŧįőʼn",
- "unsupport-data-source-alert-readmore-link": "Ŗęäđ mőřę äþőūŧ şūppőřŧęđ đäŧä şőūřčęş",
- "unsupported-data-source-alert-desc": "Ŧĥęřę äřę đäŧä şőūřčęş įʼn ŧĥįş đäşĥþőäřđ ŧĥäŧ äřę ūʼnşūppőřŧęđ ƒőř pūþľįč đäşĥþőäřđş. Päʼnęľş ŧĥäŧ ūşę ŧĥęşę đäŧä şőūřčęş mäy ʼnőŧ ƒūʼnčŧįőʼn přőpęřľy: {{unsupportedDataSources}}.",
- "unsupported-data-source-alert-title": "Ůʼnşūppőřŧęđ đäŧä şőūřčęş",
- "unsupported-template-variable-alert-desc": "Ŧĥįş pūþľįč đäşĥþőäřđ mäy ʼnőŧ ŵőřĸ şįʼnčę įŧ ūşęş ŧęmpľäŧę väřįäþľęş",
- "unsupported-template-variable-alert-title": "Ŧęmpľäŧę väřįäþľęş äřę ʼnőŧ şūppőřŧęđ"
- },
- "public-sharing": {
- "accept-button": "Åččępŧ",
- "alert-text": "Ŝĥäřįʼnģ ŧĥįş đäşĥþőäřđ ęχŧęřʼnäľľy mäĸęş įŧ ęʼnŧįřęľy äččęşşįþľę ŧő äʼnyőʼnę ŵįŧĥ ŧĥę ľįʼnĸ.",
- "cancel-button": "Cäʼnčęľ",
- "learn-more-button": "Ŀęäřʼn mőřę",
- "public-ack": "Ĩ ūʼnđęřşŧäʼnđ ŧĥäŧ ŧĥįş ęʼnŧįřę đäşĥþőäřđ ŵįľľ þę pūþľįč.*",
- "success-creation": "Ÿőūř đäşĥþőäřđ įş ʼnőŵ pūþľįčľy äččęşşįþľę",
- "success-share-type-change": "Đäşĥþőäřđ äččęşş ūpđäŧęđ: Åʼnyőʼnę ŵįŧĥ ŧĥę ľįʼnĸ čäʼn ʼnőŵ äččęşş"
- },
- "settings-bar-header": {
- "collapse-settings-tooltip": "Cőľľäpşę şęŧŧįʼnģş",
- "expand-settings-tooltip": "Ēχpäʼnđ şęŧŧįʼnģş"
- },
- "settings-configuration": {
- "default-time-range-label": "Đęƒäūľŧ ŧįmę řäʼnģę",
- "default-time-range-label-desc": "Ŧĥę pūþľįč đäşĥþőäřđ ūşęş ŧĥę đęƒäūľŧ ŧįmę řäʼnģę şęŧŧįʼnģş őƒ ŧĥę đäşĥþőäřđ",
- "show-annotations-label": "Ŝĥőŵ äʼnʼnőŧäŧįőʼnş",
- "show-annotations-label-desc": "Ŝĥőŵ äʼnʼnőŧäŧįőʼnş őʼn pūþľįč đäşĥþőäřđ",
- "time-range-picker-label": "Ŧįmę řäʼnģę pįčĸęř ęʼnäþľęđ",
- "time-range-picker-label-desc": "Åľľőŵ vįęŵęřş ŧő čĥäʼnģę ŧįmę řäʼnģę"
- },
- "settings-summary": {
- "annotations-hide-text": "Åʼnʼnőŧäŧįőʼnş = ĥįđę",
- "annotations-show-text": "Åʼnʼnőŧäŧįőʼnş = şĥőŵ",
- "time-range-picker-disabled-text": "Ŧįmę řäʼnģę pįčĸęř = đįşäþľęđ",
- "time-range-picker-enabled-text": "Ŧįmę řäʼnģę pįčĸęř = ęʼnäþľęđ",
- "time-range-text": "Ŧįmę řäʼnģę = "
- },
- "share": {
- "success-delete": "Ÿőūř đäşĥþőäřđ įş ʼnő ľőʼnģęř şĥäřęäþľę",
- "success-delete-old": "Pūþľįč đäşĥþőäřđ đęľęŧęđ!"
- },
- "share-configuration": {
- "share-type-label": "Ŀįʼnĸ äččęşş"
- },
- "share-externally": {
- "copy-link-button": "Cőpy ęχŧęřʼnäľ ľįʼnĸ",
- "email-share-type-option-description": "Øʼnľy pęőpľę ŵįŧĥ ŧĥę ľįʼnĸ čäʼn äččęşş đäşĥþőäřđ",
- "email-share-type-option-label": "Øʼnľy şpęčįƒįč pęőpľę",
- "no-upsert-perm-alert-desc": "Cőʼnŧäčŧ yőūř äđmįʼn ŧő ģęŧ pęřmįşşįőʼn ŧő {{mode}} şĥäřęđ đäşĥþőäřđş",
- "no-upsert-perm-alert-title": "Ÿőū đőʼn’ŧ ĥävę pęřmįşşįőʼn ŧő {{ mode }} ä şĥäřęđ đäşĥþőäřđ",
- "pause-access-button": "Päūşę äččęşş",
- "pause-access-tooltip": "Päūşįʼnģ ŵįľľ ŧęmpőřäřįľy đįşäþľę äččęşş ŧő ŧĥįş đäşĥþőäřđ ƒőř äľľ ūşęřş",
- "public-share-type-option-description": "Åʼnyőʼnę ŵįŧĥ ŧĥę ľįʼnĸ čäʼn äččęşş đäşĥþőäřđ",
- "public-share-type-option-label": "Åʼnyőʼnę ŵįŧĥ ŧĥę ľįʼnĸ",
- "resume-access-button": "Ŗęşūmę äččęşş",
- "revoke-access-button": "Ŗęvőĸę äččęşş",
- "revoke-access-description": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő řęvőĸę ŧĥįş äččęşş? Ŧĥę đäşĥþőäřđ čäʼn ʼnő ľőʼnģęř þę şĥäřęđ.",
- "unsupported-data-source-alert-desc": "Ŧĥęřę äřę đäŧä şőūřčęş įʼn ŧĥįş đäşĥþőäřđ ŧĥäŧ äřę ūʼnşūppőřŧęđ ƒőř şĥäřęđ đäşĥþőäřđş. Päʼnęľş ŧĥäŧ ūşę ŧĥęşę đäŧä şőūřčęş mäy ʼnőŧ ƒūʼnčŧįőʼn přőpęřľy: {{unsupportedDataSources}}."
- },
- "sharing": {
- "success-creation": "Đäşĥþőäřđ įş pūþľįč!"
- }
- },
- "public-dashboard-list": {
- "button": {
- "config-button-tooltip": "Cőʼnƒįģūřę pūþľįč đäşĥþőäřđ",
- "revoke-button-text": "Ŗęvőĸę pūþľįč ŮŖĿ",
- "revoke-button-tooltip": "Ŗęvőĸę pūþľįč đäşĥþőäřđ ŮŖĿ",
- "view-button-tooltip": "Vįęŵ pūþľįč đäşĥþőäřđ"
- },
- "empty-state": {
- "message": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny pūþľįč đäşĥþőäřđş yęŧ",
- "more-info": "Cřęäŧę ä pūþľįč đäşĥþőäřđ ƒřőm äʼny ęχįşŧįʼnģ đäşĥþőäřđ ŧĥřőūģĥ ŧĥę <1>Ŝĥäřę1> mőđäľ. <4>Ŀęäřʼn mőřę4>"
- },
- "toggle": {
- "pause-sharing-toggle-text": "Päūşę şĥäřįʼnģ"
- }
- },
- "public-dashboard-users-access-list": {
- "dashboard-modal": {
- "external-link": "Ēχŧęřʼnäľ ľįʼnĸ",
- "loading-text": "Ŀőäđįʼnģ...",
- "open-dashboard-list-text": "Øpęʼn đäşĥþőäřđş ľįşŧ",
- "public-dashboard-link": "Pūþľįč đäşĥþőäřđ ŮŖĿ",
- "public-dashboard-setting": "Pūþľįč đäşĥþőäřđ şęŧŧįʼnģş",
- "sharing-setting": "Ŝĥäřįʼnģ şęŧŧįʼnģş"
- },
- "delete-user-modal": {
- "delete-user-button-text": "Đęľęŧę ūşęř",
- "delete-user-cancel-button": "Cäʼnčęľ",
- "delete-user-revoke-access-button": "Ŗęvőĸę äččęşş",
- "revoke-access-title": "Ŗęvőĸę äččęşş",
- "revoke-user-access-modal-desc-line1": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő řęvőĸę äččęşş ƒőř {{email}}?",
- "revoke-user-access-modal-desc-line2": "Ŧĥįş äčŧįőʼn ŵįľľ įmmęđįäŧęľy řęvőĸę {{email}}&äpőş;ş äččęşş ŧő äľľ pūþľįč đäşĥþőäřđş."
- },
- "delete-user-shared-dashboards-modal": {
- "revoke-user-access-modal-desc-line2": "Ŧĥįş äčŧįőʼn ŵįľľ įmmęđįäŧęľy řęvőĸę {{email}}&äpőş;ş äččęşş ŧő äľľ şĥäřęđ đäşĥþőäřđş."
- },
- "modal": {
- "dashboard-modal-title": "Pūþľįč đäşĥþőäřđş",
- "shared-dashboard-modal-title": "Ŝĥäřęđ đäşĥþőäřđş"
- },
- "table-body": {
- "dashboard-count_one": "{{count}} đäşĥþőäřđş",
- "dashboard-count_other": "{{count}} đäşĥþőäřđş"
- },
- "table-header": {
- "activated-label": "Åčŧįväŧęđ",
- "activated-tooltip": "Ēäřľįęşŧ ŧįmę ūşęř ĥäş þęęʼn äʼn äčŧįvę ūşęř ŧő ä đäşĥþőäřđ",
- "email-label": "Ēmäįľ",
- "last-active-label": "Ŀäşŧ äčŧįvę",
- "origin-label": "Øřįģįʼn",
- "role-label": "Ŗőľę"
- }
- },
- "query-operation": {
- "header": {
- "collapse-row": "Cőľľäpşę qūęřy řőŵ",
- "datasource-help": "Ŝĥőŵ đäŧä şőūřčę ĥęľp",
- "drag-and-drop": "Đřäģ äʼnđ đřőp ŧő řęőřđęř",
- "duplicate-query": "Đūpľįčäŧę qūęřy",
- "expand-row": "Ēχpäʼnđ qūęřy řőŵ",
- "hide-response": "Ħįđę řęşpőʼnşę",
- "remove-query": "Ŗęmővę qūęřy",
- "show-response": "Ŝĥőŵ řęşpőʼnşę",
- "toggle-edit-mode": "Ŧőģģľę ŧęχŧ ęđįŧ mőđę"
- },
- "query-editor-not-exported": "Đäŧä şőūřčę pľūģįʼn đőęş ʼnőŧ ęχpőřŧ äʼny Qūęřy Ēđįŧőř čőmpőʼnęʼnŧ"
- },
- "recently-deleted": {
- "buttons": {
- "delete": "Đęľęŧę pęřmäʼnęʼnŧľy",
- "restore": "Ŗęşŧőřę"
- },
- "page": {
- "no-deleted-dashboards": "Ÿőū ĥävęʼn'ŧ đęľęŧęđ äʼny đäşĥþőäřđş řęčęʼnŧľy.",
- "no-deleted-dashboards-text": "Ŵĥęʼn yőū đęľęŧę ä đäşĥþőäřđ, įŧ ŵįľľ äppęäř ĥęřę ƒőř 30 đäyş þęƒőřę þęįʼnģ pęřmäʼnęʼnŧľy đęľęŧęđ. Ÿőūř őřģäʼnįžäŧįőʼn äđmįʼnįşŧřäŧőř čäʼn řęşŧőřę řęčęʼnŧľy-đęľęŧęđ đäşĥþőäřđş.",
- "no-search-result": "Ńő řęşūľŧş ƒőūʼnđ ƒőř yőūř qūęřy"
- },
- "permanently-delete-modal": {
- "confirm-text": "Đęľęŧę",
- "delete-button": "Đęľęŧę",
- "delete-loading": "Đęľęŧįʼnģ...",
- "text_one": "Ŧĥįş äčŧįőʼn ŵįľľ đęľęŧę {{numberOfDashboards}} đäşĥþőäřđş.",
- "text_other": "Ŧĥįş äčŧįőʼn ŵįľľ đęľęŧę {{numberOfDashboards}} đäşĥþőäřđş.",
- "title": "Pęřmäʼnęʼnŧľy Đęľęŧę Đäşĥþőäřđş"
- },
- "restore-modal": {
- "folder-picker-text_one": "Pľęäşę čĥőőşę ä ƒőľđęř ŵĥęřę yőūř đäşĥþőäřđş ŵįľľ þę řęşŧőřęđ.",
- "folder-picker-text_other": "Pľęäşę čĥőőşę ä ƒőľđęř ŵĥęřę yőūř đäşĥþőäřđş ŵįľľ þę řęşŧőřęđ.",
- "restore-button": "Ŗęşŧőřę",
- "restore-loading": "Ŗęşŧőřįʼnģ...",
- "text_one": "Ŧĥįş äčŧįőʼn ŵįľľ řęşŧőřę {{numberOfDashboards}} đäşĥþőäřđş.",
- "text_other": "Ŧĥįş äčŧįőʼn ŵįľľ řęşŧőřę {{numberOfDashboards}} đäşĥþőäřđş.",
- "title": "Ŗęşŧőřę Đäşĥþőäřđş"
- }
- },
- "recentlyDeleted": {
- "filter": {
- "placeholder": "Ŝęäřčĥ ƒőř đäşĥþőäřđş"
- }
- },
- "reduce": {
- "strictMode": {
- "description": "Ŵĥęʼn <1>Ŗęđūčę Ŝŧřįčŧ mőđę1> įş ūşęđ, ŧĥę <3>ƒįľľ(ʼnūľľ)3> ƒūʼnčŧįőʼn (ĨʼnƒľūχQĿ) ŵįľľ řęşūľŧ įʼn <6>ŃäŃ6>. <9>Ŝęę ŧĥę đőčūmęʼnŧäŧįőʼn ƒőř mőřę đęŧäįľş.9>",
- "title": "Ŝŧřįčŧ Mőđę ßęĥävįőūř"
- }
- },
- "refresh-picker": {
- "aria-label": {
- "choose-interval": "Åūŧő řęƒřęşĥ ŧūřʼnęđ őƒƒ. Cĥőőşę řęƒřęşĥ ŧįmę įʼnŧęřväľ",
- "duration-selected": "Cĥőőşę řęƒřęşĥ ŧįmę įʼnŧęřväľ ŵįŧĥ čūřřęʼnŧ įʼnŧęřväľ {{durationAriaLabel}} şęľęčŧęđ"
- },
- "auto-option": {
- "aria-label": "",
- "label": ""
- },
- "live-option": {
- "aria-label": "Ŧūřʼn őʼn ľįvę şŧřęämįʼnģ",
- "label": "Ŀįvę"
- },
- "off-option": {
- "aria-label": "Ŧūřʼn őƒƒ äūŧő řęƒřęşĥ",
- "label": "؃ƒ"
- },
- "tooltip": {
- "interval-selected": "Ŝęŧ äūŧő řęƒřęşĥ įʼnŧęřväľ",
- "turned-off": "Åūŧő řęƒřęşĥ őƒƒ"
- }
- },
- "return-to-previous": {
- "button": {
- "label": "ßäčĸ ŧő {{title}}"
- },
- "dismissable-button": "Cľőşę"
- },
- "role-picker": {
- "built-in": {
- "basic-roles": "ßäşįč řőľęş"
- },
- "input": {
- "no-roles": "Ńő řőľęş äşşįģʼnęđ"
- },
- "menu": {
- "clear-button": "Cľęäř äľľ",
- "tooltip": "Ÿőū čäʼn ʼnőŵ şęľęčŧ ŧĥę \"Ńő þäşįč řőľę\" őpŧįőʼn äʼnđ äđđ pęřmįşşįőʼnş ŧő yőūř čūşŧőm ʼnęęđş. Ÿőū čäʼn ƒįʼnđ mőřę įʼnƒőřmäŧįőʼn įʼn <1>őūř đőčūmęʼnŧäŧįőʼn1>."
- },
- "sub-menu": {
- "clear-button": "Cľęäř"
- },
- "title": {
- "description": "Åşşįģʼn řőľęş ŧő ūşęřş ŧő ęʼnşūřę ģřäʼnūľäř čőʼnŧřőľ ővęř äččęşş ŧő Ğřäƒäʼnä&ľşqūő;ş ƒęäŧūřęş äʼnđ řęşőūřčęş. Fįʼnđ őūŧ mőřę įʼn őūř <2>đőčūmęʼnŧäŧįőʼn2>."
- }
- },
- "role-picker-drawer": {
- "basic-roles": {
- "label": "ßäşįč Ŗőľęş"
- }
- },
- "route-error": {
- "description": "Ğřäƒäʼnä ĥäş ľįĸęľy þęęʼn ūpđäŧęđ. Pľęäşę ŧřy řęľőäđįʼnģ ŧĥę päģę.",
- "reload-button": "Ŗęľőäđ",
- "title": "Ůʼnäþľę ŧő ƒįʼnđ äppľįčäŧįőʼn ƒįľę"
- },
- "save-dashboards": {
- "message-length": {
- "info": "Ŧĥę męşşäģę įş {{messageLength}} čĥäřäčŧęřş, ŵĥįčĥ ęχčęęđş ŧĥę mäχįmūm ľęʼnģŧĥ őƒ 500 čĥäřäčŧęřş. Pľęäşę şĥőřŧęʼn įŧ þęƒőřę şävįʼnģ.",
- "title": "Męşşäģę ŧőő ľőʼnģ"
- },
- "name-exists": {
- "message-info": "Å đäşĥþőäřđ ŵįŧĥ ŧĥę şämę ʼnämę įʼn ŧĥę şęľęčŧęđ ƒőľđęř äľřęäđy ęχįşŧş, įʼnčľūđįʼnģ řęčęʼnŧľy đęľęŧęđ đäşĥþőäřđş.",
- "message-suggestion": "Pľęäşę čĥőőşę ä đįƒƒęřęʼnŧ ʼnämę őř ƒőľđęř.",
- "title": "Đäşĥþőäřđ ʼnämę äľřęäđy ęχįşŧş"
- }
- },
- "scopes": {
- "dashboards": {
- "collapse": "Cőľľäpşę",
- "expand": "Ēχpäʼnđ",
- "loading": "Ŀőäđįʼnģ đäşĥþőäřđş",
- "noResultsForFilter": "Ńő řęşūľŧş ƒőūʼnđ ƒőř yőūř qūęřy",
- "noResultsForFilterClear": "Cľęäř şęäřčĥ",
- "noResultsForScopes": "Ńő đäşĥþőäřđş ƒőūʼnđ ƒőř ŧĥę şęľęčŧęđ şčőpęş",
- "noResultsNoScopes": "Ńő şčőpęş şęľęčŧęđ",
- "search": "Ŝęäřčĥ",
- "toggle": {
- "collapse": "Cőľľäpşę şūģģęşŧęđ đäşĥþőäřđş ľįşŧ",
- "disabled": "Ŝūģģęşŧęđ đäşĥþőäřđş ľįşŧ įş đįşäþľęđ đūę ŧő řęäđ őʼnľy mőđę",
- "expand": "Ēχpäʼnđ şūģģęşŧęđ đäşĥþőäřđş ľįşŧ"
- }
- },
- "selector": {
- "apply": "Åppľy",
- "cancel": "Cäʼnčęľ",
- "input": {
- "placeholder": "Ŝęľęčŧ şčőpęş...",
- "removeAll": "Ŗęmővę äľľ şčőpęş"
- },
- "title": "Ŝęľęčŧ şčőpęş"
- },
- "tree": {
- "collapse": "Cőľľäpşę",
- "expand": "Ēχpäʼnđ",
- "headline": {
- "noResults": "Ńő řęşūľŧş ƒőūʼnđ ƒőř yőūř qūęřy",
- "recommended": "Ŗęčőmmęʼnđęđ",
- "results": "Ŗęşūľŧş"
- },
- "search": "Ŝęäřčĥ"
- }
- },
- "search": {
- "actions": {
- "include-panels": "Ĩʼnčľūđę päʼnęľş",
- "remove-datasource-filter": "Đäŧäşőūřčę: {{datasource}}",
- "sort-placeholder": "Ŝőřŧ",
- "starred": "Ŝŧäřřęđ",
- "view-as-folders": "Vįęŵ þy ƒőľđęřş",
- "view-as-list": "Vįęŵ äş ľįşŧ"
- },
- "dashboard-actions": {
- "import": "Ĩmpőřŧ",
- "new": "Ńęŵ",
- "new-dashboard": "Ńęŵ đäşĥþőäřđ",
- "new-folder": "Ńęŵ ƒőľđęř"
- },
- "results-table": {
- "datasource-header": "Đäŧä şőūřčę",
- "deleted-less-than-1-min": "< 1 mįʼn",
- "deleted-remaining-header": "Ŧįmę řęmäįʼnįʼnģ",
- "location-header": "Ŀőčäŧįőʼn",
- "name-header": "Ńämę",
- "tags-header": "Ŧäģş",
- "type-dashboard": "Đäşĥþőäřđ",
- "type-folder": "Főľđęř",
- "type-header": "Ŧypę"
- },
- "search-input": {
- "include-panels-placeholder": "Ŝęäřčĥ ƒőř đäşĥþőäřđş, ƒőľđęřş, äʼnđ päʼnęľş",
- "placeholder": "Ŝęäřčĥ ƒőř đäşĥþőäřđş äʼnđ ƒőľđęřş"
- }
- },
- "select": {
- "select-menu": {
- "selected-count": "Ŝęľęčŧęđ "
- }
- },
- "service-account-create-page": {
- "create": {
- "button": "Cřęäŧę"
- },
- "name": {
- "label": "Đįşpľäy ʼnämę",
- "required-error": "Đįşpľäy ʼnämę įş řęqūįřęđ"
- },
- "page-nav": {
- "label": "Cřęäŧę şęřvįčę äččőūʼnŧ"
- },
- "role": {
- "label": "Ŗőľę"
- }
- },
- "service-accounts": {
- "empty-state": {
- "button-title": "Åđđ şęřvįčę äččőūʼnŧ",
- "message": "Ńő şęřvįčęş äččőūʼnŧş ƒőūʼnđ",
- "more-info": "Ŗęmęmþęř, yőū čäʼn přővįđę şpęčįƒįč pęřmįşşįőʼnş ƒőř ÅPĨ äččęşş ŧő őŧĥęř äppľįčäŧįőʼnş",
- "title": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny şęřvįčę äččőūʼnŧş yęŧ"
- }
- },
- "share-dashboard": {
- "menu": {
- "export-json-title": "Ēχpőřŧ äş ĴŜØŃ",
- "share-externally-title": "Ŝĥäřę ęχŧęřʼnäľľy",
- "share-internally-title": "Ŝĥäřę įʼnŧęřʼnäľľy",
- "share-snapshot-title": "Ŝĥäřę şʼnäpşĥőŧ"
- },
- "share-button": "Ŝĥäřę",
- "share-button-tooltip": "Cőpy ľįʼnĸ"
- },
- "share-drawer": {
- "confirm-action": {
- "back-arrow-button": "ßäčĸ þūŧŧőʼn",
- "cancel-button": "Cäʼnčęľ"
- }
- },
- "share-modal": {
- "dashboard": {
- "title": "Ŝĥäřę"
- },
- "embed": {
- "copy": "Cőpy ŧő čľįpþőäřđ",
- "html": "Ēmþęđ ĦŦMĿ",
- "html-description": "Ŧĥę ĦŦMĿ čőđę þęľőŵ čäʼn þę päşŧęđ äʼnđ įʼnčľūđęđ įʼn äʼnőŧĥęř ŵęþ päģę. Ůʼnľęşş äʼnőʼnymőūş äččęşş įş ęʼnäþľęđ, ŧĥę ūşęřş vįęŵįʼnģ ŧĥäŧ päģę ʼnęęđ ŧő þę şįģʼnęđ įʼnŧő Ğřäƒäʼnä ƒőř ŧĥę ģřäpĥ ŧő ľőäđ.",
- "info": "Ğęʼnęřäŧę ĦŦMĿ ƒőř ęmþęđđįʼnģ äʼn įƒřämę ŵįŧĥ ŧĥįş päʼnęľ",
- "time-range": "Ŀőčĸ ŧįmę řäʼnģę"
- },
- "export": {
- "back-button": "ßäčĸ ŧő ęχpőřŧ čőʼnƒįģ",
- "cancel-button": "Cäʼnčęľ",
- "info-text": "Ēχpőřŧ ŧĥįş đäşĥþőäřđ.",
- "loading": "Ŀőäđįʼnģ...",
- "save-button": "Ŝävę ŧő ƒįľę",
- "share-externally-label": "Ēχpőřŧ ƒőř şĥäřįʼnģ ęχŧęřʼnäľľy",
- "view-button": "Vįęŵ ĴŜØŃ"
- },
- "library": {
- "info": "Cřęäŧę ľįþřäřy päʼnęľ."
- },
- "link": {
- "copy-link-button": "Cőpy",
- "info-text": "Cřęäŧę ä đįřęčŧ ľįʼnĸ ŧő ŧĥįş đäşĥþőäřđ őř päʼnęľ, čūşŧőmįžęđ ŵįŧĥ ŧĥę őpŧįőʼnş þęľőŵ.",
- "link-url": "Ŀįʼnĸ ŮŖĿ",
- "render-alert": "Ĩmäģę řęʼnđęřęř pľūģįʼn ʼnőŧ įʼnşŧäľľęđ",
- "render-instructions": "Ŧő řęʼnđęř ä päʼnęľ įmäģę, yőū mūşŧ įʼnşŧäľľ ŧĥę <2>Ğřäƒäʼnä įmäģę řęʼnđęřęř pľūģįʼn2>. Pľęäşę čőʼnŧäčŧ yőūř Ğřäƒäʼnä äđmįʼnįşŧřäŧőř ŧő įʼnşŧäľľ ŧĥę pľūģįʼn.",
- "rendered-image": "Đįřęčŧ ľįʼnĸ řęʼnđęřęđ įmäģę",
- "save-alert": "Đäşĥþőäřđ įş ʼnőŧ şävęđ",
- "save-dashboard": "Ŧő řęʼnđęř ä päʼnęľ įmäģę, yőū mūşŧ şävę ŧĥę đäşĥþőäřđ ƒįřşŧ.",
- "shorten-url": "Ŝĥőřŧęʼn ŮŖĿ",
- "time-range-description": "Ŧřäʼnşƒőřmş ŧĥę čūřřęʼnŧ řęľäŧįvę ŧįmę řäʼnģę ŧő äʼn äþşőľūŧę ŧįmę řäʼnģę",
- "time-range-label": "Ŀőčĸ ŧįmę řäʼnģę"
- },
- "panel": {
- "title": "Ŝĥäřę Päʼnęľ"
- },
- "snapshot": {
- "cancel-button": "Cäʼnčęľ",
- "copy-link-button": "Cőpy",
- "delete-button": "Đęľęŧę şʼnäpşĥőŧ.",
- "deleted-message": "Ŧĥę şʼnäpşĥőŧ ĥäş þęęʼn đęľęŧęđ. Ĩƒ yőū ĥävę äľřęäđy äččęşşęđ įŧ őʼnčę, ŧĥęʼn įŧ mįģĥŧ ŧäĸę ūp ŧő äʼn ĥőūř þęƒőřę þęƒőřę įŧ įş řęmővęđ ƒřőm þřőŵşęř čäčĥęş őř CĐŃ čäčĥęş.",
- "expire": "Ēχpįřę",
- "expire-day": "1 Đäy",
- "expire-hour": "1 Ħőūř",
- "expire-never": "Ńęvęř",
- "expire-week": "1 Ŵęęĸ",
- "info-text-1": "Å şʼnäpşĥőŧ įş äʼn įʼnşŧäʼnŧ ŵäy ŧő şĥäřę äʼn įʼnŧęřäčŧįvę đäşĥþőäřđ pūþľįčľy. Ŵĥęʼn čřęäŧęđ, ŵę şŧřįp şęʼnşįŧįvę đäŧä ľįĸę qūęřįęş (męŧřįč, ŧęmpľäŧę, äʼnđ äʼnʼnőŧäŧįőʼn) äʼnđ päʼnęľ ľįʼnĸş, ľęävįʼnģ őʼnľy ŧĥę vįşįþľę męŧřįč đäŧä äʼnđ şęřįęş ʼnämęş ęmþęđđęđ įʼn yőūř đäşĥþőäřđ.",
- "info-text-2": "Ķęęp įʼn mįʼnđ, yőūř şʼnäpşĥőŧ <1>čäʼn þę vįęŵęđ þy äʼnyőʼnę1> ŧĥäŧ ĥäş ŧĥę ľįʼnĸ äʼnđ čäʼn äččęşş ŧĥę ŮŖĿ. Ŝĥäřę ŵįşęľy.",
- "local-button": "Pūþľįşĥ Ŝʼnäpşĥőŧ",
- "mistake-message": "Đįđ yőū mäĸę ä mįşŧäĸę? ",
- "name": "Ŝʼnäpşĥőŧ ʼnämę",
- "timeout": "Ŧįmęőūŧ (şęčőʼnđş)",
- "timeout-description": "Ÿőū mįģĥŧ ʼnęęđ ŧő čőʼnƒįģūřę ŧĥę ŧįmęőūŧ väľūę įƒ įŧ ŧäĸęş ä ľőʼnģ ŧįmę ŧő čőľľęčŧ yőūř đäşĥþőäřđ męŧřįčş.",
- "url-label": "Ŝʼnäpşĥőŧ ŮŖĿ"
- },
- "tab-title": {
- "embed": "Ēmþęđ",
- "export": "Ēχpőřŧ",
- "library-panel": "Ŀįþřäřy päʼnęľ",
- "link": "Ŀįʼnĸ",
- "panel-embed": "Ēmþęđ",
- "public-dashboard": "Pūþľįč Đäşĥþőäřđ",
- "public-dashboard-title": "Pūþľįč đäşĥþőäřđ",
- "snapshot": "Ŝʼnäpşĥőŧ"
- },
- "theme-picker": {
- "current": "Cūřřęʼnŧ",
- "dark": "Đäřĸ",
- "field-name": "Ŧĥęmę",
- "light": "Ŀįģĥŧ"
- },
- "view-json": {
- "copy-button": "Cőpy ŧő Cľįpþőäřđ"
- }
- },
- "share-panel": {
- "drawer": {
- "new-library-panel-title": "Ńęŵ ľįþřäřy päʼnęľ",
- "share-embed-title": "Ŝĥäřę ęmþęđ",
- "share-link-title": "Ŀįʼnĸ şęŧŧįʼnģş"
- },
- "menu": {
- "new-library-panel-title": "Ńęŵ ľįþřäřy päʼnęľ",
- "share-embed-title": "Ŝĥäřę ęmþęđ",
- "share-link-title": "Ŝĥäřę ľįʼnĸ",
- "share-snapshot-title": "Ŝĥäřę şʼnäpşĥőŧ"
- },
- "new-library-panel": {
- "cancel-button": "Cäʼnčęľ",
- "create-button": "Cřęäŧę ľįþřäřy päʼnęľ"
- }
- },
- "share-panel-image": {
- "preview": {
- "title": "Päʼnęľ přęvįęŵ"
- },
- "settings": {
- "height-label": "Ħęįģĥŧ",
- "height-min": "Ħęįģĥŧ mūşŧ þę ęqūäľ őř ģřęäŧęř ŧĥäʼn 1",
- "height-placeholder": "500",
- "height-required": "Ħęįģĥŧ įş řęqūįřęđ",
- "max-warning": "Ŝęŧŧįʼnģ mäχįmūmş äřę ľįmįŧęđ þy ŧĥę įmäģę řęʼnđęřęř şęřvįčę",
- "scale-factor-label": "Ŝčäľę ƒäčŧőř",
- "scale-factor-min": "Ŝčäľę ƒäčŧőř mūşŧ þę ęqūäľ őř ģřęäŧęř ŧĥäʼn 1",
- "scale-factor-placeholder": "1",
- "scale-factor-required": "Ŝčäľę ƒäčŧőř įş řęqūįřęđ",
- "title": "Ĩmäģę şęŧŧįʼnģş",
- "width-label": "Ŵįđŧĥ",
- "width-min": "Ŵįđŧĥ mūşŧ þę ęqūäľ őř ģřęäŧęř ŧĥäʼn 1",
- "width-placeholder": "1000",
- "width-required": "Ŵįđŧĥ įş řęqūįřęđ"
- }
- },
- "share-playlist": {
- "checkbox-description": "Päʼnęľ ĥęįģĥŧş ŵįľľ þę äđĵūşŧęđ ŧő ƒįŧ şčřęęʼn şįžę",
- "checkbox-label": "Åūŧőƒįŧ",
- "copy-link-button": "Cőpy",
- "link-url-label": "Ŀįʼnĸ ŮŖĿ",
- "mode": "Mőđę",
- "mode-kiosk": "Ķįőşĸ",
- "mode-normal": "Ńőřmäľ",
- "title": "Ŝĥäřę pľäyľįşŧ"
- },
- "shared": {
- "preferences": {
- "theme": {
- "dark-label": "Đäřĸ",
- "light-label": "Ŀįģĥŧ",
- "system-label": "Ŝyşŧęm přęƒęřęʼnčę"
- }
- }
- },
- "shared-dashboard": {
- "delete-modal": {
- "revoke-body-text": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő řęvőĸę ŧĥįş äččęşş? Ŧĥę đäşĥþőäřđ čäʼn ʼnő ľőʼnģęř þę şĥäřęđ.",
- "revoke-title": "Ŗęvőĸę äččęşş"
- },
- "fields": {
- "timezone-label": "Ŧįmęžőʼnę"
- }
- },
- "shared-dashboard-list": {
- "button": {
- "config-button-tooltip": "Cőʼnƒįģūřę şĥäřęđ đäşĥþőäřđ",
- "revoke-button-text": "Ŗęvőĸę äččęşş",
- "revoke-button-tooltip": "Ŗęvőĸę äččęşş",
- "view-button-tooltip": "Vįęŵ şĥäřęđ đäşĥþőäřđ"
- },
- "empty-state": {
- "message": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny şĥäřęđ đäşĥþőäřđş yęŧ",
- "more-info": "Cřęäŧę ä şĥäřęđ đäşĥþőäřđ ƒřőm äʼny ęχįşŧįʼnģ đäşĥþőäřđ ŧĥřőūģĥ ŧĥę <1>Ŝĥäřę1> mőđäľ. <4>Ŀęäřʼn mőřę4>"
- },
- "toggle": {
- "pause-sharing-toggle-text": "Päūşę äččęşş"
- }
- },
- "shared-preferences": {
- "fields": {
- "home-dashboard-label": "Ħőmę Đäşĥþőäřđ",
- "home-dashboard-placeholder": "Đęƒäūľŧ đäşĥþőäřđ",
- "locale-label": "Ŀäʼnģūäģę",
- "locale-placeholder": "Cĥőőşę ľäʼnģūäģę",
- "theme-description": "Ēʼnĵőyįʼnģ ŧĥę ľįmįŧęđ ęđįŧįőʼn ŧĥęmęş? Ŧęľľ ūş ŵĥäŧ yőū'đ ľįĸę ŧő şęę <2>ĥęřę.2>",
- "theme-label": "Ĩʼnŧęřƒäčę ŧĥęmę",
- "week-start-label": "Ŵęęĸ şŧäřŧ"
- },
- "theme": {
- "default-label": "Đęƒäūľŧ"
- },
- "title": "Přęƒęřęʼnčęş"
- },
- "sign-up": {
- "back-button": "ßäčĸ ŧő ľőģįʼn",
- "submit-button": "Ŝūþmįŧ",
- "verify": {
- "back-button": "ßäčĸ ŧő ľőģįʼn",
- "complete-button": "Cőmpľęŧę şįģʼnūp",
- "header": "Vęřįƒy ęmäįľ",
- "info": "Åʼn ęmäįľ ŵįŧĥ ä vęřįƒįčäŧįőʼn ľįʼnĸ ĥäş þęęʼn şęʼnŧ ŧő ŧĥę ęmäįľ äđđřęşş. Ÿőū şĥőūľđ řęčęįvę įŧ şĥőřŧľy.",
- "send-button": "Ŝęʼnđ vęřįƒįčäŧįőʼn ęmäįľ"
- }
- },
- "silences": {
- "empty-state": {
- "button-title": "Cřęäŧę şįľęʼnčę",
- "title": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny şįľęʼnčęş yęŧ"
- },
- "table": {
- "add-silence-button": "Åđđ Ŝįľęʼnčę",
- "edit-button": "Ēđįŧ",
- "expired-silences": "Ēχpįřęđ şįľęʼnčęş äřę äūŧőmäŧįčäľľy đęľęŧęđ äƒŧęř 5 đäyş.",
- "no-matching-silences": "Ńő mäŧčĥįʼnģ şįľęʼnčęş ƒőūʼnđ;",
- "noConfig": "Cřęäŧę ä ʼnęŵ čőʼnŧäčŧ pőįʼnŧ ŧő čřęäŧę ä čőʼnƒįģūřäŧįőʼn ūşįʼnģ ŧĥę đęƒäūľŧ väľūęş őř čőʼnŧäčŧ yőūř äđmįʼnįşŧřäŧőř ŧő şęŧ ūp ŧĥę Åľęřŧmäʼnäģęř.",
- "recreate-button": "Ŗęčřęäŧę",
- "unsilence-button": "Ůʼnşįľęʼnčę"
- }
- },
- "silences-table": {
- "header": {
- "alert-name": "Åľęřŧ ʼnämę",
- "state": "Ŝŧäŧę"
- }
- },
- "snapshot": {
- "empty-state": {
- "message": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny şʼnäpşĥőŧş yęŧ",
- "more-info": "Ÿőū čäʼn čřęäŧę ä şʼnäpşĥőŧ őƒ äʼny đäşĥþőäřđ ŧĥřőūģĥ ŧĥę <1>Ŝĥäřę1> mőđäľ. <4>Ŀęäřʼn mőřę4>"
- },
- "external-badge": "Ēχŧęřʼnäľ",
- "name-column-header": "Ńämę",
- "share": {
- "cancel-button": "Cäʼnčęľ",
- "copy-link-button": "Cőpy ľįʼnĸ",
- "delete-button": "Đęľęŧę şʼnäpşĥőŧ",
- "delete-description": "Åřę yőū şūřę yőū ŵäʼnŧ ŧő đęľęŧę ŧĥįş şʼnäpşĥőŧ?",
- "delete-permission-tooltip": "Ÿőū đőʼn'ŧ ĥävę pęřmįşşįőʼn ŧő đęľęŧę şʼnäpşĥőŧş",
- "delete-title": "Đęľęŧę şʼnäpşĥőŧ",
- "deleted-alert": "Ŝʼnäpşĥőŧ đęľęŧęđ. Ĩŧ čőūľđ ŧäĸę äʼn ĥőūř ŧő þę čľęäřęđ ƒřőm CĐŃ čäčĥęş.",
- "expiration-label": "Ēχpįřęş įʼn",
- "info-alert": "Å Ğřäƒäʼnä đäşĥþőäřđ şʼnäpşĥőŧ pūþľįčľy şĥäřęş ä đäşĥþőäřđ ŵĥįľę řęmővįʼnģ şęʼnşįŧįvę đäŧä şūčĥ äş qūęřįęş äʼnđ päʼnęľ ľįʼnĸş, ľęävįʼnģ őʼnľy vįşįþľę męŧřįčş äʼnđ şęřįęş ʼnämęş. Åʼnyőʼnę ŵįŧĥ ŧĥę ľįʼnĸ čäʼn äččęşş ŧĥę şʼnäpşĥőŧ.",
- "learn-more-button": "Ŀęäřʼn mőřę",
- "local-button": "Pūþľįşĥ şʼnäpşĥőŧ",
- "name-label": "Ŝʼnäpşĥőŧ ʼnämę",
- "new-snapshot-button": "Ńęŵ şʼnäpşĥőŧ",
- "success-creation": "Ÿőūř şʼnäpşĥőŧ ĥäş þęęʼn čřęäŧęđ",
- "success-delete": "Ÿőūř şʼnäpşĥőŧ ĥäş þęęʼn đęľęŧęđ",
- "view-all-button": "Vįęŵ äľľ şʼnäpşĥőŧş"
- },
- "share-panel": {
- "info-alert": "Å Ğřäƒäʼnä päʼnęľ şʼnäpşĥőŧ pūþľįčľy şĥäřęş ä päʼnęľ ŵĥįľę řęmővįʼnģ şęʼnşįŧįvę đäŧä şūčĥ äş qūęřįęş äʼnđ päʼnęľ ľįʼnĸş, ľęävįʼnģ őʼnľy vįşįþľę męŧřįčş äʼnđ şęřįęş ʼnämęş. Åʼnyőʼnę ŵįŧĥ ŧĥę ľįʼnĸ čäʼn äččęşş ŧĥę şʼnäpşĥőŧ."
- },
- "url-column-header": "Ŝʼnäpşĥőŧ ūřľ",
- "view-button": "Vįęŵ"
- },
- "table": {
- "container": {
- "content": "Ŝĥőŵįʼnģ ŧőő mäʼny čőľūmʼnş įʼn ä şįʼnģľę ŧäþľę mäy įmpäčŧ pęřƒőřmäʼnčę äʼnđ mäĸę đäŧä ĥäřđęř ŧő řęäđ. Cőʼnşįđęř řęƒįʼnįʼnģ yőūř qūęřįęş.",
- "show-all-series": "Ŝĥőŵ äľľ čőľūmʼnş",
- "show-only-series": "Ŝĥőŵįʼnģ őʼnľy {{MAX_NUMBER_OF_COLUMNS}} čőľūmʼnş"
- }
- },
- "tag-filter": {
- "clear-button": "Cľęäř ŧäģş",
- "loading": "Ŀőäđįʼnģ...",
- "no-tags": "Ńő ŧäģş ƒőūʼnđ",
- "placeholder": "Fįľŧęř þy ŧäģ"
- },
- "teams": {
- "empty-state": {
- "button-title": "Ńęŵ ŧęäm",
- "message": "Ńő ŧęämş ƒőūʼnđ",
- "pro-tip": "Åşşįģʼn ƒőľđęř äʼnđ đäşĥþőäřđ pęřmįşşįőʼnş ŧő ŧęämş įʼnşŧęäđ őƒ ūşęřş ŧő ęäşę äđmįʼnįşŧřäŧįőʼn. <2>Ŀęäřʼn mőřę2>",
- "title": "Ÿőū ĥävęʼn'ŧ čřęäŧęđ äʼny ŧęämş yęŧ"
- }
- },
- "theme-preview": {
- "breadcrumbs": {
- "dashboards": "Đäşĥþőäřđş",
- "home": "Ħőmę"
- },
- "panel": {
- "form-label": "Főřm ľäþęľ",
- "title": "Päʼnęľ"
- }
- },
- "time-picker": {
- "absolute": {
- "recent-title": "Ŗęčęʼnŧľy ūşęđ äþşőľūŧę řäʼnģęş",
- "title": "Åþşőľūŧę ŧįmę řäʼnģę"
- },
- "calendar": {
- "apply-button": "Åppľy ŧįmę řäʼnģę",
- "cancel-button": "Cäʼnčęľ",
- "close": "Cľőşę čäľęʼnđäř",
- "next-month": "Ńęχŧ mőʼnŧĥ",
- "previous-month": "Přęvįőūş mőʼnŧĥ",
- "select-time": "Ŝęľęčŧ ä ŧįmę řäʼnģę"
- },
- "content": {
- "empty-recent-list-docs": "<0><0>Ŗęäđ ŧĥę đőčūmęʼnŧäŧįőʼn0><1> ŧő ƒįʼnđ őūŧ mőřę äþőūŧ ĥőŵ ŧő ęʼnŧęř čūşŧőm ŧįmę řäʼnģęş.1>0>",
- "empty-recent-list-info": "Ĩŧ ľőőĸş ľįĸę yőū ĥävęʼn'ŧ ūşęđ ŧĥįş ŧįmę pįčĸęř þęƒőřę. Åş şőőʼn äş yőū ęʼnŧęř şőmę ŧįmę įʼnŧęřväľş, řęčęʼnŧľy ūşęđ įʼnŧęřväľş ŵįľľ äppęäř ĥęřę.",
- "filter-placeholder": "Ŝęäřčĥ qūįčĸ řäʼnģęş"
- },
- "copy-paste": {
- "copy-success-message": "Ŧįmę řäʼnģę čőpįęđ ŧő čľįpþőäřđ",
- "default-error-message": "{{error}} įş ʼnőŧ ä väľįđ ŧįmę řäʼnģę",
- "default-error-title": "Ĩʼnväľįđ ŧįmę řäʼnģę",
- "tooltip-copy": "Cőpy ŧįmę řäʼnģę ŧő čľįpþőäřđ",
- "tooltip-paste": "Päşŧę ŧįmę řäʼnģę"
- },
- "footer": {
- "change-settings-button": "Cĥäʼnģę ŧįmę şęŧŧįʼnģş",
- "fiscal-year-option": "Fįşčäľ yęäř",
- "fiscal-year-start": "Fįşčäľ yęäř şŧäřŧ mőʼnŧĥ",
- "time-zone-option": "Ŧįmę žőʼnę",
- "time-zone-selection": "Ŧįmę žőʼnę şęľęčŧįőʼn"
- },
- "range-content": {
- "apply-button": "Åppľy ŧįmę řäʼnģę",
- "default-error": "Pľęäşę ęʼnŧęř ä päşŧ đäŧę őř \"ʼnőŵ\"",
- "fiscal-year": "Fįşčäľ yęäř",
- "from-input": "Fřőm",
- "open-input-calendar": "Øpęʼn čäľęʼnđäř",
- "range-error": "\"Fřőm\" čäʼn'ŧ þę äƒŧęř \"Ŧő\"",
- "to-input": "Ŧő"
- },
- "range-picker": {
- "backwards-time-aria-label": "Mővę ŧįmę řäʼnģę þäčĸŵäřđş",
- "current-time-selected": "Ŧįmę řäʼnģę şęľęčŧęđ: {{currentTimeRange}}",
- "forwards-time-aria-label": "Mővę ŧįmę řäʼnģę ƒőřŵäřđş",
- "to": "ŧő",
- "zoom-out-button": "Żőőm őūŧ ŧįmę řäʼnģę",
- "zoom-out-tooltip": "Ŧįmę řäʼnģę žőőm őūŧ <1>1> CŦŖĿ+Ż"
- },
- "time-range": {
- "apply": "Åppľy ŧįmę řäʼnģę",
- "aria-role": "Ŧįmę řäʼnģę şęľęčŧįőʼn",
- "default-title": "Ŧįmę řäʼnģęş",
- "example": "Ēχämpľę: ŧő şęľęčŧ ä ŧįmę řäʼnģę ƒřőm 10 mįʼnūŧęş äģő ŧő ʼnőŵ",
- "example-details": "Fřőm: ʼnőŵ-10m Ŧő: ʼnőŵ",
- "example-title": "Ēχämpľę ŧįmę řäʼnģęş",
- "from-label": "Fřőm",
- "from-to": "{{timeOptionFrom}} ŧő {{timeOptionTo}}",
- "more-info": "Főř mőřę įʼnƒőřmäŧįőʼn şęę <2>đőčş <1>1>2>.",
- "specify": "Ŝpęčįƒy ŧįmę řäʼnģę <1>1>",
- "submit-button-label": "ŦįmęPįčĸęř şūþmįŧ þūŧŧőʼn",
- "supported-formats": "Ŝūppőřŧęđ ƒőřmäŧş: <1>ʼnőŵ-[đįģįŧ]ş/m/ĥ/đ/ŵ1>",
- "to-label": "Ŧő"
- },
- "zone": {
- "select-aria-label": "Ŧįmę žőʼnę pįčĸęř",
- "select-search-input": "Ŧypę ŧő şęäřčĥ (čőūʼnŧřy, čįŧy, äþþřęvįäŧįőʼn)"
- }
- },
- "trails": {
- "bookmarks": {
- "or-view-bookmarks": "Øř vįęŵ þőőĸmäřĸş"
- },
- "card": {
- "date-created": "Đäŧę čřęäŧęđ: "
- },
- "home": {
- "learn-more": "Ŀęäřʼn mőřę",
- "lets-start": "Ŀęŧ'ş şŧäřŧ!",
- "start-your-metrics-exploration": "Ŝŧäřŧ yőūř męŧřįčş ęχpľőřäŧįőʼn!",
- "subtitle": "Ēχpľőřę yőūř Přőmęŧĥęūş-čőmpäŧįþľę męŧřįčş ŵįŧĥőūŧ ŵřįŧįʼnģ ä qūęřy."
- },
- "metric-select": {
- "filter-by": "Fįľŧęř þy",
- "native-histogram": "Ńäŧįvę Ħįşŧőģřäm",
- "new-badge": "Ńęŵ",
- "otel-switch": "Ŧĥįş şŵįŧčĥ ęʼnäþľęş ƒįľŧęřįʼnģ þy ØŦęľ řęşőūřčęş ƒőř ØŦęľ ʼnäŧįvę đäŧä şőūřčęş."
- },
- "native-histogram-banner": {
- "ch-heatmap": "Cľäşşįč Ħįşŧőģřäm đįşpľäyęđ äş ĥęäŧmäp:",
- "ch-histogram": "Cľäşşįč Ħįşŧőģřäm đįşpľäyęđ äş ĥįşŧőģřäm:",
- "click-histogram": "Cľįčĸ äʼny őƒ ŧĥę ʼnäŧįvę ĥįşŧőģřämş þęľőŵ ŧő ęχpľőřę ŧĥęm:",
- "hide-examples": "Ħįđę ęχämpľęş",
- "learn-more": "Ŀęäřʼn mőřę",
- "metric-examples": "",
- "nh-heatmap": "Ńäŧįvę Ħįşŧőģřäm đįşpľäyęđ äş ĥęäŧmäp:",
- "nh-histogram": "Ńäŧįvę Ħįşŧőģřäm đįşpľäyęđ äş ĥįşŧőģřäm:",
- "now": "Ńőŵ:",
- "previously": "Přęvįőūşľy:",
- "see-examples": "> Ŝęę ęχämpľęş",
- "sentence": "Přőmęŧĥęūş ʼnäŧįvę ĥįşŧőģřämş őƒƒęř ĥįģĥ řęşőľūŧįőʼn, ĥįģĥ přęčįşįőʼn, şįmpľę ūşäģę įʼn įʼnşŧřūmęʼnŧäŧįőʼn äʼnđ ä ŵäy ŧő čőmþįʼnę äʼnđ mäʼnįpūľäŧę ĥįşŧőģřämş įʼn qūęřįęş äʼnđ įʼn Ğřäƒäʼnä."
- },
- "recent-metrics": {
- "or-view-a-recent-exploration": "Øř vįęŵ ä řęčęʼnŧ ęχpľőřäŧįőʼn"
- },
- "settings": {
- "always-keep-selected-metric-graph-in-view": "Åľŵäyş ĸęęp şęľęčŧęđ męŧřįč ģřäpĥ įʼn-vįęŵ",
- "show-previews-of-metric-graphs": "Ŝĥőŵ přęvįęŵş őƒ męŧřįč ģřäpĥş"
- }
- },
- "transformations": {
- "empty": {
- "add-transformation-body": "Ŧřäʼnşƒőřmäŧįőʼnş äľľőŵ đäŧä ŧő þę čĥäʼnģęđ įʼn väřįőūş ŵäyş þęƒőřę yőūř vįşūäľįžäŧįőʼn įş şĥőŵʼn.<1>1>Ŧĥįş įʼnčľūđęş ĵőįʼnįʼnģ đäŧä ŧőģęŧĥęř, řęʼnämįʼnģ ƒįęľđş, mäĸįʼnģ čäľčūľäŧįőʼnş, ƒőřmäŧŧįʼnģ đäŧä ƒőř đįşpľäy, äʼnđ mőřę.",
- "add-transformation-header": "Ŝŧäřŧ ŧřäʼnşƒőřmįʼnģ đäŧä"
- }
- },
- "upgrade-box": {
- "discovery-text": "Ÿőū’vę đįşčővęřęđ ä Přő ƒęäŧūřę!",
- "discovery-text-continued": "Ğęŧ ŧĥę Ğřäƒäʼnä Přő pľäʼn ŧő äččęşş {{featureName}}.",
- "get-started": "Ğęŧ şŧäřŧęđ ŵįŧĥ {{featureName}}",
- "learn-more": "Ŀęäřʼn mőřę",
- "upgrade-button": "Ůpģřäđę"
- },
- "user-orgs": {
- "current-org-button": "Cūřřęʼnŧ",
- "name-column": "Ńämę",
- "role-column": "Ŗőľę",
- "select-org-button": "Ŝęľęčŧ őřģäʼnįşäŧįőʼn",
- "title": "Øřģäʼnįžäŧįőʼnş"
- },
- "user-profile": {
- "fields": {
- "email-error": "Ēmäįľ įş řęqūįřęđ",
- "email-label": "Ēmäįľ",
- "name-error": "Ńämę įş řęqūįřęđ",
- "name-label": "Ńämę",
- "username-label": "Ůşęřʼnämę"
- },
- "tabs": {
- "general": "Ğęʼnęřäľ"
- }
- },
- "user-session": {
- "auth-module-column": "Ĩđęʼnŧįŧy Přővįđęř",
- "browser-column": "ßřőŵşęř & ØŜ",
- "created-at-column": "Ŀőģģęđ őʼn",
- "identity-provider-column": "Ĩđęʼnŧįŧy Přővįđęř",
- "ip-column": "ĨP äđđřęşş",
- "revoke": "Ŗęvőĸę ūşęř şęşşįőʼn",
- "seen-at-column": "Ŀäşŧ şęęʼn"
- },
- "user-sessions": {
- "loading": "Ŀőäđįʼnģ şęşşįőʼnş..."
- },
- "users": {
- "empty-state": {
- "message": "Ńő ūşęřş ƒőūʼnđ"
- }
- },
- "users-access-list": {
- "tabs": {
- "public-dashboard-users-tab-title": "Pūþľįč đäşĥþőäřđ ūşęřş",
- "shared-dashboard-users-tab-title": "Ŝĥäřęđ đäşĥþőäřđ ūşęřş"
- }
- },
- "variable": {
- "adhoc": {
- "placeholder": "Ŝęľęčŧ väľūę"
- },
- "dropdown": {
- "placeholder": "Ēʼnŧęř väřįäþľę väľūę"
- },
- "picker": {
- "link-all": "Åľľ",
- "option-all": "Åľľ",
- "option-selected-values": "Ŝęľęčŧęđ",
- "option-tooltip": "Cľęäř şęľęčŧįőʼnş"
- },
- "textbox": {
- "placeholder": "Ēʼnŧęř väřįäþľę väľūę"
- }
- },
- "variables": {
- "empty-state": {
- "button-title": "Åđđ väřįäþľę",
- "info-box-content": "Väřįäþľęş ęʼnäþľę mőřę įʼnŧęřäčŧįvę äʼnđ đyʼnämįč đäşĥþőäřđş. Ĩʼnşŧęäđ őƒ ĥäřđ-čőđįʼnģ ŧĥįʼnģş ľįĸę şęřvęř őř şęʼnşőř ʼnämęş įʼn yőūř męŧřįč qūęřįęş yőū čäʼn ūşę väřįäþľęş įʼn ŧĥęįř pľäčę. Väřįäþľęş äřę şĥőŵʼn äş ľįşŧ þőχęş äŧ ŧĥę ŧőp őƒ ŧĥę đäşĥþőäřđ. Ŧĥęşę đřőp-đőŵʼn ľįşŧş mäĸę įŧ ęäşy ŧő čĥäʼnģę ŧĥę đäŧä þęįʼnģ đįşpľäyęđ įʼn yőūř đäşĥþőäřđ.",
- "info-box-content-2": "Cĥęčĸ őūŧ ŧĥę <2>Ŧęmpľäŧęş äʼnđ väřįäþľęş đőčūmęʼnŧäŧįőʼn2> ƒőř mőřę įʼnƒőřmäŧįőʼn.",
- "title": "Ŧĥęřę äřę ʼnő väřįäþľęş äđđęđ yęŧ"
- },
- "unknown-table": {
- "loading": "Ŀőäđįʼnģ...",
- "no-unknowns": "Ńő řęʼnämęđ őř mįşşįʼnģ väřįäþľęş ƒőūʼnđ.",
- "renamed-or-missing-variables": "Ŗęʼnämęđ őř mįşşįʼnģ väřįäþľęş",
- "variable": "Väřįäþľę"
- }
- }
-}
diff --git a/public/locales/pseudo.mjs b/public/locales/pseudo.mjs
deleted file mode 100644
index 05f3f89626d..00000000000
--- a/public/locales/pseudo.mjs
+++ /dev/null
@@ -1,63 +0,0 @@
-// @ts-check
-import { readFile, writeFile } from 'fs/promises';
-import { format } from 'prettier';
-import { pseudoize } from 'pseudoizer';
-import { hideBin } from 'yargs/helpers';
-import yargs from 'yargs/yargs';
-
-const argv = await yargs(hideBin(process.argv))
- .option('mode', {
- demandOption: true,
- describe: 'Path to a template to use for each issue. See source bettererIssueTemplate.md for an example',
- type: 'string',
- choices: ['oss', 'enterprise', 'both'],
- })
- .version(false).argv;
-
-const extractOSS = ['oss', 'both'].includes(argv.mode);
-const extractEnterprise = ['enterprise', 'both'].includes(argv.mode);
-
-/**
- * @param {string} key
- * @param {unknown} value
- */
-function pseudoizeJsonReplacer(key, value) {
- if (typeof value === 'string') {
- // Split string on brace-enclosed segments. Odd indices will be {{variables}}
- const phraseParts = value.split(/(\{\{[^}]+}\})/g);
- const translatedParts = phraseParts.map((str, index) => (index % 2 ? str : pseudoize(str)));
- return translatedParts.join('');
- }
-
- return value;
-}
-/**
- * @param {string} inputPath
- * @param {string} outputPath
- */
-async function pseudoizeJson(inputPath, outputPath) {
- const baseJson = await readFile(inputPath, 'utf-8');
- const enMessages = JSON.parse(baseJson);
- const pseudoJson = JSON.stringify(enMessages, pseudoizeJsonReplacer, 2);
- const prettyPseudoJson = await format(pseudoJson, {
- parser: 'json',
- });
-
- await writeFile(outputPath, prettyPseudoJson);
- console.log('Wrote', outputPath);
-}
-
-//
-// OSS translations
-if (extractOSS) {
- await pseudoizeJson('./public/locales/en-US/grafana.json', './public/locales/pseudo-LOCALE/grafana.json');
-}
-
-//
-// Enterprise translations
-if (extractEnterprise) {
- await pseudoizeJson(
- './public/app/extensions/locales/en-US/grafana-enterprise.json',
- './public/app/extensions/locales/pseudo-LOCALE/grafana-enterprise.json'
- );
-}
diff --git a/public/locales/pt-BR/grafana.json b/public/locales/pt-BR/grafana.json
index 9ba375ffcb2..3a29acad057 100644
--- a/public/locales/pt-BR/grafana.json
+++ b/public/locales/pt-BR/grafana.json
@@ -184,7 +184,8 @@
"rule-identifier": "",
"rule-type": "",
"state-error-timeout": "",
- "state-no-data": ""
+ "state-no-data": "",
+ "target-datasource-uid": ""
},
"alert-recording-rule-form": {
"evaluation-behaviour": {
@@ -504,6 +505,10 @@
"preview": "",
"previewCondition": ""
},
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
"rule-form": {
"evaluation": {
"evaluation-group-and-interval": "",
@@ -1068,23 +1073,18 @@
"elements": {
"dashboard": "",
"objects": "",
+ "panel": "",
"panels": "",
+ "row": "",
"rows": "",
+ "tab": "",
"tabs": ""
},
- "objects": {
- "multi-select": {
- "selection-number": ""
- }
- },
"open": "",
"row": {
"header": {
"hide": "",
"title": ""
- },
- "multi-select": {
- "title": ""
}
}
},
@@ -1165,13 +1165,11 @@
"copy-or-duplicate": "",
"delete": "",
"duplicate": "",
- "layout": "",
- "panels-title": ""
+ "layout": ""
}
},
"options": {
"description": "",
- "title": "",
"title-option": ""
},
"outline": {
@@ -1214,7 +1212,6 @@
},
"rows-layout": {
"description": "",
- "item-name": "",
"name": "",
"option": {
"height": "",
@@ -1253,9 +1250,6 @@
"menu": {
"move-tab": ""
},
- "multi-select": {
- "title": ""
- },
"name": "",
"tab": {
"menu": {
@@ -1270,7 +1264,6 @@
"new": ""
},
"tab-options": {
- "title": "",
"title-option": ""
}
},
@@ -1347,7 +1340,6 @@
"description": "",
"open-edit": "",
"plugin-type-image": "",
- "title": "",
"title-option": "",
"transparent-background": ""
}
diff --git a/public/locales/pt-PT/grafana.json b/public/locales/pt-PT/grafana.json
new file mode 100644
index 00000000000..f3a7ee625b6
--- /dev/null
+++ b/public/locales/pt-PT/grafana.json
@@ -0,0 +1,4010 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/ru-RU/grafana.json b/public/locales/ru-RU/grafana.json
new file mode 100644
index 00000000000..af5d7e65575
--- /dev/null
+++ b/public/locales/ru-RU/grafana.json
@@ -0,0 +1,4038 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_few": "",
+ "used-by_many": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_few": "",
+ "used-by-rules_many": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_few": "",
+ "n-instances_many": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_few": "",
+ "n-more-policies_many": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_few": "",
+ "alertRule_many": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_few": "",
+ "dashboard_many": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_few": "",
+ "folder_many": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_few": "",
+ "libraryPanel_many": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_few": "",
+ "total_many": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_few": "",
+ "body_many": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_few": "",
+ "dashboard-count_many": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_few": "",
+ "text_many": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_few": "",
+ "folder-picker-text_many": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_few": "",
+ "text_many": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/sv-SE/grafana.json b/public/locales/sv-SE/grafana.json
new file mode 100644
index 00000000000..f3a7ee625b6
--- /dev/null
+++ b/public/locales/sv-SE/grafana.json
@@ -0,0 +1,4010 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/tr-TR/grafana.json b/public/locales/tr-TR/grafana.json
new file mode 100644
index 00000000000..f3a7ee625b6
--- /dev/null
+++ b/public/locales/tr-TR/grafana.json
@@ -0,0 +1,4010 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_one": "",
+ "used-by_other": "",
+ "used-by-rules_one": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_one": "",
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_one": "",
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_one": "",
+ "alertRule_other": "",
+ "dashboard_one": "",
+ "dashboard_other": "",
+ "folder_one": "",
+ "folder_other": "",
+ "libraryPanel_one": "",
+ "libraryPanel_other": "",
+ "total_one": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_one": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_one": "",
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_one": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_one": "",
+ "folder-picker-text_other": "",
+ "text_one": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/public/locales/zh-Hans/grafana.json b/public/locales/zh-Hans/grafana.json
index 03da0813eb6..4d5daac76cc 100644
--- a/public/locales/zh-Hans/grafana.json
+++ b/public/locales/zh-Hans/grafana.json
@@ -184,7 +184,8 @@
"rule-identifier": "",
"rule-type": "",
"state-error-timeout": "",
- "state-no-data": ""
+ "state-no-data": "",
+ "target-datasource-uid": ""
},
"alert-recording-rule-form": {
"evaluation-behaviour": {
@@ -500,6 +501,10 @@
"preview": "",
"previewCondition": ""
},
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
"rule-form": {
"evaluation": {
"evaluation-group-and-interval": "",
@@ -1059,23 +1064,18 @@
"elements": {
"dashboard": "",
"objects": "",
+ "panel": "",
"panels": "",
+ "row": "",
"rows": "",
+ "tab": "",
"tabs": ""
},
- "objects": {
- "multi-select": {
- "selection-number": ""
- }
- },
"open": "",
"row": {
"header": {
"hide": "",
"title": ""
- },
- "multi-select": {
- "title": ""
}
}
},
@@ -1156,13 +1156,11 @@
"copy-or-duplicate": "",
"delete": "",
"duplicate": "",
- "layout": "",
- "panels-title": ""
+ "layout": ""
}
},
"options": {
"description": "",
- "title": "",
"title-option": ""
},
"outline": {
@@ -1205,7 +1203,6 @@
},
"rows-layout": {
"description": "",
- "item-name": "",
"name": "",
"option": {
"height": "",
@@ -1244,9 +1241,6 @@
"menu": {
"move-tab": ""
},
- "multi-select": {
- "title": ""
- },
"name": "",
"tab": {
"menu": {
@@ -1261,7 +1255,6 @@
"new": ""
},
"tab-options": {
- "title": "",
"title-option": ""
}
},
@@ -1338,7 +1331,6 @@
"description": "",
"open-edit": "",
"plugin-type-image": "",
- "title": "",
"title-option": "",
"transparent-background": ""
}
diff --git a/public/locales/zh-Hant/grafana.json b/public/locales/zh-Hant/grafana.json
new file mode 100644
index 00000000000..7d47740aff8
--- /dev/null
+++ b/public/locales/zh-Hant/grafana.json
@@ -0,0 +1,3996 @@
+{
+ "_comment": "",
+ "access-control": {
+ "add-permission": {
+ "role-label": "",
+ "serviceaccount-label": "",
+ "team-label": "",
+ "title": "",
+ "user-label": ""
+ },
+ "add-permissions": {
+ "save": ""
+ },
+ "permission-list": {
+ "permission": ""
+ },
+ "permission-list-item": {
+ "inherited": ""
+ },
+ "permissions": {
+ "add-label": "",
+ "no-permissions": "",
+ "permissions-change-warning": "",
+ "role": "",
+ "serviceaccount": "",
+ "team": "",
+ "title": "",
+ "user": ""
+ }
+ },
+ "action-editor": {
+ "modal": {
+ "cancel-button": "",
+ "save-button": ""
+ }
+ },
+ "admin": {
+ "anon-users": {
+ "not-found": ""
+ },
+ "edit-org": {
+ "access-denied": "",
+ "heading": "",
+ "update-button": "",
+ "users-heading": ""
+ },
+ "feature-toggles": {
+ "sub-title": ""
+ },
+ "get-enterprise": {
+ "contact-us": "",
+ "description": "",
+ "features-heading": "",
+ "included-description": "",
+ "included-heading": "",
+ "service-title": "",
+ "team-sync-details": "",
+ "title": ""
+ },
+ "ldap": {
+ "test-mapping-heading": "",
+ "test-mapping-run-button": ""
+ },
+ "ldap-permissions": {
+ "active": "",
+ "admin": "",
+ "inactive": ""
+ },
+ "ldap-status": {
+ "title": ""
+ },
+ "ldap-sync": {
+ "debug-button": "",
+ "external-sync-description": "",
+ "external-sync-label": "",
+ "next-sync-label": "",
+ "not-enabled": "",
+ "sync-button": "",
+ "title": ""
+ },
+ "ldap-sync-info": {
+ "title": ""
+ },
+ "ldap-user-groups": {
+ "no-org-found": ""
+ },
+ "ldap-user-info": {
+ "no-team": ""
+ },
+ "org-uers": {
+ "last-seen-never": ""
+ },
+ "org-users": {
+ "not-editable": ""
+ },
+ "orgs": {
+ "delete-body": "",
+ "id-header": "",
+ "name-header": "",
+ "new-org-button": ""
+ },
+ "server-settings": {
+ "alerts-button": "",
+ "dashboards-button": "",
+ "data-sources-button": "",
+ "not-found": "",
+ "title": "",
+ "users-button": ""
+ },
+ "settings": {
+ "info-description": ""
+ },
+ "upgrade-info": {
+ "title": ""
+ },
+ "user-orgs": {
+ "add-button": "",
+ "change-role-button": "",
+ "external-user-tooltip": "",
+ "remove-button": "",
+ "role-not-editable": "",
+ "title": ""
+ },
+ "user-orgs-modal": {
+ "add-button": "",
+ "cancel-button": ""
+ },
+ "user-permissions": {
+ "change-button": "",
+ "grafana-admin-key": "",
+ "grafana-admin-no": "",
+ "grafana-admin-yes": "",
+ "title": ""
+ },
+ "user-profile": {
+ "delete-button": "",
+ "disable-button": "",
+ "edit-button": "",
+ "enable-button": "",
+ "title": ""
+ },
+ "user-sessions": {
+ "browser-column": "",
+ "force-logout-all-button": "",
+ "force-logout-button": "",
+ "ip-column": "",
+ "last-seen-column": "",
+ "logged-on-column": "",
+ "title": ""
+ },
+ "users-create": {
+ "create-button": ""
+ },
+ "users-list": {
+ "create-button": ""
+ },
+ "users-table": {
+ "last-seen-never": "",
+ "no-licensed-roles": ""
+ }
+ },
+ "alert-labels": {
+ "button": {
+ "hide": "",
+ "show": {
+ "tooltip": ""
+ }
+ }
+ },
+ "alerting": {
+ "alert": {
+ "alert-state": "",
+ "annotations": "",
+ "evaluation": "",
+ "evaluation-paused": "",
+ "evaluation-paused-description": "",
+ "last-evaluated": "",
+ "last-evaluation-duration": "",
+ "last-updated-at": "",
+ "last-updated-by": "",
+ "no-annotations": "",
+ "pending-period": "",
+ "rule": "",
+ "rule-identifier": "",
+ "rule-type": "",
+ "state-error-timeout": "",
+ "state-no-data": "",
+ "target-datasource-uid": ""
+ },
+ "alert-recording-rule-form": {
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ }
+ }
+ },
+ "alert-rules": {
+ "firing-for": "",
+ "next-evaluation": "",
+ "next-evaluation-in": "",
+ "rule-definition": ""
+ },
+ "alertform": {
+ "labels": {
+ "alerting": "",
+ "recording": ""
+ }
+ },
+ "alertVersionHistory": {
+ "alerting": "",
+ "alerting-change-description": "",
+ "annotations": "",
+ "compare": "",
+ "compare-with-latest": "",
+ "compareVersions": "",
+ "comparing-versions": "",
+ "condition": "",
+ "contactPointRouting": "",
+ "description": "",
+ "errorloading": "",
+ "execErrorState": "",
+ "intervalSeconds": "",
+ "labels": "",
+ "latest": "",
+ "name": "",
+ "namespace_uid": "",
+ "noDataState": "",
+ "noVersionsFound": "",
+ "paused": "",
+ "pendingPeriod": "",
+ "provisioning": "",
+ "provisioning-change-description": "",
+ "queryAndAlertCondition": "",
+ "restore": "",
+ "restore-manually": "",
+ "restore-modal": {
+ "body": "",
+ "confirm": "",
+ "error": "",
+ "summary": "",
+ "title": ""
+ },
+ "restore-version": "",
+ "rule_group": "",
+ "unknown": "",
+ "unknown-change-description": "",
+ "user-id": "",
+ "warning-restore-manually": "",
+ "warning-restore-manually-title": ""
+ },
+ "annotations": {
+ "description": "",
+ "title": ""
+ },
+ "central-alert-history": {
+ "details": {
+ "error": "",
+ "header": {
+ "alert-rule": "",
+ "instance": "",
+ "state": "",
+ "timestamp": ""
+ },
+ "loading": "",
+ "no-recognized-state": "",
+ "no-values": "",
+ "not-found": "",
+ "number-transitions": "",
+ "state": {
+ "alerting": "",
+ "error": "",
+ "no-data": "",
+ "normal": "",
+ "pending": ""
+ },
+ "state-transitions": "",
+ "unknown-event-state": "",
+ "unknown-rule": "",
+ "value-in-transition": ""
+ },
+ "error": "",
+ "filter": {
+ "clear": "",
+ "info": {
+ "label1": "",
+ "label2": "",
+ "label3": "",
+ "label4": ""
+ }
+ },
+ "filterBy": "",
+ "too-many-events": {
+ "text": "",
+ "title": ""
+ }
+ },
+ "common": {
+ "cancel": "",
+ "clear-filters": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "export-all": "",
+ "loading": "",
+ "search-by-matchers": "",
+ "titles": {
+ "notification-templates": ""
+ },
+ "view": ""
+ },
+ "contact-points": {
+ "create": "",
+ "custom-template-value": "",
+ "delete-reasons": {
+ "heading": "",
+ "no-permissions": "",
+ "policies": "",
+ "provisioned": "",
+ "rules": ""
+ },
+ "delivered-to": "",
+ "delivery-duration": "",
+ "empty-state": {
+ "title": ""
+ },
+ "key-value-map": {
+ "add": "",
+ "confirm-add": ""
+ },
+ "last-delivery-attempt": "",
+ "last-delivery-failed": "",
+ "no-contact-points-found": "",
+ "no-delivery-attempts": "",
+ "no-integrations": "",
+ "only-firing": "",
+ "receiver-summary": {
+ "jira": ""
+ },
+ "telegram": {
+ "parse-mode-warning-body": "",
+ "parse-mode-warning-title": ""
+ },
+ "used-by_other": "",
+ "used-by-rules_other": ""
+ },
+ "contactPointFilter": {
+ "label": ""
+ },
+ "copy-to-clipboard": "",
+ "dag": {
+ "missing-reference": "",
+ "self-reference": ""
+ },
+ "export": {
+ "subtitle": {
+ "formats": "",
+ "one-format": ""
+ }
+ },
+ "folderAndGroup": {
+ "evaluation": {
+ "modal": {
+ "text": {
+ "alerting": "",
+ "recording": ""
+ }
+ }
+ }
+ },
+ "group-actions": {
+ "actions-trigger": "",
+ "delete": "",
+ "edit": "",
+ "export": "",
+ "reorder": ""
+ },
+ "list-view": {
+ "empty": {
+ "new-alert-rule": "",
+ "new-recording-rule": "",
+ "provisioning": ""
+ },
+ "section": {
+ "dataSourceManaged": {
+ "title": ""
+ },
+ "grafanaManaged": {
+ "export-new-rule": "",
+ "export-rules": "",
+ "loading": "",
+ "new-recording-rule": "",
+ "title": ""
+ }
+ }
+ },
+ "manage-permissions": {
+ "button": "",
+ "title": ""
+ },
+ "mute_timings": {
+ "error-loading": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "mute-timings": {
+ "add-mute-timing": "",
+ "description": "",
+ "save": "",
+ "saving": ""
+ },
+ "notification-preview": {
+ "alertmanager": "",
+ "error": "",
+ "initialized": "",
+ "preview-routing": "",
+ "title": "",
+ "uninitialized": ""
+ },
+ "notification-templates": {
+ "duplicate": {
+ "subTitle": "",
+ "title": ""
+ },
+ "edit": {
+ "subTitle": "",
+ "title": ""
+ },
+ "new": {
+ "subTitle": "",
+ "title": ""
+ }
+ },
+ "policies": {
+ "default-policy": {
+ "description": "",
+ "title": "",
+ "update": ""
+ },
+ "delete": {
+ "confirm": "",
+ "warning-1": "",
+ "warning-2": ""
+ },
+ "filter-description": "",
+ "generated-policies": "",
+ "matchers": "",
+ "metadata": {
+ "active-time": "",
+ "delivered-to": "",
+ "grouped-by": "",
+ "grouping": {
+ "none": "",
+ "single-group": ""
+ },
+ "inherited": "",
+ "mute-time": "",
+ "timingOptions": {
+ "groupInterval": {
+ "description": "",
+ "label": ""
+ },
+ "groupWait": {
+ "description": "",
+ "label": ""
+ },
+ "repeatInterval": {
+ "description": "",
+ "label": ""
+ }
+ },
+ "n-instances_other": ""
+ },
+ "new-child": "",
+ "new-policy": "",
+ "no-matchers": "",
+ "reload-policies": "",
+ "save-policy": "",
+ "update": {
+ "please-wait": "",
+ "update-policy": "",
+ "updating": ""
+ },
+ "update-errors": {
+ "conflict": "",
+ "error-code": "",
+ "fallback": "",
+ "suffix": "",
+ "title": ""
+ },
+ "n-more-policies_other": ""
+ },
+ "provisioning": {
+ "badge-tooltip-provenance": "",
+ "badge-tooltip-standard": ""
+ },
+ "queryAndExpressionsStep": {
+ "disableAdvancedOptions": {
+ "text": ""
+ },
+ "preview": "",
+ "previewCondition": ""
+ },
+ "recording-rules": {
+ "description-target-data-source": "",
+ "label-target-data-source": ""
+ },
+ "rule-form": {
+ "evaluation": {
+ "evaluation-group-and-interval": "",
+ "group": {
+ "cancel": "",
+ "create": "",
+ "interval": ""
+ },
+ "group-name": "",
+ "group-text": "",
+ "new-group": "",
+ "pause": {
+ "alerting": "",
+ "recording": ""
+ },
+ "select-folder-before": ""
+ },
+ "evaluation-behaviour": {
+ "description": {
+ "text": ""
+ },
+ "info-help": {
+ "text": ""
+ },
+ "pending-period": ""
+ },
+ "evaluation-behaviour-description1": "",
+ "evaluation-behaviour-description2": "",
+ "evaluation-behaviour-description3": "",
+ "evaluation-behaviour-for": {
+ "error-parsing": "",
+ "validation": ""
+ },
+ "folder": {
+ "cancel": "",
+ "create": "",
+ "create-folder": "",
+ "creating-new-folder": "",
+ "label": "",
+ "name": "",
+ "new-folder": "",
+ "new-folder-or": ""
+ },
+ "folder-and-labels": "",
+ "folders": {
+ "help-info": ""
+ },
+ "labels": {
+ "help-info": ""
+ },
+ "pause": {
+ "label": ""
+ },
+ "threshold": {
+ "recovery": {
+ "stop-alerting-above": "",
+ "stop-alerting-bellow": "",
+ "stop-alerting-equal": "",
+ "stop-alerting-inside-range": "",
+ "stop-alerting-less": "",
+ "stop-alerting-more": "",
+ "stop-alerting-not-equal": "",
+ "stop-alerting-outside-range": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-groups": {
+ "delete": {
+ "success": ""
+ },
+ "move": {
+ "success": ""
+ },
+ "rename": {
+ "success": ""
+ },
+ "update": {
+ "success": ""
+ }
+ },
+ "rule-list": {
+ "configure-datasource": "",
+ "ds-error-boundary": {
+ "description": "",
+ "title": ""
+ },
+ "filter-view": {
+ "no-more-results": "",
+ "no-rules-found": ""
+ },
+ "new-alert-rule": "",
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "return-button": {
+ "title": ""
+ },
+ "rulerrule-loading-error": ""
+ },
+ "rule-state": {
+ "creating": "",
+ "deleting": "",
+ "paused": "",
+ "recording-rule": ""
+ },
+ "rule-view": {
+ "query": {
+ "datasources-na": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "rule-viewer": {
+ "error-loading": "",
+ "prometheus-consistency-check": {
+ "alert-message": "",
+ "alert-title": ""
+ }
+ },
+ "rules": {
+ "add-rule": {
+ "success": ""
+ },
+ "delete-rule": {
+ "success": ""
+ },
+ "pause-rule": {
+ "success": ""
+ },
+ "resume-rule": {
+ "success": ""
+ },
+ "update-rule": {
+ "success": ""
+ }
+ },
+ "search": {
+ "property": {
+ "data-source": "",
+ "evaluation-group": "",
+ "labels": "",
+ "namespace": "",
+ "rule-health": "",
+ "rule-name": "",
+ "rule-type": "",
+ "state": ""
+ },
+ "save-query": ""
+ },
+ "silences": {
+ "affected-instances": "",
+ "only-firing-instances": "",
+ "preview-affected-instances": ""
+ },
+ "simpleCondition": {
+ "alertCondition": ""
+ },
+ "templates": {
+ "editor": {
+ "add-example": "",
+ "auto-complete": "",
+ "goto-docs": ""
+ },
+ "help": {
+ "intro": ""
+ },
+ "misconfigured-badge-text": "",
+ "misconfigured-warning": "",
+ "misconfigured-warning-details": ""
+ },
+ "threshold": {
+ "to": ""
+ }
+ },
+ "annotations": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ }
+ },
+ "api-keys": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "app-chrome": {
+ "skip-content-button": "",
+ "top-bar": {
+ "sign-in": ""
+ }
+ },
+ "app-notification": {
+ "item": {
+ "trace-id": ""
+ }
+ },
+ "bookmarks-page": {
+ "empty": {
+ "message": "",
+ "tip": ""
+ }
+ },
+ "bouncing-loader": {
+ "label": ""
+ },
+ "browse-dashboards": {
+ "action": {
+ "cancel-button": "",
+ "cannot-move-folders": "",
+ "confirmation-text": "",
+ "delete-button": "",
+ "delete-modal-invalid-text": "",
+ "delete-modal-invalid-title": "",
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "delete-modal-title": "",
+ "deleting": "",
+ "manage-permissions-button": "",
+ "move-button": "",
+ "move-modal-alert": "",
+ "move-modal-field-label": "",
+ "move-modal-text": "",
+ "move-modal-title": "",
+ "moving": "",
+ "new-folder-name-required-phrase": ""
+ },
+ "actions": {
+ "button-to-recently-deleted": ""
+ },
+ "counts": {
+ "alertRule_other": "",
+ "dashboard_other": "",
+ "folder_other": "",
+ "libraryPanel_other": "",
+ "total_other": ""
+ },
+ "dashboards-tree": {
+ "collapse-folder-button": "",
+ "expand-folder-button": "",
+ "name-column": "",
+ "select-all-header-checkbox": "",
+ "select-checkbox": "",
+ "tags-column": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": "",
+ "title-folder": ""
+ },
+ "folder-actions-button": {
+ "delete": "",
+ "folder-actions": "",
+ "manage-permissions": "",
+ "move": ""
+ },
+ "folder-picker": {
+ "accessible-label": "",
+ "button-label": "",
+ "clear-selection": "",
+ "empty-message": "",
+ "error-title": "",
+ "non-folder-item": "",
+ "search-placeholder": "",
+ "unknown-error": ""
+ },
+ "hard-delete": {
+ "success": ""
+ },
+ "manage-folder-nav": {
+ "alert-rules": "",
+ "dashboards": "",
+ "panels": ""
+ },
+ "new-folder-form": {
+ "cancel-label": "",
+ "create-label": "",
+ "name-label": ""
+ },
+ "no-results": {
+ "clear": "",
+ "text": ""
+ },
+ "soft-delete": {
+ "success": ""
+ }
+ },
+ "clipboard-button": {
+ "inline-toast": {
+ "success": ""
+ }
+ },
+ "combobox": {
+ "async": {
+ "error": ""
+ },
+ "clear": {
+ "title": ""
+ },
+ "custom-value": {
+ "description": ""
+ },
+ "group": {
+ "undefined": ""
+ },
+ "options": {
+ "no-found": ""
+ }
+ },
+ "command-palette": {
+ "action": {
+ "change-theme": "",
+ "dark-theme": "",
+ "light-theme": ""
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "search-box": {
+ "placeholder": ""
+ },
+ "section": {
+ "actions": "",
+ "dashboard-search-results": "",
+ "folder-search-results": "",
+ "pages": "",
+ "preferences": "",
+ "recent-dashboards": ""
+ }
+ },
+ "common": {
+ "apply": "",
+ "cancel": "",
+ "clear": "",
+ "close": "",
+ "collapse": "",
+ "edit": "",
+ "help": "",
+ "loading": "",
+ "locale": {
+ "default": ""
+ },
+ "save": "",
+ "search": "",
+ "view": ""
+ },
+ "configuration-tracker": {
+ "config-card": {
+ "complete": ""
+ }
+ },
+ "connections": {
+ "connect-data": {
+ "category-header-label": "",
+ "empty-message": "",
+ "request-data-source": "",
+ "roadmap": ""
+ },
+ "search": {
+ "placeholder": ""
+ }
+ },
+ "core": {
+ "versionHistory": {
+ "comparison": {
+ "header": {
+ "hide-json-diff": "",
+ "show-json-diff": "",
+ "text": ""
+ },
+ "select": ""
+ },
+ "no-properties-changed": "",
+ "table": {
+ "updated": "",
+ "updatedBy": "",
+ "version": ""
+ },
+ "view-json-diff": ""
+ }
+ },
+ "correlations": {
+ "add-new": "",
+ "alert": {
+ "error-message": "",
+ "title": ""
+ },
+ "basic-info-form": {
+ "description-description": "",
+ "description-label": "",
+ "label-description": "",
+ "label-label": "",
+ "label-placeholder": "",
+ "label-required": "",
+ "sub-text": "",
+ "title": ""
+ },
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ },
+ "list": {
+ "delete": "",
+ "label": "",
+ "loading": "",
+ "read-only": "",
+ "source": "",
+ "target": ""
+ },
+ "navigation-form": {
+ "add-button": "",
+ "back-button": "",
+ "next-button": "",
+ "save-button": ""
+ },
+ "page-content": "",
+ "page-heading": "",
+ "query-editor": {
+ "control-rules": "",
+ "data-source-text": "",
+ "data-source-title": "",
+ "error-text": "",
+ "error-title": "",
+ "loading": "",
+ "query-description": "",
+ "query-editor-title": "",
+ "query-label": ""
+ },
+ "source-form": {
+ "control-required": "",
+ "description": "",
+ "description-external-pre": "",
+ "description-query-pre": "",
+ "external-title": "",
+ "heading-external": "",
+ "heading-query": "",
+ "query-title": "",
+ "results-description": "",
+ "results-label": "",
+ "results-required": "",
+ "source-description": "",
+ "source-label": "",
+ "sub-text": ""
+ },
+ "sub-title": "",
+ "target-form": {
+ "control-rules": "",
+ "sub-text": "",
+ "target-description-external": "",
+ "target-description-query": "",
+ "target-label": "",
+ "target-type-description": "",
+ "title": "",
+ "type-label": ""
+ },
+ "trans-details": {
+ "logfmt-description": "",
+ "logfmt-label": "",
+ "regex-description": "",
+ "regex-expression": "",
+ "regex-label": "",
+ "regex-map-values": ""
+ },
+ "transform": {
+ "add-button": "",
+ "heading": "",
+ "no-transform": ""
+ },
+ "transform-row": {
+ "expression-label": "",
+ "expression-required": "",
+ "expression-tooltip": "",
+ "field-input": "",
+ "field-label": "",
+ "field-tooltip": "",
+ "map-value-label": "",
+ "map-value-tooltip": "",
+ "remove-button": "",
+ "remove-tooltip": "",
+ "transform-required": "",
+ "type-label": "",
+ "type-tooltip": ""
+ }
+ },
+ "dashboard": {
+ "add-menu": {
+ "import": "",
+ "paste-panel": "",
+ "row": "",
+ "visualization": ""
+ },
+ "alert-rules-drawer": {
+ "redirect-link": "",
+ "subtitle": ""
+ },
+ "default-layout": {
+ "description": "",
+ "item-options": {
+ "repeat": {
+ "direction": {
+ "horizontal": "",
+ "title": "",
+ "vertical": ""
+ },
+ "max": "",
+ "title": "",
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ }
+ },
+ "name": "",
+ "row-actions": {
+ "delete": "",
+ "modal": {
+ "alt-action": "",
+ "text": "",
+ "title": ""
+ }
+ },
+ "row-options": {
+ "button": {
+ "label": ""
+ },
+ "form": {
+ "cancel": "",
+ "repeat-for": {
+ "label": "",
+ "learn-more": "",
+ "warning": {
+ "text": ""
+ }
+ },
+ "title": "",
+ "update": ""
+ },
+ "modal": {
+ "title": ""
+ },
+ "repeat": {
+ "title": "",
+ "variable": {
+ "title": ""
+ }
+ },
+ "title": ""
+ }
+ },
+ "edit-pane": {
+ "elements": {
+ "dashboard": "",
+ "objects": "",
+ "panel": "",
+ "panels": "",
+ "row": "",
+ "rows": "",
+ "tab": "",
+ "tabs": ""
+ },
+ "open": "",
+ "row": {
+ "header": {
+ "hide": "",
+ "title": ""
+ }
+ }
+ },
+ "editpane": {
+ "add": "",
+ "configure": "",
+ "outline": ""
+ },
+ "empty": {
+ "add-library-panel-body": "",
+ "add-library-panel-button": "",
+ "add-library-panel-header": "",
+ "add-visualization-body": "",
+ "add-visualization-button": "",
+ "add-visualization-header": "",
+ "import-a-dashboard-body": "",
+ "import-a-dashboard-header": "",
+ "import-dashboard-button": ""
+ },
+ "errors": {
+ "failed-to-load": ""
+ },
+ "inspect": {
+ "data-tab": "",
+ "error-tab": "",
+ "json-tab": "",
+ "meta-tab": "",
+ "query-tab": "",
+ "stats-tab": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "inspect-data": {
+ "data-options": "",
+ "dataframe-aria-label": "",
+ "dataframe-label": "",
+ "download-csv": "",
+ "download-excel-description": "",
+ "download-excel-label": "",
+ "download-logs": "",
+ "download-service": "",
+ "download-traces": "",
+ "excel-header": "",
+ "formatted": "",
+ "formatted-data-description": "",
+ "formatted-data-label": "",
+ "panel-transforms": "",
+ "series-to-columns": "",
+ "transformation": "",
+ "transformations-description": "",
+ "transformations-label": ""
+ },
+ "inspect-json": {
+ "dataframe-description": "",
+ "dataframe-label": "",
+ "panel-data-description": "",
+ "panel-data-label": "",
+ "panel-json-description": "",
+ "panel-json-label": "",
+ "select-source": "",
+ "unknown": ""
+ },
+ "inspect-meta": {
+ "no-inspector": ""
+ },
+ "inspect-stats": {
+ "data-title": "",
+ "data-traceids": "",
+ "processing-time": "",
+ "queries": "",
+ "request-time": "",
+ "rows": "",
+ "table-title": ""
+ },
+ "layout": {
+ "common": {
+ "copy": "",
+ "copy-or-duplicate": "",
+ "delete": "",
+ "duplicate": "",
+ "layout": ""
+ }
+ },
+ "options": {
+ "description": "",
+ "title-option": ""
+ },
+ "outline": {
+ "tree": {
+ "item": {
+ "collapse": "",
+ "empty": "",
+ "expand": ""
+ }
+ }
+ },
+ "panel-edit": {
+ "alerting-tab": {
+ "dashboard-not-saved": "",
+ "no-rules": ""
+ }
+ },
+ "responsive-layout": {
+ "description": "",
+ "item-options": {
+ "hide-no-data": "",
+ "repeat": {
+ "variable": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "title": ""
+ },
+ "name": "",
+ "options": {
+ "columns": "",
+ "fixed": "",
+ "min": "",
+ "one-column": "",
+ "rows": "",
+ "three-columns": "",
+ "two-columns": ""
+ }
+ },
+ "rows-layout": {
+ "description": "",
+ "name": "",
+ "option": {
+ "height": "",
+ "hide-header": "",
+ "repeat": "",
+ "title": ""
+ },
+ "options": {
+ "height-expand": "",
+ "height-min": ""
+ },
+ "row": {
+ "collapse": "",
+ "expand": "",
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-row-above": "",
+ "add-row-below": "",
+ "move-down": "",
+ "move-row": "",
+ "move-up": ""
+ },
+ "new": "",
+ "repeat": {
+ "learn-more": "",
+ "warning": ""
+ }
+ },
+ "row-options": {
+ "title-option": ""
+ }
+ },
+ "tabs-layout": {
+ "description": "",
+ "menu": {
+ "move-tab": ""
+ },
+ "name": "",
+ "tab": {
+ "menu": {
+ "add": "",
+ "add-panel": "",
+ "add-tab-above": "",
+ "add-tab-after": "",
+ "add-tab-before": "",
+ "move-left": "",
+ "move-right": ""
+ },
+ "new": ""
+ },
+ "tab-options": {
+ "title-option": ""
+ }
+ },
+ "toolbar": {
+ "add": "",
+ "add-panel": "",
+ "add-panel-description": "",
+ "add-panel-lib": "",
+ "add-row": "",
+ "add-tab": "",
+ "alert-rules": "",
+ "back-to-dashboard": "",
+ "dashboard-settings": {
+ "label": "",
+ "tooltip": ""
+ },
+ "discard-library-panel-changes": "",
+ "discard-panel": "",
+ "discard-panel-new": "",
+ "edit": {
+ "label": "",
+ "tooltip": ""
+ },
+ "edit-dashboard-v2-schema": "",
+ "enter-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "exit-edit-mode": {
+ "label": "",
+ "tooltip": ""
+ },
+ "libray-panel-description": "",
+ "mark-favorite": "",
+ "more-save-options": "",
+ "open-original": "",
+ "playlist-next": "",
+ "playlist-previous": "",
+ "playlist-stop": "",
+ "public-dashboard": "",
+ "refresh": "",
+ "row-description": "",
+ "save": "",
+ "save-dashboard": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-copy": {
+ "label": "",
+ "tooltip": ""
+ },
+ "save-dashboard-short": "",
+ "save-library-panel": "",
+ "settings": "",
+ "share": {
+ "label": "",
+ "tooltip": ""
+ },
+ "share-button": "",
+ "show-hidden-elements": "",
+ "switch-old-dashboard": "",
+ "tabs-description": "",
+ "unlink-library-panel": "",
+ "unmark-favorite": ""
+ },
+ "validation": {
+ "invalid-dashboard-id": "",
+ "invalid-json": "",
+ "tags-expected-array": "",
+ "tags-expected-strings": ""
+ },
+ "viz-panel": {
+ "options": {
+ "description": "",
+ "open-edit": "",
+ "plugin-type-image": "",
+ "title-option": "",
+ "transparent-background": ""
+ }
+ }
+ },
+ "dashboard-import": {
+ "file-dropzone": {
+ "primary-text": "",
+ "secondary-text": ""
+ },
+ "form-actions": {
+ "cancel": "",
+ "load": ""
+ },
+ "gcom-field": {
+ "label": "",
+ "load-button": "",
+ "placeholder": "",
+ "validation-required": ""
+ },
+ "json-field": {
+ "label": "",
+ "validation-required": ""
+ }
+ },
+ "dashboard-links": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "title": ""
+ }
+ },
+ "dashboard-settings": {
+ "annotations": {
+ "title": ""
+ },
+ "dashboard-delete-button": "",
+ "delete-modal": {
+ "confirmation-text": "",
+ "delete-button": "",
+ "title": ""
+ },
+ "delete-modal-restore-dashboards-text": "",
+ "delete-modal-text": "",
+ "general": {
+ "auto-refresh-description": "",
+ "auto-refresh-label": "",
+ "description-label": "",
+ "editable-description": "",
+ "editable-label": "",
+ "folder-label": "",
+ "panel-options-graph-tooltip-description": "",
+ "panel-options-graph-tooltip-label": "",
+ "panel-options-label": "",
+ "panels-preload-description": "",
+ "panels-preload-label": "",
+ "tags-label": "",
+ "title": "",
+ "title-label": ""
+ },
+ "json-editor": {
+ "save-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "links": {
+ "title": ""
+ },
+ "permissions": {
+ "title": ""
+ },
+ "provisioned-delete-modal": {
+ "confirm-button": "",
+ "text-1": "",
+ "text-2": "",
+ "text-3": "",
+ "text-link": "",
+ "title": ""
+ },
+ "settings": {
+ "title": ""
+ },
+ "time-picker": {
+ "hide-time-picker": "",
+ "now-delay-description": "",
+ "now-delay-label": "",
+ "refresh-live-dashboards-description": "",
+ "refresh-live-dashboards-label": "",
+ "time-options-label": "",
+ "time-zone-label": "",
+ "week-start-label": ""
+ },
+ "time-regions": {
+ "advanced-description-cron": "",
+ "advanced-description-rest": "",
+ "advanced-description-use": "",
+ "advanced-label": ""
+ },
+ "variables": {
+ "title": ""
+ },
+ "versions": {
+ "title": ""
+ }
+ },
+ "dashboards": {
+ "panel-edit": {
+ "angular-deprecation-button-open-panel-json": "",
+ "angular-deprecation-description": "",
+ "angular-deprecation-heading": ""
+ },
+ "panel-queries": {
+ "add-query-from-library": ""
+ },
+ "settings": {
+ "variables": {
+ "dependencies": {
+ "button": "",
+ "title": ""
+ }
+ }
+ }
+ },
+ "data-source-list": {
+ "empty-state": {
+ "button-title": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "data-source-picker": {
+ "add-new-data-source": "",
+ "built-in-list": {
+ "description-dashboard": "",
+ "description-grafana": "",
+ "description-mixed": ""
+ },
+ "list": {
+ "no-data-source-message": ""
+ },
+ "modal": {
+ "configure-new-data-source": "",
+ "input-placeholder": "",
+ "title": ""
+ },
+ "open-advanced-button": ""
+ },
+ "data-source-testing-status-page": {
+ "error-more-details-link": "",
+ "success-more-details-links": ""
+ },
+ "data-sources": {
+ "datasource-add-button": {
+ "label": ""
+ },
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "embed": {
+ "share": {
+ "time-range-description": "",
+ "time-range-label": ""
+ }
+ },
+ "empty-list-cta": {
+ "pro-tip": ""
+ },
+ "entity-not-found": {
+ "description": ""
+ },
+ "errors": {
+ "dashboard-settings": {
+ "annotations": {
+ "datasource": ""
+ }
+ }
+ },
+ "explore": {
+ "add-to-dashboard": "",
+ "drilldownInfo": {
+ "action": "",
+ "description": "",
+ "title": ""
+ },
+ "logs": {
+ "logs-volume": {
+ "add-filters": "",
+ "decrease-timerange": "",
+ "much-data": ""
+ },
+ "maximum-pinned-logs": "",
+ "no-logs-found": "",
+ "scan-for-older-logs": "",
+ "stop-scan": ""
+ },
+ "rich-history": {
+ "close-tooltip": "",
+ "datasource-a-z": "",
+ "datasource-z-a": "",
+ "newest-first": "",
+ "oldest-first": "",
+ "query-history": "",
+ "query-library": "",
+ "settings": "",
+ "starred": ""
+ },
+ "rich-history-card": {
+ "add-comment-form": "",
+ "add-comment-tooltip": "",
+ "add-to-library": "",
+ "cancel": "",
+ "confirm-delete": "",
+ "copy-query-tooltip": "",
+ "copy-shortened-link-tooltip": "",
+ "datasource-icon-label": "",
+ "datasource-name-label": "",
+ "datasource-not-exist": "",
+ "delete-query-confirmation-title": "",
+ "delete-query-title": "",
+ "delete-query-tooltip": "",
+ "delete-starred-query-confirmation-text": "",
+ "edit-comment-tooltip": "",
+ "optional-description": "",
+ "query-comment-label": "",
+ "query-text-label": "",
+ "save-comment": "",
+ "star-query-tooltip": "",
+ "unstar-query-tooltip": "",
+ "update-comment-form": ""
+ },
+ "rich-history-container": {
+ "loading": ""
+ },
+ "rich-history-notification": {
+ "query-copied": "",
+ "query-deleted": ""
+ },
+ "rich-history-queries-tab": {
+ "displaying-partial-queries": "",
+ "displaying-queries": "",
+ "filter-aria-label": "",
+ "filter-history": "",
+ "filter-placeholder": "",
+ "history-local": "",
+ "loading": "",
+ "loading-results": "",
+ "search-placeholder": "",
+ "showing-queries": "",
+ "sort-aria-label": "",
+ "sort-placeholder": ""
+ },
+ "rich-history-settings-tab": {
+ "alert-info": "",
+ "change-default-tab": "",
+ "clear-history-info": "",
+ "clear-query-history": "",
+ "clear-query-history-button": "",
+ "delete-confirm": "",
+ "delete-confirm-text": "",
+ "delete-title": "",
+ "history-time-span": "",
+ "history-time-span-description": "",
+ "only-show-active-datasource": "",
+ "query-history-deleted": "",
+ "retention-period": {
+ "1-week": "",
+ "2-days": "",
+ "2-weeks": "",
+ "5-days": ""
+ }
+ },
+ "rich-history-starred-tab": {
+ "filter-queries-aria-label": "",
+ "filter-queries-placeholder": "",
+ "loading": "",
+ "loading-results": "",
+ "local-history-message": "",
+ "search-queries-placeholder": "",
+ "showing-queries": "",
+ "sort-queries-aria-label": "",
+ "sort-queries-placeholder": ""
+ },
+ "rich-history-utils": {
+ "a-week-ago": "",
+ "days-ago": "",
+ "default-from": "",
+ "default-to": "",
+ "today": "",
+ "two-weeks-ago": "",
+ "yesterday": ""
+ },
+ "rich-history-utils-notification": {
+ "saving-failed": "",
+ "update-failed": ""
+ },
+ "run-query": {
+ "left-pane": "",
+ "right-pane": "",
+ "run-query-button": "",
+ "switch-datasource-button": ""
+ },
+ "secondary-actions": {
+ "add-from-query-library": "",
+ "query-add-button": "",
+ "query-add-button-aria-label": "",
+ "query-history-button": "",
+ "query-history-button-aria-label": "",
+ "query-inspector-button": "",
+ "query-inspector-button-aria-label": ""
+ },
+ "table": {
+ "no-data": "",
+ "title": "",
+ "title-with-name": ""
+ },
+ "toolbar": {
+ "add-to-extensions": "",
+ "add-to-queryless-extensions": "",
+ "aria-label": "",
+ "copy-link": "",
+ "copy-link-abs-time": "",
+ "copy-links-absolute-category": "",
+ "copy-links-normal-category": "",
+ "copy-shortened-link": "",
+ "copy-shortened-link-abs-time": "",
+ "copy-shortened-link-label": "",
+ "copy-shortened-link-menu": "",
+ "refresh-picker-cancel": "",
+ "refresh-picker-run": "",
+ "split-close": "",
+ "split-close-tooltip": "",
+ "split-narrow": "",
+ "split-title": "",
+ "split-tooltip": "",
+ "split-widen": ""
+ }
+ },
+ "explore-metrics": {
+ "breakdown": {
+ "clearFilter": "",
+ "labelSelect": "",
+ "missing-otel-labels": "",
+ "noMatchingValue": "",
+ "sortBy": ""
+ },
+ "related-logs": {
+ "LrrDocsLink": "",
+ "openExploreLogs": "",
+ "relatedLogsUnavailable": "",
+ "warnExperimentalFeature": ""
+ },
+ "viewBy": ""
+ },
+ "export": {
+ "json": {
+ "cancel-button": "",
+ "copy-button": "",
+ "download-button": "",
+ "download-successful_toast_message": "",
+ "export-externally-label": "",
+ "info-text": "",
+ "title": ""
+ },
+ "menu": {
+ "export-as-json-label": "",
+ "export-as-json-tooltip": ""
+ }
+ },
+ "folder-filter": {
+ "clear-folder-button": ""
+ },
+ "folder-picker": {
+ "create-instructions": "",
+ "loading": ""
+ },
+ "forgot-password": {
+ "back-button": "",
+ "change-password": {
+ "skip-button": "",
+ "submit-button": ""
+ },
+ "contact-admin": "",
+ "email-sent": "",
+ "reset-password-header": "",
+ "send-email-button": ""
+ },
+ "form-prompt": {
+ "continue-button": "",
+ "description": "",
+ "discard-button": ""
+ },
+ "gen-ai": {
+ "apply-suggestion": "",
+ "incomplete-request-error": "",
+ "send-custom-feedback": ""
+ },
+ "get-enterprise": {
+ "requires-license": "",
+ "title": ""
+ },
+ "grafana-ui": {
+ "action-editor": {
+ "button": {
+ "confirm": "",
+ "confirm-action": ""
+ },
+ "inline": {
+ "add-action": "",
+ "edit-action": ""
+ },
+ "modal": {
+ "action-body": "",
+ "action-method": "",
+ "action-query-params": "",
+ "action-title": "",
+ "action-title-placeholder": "",
+ "one-click-description": ""
+ }
+ },
+ "alert": {
+ "close-button": ""
+ },
+ "auto-save-field": {
+ "saved": "",
+ "saving": ""
+ },
+ "card": {
+ "option": ""
+ },
+ "cascader": {
+ "clear-button": ""
+ },
+ "color-picker-popover": {
+ "palette-tab": "",
+ "spectrum-tab": ""
+ },
+ "confirm-button": {
+ "cancel": ""
+ },
+ "confirm-content": {
+ "placeholder": ""
+ },
+ "data-link-editor": {
+ "info": "",
+ "new-tab-label": "",
+ "title-label": "",
+ "title-placeholder": "",
+ "url-label": ""
+ },
+ "data-link-editor-modal": {
+ "cancel": "",
+ "one-click-description": "",
+ "save": ""
+ },
+ "data-link-inline-editor": {
+ "one-click": ""
+ },
+ "data-links-inline-editor": {
+ "add-link": "",
+ "edit-link": "",
+ "one-click": "",
+ "one-click-enabled": "",
+ "title-not-provided": "",
+ "tooltip-edit": "",
+ "tooltip-remove": "",
+ "url-not-provided": ""
+ },
+ "data-source-basic-auth-settings": {
+ "user-label": "",
+ "user-placeholder": ""
+ },
+ "data-source-http-proxy-settings": {
+ "oauth-identity-label": "",
+ "oauth-identity-tooltip": "",
+ "skip-tls-verify-label": "",
+ "ts-client-auth-label": "",
+ "with-ca-cert-label": "",
+ "with-ca-cert-tooltip": ""
+ },
+ "data-source-http-settings": {
+ "access-help": "",
+ "access-help-details": "",
+ "access-label": "",
+ "access-options-browser": "",
+ "access-options-proxy": "",
+ "allowed-cookies": "",
+ "allowed-cookies-tooltip": "",
+ "auth": "",
+ "azure-auth-label": "",
+ "azure-auth-tooltip": "",
+ "basic-auth": "",
+ "basic-auth-label": "",
+ "browser-mode-description": "",
+ "browser-mode-title": "",
+ "default-url-access-select": "",
+ "default-url-tooltip": "",
+ "direct-url-tooltip": "",
+ "heading": "",
+ "proxy-url-tooltip": "",
+ "server-mode-description": "",
+ "server-mode-title": "",
+ "timeout-form-label": "",
+ "timeout-label": "",
+ "timeout-tooltip": "",
+ "url-label": "",
+ "with-credential-label": "",
+ "with-credential-tooltip": ""
+ },
+ "data-source-settings": {
+ "alerting-settings-heading": "",
+ "alerting-settings-label": "",
+ "alerting-settings-tooltip": "",
+ "cert-key-reset": "",
+ "custom-headers-add": "",
+ "custom-headers-header": "",
+ "custom-headers-header-placeholder": "",
+ "custom-headers-header-remove": "",
+ "custom-headers-header-value": "",
+ "custom-headers-title": "",
+ "secure-socks-heading": "",
+ "secure-socks-label": "",
+ "secure-socks-tooltip": "",
+ "tls-certification-label": "",
+ "tls-certification-placeholder": "",
+ "tls-client-certification-label": "",
+ "tls-client-key-label": "",
+ "tls-client-key-placeholder": "",
+ "tls-heading": "",
+ "tls-server-name-label": "",
+ "tls-tooltip": ""
+ },
+ "date-time-picker": {
+ "apply": "",
+ "calendar-icon-label": "",
+ "cancel": "",
+ "next-label": "",
+ "previous-label": "",
+ "select-placeholder": ""
+ },
+ "drawer": {
+ "close": ""
+ },
+ "feature-badge": {
+ "experimental": "",
+ "new": "",
+ "preview": "",
+ "private-preview": ""
+ },
+ "field-link-list": {
+ "external-links-heading": ""
+ },
+ "file-dropzone": {
+ "cancel-upload": "",
+ "file-too-large": ""
+ },
+ "filter-input": {
+ "clear": ""
+ },
+ "modal": {
+ "close-tooltip": ""
+ },
+ "named-colors-palette": {
+ "text-color-swatch": "",
+ "transparent-swatch": ""
+ },
+ "page-toolbar": {
+ "go-back": "",
+ "search-dashboard-name": "",
+ "search-links": "",
+ "search-parent-folder": ""
+ },
+ "pagination": {
+ "next-page": "",
+ "previous-page": ""
+ },
+ "secret-form-field": {
+ "reset": ""
+ },
+ "segment-async": {
+ "error": "",
+ "loading": "",
+ "no-options": ""
+ },
+ "select": {
+ "default-create-label": "",
+ "no-options-label": "",
+ "placeholder": ""
+ },
+ "series-color-picker-popover": {
+ "y-axis-usage": ""
+ },
+ "spinner": {
+ "aria-label": ""
+ },
+ "table": {
+ "copy": "",
+ "csv-counts": "",
+ "filter-popup-apply": "",
+ "filter-popup-cancel": "",
+ "filter-popup-clear": "",
+ "filter-popup-heading": "",
+ "no-values-label": "",
+ "pagination-summary": ""
+ },
+ "tags-input": {
+ "add": ""
+ },
+ "user-icon": {
+ "active-text": ""
+ },
+ "value-pill": {
+ "remove-button": ""
+ },
+ "viz-legend": {
+ "right-axis-indicator": ""
+ },
+ "viz-tooltip": {
+ "actions-confirmation-input-placeholder": "",
+ "actions-confirmation-label": "",
+ "actions-confirmation-message": "",
+ "footer-add-annotation": "",
+ "footer-click-to-action": "",
+ "footer-click-to-navigate": ""
+ }
+ },
+ "graph": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": "",
+ "title": ""
+ }
+ },
+ "help-modal": {
+ "column-headers": {
+ "description": "",
+ "keys": ""
+ },
+ "shortcuts-category": {
+ "dashboard": "",
+ "focused-panel": "",
+ "global": "",
+ "time-range": ""
+ },
+ "shortcuts-description": {
+ "change-theme": "",
+ "collapse-all-rows": "",
+ "copy-time-range": "",
+ "dashboard-settings": "",
+ "duplicate-panel": "",
+ "exit-edit/setting-views": "",
+ "expand-all-rows": "",
+ "go-to-dashboards": "",
+ "go-to-explore": "",
+ "go-to-home-dashboard": "",
+ "go-to-profile": "",
+ "make-time-range-permanent": "",
+ "move-time-range-back": "",
+ "move-time-range-forward": "",
+ "open-search": "",
+ "open-shared-modal": "",
+ "paste-time-range": "",
+ "refresh-all-panels": "",
+ "remove-panel": "",
+ "save-dashboard": "",
+ "show-all-shortcuts": "",
+ "toggle-active-mode": "",
+ "toggle-all-panel-legends": "",
+ "toggle-auto-fit": "",
+ "toggle-exemplars": "",
+ "toggle-graph-crosshair": "",
+ "toggle-kiosk": "",
+ "toggle-panel-edit": "",
+ "toggle-panel-fullscreen": "",
+ "toggle-panel-legend": "",
+ "zoom-out-time-range": ""
+ },
+ "title": ""
+ },
+ "help-wizard": {
+ "download-snapshot": "",
+ "github-comment": "",
+ "support-bundle": "",
+ "troubleshooting-help": ""
+ },
+ "inspector": {
+ "query": {
+ "collapse-all": "",
+ "copy-to-clipboard": "",
+ "description": "",
+ "expand-all": "",
+ "no-data": "",
+ "refresh": ""
+ }
+ },
+ "ldap-drawer": {
+ "attributes-section": {
+ "description": "",
+ "email-label": "",
+ "label": "",
+ "member-of-label": "",
+ "name-label": "",
+ "surname-label": "",
+ "username-label": ""
+ },
+ "extra-security-section": {
+ "client-cert-label": "",
+ "client-cert-placeholder": "",
+ "client-cert-value-label": "",
+ "client-cert-value-placeholder": "",
+ "client-key-label": "",
+ "client-key-placeholder": "",
+ "client-key-value-label": "",
+ "client-key-value-placeholder": "",
+ "encryption-provider-base-64": "",
+ "encryption-provider-description": "",
+ "encryption-provider-file-path": "",
+ "encryption-provider-label": "",
+ "label": "",
+ "min-tls-version-description": "",
+ "min-tls-version-label": "",
+ "root-ca-cert-label": "",
+ "root-ca-cert-placeholder": "",
+ "root-ca-cert-value-label": "",
+ "root-ca-cert-value-placeholder": "",
+ "start-tls-description": "",
+ "start-tls-label": "",
+ "tls-ciphers-label": "",
+ "tls-ciphers-placeholder": "",
+ "use-ssl-description": "",
+ "use-ssl-label": "",
+ "use-ssl-tooltip": ""
+ },
+ "group-mapping": {
+ "grafana-admin": {
+ "description": "",
+ "label": ""
+ },
+ "group-dn": {
+ "description": "",
+ "label": ""
+ },
+ "org-id": {
+ "description": "",
+ "label": ""
+ },
+ "org-role": {
+ "label": ""
+ },
+ "remove": {
+ "button": ""
+ }
+ },
+ "group-mapping-section": {
+ "add": {
+ "button": ""
+ },
+ "description": "",
+ "group-search-base-dns-label": "",
+ "group-search-base-dns-placeholder": "",
+ "group-search-filter-description": "",
+ "group-search-filter-label": "",
+ "group-search-filter-user-attribute-description": "",
+ "group-search-filter-user-attribute-label": "",
+ "label": "",
+ "skip-org-role-sync-description": "",
+ "skip-org-role-sync-label": ""
+ },
+ "misc-section": {
+ "allow-sign-up-descrition": "",
+ "allow-sign-up-label": "",
+ "label": "",
+ "port-description": "",
+ "port-label": "",
+ "timeout-description": "",
+ "timeout-label": ""
+ },
+ "title": ""
+ },
+ "ldap-settings-page": {
+ "advanced-settings-section": {
+ "edit-button": "",
+ "subtitle": "",
+ "title": ""
+ },
+ "alert": {
+ "discard-success": "",
+ "error-fetching": "",
+ "error-saving": "",
+ "error-validate-form": "",
+ "feature-flag-disabled": "",
+ "saved": ""
+ },
+ "bind-dn": {
+ "description": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "bind-password": {
+ "label": ""
+ },
+ "buttons-section": {
+ "disable-button": "",
+ "discard-button": "",
+ "save-and-enable-button": "",
+ "save-button": ""
+ },
+ "documentation": "",
+ "host": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "login-form-alert": {
+ "description": "",
+ "title": ""
+ },
+ "search_filter": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "search-base-dns": {
+ "description": "",
+ "error": "",
+ "label": "",
+ "placeholder": ""
+ },
+ "subtitle": "",
+ "title": ""
+ },
+ "library-panel": {
+ "add-modal": {
+ "cancel": "",
+ "create": "",
+ "error": "",
+ "folder": "",
+ "folder-description": "",
+ "name": ""
+ },
+ "add-widget": {
+ "title": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ }
+ },
+ "library-panels": {
+ "empty-state": {
+ "message": ""
+ },
+ "loading-panel-text": "",
+ "modal": {
+ "button-cancel": "",
+ "button-view-panel1": "",
+ "button-view-panel2": "",
+ "panel-not-linked": "",
+ "select-no-options-message": "",
+ "select-placeholder": "",
+ "title": "",
+ "body_other": ""
+ },
+ "save": {
+ "error": "",
+ "success": ""
+ }
+ },
+ "link": {
+ "share": {
+ "config-alert-description": "",
+ "config-alert-title": "",
+ "config-description": "",
+ "copy-link-button": "",
+ "copy-to-clipboard": "",
+ "short-url-label": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "share-panel": {
+ "config-description": "",
+ "download-image": "",
+ "render-image": "",
+ "render-image-error": "",
+ "render-image-error-description": ""
+ }
+ },
+ "lock-icon": "",
+ "login": {
+ "divider": {
+ "connecting-text": ""
+ },
+ "error": {
+ "blocked": "",
+ "invalid-user-or-password": "",
+ "title": "",
+ "unknown": ""
+ },
+ "forgot-password": "",
+ "form": {
+ "confirmation-code": "",
+ "confirmation-code-label": "",
+ "confirmation-code-placeholder": "",
+ "email-label": "",
+ "email-placeholder": "",
+ "email-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "password-label": "",
+ "password-placeholder": "",
+ "password-required": "",
+ "submit-label": "",
+ "submit-loading-label": "",
+ "username-label": "",
+ "username-placeholder": "",
+ "username-required": "",
+ "verify-email-label": "",
+ "verify-email-loading-label": ""
+ },
+ "layout": {
+ "update-password": ""
+ },
+ "services": {
+ "sing-in-with-prefix": ""
+ },
+ "signup": {
+ "button-label": "",
+ "new-to-question": ""
+ }
+ },
+ "logs": {
+ "infinite-scroll": {
+ "end-of-range": "",
+ "load-more": "",
+ "load-newer": "",
+ "load-older": "",
+ "older-logs": ""
+ },
+ "log-details": {
+ "fields": "",
+ "links": "",
+ "log-line": "",
+ "no-details": ""
+ },
+ "log-line-menu": {
+ "copy-link": "",
+ "copy-log": "",
+ "icon-label": "",
+ "pin-to-outline": "",
+ "show-context": "",
+ "unpin-from-outline": ""
+ },
+ "log-row-message": {
+ "ellipsis": "",
+ "more": "",
+ "see-details": ""
+ },
+ "log-rows": {
+ "disable-popover": {
+ "confirm": "",
+ "message": "",
+ "title": ""
+ },
+ "disable-popover-message": {
+ "shortcut": ""
+ }
+ },
+ "logs-navigation": {
+ "newer-logs": "",
+ "older-logs": "",
+ "scroll-bottom": "",
+ "scroll-top": "",
+ "start-of-range": ""
+ },
+ "popover-menu": {
+ "copy": "",
+ "disable-menu": "",
+ "line-contains": "",
+ "line-contains-not": ""
+ }
+ },
+ "migrate-to-cloud": {
+ "build-snapshot": {
+ "description": "",
+ "title": "",
+ "when-complete": ""
+ },
+ "building-snapshot": {
+ "description": "",
+ "description-eta": "",
+ "title": ""
+ },
+ "can-i-move": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "connect-modal": {
+ "body-cloud-stack": "",
+ "body-get-started": "",
+ "body-sign-up": "",
+ "body-token": "",
+ "body-token-field": "",
+ "body-token-field-placeholder": "",
+ "body-token-instructions": "",
+ "body-view-stacks": "",
+ "cancel": "",
+ "connect": "",
+ "connecting": "",
+ "title": "",
+ "token-error-title": "",
+ "token-errors": {
+ "instance-request-error": "",
+ "instance-unreachable": "",
+ "migration-disabled": "",
+ "session-creation-failure": "",
+ "token-invalid": "",
+ "token-not-saved": "",
+ "token-request-error": "",
+ "token-validation-failure": ""
+ },
+ "token-required-error": ""
+ },
+ "cta": {
+ "button": "",
+ "header": ""
+ },
+ "delete-migration-token-confirm": {
+ "body": "",
+ "confirm-button": "",
+ "error-title": "",
+ "title": ""
+ },
+ "disconnect-modal": {
+ "body": "",
+ "cancel": "",
+ "disconnect": "",
+ "disconnecting": "",
+ "error": "",
+ "title": ""
+ },
+ "get-started": {
+ "body": "",
+ "configure-pdc-link": "",
+ "link-title": "",
+ "step-1": "",
+ "step-2": "",
+ "step-3": "",
+ "step-4": "",
+ "step-5": "",
+ "title": ""
+ },
+ "is-it-secure": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrate-to-this-stack": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "migrated-counts": {
+ "alert_rule_groups": "",
+ "alert_rules": "",
+ "contact_points": "",
+ "dashboards": "",
+ "datasources": "",
+ "folders": "",
+ "library_elements": "",
+ "mute_timings": "",
+ "notification_policies": "",
+ "notification_templates": "",
+ "plugins": ""
+ },
+ "migration-token": {
+ "delete-button": "",
+ "delete-modal-body": "",
+ "delete-modal-cancel": "",
+ "delete-modal-confirm": "",
+ "delete-modal-deleting": "",
+ "delete-modal-title": "",
+ "error-body": "",
+ "error-title": "",
+ "generate-button": "",
+ "generate-button-loading": "",
+ "modal-close": "",
+ "modal-copy-and-close": "",
+ "modal-copy-button": "",
+ "modal-field-description": "",
+ "modal-field-label": "",
+ "modal-title": "",
+ "status": ""
+ },
+ "onprem": {
+ "cancel-snapshot-error-title": "",
+ "create-snapshot-error-title": "",
+ "disconnect-error-title": "",
+ "error-see-server-logs": "",
+ "get-session-error-title": "",
+ "get-snapshot-error-title": "",
+ "migration-finished-with-caveat-title": "",
+ "migration-finished-with-errors-body": "",
+ "migration-finished-with-warnings-body": "",
+ "snapshot-error-status-body": "",
+ "snapshot-error-status-title": "",
+ "success-message": "",
+ "success-message-generic": "",
+ "success-title": "",
+ "upload-snapshot-error-title": ""
+ },
+ "pdc": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "pricing": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "public-preview": {
+ "button-text": "",
+ "message": "",
+ "message-cloud": "",
+ "title": ""
+ },
+ "resource-details": {
+ "dismiss-button": "",
+ "error-messages": {
+ "dashboard-already-managed": "",
+ "datasource-already-managed": "",
+ "datasource-invalid-url": "",
+ "datasource-name-conflict": "",
+ "folder-name-conflict": "",
+ "generic-error": "",
+ "internal-service-error": "",
+ "library-element-name-conflict": "",
+ "resource-conflict": "",
+ "unexpected-error": "",
+ "unsupported-data-type": ""
+ },
+ "error-title": "",
+ "generic-title": "",
+ "missing-message": "",
+ "resource-summary": "",
+ "title": "",
+ "warning-title": ""
+ },
+ "resource-status": {
+ "error-details-button": "",
+ "failed": "",
+ "migrated": "",
+ "migrating": "",
+ "not-migrated": "",
+ "unknown": "",
+ "warning": "",
+ "warning-details-button": ""
+ },
+ "resource-table": {
+ "dashboard-load-error": "",
+ "error-library-element-sub": "",
+ "error-library-element-title": "",
+ "unknown-datasource-title": "",
+ "unknown-datasource-type": ""
+ },
+ "resource-type": {
+ "alert_rule": "",
+ "alert_rule_group": "",
+ "contact_point": "",
+ "dashboard": "",
+ "datasource": "",
+ "folder": "",
+ "library_element": "",
+ "mute_timing": "",
+ "notification_policy": "",
+ "notification_template": "",
+ "plugin": "",
+ "unknown": ""
+ },
+ "summary": {
+ "cancel-snapshot": "",
+ "disconnect": "",
+ "errored-resource-count": "",
+ "page-loading": "",
+ "rebuild-snapshot": "",
+ "snapshot-date": "",
+ "snapshot-not-created": "",
+ "start-migration": "",
+ "successful-resource-count": "",
+ "target-stack-title": "",
+ "total-resource-count": "",
+ "upload-migration": ""
+ },
+ "support-types-disclosure": {
+ "text": ""
+ },
+ "token-status": {
+ "active": "",
+ "no-active": "",
+ "unknown": "",
+ "unknown-error": ""
+ },
+ "what-is-cloud": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ },
+ "why-host": {
+ "body": "",
+ "link-title": "",
+ "title": ""
+ }
+ },
+ "multicombobox": {
+ "all": {
+ "title": "",
+ "title-filtered": ""
+ },
+ "clear": {
+ "title": ""
+ }
+ },
+ "nav": {
+ "add-new-connections": {
+ "title": ""
+ },
+ "admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alert-list-legacy": {
+ "title": ""
+ },
+ "alerting": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-admin": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-am-routes": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-channels": {
+ "title": ""
+ },
+ "alerting-groups": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-home": {
+ "title": ""
+ },
+ "alerting-legacy": {
+ "title": ""
+ },
+ "alerting-list": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-receivers": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-silences": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerting-upgrade": {
+ "subtitle": "",
+ "title": ""
+ },
+ "alerts-and-incidents": {
+ "subtitle": "",
+ "title": ""
+ },
+ "api-keys": {
+ "subtitle": "",
+ "title": ""
+ },
+ "application": {
+ "title": ""
+ },
+ "apps": {
+ "subtitle": "",
+ "title": ""
+ },
+ "authentication": {
+ "title": ""
+ },
+ "bookmarks": {
+ "title": ""
+ },
+ "bookmarks-empty": {
+ "title": ""
+ },
+ "collector": {
+ "title": ""
+ },
+ "config": {
+ "title": ""
+ },
+ "config-access": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-general": {
+ "subtitle": "",
+ "title": ""
+ },
+ "config-plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "connect-data": {
+ "title": ""
+ },
+ "connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "correlations": {
+ "subtitle": "",
+ "title": ""
+ },
+ "create": {
+ "title": ""
+ },
+ "create-alert": {
+ "title": ""
+ },
+ "create-dashboard": {
+ "title": ""
+ },
+ "create-folder": {
+ "title": ""
+ },
+ "create-import": {
+ "title": ""
+ },
+ "dashboards": {
+ "subtitle": "",
+ "title": ""
+ },
+ "data-sources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "databases": {
+ "title": ""
+ },
+ "datasources": {
+ "subtitle": "",
+ "title": ""
+ },
+ "detect": {
+ "title": ""
+ },
+ "drilldown": {
+ "title": ""
+ },
+ "explore": {
+ "title": ""
+ },
+ "frontend": {
+ "subtitle": "",
+ "title": ""
+ },
+ "frontend-app": {
+ "title": ""
+ },
+ "global-orgs": {
+ "subtitle": "",
+ "title": ""
+ },
+ "global-users": {
+ "subtitle": "",
+ "title": ""
+ },
+ "grafana-quaderno": {
+ "title": ""
+ },
+ "groupsync": {
+ "subtitle": ""
+ },
+ "help": {
+ "title": ""
+ },
+ "help/community": "",
+ "help/documentation": "",
+ "help/keyboard-shortcuts": "",
+ "help/support": "",
+ "history-container": {
+ "drawer-tittle": ""
+ },
+ "history-wrapper": {
+ "collapse": "",
+ "expand": "",
+ "icon-selected": "",
+ "icon-unselected": "",
+ "show-more": "",
+ "today": "",
+ "yesterday": ""
+ },
+ "home": {
+ "title": ""
+ },
+ "incidents": {
+ "title": ""
+ },
+ "infrastructure": {
+ "subtitle": "",
+ "title": ""
+ },
+ "integrations": {
+ "title": ""
+ },
+ "k6": {
+ "title": ""
+ },
+ "kubernetes": {
+ "title": ""
+ },
+ "library-panels": {
+ "subtitle": "",
+ "title": ""
+ },
+ "machine-learning": {
+ "title": ""
+ },
+ "manage-folder": {
+ "subtitle": ""
+ },
+ "migrate-to-cloud": {
+ "subtitle": "",
+ "title": ""
+ },
+ "monitoring": {
+ "subtitle": "",
+ "title": ""
+ },
+ "new": {
+ "title": ""
+ },
+ "new-dashboard": {
+ "title": ""
+ },
+ "new-folder": {
+ "title": ""
+ },
+ "oncall": {
+ "title": ""
+ },
+ "org-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "playlists": {
+ "subtitle": "",
+ "title": ""
+ },
+ "plugins": {
+ "subtitle": "",
+ "title": ""
+ },
+ "private-data-source-connections": {
+ "subtitle": "",
+ "title": ""
+ },
+ "profile/notifications": {
+ "title": ""
+ },
+ "profile/password": {
+ "title": ""
+ },
+ "profile/settings": {
+ "title": ""
+ },
+ "profiles": {
+ "title": ""
+ },
+ "public": {
+ "title": ""
+ },
+ "recently-deleted": {
+ "subtitle": "",
+ "title": ""
+ },
+ "recorded-queries": {
+ "title": ""
+ },
+ "reporting": {
+ "title": ""
+ },
+ "scenes": {
+ "title": ""
+ },
+ "search": {
+ "placeholderCommandPalette": ""
+ },
+ "search-dashboards": {
+ "title": ""
+ },
+ "server-settings": {
+ "subtitle": "",
+ "title": ""
+ },
+ "service-accounts": {
+ "subtitle": "",
+ "title": ""
+ },
+ "setup-guide": {
+ "title": ""
+ },
+ "shared-dashboard": {
+ "subtitle": "",
+ "title": ""
+ },
+ "sign-out": {
+ "title": ""
+ },
+ "slo": {
+ "title": ""
+ },
+ "snapshots": {
+ "subtitle": "",
+ "title": ""
+ },
+ "starred": {
+ "title": ""
+ },
+ "starred-empty": {
+ "title": ""
+ },
+ "statistics-and-licensing": {
+ "title": ""
+ },
+ "storage": {
+ "subtitle": "",
+ "title": ""
+ },
+ "support-bundles": {
+ "subtitle": "",
+ "title": ""
+ },
+ "synthetics": {
+ "title": ""
+ },
+ "teams": {
+ "subtitle": "",
+ "title": ""
+ },
+ "testing-and-synthetics": {
+ "subtitle": "",
+ "title": ""
+ },
+ "upgrading": {
+ "title": ""
+ },
+ "users": {
+ "subtitle": "",
+ "title": ""
+ }
+ },
+ "navigation": {
+ "invite-user": {
+ "invite-button": "",
+ "invite-tooltip": ""
+ },
+ "item": {
+ "add-bookmark": "",
+ "remove-bookmark": ""
+ },
+ "kiosk": {
+ "tv-alert": ""
+ },
+ "megamenu": {
+ "close": "",
+ "dock": "",
+ "list-label": "",
+ "open": "",
+ "undock": ""
+ },
+ "rss-button": ""
+ },
+ "news": {
+ "drawer": {
+ "close": ""
+ },
+ "title": ""
+ },
+ "notifications": {
+ "empty-state": {
+ "description": "",
+ "title": ""
+ },
+ "starred-dashboard": "",
+ "unstarred-dashboard": ""
+ },
+ "oauth": {
+ "form": {
+ "server-discovery-action-button": "",
+ "server-discovery-modal-close": "",
+ "server-discovery-modal-loading": "",
+ "server-discovery-modal-submit": ""
+ },
+ "login": {
+ "error": ""
+ }
+ },
+ "panel": {
+ "header-menu": {
+ "copy": "",
+ "create-library-panel": "",
+ "duplicate": "",
+ "edit": "",
+ "explore": "",
+ "get-help": "",
+ "hide-legend": "",
+ "inspect": "",
+ "inspect-data": "",
+ "inspect-json": "",
+ "more": "",
+ "new-alert-rule": "",
+ "query": "",
+ "remove": "",
+ "replace-library-panel": "",
+ "share": "",
+ "show-legend": "",
+ "unlink-library-panel": "",
+ "view": ""
+ }
+ },
+ "panel-search": {
+ "no-matches": "",
+ "unsupported-layout": ""
+ },
+ "panel-type-filter": {
+ "clear-button": ""
+ },
+ "playlist-edit": {
+ "error-prefix": "",
+ "form": {
+ "add-tag-label": "",
+ "add-tag-placeholder": "",
+ "add-title-label": "",
+ "cancel": "",
+ "heading": "",
+ "interval-label": "",
+ "interval-placeholder": "",
+ "interval-required": "",
+ "name-label": "",
+ "name-placeholder": "",
+ "name-required": "",
+ "save": "",
+ "table-delete": "",
+ "table-drag": "",
+ "table-empty": "",
+ "table-heading": ""
+ },
+ "sub-title": "",
+ "title": ""
+ },
+ "playlist-page": {
+ "card": {
+ "delete": "",
+ "edit": "",
+ "start": "",
+ "tooltip": ""
+ },
+ "create-button": {
+ "title": ""
+ },
+ "delete-modal": {
+ "body": "",
+ "confirm-text": ""
+ },
+ "empty": {
+ "button": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "playlists": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "plugins": {
+ "catalog": {
+ "no-updates-available": "",
+ "update-all": {
+ "all-plugins-updated": "",
+ "available-header": "",
+ "button": "",
+ "cloud-update-message": "",
+ "error": "",
+ "error-status-text": "",
+ "header": "",
+ "installed-header": "",
+ "modal-confirmation": "",
+ "modal-dismiss": "",
+ "modal-in-progress": "",
+ "modal-title": "",
+ "name-header": "",
+ "update-header": "",
+ "update-status-text": ""
+ },
+ "versions": {
+ "confirmation-text-1": "",
+ "confirmation-text-2": "",
+ "downgrade-confirm": "",
+ "downgrade-title": ""
+ }
+ },
+ "details": {
+ "connections-tab": {
+ "description": ""
+ },
+ "labels": {
+ "contactGrafanaLabs": "",
+ "customLinks": "",
+ "customLinksTooltip": "",
+ "dependencies": "",
+ "documentation": "",
+ "downloads": "",
+ "from": "",
+ "installedVersion": "",
+ "lastCommitDate": "",
+ "latestVersion": "",
+ "license": "",
+ "raiseAnIssue": "",
+ "reportAbuse": "",
+ "reportAbuseTooltip": "",
+ "repository": "",
+ "signature": "",
+ "status": "",
+ "updatedAt": ""
+ },
+ "modal": {
+ "cancel": "",
+ "copyEmail": "",
+ "description": "",
+ "node": "",
+ "title": ""
+ }
+ },
+ "empty-state": {
+ "message": ""
+ },
+ "filter": {
+ "disabled": "",
+ "sort": "",
+ "sort-list": "",
+ "state": ""
+ },
+ "plugin-help": {
+ "error": "",
+ "not-found": ""
+ }
+ },
+ "profile": {
+ "change-password": {
+ "cancel-button": "",
+ "cannot-change-password-message": "",
+ "change-password-button": "",
+ "confirm-password-label": "",
+ "confirm-password-required": "",
+ "ldap-auth-proxy-message": "",
+ "new-password-label": "",
+ "new-password-required": "",
+ "new-password-same-as-old": "",
+ "old-password-label": "",
+ "old-password-required": "",
+ "passwords-must-match": "",
+ "strong-password-validation-register": ""
+ }
+ },
+ "public-dashboard": {
+ "acknowledgment-checkboxes": {
+ "ack-title": "",
+ "data-src-ack-desc": "",
+ "data-src-ack-tooltip": "",
+ "public-ack-desc": "",
+ "public-ack-tooltip": "",
+ "usage-ack-desc": "",
+ "usage-ack-desc-tooltip": ""
+ },
+ "config": {
+ "can-view-dashboard-radio-button-label": "",
+ "copy-button": "",
+ "dashboard-url-field-label": "",
+ "email-share-type-option-label": "",
+ "pause-sharing-dashboard-label": "",
+ "public-share-type-option-label": "",
+ "revoke-public-URL-button": "",
+ "revoke-public-URL-button-title": "",
+ "settings-title": ""
+ },
+ "configuration": {
+ "display-annotations-description": "",
+ "display-annotations-label": "",
+ "enable-time-range-description": "",
+ "enable-time-range-label": "",
+ "settings-label": "",
+ "success-pause": "",
+ "success-resume": "",
+ "success-update": "",
+ "success-update-old": "",
+ "time-range-label": "",
+ "time-range-tooltip": ""
+ },
+ "create-page": {
+ "generate-public-url-button": "",
+ "unsupported-features-desc": "",
+ "welcome-title": ""
+ },
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "email-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "bill-ack": "",
+ "cancel-button": "",
+ "input-invalid-email-text": "",
+ "input-required-email-text": "",
+ "invite-button": "",
+ "invite-field-desc": "",
+ "invite-field-label": "",
+ "learn-more-button": "",
+ "recipient-email-placeholder": "",
+ "recipient-invalid-email-text": "",
+ "recipient-invitation-button": "",
+ "recipient-invitation-description": "",
+ "recipient-invitation-tooltip": "",
+ "recipient-list-description": "",
+ "recipient-list-title": "",
+ "recipient-required-email-text": "",
+ "resend-button": "",
+ "resend-button-title": "",
+ "resend-invite-label": "",
+ "revoke-access-label": "",
+ "revoke-button": "",
+ "revoke-button-title": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "modal-alerts": {
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "save-dashboard-changes-alert-title": "",
+ "unsupport-data-source-alert-readmore-link": "",
+ "unsupported-data-source-alert-desc": "",
+ "unsupported-data-source-alert-title": "",
+ "unsupported-template-variable-alert-desc": "",
+ "unsupported-template-variable-alert-title": ""
+ },
+ "public-sharing": {
+ "accept-button": "",
+ "alert-text": "",
+ "cancel-button": "",
+ "learn-more-button": "",
+ "public-ack": "",
+ "success-creation": "",
+ "success-share-type-change": ""
+ },
+ "settings-bar-header": {
+ "collapse-settings-tooltip": "",
+ "expand-settings-tooltip": ""
+ },
+ "settings-configuration": {
+ "default-time-range-label": "",
+ "default-time-range-label-desc": "",
+ "show-annotations-label": "",
+ "show-annotations-label-desc": "",
+ "time-range-picker-label": "",
+ "time-range-picker-label-desc": ""
+ },
+ "settings-summary": {
+ "annotations-hide-text": "",
+ "annotations-show-text": "",
+ "time-range-picker-disabled-text": "",
+ "time-range-picker-enabled-text": "",
+ "time-range-text": ""
+ },
+ "share": {
+ "success-delete": "",
+ "success-delete-old": ""
+ },
+ "share-configuration": {
+ "share-type-label": ""
+ },
+ "share-externally": {
+ "copy-link-button": "",
+ "email-share-type-option-description": "",
+ "email-share-type-option-label": "",
+ "no-upsert-perm-alert-desc": "",
+ "no-upsert-perm-alert-title": "",
+ "pause-access-button": "",
+ "pause-access-tooltip": "",
+ "public-share-type-option-description": "",
+ "public-share-type-option-label": "",
+ "resume-access-button": "",
+ "revoke-access-button": "",
+ "revoke-access-description": "",
+ "unsupported-data-source-alert-desc": ""
+ },
+ "sharing": {
+ "success-creation": ""
+ }
+ },
+ "public-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "public-dashboard-users-access-list": {
+ "dashboard-modal": {
+ "external-link": "",
+ "loading-text": "",
+ "open-dashboard-list-text": "",
+ "public-dashboard-link": "",
+ "public-dashboard-setting": "",
+ "sharing-setting": ""
+ },
+ "delete-user-modal": {
+ "delete-user-button-text": "",
+ "delete-user-cancel-button": "",
+ "delete-user-revoke-access-button": "",
+ "revoke-access-title": "",
+ "revoke-user-access-modal-desc-line1": "",
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "delete-user-shared-dashboards-modal": {
+ "revoke-user-access-modal-desc-line2": ""
+ },
+ "modal": {
+ "dashboard-modal-title": "",
+ "shared-dashboard-modal-title": ""
+ },
+ "table-body": {
+ "dashboard-count_other": ""
+ },
+ "table-header": {
+ "activated-label": "",
+ "activated-tooltip": "",
+ "email-label": "",
+ "last-active-label": "",
+ "origin-label": "",
+ "role-label": ""
+ }
+ },
+ "query-operation": {
+ "header": {
+ "collapse-row": "",
+ "datasource-help": "",
+ "drag-and-drop": "",
+ "duplicate-query": "",
+ "expand-row": "",
+ "hide-response": "",
+ "remove-query": "",
+ "show-response": "",
+ "toggle-edit-mode": ""
+ },
+ "query-editor-not-exported": ""
+ },
+ "recently-deleted": {
+ "buttons": {
+ "delete": "",
+ "restore": ""
+ },
+ "page": {
+ "no-deleted-dashboards": "",
+ "no-deleted-dashboards-text": "",
+ "no-search-result": ""
+ },
+ "permanently-delete-modal": {
+ "confirm-text": "",
+ "delete-button": "",
+ "delete-loading": "",
+ "title": "",
+ "text_other": ""
+ },
+ "restore-modal": {
+ "restore-button": "",
+ "restore-loading": "",
+ "title": "",
+ "folder-picker-text_other": "",
+ "text_other": ""
+ }
+ },
+ "recentlyDeleted": {
+ "filter": {
+ "placeholder": ""
+ }
+ },
+ "reduce": {
+ "strictMode": {
+ "description": "",
+ "title": ""
+ }
+ },
+ "refresh-picker": {
+ "aria-label": {
+ "choose-interval": "",
+ "duration-selected": ""
+ },
+ "auto-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "live-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "off-option": {
+ "aria-label": "",
+ "label": ""
+ },
+ "tooltip": {
+ "interval-selected": "",
+ "turned-off": ""
+ }
+ },
+ "return-to-previous": {
+ "button": {
+ "label": ""
+ },
+ "dismissable-button": ""
+ },
+ "role-picker": {
+ "built-in": {
+ "basic-roles": ""
+ },
+ "input": {
+ "no-roles": ""
+ },
+ "menu": {
+ "clear-button": "",
+ "tooltip": ""
+ },
+ "sub-menu": {
+ "clear-button": ""
+ },
+ "title": {
+ "description": ""
+ }
+ },
+ "role-picker-drawer": {
+ "basic-roles": {
+ "label": ""
+ }
+ },
+ "route-error": {
+ "description": "",
+ "reload-button": "",
+ "title": ""
+ },
+ "save-dashboards": {
+ "message-length": {
+ "info": "",
+ "title": ""
+ },
+ "name-exists": {
+ "message-info": "",
+ "message-suggestion": "",
+ "title": ""
+ }
+ },
+ "scopes": {
+ "dashboards": {
+ "collapse": "",
+ "expand": "",
+ "loading": "",
+ "noResultsForFilter": "",
+ "noResultsForFilterClear": "",
+ "noResultsForScopes": "",
+ "noResultsNoScopes": "",
+ "search": "",
+ "toggle": {
+ "collapse": "",
+ "disabled": "",
+ "expand": ""
+ }
+ },
+ "selector": {
+ "apply": "",
+ "cancel": "",
+ "input": {
+ "placeholder": "",
+ "removeAll": ""
+ },
+ "title": ""
+ },
+ "tree": {
+ "collapse": "",
+ "expand": "",
+ "headline": {
+ "noResults": "",
+ "recommended": "",
+ "results": ""
+ },
+ "search": ""
+ }
+ },
+ "search": {
+ "actions": {
+ "include-panels": "",
+ "remove-datasource-filter": "",
+ "sort-placeholder": "",
+ "starred": "",
+ "view-as-folders": "",
+ "view-as-list": ""
+ },
+ "dashboard-actions": {
+ "import": "",
+ "new": "",
+ "new-dashboard": "",
+ "new-folder": ""
+ },
+ "results-table": {
+ "datasource-header": "",
+ "deleted-less-than-1-min": "",
+ "deleted-remaining-header": "",
+ "location-header": "",
+ "name-header": "",
+ "tags-header": "",
+ "type-dashboard": "",
+ "type-folder": "",
+ "type-header": ""
+ },
+ "search-input": {
+ "include-panels-placeholder": "",
+ "placeholder": ""
+ }
+ },
+ "select": {
+ "select-menu": {
+ "selected-count": ""
+ }
+ },
+ "service-account-create-page": {
+ "create": {
+ "button": ""
+ },
+ "name": {
+ "label": "",
+ "required-error": ""
+ },
+ "page-nav": {
+ "label": ""
+ },
+ "role": {
+ "label": ""
+ }
+ },
+ "service-accounts": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "more-info": "",
+ "title": ""
+ }
+ },
+ "share-dashboard": {
+ "menu": {
+ "export-json-title": "",
+ "share-externally-title": "",
+ "share-internally-title": "",
+ "share-snapshot-title": ""
+ },
+ "share-button": "",
+ "share-button-tooltip": ""
+ },
+ "share-drawer": {
+ "confirm-action": {
+ "back-arrow-button": "",
+ "cancel-button": ""
+ }
+ },
+ "share-modal": {
+ "dashboard": {
+ "title": ""
+ },
+ "embed": {
+ "copy": "",
+ "html": "",
+ "html-description": "",
+ "info": "",
+ "time-range": ""
+ },
+ "export": {
+ "back-button": "",
+ "cancel-button": "",
+ "info-text": "",
+ "loading": "",
+ "save-button": "",
+ "share-externally-label": "",
+ "view-button": ""
+ },
+ "library": {
+ "info": ""
+ },
+ "link": {
+ "copy-link-button": "",
+ "info-text": "",
+ "link-url": "",
+ "render-alert": "",
+ "render-instructions": "",
+ "rendered-image": "",
+ "save-alert": "",
+ "save-dashboard": "",
+ "shorten-url": "",
+ "time-range-description": "",
+ "time-range-label": ""
+ },
+ "panel": {
+ "title": ""
+ },
+ "snapshot": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "deleted-message": "",
+ "expire": "",
+ "expire-day": "",
+ "expire-hour": "",
+ "expire-never": "",
+ "expire-week": "",
+ "info-text-1": "",
+ "info-text-2": "",
+ "local-button": "",
+ "mistake-message": "",
+ "name": "",
+ "timeout": "",
+ "timeout-description": "",
+ "url-label": ""
+ },
+ "tab-title": {
+ "embed": "",
+ "export": "",
+ "library-panel": "",
+ "link": "",
+ "panel-embed": "",
+ "public-dashboard": "",
+ "public-dashboard-title": "",
+ "snapshot": ""
+ },
+ "theme-picker": {
+ "current": "",
+ "dark": "",
+ "field-name": "",
+ "light": ""
+ },
+ "view-json": {
+ "copy-button": ""
+ }
+ },
+ "share-panel": {
+ "drawer": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": ""
+ },
+ "menu": {
+ "new-library-panel-title": "",
+ "share-embed-title": "",
+ "share-link-title": "",
+ "share-snapshot-title": ""
+ },
+ "new-library-panel": {
+ "cancel-button": "",
+ "create-button": ""
+ }
+ },
+ "share-panel-image": {
+ "preview": {
+ "title": ""
+ },
+ "settings": {
+ "height-label": "",
+ "height-min": "",
+ "height-placeholder": "",
+ "height-required": "",
+ "max-warning": "",
+ "scale-factor-label": "",
+ "scale-factor-min": "",
+ "scale-factor-placeholder": "",
+ "scale-factor-required": "",
+ "title": "",
+ "width-label": "",
+ "width-min": "",
+ "width-placeholder": "",
+ "width-required": ""
+ }
+ },
+ "share-playlist": {
+ "checkbox-description": "",
+ "checkbox-label": "",
+ "copy-link-button": "",
+ "link-url-label": "",
+ "mode": "",
+ "mode-kiosk": "",
+ "mode-normal": "",
+ "title": ""
+ },
+ "shared": {
+ "preferences": {
+ "theme": {
+ "dark-label": "",
+ "light-label": "",
+ "system-label": ""
+ }
+ }
+ },
+ "shared-dashboard": {
+ "delete-modal": {
+ "revoke-body-text": "",
+ "revoke-title": ""
+ },
+ "fields": {
+ "timezone-label": ""
+ }
+ },
+ "shared-dashboard-list": {
+ "button": {
+ "config-button-tooltip": "",
+ "revoke-button-text": "",
+ "revoke-button-tooltip": "",
+ "view-button-tooltip": ""
+ },
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "toggle": {
+ "pause-sharing-toggle-text": ""
+ }
+ },
+ "shared-preferences": {
+ "fields": {
+ "home-dashboard-label": "",
+ "home-dashboard-placeholder": "",
+ "locale-label": "",
+ "locale-placeholder": "",
+ "theme-description": "",
+ "theme-label": "",
+ "week-start-label": ""
+ },
+ "theme": {
+ "default-label": ""
+ },
+ "title": ""
+ },
+ "sign-up": {
+ "back-button": "",
+ "submit-button": "",
+ "verify": {
+ "back-button": "",
+ "complete-button": "",
+ "header": "",
+ "info": "",
+ "send-button": ""
+ }
+ },
+ "silences": {
+ "empty-state": {
+ "button-title": "",
+ "title": ""
+ },
+ "table": {
+ "add-silence-button": "",
+ "edit-button": "",
+ "expired-silences": "",
+ "no-matching-silences": "",
+ "noConfig": "",
+ "recreate-button": "",
+ "unsilence-button": ""
+ }
+ },
+ "silences-table": {
+ "header": {
+ "alert-name": "",
+ "state": ""
+ }
+ },
+ "snapshot": {
+ "empty-state": {
+ "message": "",
+ "more-info": ""
+ },
+ "external-badge": "",
+ "name-column-header": "",
+ "share": {
+ "cancel-button": "",
+ "copy-link-button": "",
+ "delete-button": "",
+ "delete-description": "",
+ "delete-permission-tooltip": "",
+ "delete-title": "",
+ "deleted-alert": "",
+ "expiration-label": "",
+ "info-alert": "",
+ "learn-more-button": "",
+ "local-button": "",
+ "name-label": "",
+ "new-snapshot-button": "",
+ "success-creation": "",
+ "success-delete": "",
+ "view-all-button": ""
+ },
+ "share-panel": {
+ "info-alert": ""
+ },
+ "url-column-header": "",
+ "view-button": ""
+ },
+ "table": {
+ "container": {
+ "content": "",
+ "show-all-series": "",
+ "show-only-series": ""
+ }
+ },
+ "tag-filter": {
+ "clear-button": "",
+ "loading": "",
+ "no-tags": "",
+ "placeholder": ""
+ },
+ "teams": {
+ "empty-state": {
+ "button-title": "",
+ "message": "",
+ "pro-tip": "",
+ "title": ""
+ }
+ },
+ "theme-preview": {
+ "breadcrumbs": {
+ "dashboards": "",
+ "home": ""
+ },
+ "panel": {
+ "form-label": "",
+ "title": ""
+ }
+ },
+ "time-picker": {
+ "absolute": {
+ "recent-title": "",
+ "title": ""
+ },
+ "calendar": {
+ "apply-button": "",
+ "cancel-button": "",
+ "close": "",
+ "next-month": "",
+ "previous-month": "",
+ "select-time": ""
+ },
+ "content": {
+ "empty-recent-list-docs": "",
+ "empty-recent-list-info": "",
+ "filter-placeholder": ""
+ },
+ "copy-paste": {
+ "copy-success-message": "",
+ "default-error-message": "",
+ "default-error-title": "",
+ "tooltip-copy": "",
+ "tooltip-paste": ""
+ },
+ "footer": {
+ "change-settings-button": "",
+ "fiscal-year-option": "",
+ "fiscal-year-start": "",
+ "time-zone-option": "",
+ "time-zone-selection": ""
+ },
+ "range-content": {
+ "apply-button": "",
+ "default-error": "",
+ "fiscal-year": "",
+ "from-input": "",
+ "open-input-calendar": "",
+ "range-error": "",
+ "to-input": ""
+ },
+ "range-picker": {
+ "backwards-time-aria-label": "",
+ "current-time-selected": "",
+ "forwards-time-aria-label": "",
+ "to": "",
+ "zoom-out-button": "",
+ "zoom-out-tooltip": ""
+ },
+ "time-range": {
+ "apply": "",
+ "aria-role": "",
+ "default-title": "",
+ "example": "",
+ "example-details": "",
+ "example-title": "",
+ "from-label": "",
+ "from-to": "",
+ "more-info": "",
+ "specify": "",
+ "submit-button-label": "",
+ "supported-formats": "",
+ "to-label": ""
+ },
+ "zone": {
+ "select-aria-label": "",
+ "select-search-input": ""
+ }
+ },
+ "trails": {
+ "bookmarks": {
+ "or-view-bookmarks": ""
+ },
+ "card": {
+ "date-created": ""
+ },
+ "home": {
+ "learn-more": "",
+ "lets-start": "",
+ "start-your-metrics-exploration": "",
+ "subtitle": ""
+ },
+ "metric-select": {
+ "filter-by": "",
+ "native-histogram": "",
+ "new-badge": "",
+ "otel-switch": ""
+ },
+ "native-histogram-banner": {
+ "ch-heatmap": "",
+ "ch-histogram": "",
+ "click-histogram": "",
+ "hide-examples": "",
+ "learn-more": "",
+ "metric-examples": "",
+ "nh-heatmap": "",
+ "nh-histogram": "",
+ "now": "",
+ "previously": "",
+ "see-examples": "",
+ "sentence": ""
+ },
+ "recent-metrics": {
+ "or-view-a-recent-exploration": ""
+ },
+ "settings": {
+ "always-keep-selected-metric-graph-in-view": "",
+ "show-previews-of-metric-graphs": ""
+ }
+ },
+ "transformations": {
+ "empty": {
+ "add-transformation-body": "",
+ "add-transformation-header": ""
+ }
+ },
+ "upgrade-box": {
+ "discovery-text": "",
+ "discovery-text-continued": "",
+ "get-started": "",
+ "learn-more": "",
+ "upgrade-button": ""
+ },
+ "user-orgs": {
+ "current-org-button": "",
+ "name-column": "",
+ "role-column": "",
+ "select-org-button": "",
+ "title": ""
+ },
+ "user-profile": {
+ "fields": {
+ "email-error": "",
+ "email-label": "",
+ "name-error": "",
+ "name-label": "",
+ "username-label": ""
+ },
+ "tabs": {
+ "general": ""
+ }
+ },
+ "user-session": {
+ "auth-module-column": "",
+ "browser-column": "",
+ "created-at-column": "",
+ "identity-provider-column": "",
+ "ip-column": "",
+ "revoke": "",
+ "seen-at-column": ""
+ },
+ "user-sessions": {
+ "loading": ""
+ },
+ "users": {
+ "empty-state": {
+ "message": ""
+ }
+ },
+ "users-access-list": {
+ "tabs": {
+ "public-dashboard-users-tab-title": "",
+ "shared-dashboard-users-tab-title": ""
+ }
+ },
+ "variable": {
+ "adhoc": {
+ "placeholder": ""
+ },
+ "dropdown": {
+ "placeholder": ""
+ },
+ "picker": {
+ "link-all": "",
+ "option-all": "",
+ "option-selected-values": "",
+ "option-tooltip": ""
+ },
+ "textbox": {
+ "placeholder": ""
+ }
+ },
+ "variables": {
+ "empty-state": {
+ "button-title": "",
+ "info-box-content": "",
+ "info-box-content-2": "",
+ "title": ""
+ },
+ "unknown-table": {
+ "loading": "",
+ "no-unknowns": "",
+ "renamed-or-missing-variables": "",
+ "variable": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/scripts/generate-rtk-apis.ts b/scripts/generate-rtk-apis.ts
index 850d32b7477..3bc9ee949fc 100644
--- a/scripts/generate-rtk-apis.ts
+++ b/scripts/generate-rtk-apis.ts
@@ -58,6 +58,16 @@ const config: ConfigFile = {
tag: true,
hooks: true,
},
+ '../public/app/features/folders/api/endpoints.gen.ts': {
+ apiFile: '../public/app/features/folders/api/baseAPI.ts',
+ schemaFile: '../data/openapi/folder.grafana.app-v0alpha1.json',
+ apiImport: 'baseAPI',
+ filterEndpoints: ['getFolder'],
+ argSuffix: 'Arg',
+ responseSuffix: 'Response',
+ tag: true,
+ hooks: true,
+ },
},
};
diff --git a/yarn.lock b/yarn.lock
index 369c4f29a57..a9474b2c206 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -18246,6 +18246,7 @@ __metadata:
i18next: "npm:^24.0.0"
i18next-browser-languagedetector: "npm:^8.0.0"
i18next-parser: "npm:9.3.0"
+ i18next-pseudo: "npm:^2.2.1"
immer: "npm:10.1.1"
immutable: "npm:5.0.3"
ini: "npm:^5.0.0"
@@ -18301,7 +18302,6 @@ __metadata:
postcss-scss: "npm:4.0.9"
prettier: "npm:3.4.2"
prismjs: "npm:1.29.0"
- pseudoizer: "npm:^0.1.0"
rc-slider: "npm:11.1.8"
rc-tree: "npm:5.13.0"
re-resizable: "npm:6.10.3"
@@ -19118,6 +19118,24 @@ __metadata:
languageName: node
linkType: hard
+"i18next-pseudo@npm:^2.2.1":
+ version: 2.2.1
+ resolution: "i18next-pseudo@npm:2.2.1"
+ dependencies:
+ i18next: "npm:^19.1.0"
+ checksum: 10/4eeec03540c6e9bb823b804cffcb2b95555b0a1d185e0287c74d2deaf7e6bfa206b0223d69db4fbe7b90c66faba451737b06151c85708afd2c5e9502adf817b2
+ languageName: node
+ linkType: hard
+
+"i18next@npm:^19.1.0":
+ version: 19.9.2
+ resolution: "i18next@npm:19.9.2"
+ dependencies:
+ "@babel/runtime": "npm:^7.12.0"
+ checksum: 10/a3b8da898edf74257984821b8eaf11929db4cab2c123dadad05c641af98bfcf94ddddee951d091e45f6f7510db47294f4d67134906b1dd82f144f01534153710
+ languageName: node
+ linkType: hard
+
"i18next@npm:^23.0.0, i18next@npm:^23.11.5":
version: 23.16.8
resolution: "i18next@npm:23.16.8"
@@ -25369,13 +25387,6 @@ __metadata:
languageName: node
linkType: hard
-"pseudoizer@npm:^0.1.0":
- version: 0.1.0
- resolution: "pseudoizer@npm:0.1.0"
- checksum: 10/fd3fa95ea4f330f268cad2388f3829e4c29249e7ffea970467b9123f1ef2a81334e92425c5cad0c72ab04c320203501b65ae86aa8d88320b63e0e75e944c6e76
- languageName: node
- linkType: hard
-
"psl@npm:^1.1.33":
version: 1.9.0
resolution: "psl@npm:1.9.0"