🎉 Basic i18n support
This commit is contained in:
@@ -224,7 +224,7 @@
|
||||
|
||||
<style scoped lang="scss">
|
||||
.tab {
|
||||
max-height: calc(100vh - 172px);
|
||||
max-height: calc(100vh - 186px);
|
||||
overflow: auto;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -97,7 +97,7 @@
|
||||
id="send"
|
||||
ref="sendButton"
|
||||
>
|
||||
Send
|
||||
{{ $t("send") }}
|
||||
<span id="hidden-message">Again</span>
|
||||
<span>
|
||||
<i class="material-icons">send</i>
|
||||
|
||||
@@ -92,7 +92,12 @@
|
||||
<i class="material-icons">clear_all</i>
|
||||
</button>
|
||||
</div>
|
||||
<input id="url" type="url" v-model="settings.PROXY_URL" :disabled="!settings.PROXY_ENABLED">
|
||||
<input
|
||||
id="url"
|
||||
type="url"
|
||||
v-model="settings.PROXY_URL"
|
||||
:disabled="!settings.PROXY_ENABLED"
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="info">
|
||||
@@ -231,7 +236,9 @@ export default {
|
||||
this.$store.state.postwoman.settings.FRAME_COLORS_ENABLED || false,
|
||||
PROXY_ENABLED:
|
||||
this.$store.state.postwoman.settings.PROXY_ENABLED || false,
|
||||
PROXY_URL: this.$store.state.postwoman.settings.PROXY_URL || "https://postwoman.apollotv.xyz/",
|
||||
PROXY_URL:
|
||||
this.$store.state.postwoman.settings.PROXY_URL ||
|
||||
"https://postwoman.apollotv.xyz/",
|
||||
PROXY_KEY: this.$store.state.postwoman.settings.PROXY_KEY || ""
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user