license twemoji mention in About

This commit is contained in:
alanescarcha 2025-04-18 07:16:06 -03:00
parent ad427efe39
commit 2aabae432b
5 changed files with 4 additions and 22 deletions

View file

@ -21,6 +21,9 @@
<label><input v-model="settings.checkBeta" type="checkbox" :disabled="!settings.checkUpdate" @change="saveSettings()" /> {{ $t("Also check beta release") }}</label>
</div>
</div>
<div class="mt-3">
<p>{{ $t("Font Twemoji by Twitter licensed under") }} <a href="https://creativecommons.org/licenses/by/4.0/">CC-BY 4.0</a></p>
</div>
</div>
</div>
</template>

View file

@ -1,11 +0,0 @@
<template>
<div class="my-3">
<h5 class="my-4 settings-subheading">{{ $t("Open Source Licenses") }}</h5>
<ul class="my-3">
<li>
{{ $t("Country Flag Emoji Polyfill by") }} <a href="https://github.com/twitter/twemoji" target="_blank" rel="noopener">@Twemoji</a>
</li>
</ul>
</div>
</template>

View file

@ -1068,7 +1068,5 @@
"Plain Text": "Plain Text",
"Message Template": "Message Template",
"Template Format": "Template Format",
"Licenses": "Licenses",
"Open Source Licenses": "Open Source Licenses",
"Country Flag Emoji Polyfill by": "Country Flag Emoji Polyfill by"
"Font Twemoji by Twitter licensed under": "Font Twemoji by Twitter licensed under"
}

View file

@ -119,9 +119,6 @@ export default {
about: {
title: this.$t("About"),
},
licenses: {
title: this.$t("Licenses"),
},
};
},
},

View file

@ -31,7 +31,6 @@ import MonitorHistory from "./components/settings/MonitorHistory.vue";
const Security = () => import("./components/settings/Security.vue");
import Proxies from "./components/settings/Proxies.vue";
import About from "./components/settings/About.vue";
import Licenses from "./components/settings/Licenses.vue";
import RemoteBrowsers from "./components/settings/RemoteBrowsers.vue";
const routes = [
@ -137,10 +136,6 @@ const routes = [
path: "about",
component: About,
},
{
path: "licenses",
component: Licenses,
},
]
},
{