mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-07-21 08:34:03 +02:00
license twemoji mention in About
This commit is contained in:
parent
ad427efe39
commit
2aabae432b
5 changed files with 4 additions and 22 deletions
|
@ -21,6 +21,9 @@
|
||||||
<label><input v-model="settings.checkBeta" type="checkbox" :disabled="!settings.checkUpdate" @change="saveSettings()" /> {{ $t("Also check beta release") }}</label>
|
<label><input v-model="settings.checkBeta" type="checkbox" :disabled="!settings.checkUpdate" @change="saveSettings()" /> {{ $t("Also check beta release") }}</label>
|
||||||
</div>
|
</div>
|
||||||
</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>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -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>
|
|
||||||
|
|
|
@ -1068,7 +1068,5 @@
|
||||||
"Plain Text": "Plain Text",
|
"Plain Text": "Plain Text",
|
||||||
"Message Template": "Message Template",
|
"Message Template": "Message Template",
|
||||||
"Template Format": "Template Format",
|
"Template Format": "Template Format",
|
||||||
"Licenses": "Licenses",
|
"Font Twemoji by Twitter licensed under": "Font Twemoji by Twitter licensed under"
|
||||||
"Open Source Licenses": "Open Source Licenses",
|
|
||||||
"Country Flag Emoji Polyfill by": "Country Flag Emoji Polyfill by"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -119,9 +119,6 @@ export default {
|
||||||
about: {
|
about: {
|
||||||
title: this.$t("About"),
|
title: this.$t("About"),
|
||||||
},
|
},
|
||||||
licenses: {
|
|
||||||
title: this.$t("Licenses"),
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -31,7 +31,6 @@ import MonitorHistory from "./components/settings/MonitorHistory.vue";
|
||||||
const Security = () => import("./components/settings/Security.vue");
|
const Security = () => import("./components/settings/Security.vue");
|
||||||
import Proxies from "./components/settings/Proxies.vue";
|
import Proxies from "./components/settings/Proxies.vue";
|
||||||
import About from "./components/settings/About.vue";
|
import About from "./components/settings/About.vue";
|
||||||
import Licenses from "./components/settings/Licenses.vue";
|
|
||||||
import RemoteBrowsers from "./components/settings/RemoteBrowsers.vue";
|
import RemoteBrowsers from "./components/settings/RemoteBrowsers.vue";
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
|
@ -137,10 +136,6 @@ const routes = [
|
||||||
path: "about",
|
path: "about",
|
||||||
component: About,
|
component: About,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "licenses",
|
|
||||||
component: Licenses,
|
|
||||||
},
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue