mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-04-17 03:49:23 +01:00
Localization second batch (#2410)
* Localization second batch * update test * fix tests * Fix test
This commit is contained in:
@@ -291,5 +291,126 @@
|
||||
"errorCreateContainer": "Failed to create container: {{error}}",
|
||||
"errorImportData": "Failed to import data: {{error}}"
|
||||
}
|
||||
},
|
||||
"contextMenu": {
|
||||
"newContainer": "New {{containerName}}",
|
||||
"restoreContainer": "Restore {{containerName}}",
|
||||
"deleteDatabase": "Delete {{databaseName}}",
|
||||
"deleteContainer": "Delete {{containerName}}",
|
||||
"newSqlQuery": "New SQL Query",
|
||||
"newQuery": "New Query",
|
||||
"openMongoShell": "Open Mongo Shell",
|
||||
"newShell": "New Shell",
|
||||
"openCassandraShell": "Open Cassandra Shell",
|
||||
"newStoredProcedure": "New Stored Procedure",
|
||||
"newUdf": "New UDF",
|
||||
"newTrigger": "New Trigger",
|
||||
"deleteStoredProcedure": "Delete Stored Procedure",
|
||||
"deleteTrigger": "Delete Trigger",
|
||||
"deleteUdf": "Delete User Defined Function"
|
||||
},
|
||||
"tabs": {
|
||||
"documents": {
|
||||
"newItem": "New Item",
|
||||
"newDocument": "New Document",
|
||||
"uploadItem": "Upload Item",
|
||||
"applyFilter": "Apply Filter",
|
||||
"unsavedChanges": "Unsaved changes",
|
||||
"unsavedChangesMessage": "Your unsaved changes will be lost. Do you want to continue?",
|
||||
"createDocumentFailed": "Create document failed",
|
||||
"updateDocumentFailed": "Update document failed",
|
||||
"documentDeleted": "Document successfully deleted.",
|
||||
"deleteDocumentDialogTitle": "Delete document",
|
||||
"deleteDocumentsDialogTitle": "Delete documents",
|
||||
"throttlingError": "Some documents failed to delete due to a rate limiting error. Please try again later. To prevent this in the future, consider increasing the throughput on your container or database.",
|
||||
"deleteFailed": "Deleting document(s) failed ({{error}})",
|
||||
"missingShardProperty": "The document is lacking the shard property: {{partitionKeyProperty}}",
|
||||
"refreshGridFailed": "Refresh documents grid failed",
|
||||
"confirmDelete": "Are you sure you want to delete {{documentName}}?",
|
||||
"confirmDeleteTitle": "Confirm delete",
|
||||
"selectedItems": "the selected {{count}} items",
|
||||
"selectedItem": "the selected item",
|
||||
"selectedDocuments": "the selected {{count}} documents",
|
||||
"selectedDocument": "the selected document",
|
||||
"deleteDocumentFailedLog": "Failed to delete document {{documentId}} with status code {{statusCode}}",
|
||||
"deleteSuccessLog": "Successfully deleted {{count}} document(s)",
|
||||
"deleteThrottledLog": "Failed to delete {{count}} document(s) due to \"Request too large\" (429) error. Retrying...",
|
||||
"missingShardKeyLog": "Failed to save new document: Document shard key not defined",
|
||||
"filterTooltip": "Type a query predicate or choose one from the list.",
|
||||
"loadMore": "Load more",
|
||||
"documentEditor": "Document editor",
|
||||
"savedFilters": "Saved filters",
|
||||
"defaultFilters": "Default filters",
|
||||
"abort": "Abort",
|
||||
"deletingDocuments": "Deleting {{count}} document(s)",
|
||||
"deletedDocumentsSuccess": "Successfully deleted {{count}} document(s).",
|
||||
"deleteAborted": "Deleting document(s) was aborted.",
|
||||
"failedToDeleteDocuments": "Failed to delete {{count}} document(s).",
|
||||
"requestTooLargeBase": "Some delete requests failed due to a \"Request too large\" exception (429)",
|
||||
"retriedSuccessfully": "but were successfully retried.",
|
||||
"retryingNow": "Retrying now.",
|
||||
"increaseThroughputTip": "To prevent this in the future, consider increasing the throughput on your container or database.",
|
||||
"numberOfSelectedDocuments": "Number of selected documents: {{count}}",
|
||||
"mongoFilterPlaceholder": "Type a query predicate (e.g., {\"id\":\"foo\"}), or choose one from the drop down list, or leave empty to query all documents.",
|
||||
"sqlFilterPlaceholder": "Type a query predicate (e.g., WHERE c.id=\"1\"), or choose one from the drop down list, or leave empty to query all documents.",
|
||||
"error": "Error",
|
||||
"warning": "Warning"
|
||||
},
|
||||
"query": {
|
||||
"executeQuery": "Execute Query",
|
||||
"executeSelection": "Execute Selection",
|
||||
"saveQuery": "Save Query",
|
||||
"downloadQuery": "Download Query",
|
||||
"cancelQuery": "Cancel query",
|
||||
"openSavedQueries": "Open Saved Queries",
|
||||
"vertical": "Vertical",
|
||||
"horizontal": "Horizontal",
|
||||
"view": "View",
|
||||
"editingQuery": "Editing Query"
|
||||
},
|
||||
"storedProcedure": {
|
||||
"id": "Stored Procedure Id",
|
||||
"idPlaceholder": "Enter the new stored procedure id",
|
||||
"idAriaLabel": "Stored procedure id",
|
||||
"body": "Stored Procedure Body",
|
||||
"bodyAriaLabel": "Stored procedure body",
|
||||
"successfulExecution": "Successful execution of stored procedure",
|
||||
"resultAriaLabel": "Execute stored procedure result",
|
||||
"logsAriaLabel": "Execute stored procedure logs",
|
||||
"errors": "Errors:",
|
||||
"errorDetailsAriaLabel": "Error details link",
|
||||
"moreDetails": "More details",
|
||||
"consoleLogTab": "console.log"
|
||||
},
|
||||
"trigger": {
|
||||
"id": "Trigger Id",
|
||||
"idPlaceholder": "Enter the new trigger id",
|
||||
"type": "Trigger Type",
|
||||
"operation": "Trigger Operation",
|
||||
"body": "Trigger Body",
|
||||
"bodyAriaLabel": "Trigger body",
|
||||
"pre": "Pre",
|
||||
"post": "Post",
|
||||
"all": "All",
|
||||
"operationCreate": "Create",
|
||||
"operationDelete": "Delete",
|
||||
"operationReplace": "Replace"
|
||||
},
|
||||
"udf": {
|
||||
"id": "User Defined Function Id",
|
||||
"idPlaceholder": "Enter the new user defined function id",
|
||||
"body": "User Defined Function Body",
|
||||
"bodyAriaLabel": "User defined function body"
|
||||
},
|
||||
"conflicts": {
|
||||
"unsavedChanges": "Unsaved changes",
|
||||
"changesWillBeLost": "Changes will be lost. Do you want to continue?",
|
||||
"resolveConflictFailed": "Resolve conflict failed",
|
||||
"deleteConflictFailed": "Delete conflict failed",
|
||||
"refreshGridFailed": "Refresh documents grid failed"
|
||||
},
|
||||
"mongoShell": {
|
||||
"title": "Mongo Shell"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user