fix(ui): [WIP] remove `useGettext` translation mechanism
TODO: Replace with `{ t }`
This commit is contained in:
parent
10683f327c
commit
8f69c7b3bd
|
@ -32,7 +32,6 @@ const suggestedInstances = computed(() => {
|
|||
|
||||
watch(() => store.state.instance.instanceUrl, () => store.dispatch('instance/fetchSettings'))
|
||||
|
||||
|
||||
// TODO: replace translation mechanism { $pgettext } with { t }
|
||||
|
||||
// const { $pgettext } = useGettext()
|
||||
|
@ -127,7 +126,7 @@ const checkAndSwitch = async (url: string) => {
|
|||
<!-- TODO: translate -->
|
||||
<!-- <translate translate-context="Popup/Instance/Input.Label/Noun">Instance URL</translate>
|
||||
-->
|
||||
</label>
|
||||
</label>
|
||||
<div class="ui action input">
|
||||
<input
|
||||
id="instance-picker"
|
||||
|
@ -139,8 +138,8 @@ const checkAndSwitch = async (url: string) => {
|
|||
type="submit"
|
||||
:class="['ui', 'icon', {loading: isLoading}, 'button']"
|
||||
>
|
||||
<!-- TODO: translate -->
|
||||
Submit
|
||||
<!-- TODO: translate -->
|
||||
Submit
|
||||
<!-- <translate translate-context="*/*/Button.Label/Verb">
|
||||
</translate> -->
|
||||
</button>
|
||||
|
@ -172,8 +171,7 @@ const checkAndSwitch = async (url: string) => {
|
|||
</div>
|
||||
<div class="actions">
|
||||
<button class="ui basic cancel button">
|
||||
|
||||
<!-- TODO: translate -->
|
||||
<!-- TODO: translate -->
|
||||
Cancel
|
||||
<!-- <translate translate-context="*/*/Button.Label/Verb">
|
||||
</translate> -->
|
||||
|
|
Loading…
Reference in New Issue