mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 14:38:17 +08:00
UX: More consistent shortcut labels for macOS (#14538)
This commit is contained in:
parent
ae13839f98
commit
6141ed31c7
|
@ -1,6 +1,10 @@
|
|||
import Button from "discourse/components/d-button";
|
||||
import I18n from "I18n";
|
||||
import { translateModKey } from "discourse/lib/utilities";
|
||||
|
||||
export default Button.extend({
|
||||
classNameBindings: [":btn-primary", ":create", "disableSubmit:disabled"],
|
||||
title: "composer.title",
|
||||
translatedTitle: I18n.t("composer.title", {
|
||||
modifier: translateModKey("Meta+"),
|
||||
}),
|
||||
});
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
import { ajax } from "discourse/lib/ajax";
|
||||
import { caretPosition, inCodeBlock } from "discourse/lib/utilities";
|
||||
import {
|
||||
caretPosition,
|
||||
inCodeBlock,
|
||||
translateModKey,
|
||||
} from "discourse/lib/utilities";
|
||||
import discourseComputed, {
|
||||
observes,
|
||||
on,
|
||||
|
@ -191,24 +195,12 @@ class Toolbar {
|
|||
if (button.shortcut) {
|
||||
const mac = /Mac|iPod|iPhone|iPad/.test(navigator.platform);
|
||||
const mod = mac ? "Meta" : "Ctrl";
|
||||
let shortcutTitle = `${mod}+${button.shortcut}`;
|
||||
|
||||
// Mac users are used to glyphs for shortcut keys
|
||||
if (mac) {
|
||||
shortcutTitle = shortcutTitle
|
||||
.replace("Shift", "\u21E7")
|
||||
.replace("Meta", "\u2318")
|
||||
.replace("Alt", "\u2325")
|
||||
.replace(/\+/g, "");
|
||||
} else {
|
||||
shortcutTitle = shortcutTitle
|
||||
.replace("Shift", I18n.t("shortcut_modifier_key.shift"))
|
||||
.replace("Ctrl", I18n.t("shortcut_modifier_key.ctrl"))
|
||||
.replace("Alt", I18n.t("shortcut_modifier_key.alt"));
|
||||
}
|
||||
const shortcutTitle = `${translateModKey(mod + "+")}${translateModKey(
|
||||
button.shortcut
|
||||
)}`;
|
||||
|
||||
createdButton.title = `${title} (${shortcutTitle})`;
|
||||
|
||||
this.shortcuts[`${mod}+${button.shortcut}`.toLowerCase()] = createdButton;
|
||||
} else {
|
||||
createdButton.title = title;
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
import Controller from "@ember/controller";
|
||||
import I18n from "I18n";
|
||||
import { translateModKey } from "discourse/lib/utilities";
|
||||
import ModalFunctionality from "discourse/mixins/modal-functionality";
|
||||
|
||||
const KEY = "keyboard_shortcuts_help";
|
||||
|
||||
const SHIFT = I18n.t("shortcut_modifier_key.shift");
|
||||
const ALT = I18n.t("shortcut_modifier_key.alt");
|
||||
const ALT = translateModKey("Alt");
|
||||
const CTRL = I18n.t("shortcut_modifier_key.ctrl");
|
||||
const ENTER = I18n.t("shortcut_modifier_key.enter");
|
||||
|
||||
|
@ -210,7 +211,7 @@ export default Controller.extend(ModalFunctionality, {
|
|||
keys1: ["m", "w"],
|
||||
}),
|
||||
print: buildShortcut("actions.print", {
|
||||
keys1: [CTRL, "p"],
|
||||
keys1: [translateModKey("Meta"), "p"],
|
||||
keysDelimiter: PLUS,
|
||||
}),
|
||||
defer: buildShortcut("actions.defer", {
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
import getURL, { getURLWithCDN } from "discourse-common/lib/get-url";
|
||||
import Handlebars from "handlebars";
|
||||
import I18n from "I18n";
|
||||
import { deepMerge } from "discourse-common/lib/object";
|
||||
import { escape } from "pretty-text/sanitizer";
|
||||
import { helperContext } from "discourse-common/lib/helpers";
|
||||
|
@ -495,5 +496,24 @@ export function inCodeBlock(text, pos) {
|
|||
return lastOpenBlock !== -1 && pos >= end + lastOpenBlock;
|
||||
}
|
||||
|
||||
export function translateModKey(string) {
|
||||
const mac = /Mac|iPod|iPhone|iPad/.test(navigator.platform);
|
||||
// Mac users are used to glyphs for shortcut keys
|
||||
if (mac) {
|
||||
string = string
|
||||
.replace("Shift", "\u21E7")
|
||||
.replace("Meta", "\u2318")
|
||||
.replace("Alt", "\u2325")
|
||||
.replace(/\+/g, "");
|
||||
} else {
|
||||
string = string
|
||||
.replace("Shift", I18n.t("shortcut_modifier_key.shift"))
|
||||
.replace("Ctrl", I18n.t("shortcut_modifier_key.ctrl"))
|
||||
.replace("Meta", I18n.t("shortcut_modifier_key.ctrl"))
|
||||
.replace("Alt", I18n.t("shortcut_modifier_key.alt"));
|
||||
}
|
||||
|
||||
return string;
|
||||
}
|
||||
// This prevents a mini racer crash
|
||||
export default {};
|
||||
|
|
|
@ -2137,7 +2137,7 @@ en:
|
|||
create_whisper: "Whisper"
|
||||
create_shared_draft: "Create Shared Draft"
|
||||
edit_shared_draft: "Edit Shared Draft"
|
||||
title: "Or press Ctrl+Enter"
|
||||
title: "Or press %{modifier}Enter"
|
||||
|
||||
users_placeholder: "Add a user"
|
||||
title_placeholder: "What is this discussion about in one brief sentence?"
|
||||
|
|
Loading…
Reference in New Issue
Block a user