diff --git a/src/front/cobalt.css b/src/front/cobalt.css index 98806bc3..1d8d1229 100644 --- a/src/front/cobalt.css +++ b/src/front/cobalt.css @@ -338,6 +338,7 @@ button:active, color: var(--accent-subtext); padding: var(--gap) 1rem!important; align-content: center; + border-radius: 10px; } .notification-dot { width: 8px; diff --git a/src/front/emoji/question_mark.svg b/src/front/emoji/question_mark.svg deleted file mode 100644 index 3c7e887a..00000000 --- a/src/front/emoji/question_mark.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/localization/languages/en.json b/src/localization/languages/en.json index 57dc8325..36387b8c 100644 --- a/src/localization/languages/en.json +++ b/src/localization/languages/en.json @@ -28,7 +28,7 @@ "ErrorCouldntFetch": "i couldn't find anything about this link. check if it works and try again! some content may be region restricted, so keep that in mind.", "ErrorLengthLimit": "i can't process videos longer than {s} minutes, so pick something shorter instead!", "ErrorBadFetch": "something went wrong when i tried getting info about your link. are you sure it works? check if it does, and try again.", - "ErrorNoInternet": "there's no internet or cobalt api is temporarily unavailable. check your connection and try again.", + "ErrorNoInternet": "there's no internet or api is temporarily unavailable. check your connection and try again.", "ErrorCantConnectToServiceAPI": "i couldn't connect to the service api. maybe it's down, or cobalt got blocked. try again, but if error persists, {ContactLink}.", "ErrorEmptyDownload": "i don't see anything i could download by your link. try a different one!", "ErrorLiveVideo": "this is a live video, i am yet to learn how to look into future. wait for the stream to finish and try again!", diff --git a/src/modules/emoji.js b/src/modules/emoji.js index 82273ac4..3451d8f6 100644 --- a/src/modules/emoji.js +++ b/src/modules/emoji.js @@ -2,7 +2,6 @@ const names = { "🎶": "musical_notes", "🎬": "clapper_board", "🎉": "party_popper", - "❓": "question_mark", "✨": "sparkles", "🪅": "pinata", "🪄": "magic_wand", diff --git a/src/modules/pageRender/elements.js b/src/modules/pageRender/elements.js index ae14cd88..fffef37e 100644 --- a/src/modules/pageRender/elements.js +++ b/src/modules/pageRender/elements.js @@ -217,7 +217,7 @@ export function celebrationsEmoji() { export function urgentNotice(obj) { if (obj.visible) { return `
` + - `${emoji(obj.emoji, 18)} ${obj.text}` + + `${obj.text}` + `
` } return `` diff --git a/src/modules/pageRender/page.js b/src/modules/pageRender/page.js index 35024af0..4db6c92d 100644 --- a/src/modules/pageRender/page.js +++ b/src/modules/pageRender/page.js @@ -111,7 +111,7 @@ export default function(obj) { text: `v.${version}-${obj.hash} (${obj.branch})`, url: `${repo}/commit/${obj.hash}` }, - title: `${emoji("⚙️", 30)} ${t('TitlePopupSettings')}` + title: `${t('TitlePopupSettings')}` }, tabs: [{ name: "video", @@ -335,7 +335,7 @@ export default function(obj) { name: "picker", closeAria: t('AccessibilityGoBack'), header: { - title: `${emoji("🧮", 30)}
`, + title: `
`, explanation: `
`, }, buttons: [`${t('ImagePickerDownloadAudio')}`], @@ -349,9 +349,6 @@ export default function(obj) { classes: ["small"], header: { closeAria: t('AccessibilityGoBack'), - emoji: ``, title: t('TitlePopupDownload') }, body: switcher({ @@ -371,15 +368,13 @@ export default function(obj) { buttonOnly: true, classes: ["small"], header: { - emoji: ``, }, body: `
`, buttonText: t('ErrorPopupCloseButton') })} +





-





+
- + ${switcher({ name: "audioMode", noParent: true, @@ -414,7 +409,7 @@ export default function(obj) { ${footerButtons([{ name: "settings", type: "popup", - text: `${emoji("⚙️", 22)} ${t('TitlePopupSettings')}`, + text: `${t('TitlePopupSettings')}`, aria: t('AccessibilityOpenSettings') }])}