Skip to content
Snippets Groups Projects
Commit cb7e6405 authored by Maz Ameli's avatar Maz Ameli
Browse files

various typo and language fixes [ci skip]

parent f5bd8035
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ const SPECIAL_GROUP_FILTERS = [isAdminGroup, isDefaultGroup, isMetaBotGroup].rev
function getTooltipForGroup(group) {
if (isAdminGroup(group)) {
return "Administrators always have the highest level of acess to everything in Metabase."
return "Administrators always have the highest level of access to everything in Metabase."
} else if (isDefaultGroup(group)) {
return "Every Metabase user belongs to the All Users group. If you want to limit or restrict a group's access to something, make sure the All Users group has an equal or lower level of access.";
} else if (isMetaBotGroup(group)) {
......
......@@ -72,7 +72,7 @@ export default class HistoryModal extends Component {
var { revisions } = this.props;
return (
<ModalContent
title="Change History"
title="Revision history"
onClose={() => this.props.onClose()}
>
<LoadingAndErrorWrapper loading={!revisions} error={this.state.error}>
......
......@@ -146,7 +146,7 @@ export default class DashboardHeader extends Component {
// Parameters
buttons.push(
<span>
<Tooltip tooltip="Add a Filter">
<Tooltip tooltip="Add a filter">
<a
key="parameters"
className={cx("text-brand-hover", { "text-brand": this.state.modal == "parameters" })}
......@@ -173,7 +173,7 @@ export default class DashboardHeader extends Component {
key="history"
ref="dashboardHistory"
triggerElement={
<Tooltip tooltip="Revision History">
<Tooltip tooltip="Revision history">
<span data-metabase-event={"Dashboard;Revisions"}>
<Icon className="text-brand-hover" name="history" size={16} />
</span>
......@@ -195,7 +195,7 @@ export default class DashboardHeader extends Component {
if (!isFullscreen && !isEditing && canEdit) {
buttons.push(
<Tooltip tooltip="Edit Dashboard">
<Tooltip tooltip="Edit dashboard">
<a data-metabase-event="Dashboard;Edit" key="edit" title="Edit Dashboard Layout" className="text-brand-hover cursor-pointer" onClick={() => this.onEdit()}>
<Icon name="pencil" size={16} />
</a>
......@@ -210,7 +210,7 @@ export default class DashboardHeader extends Component {
key="add"
ref="addQuestionModal"
triggerElement={
<Tooltip tooltip="Add Card">
<Tooltip tooltip="Add a question">
<span data-metabase-event="Dashboard;Add Card Modal" title="Add a question to this dashboard">
<Icon className={cx("text-brand-hover cursor-pointer", { "Icon--pulse": isEmpty })} name="add" size={16} />
</span>
......
......@@ -29,7 +29,7 @@ export default class EmbedWidget extends Component<*, Props, *> {
ref={m => this._modal = m}
full
triggerElement={
<Tooltip tooltip={`Sharing and Embedding`}>
<Tooltip tooltip={`Sharing and embedding`}>
<Icon name="share" onClick={() => MetabaseAnalytics.trackEvent("Sharing / Embedding", resourceType, "Sharing Link Clicked") } />
</Tooltip>
}
......
......@@ -83,7 +83,7 @@
(re-humanize-table-and-field-names!))
(defsetting enable-advanced-humanization
"Metabase can attempt to transform your table and field names into more sensible human readable versions, e.g. \"somehorriblename\" becomes \"Some Horrible Name\".
"Metabase can attempt to transform your table and field names into more sensible, human-readable versions, e.g. \"somehorriblename\" becomes \"Some Horrible Name\".
This doesn’t work all that well if the names are in a language other than English, however. Do you want us to take a guess?"
:type :boolean
:default true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment