mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* add translated key * update code generation for crowdin generation * use composition api and minor styling changes
		
			
				
	
	
		
			72 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <BaseDialog v-model="dialog" :icon="$globals.icons.translate" :title="$tc('language-dialog.choose-language')">
 | 
						|
    <v-card-text>
 | 
						|
      {{ $t("language-dialog.select-description") }}
 | 
						|
      <v-autocomplete
 | 
						|
        v-model="locale"
 | 
						|
        :items="locales"
 | 
						|
        item-text="name"
 | 
						|
        menu-props="auto"
 | 
						|
        class="my-3"
 | 
						|
        hide-details
 | 
						|
        outlined
 | 
						|
        offset
 | 
						|
      >
 | 
						|
        <template #item="{ item }">
 | 
						|
          <v-list-item-content>
 | 
						|
            <v-list-item-title v-text="item.name"></v-list-item-title>
 | 
						|
            <v-list-item-subtitle> {{ item.progress }}% {{ $tc("language-dialog.translated") }} </v-list-item-subtitle>
 | 
						|
          </v-list-item-content>
 | 
						|
        </template>
 | 
						|
      </v-autocomplete>
 | 
						|
      <i18n path="language-dialog.how-to-contribute-description">
 | 
						|
        <template #read-the-docs-link>
 | 
						|
          <a href="https://docs.mealie.io/contributors/translating/" target="_blank">{{
 | 
						|
            $t("language-dialog.read-the-docs")
 | 
						|
          }}</a>
 | 
						|
        </template>
 | 
						|
      </i18n>
 | 
						|
    </v-card-text>
 | 
						|
  </BaseDialog>
 | 
						|
</template>
 | 
						|
 | 
						|
<script lang="ts">
 | 
						|
import { computed, defineComponent } from "@nuxtjs/composition-api";
 | 
						|
import type { LocaleObject } from "@nuxtjs/i18n";
 | 
						|
import { useLocales } from "~/composables/use-locales";
 | 
						|
 | 
						|
export default defineComponent({
 | 
						|
  props: {
 | 
						|
    value: {
 | 
						|
      type: Boolean,
 | 
						|
      default: false,
 | 
						|
    },
 | 
						|
  },
 | 
						|
  setup(props, context) {
 | 
						|
    const dialog = computed<boolean>({
 | 
						|
      get() {
 | 
						|
        return props.value;
 | 
						|
      },
 | 
						|
      set(val) {
 | 
						|
        context.emit("input", val);
 | 
						|
      },
 | 
						|
    });
 | 
						|
 | 
						|
    const { locales: LOCALES, locale, i18n } = useLocales();
 | 
						|
 | 
						|
    const locales = LOCALES.filter((locale) =>
 | 
						|
      (i18n.locales as LocaleObject[]).map((i18nLocale) => i18nLocale.code).includes(locale.value)
 | 
						|
    );
 | 
						|
 | 
						|
    return {
 | 
						|
      dialog,
 | 
						|
      i18n,
 | 
						|
      locales,
 | 
						|
      locale,
 | 
						|
    };
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped></style>
 |