@tekkare/auriga 0.1.118 → 0.1.119
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -136,9 +136,9 @@ export default defineComponent({
|
|
|
136
136
|
);
|
|
137
137
|
const getTitle = computed(() => {
|
|
138
138
|
if (props.scopes.length > 0) {
|
|
139
|
-
return props.lang === "en" ? "My scope" : "Mon scope";
|
|
139
|
+
return props.lang === "en" ? "My scope" : props.lang === "es" ? "Mi scope" : "Mon scope";
|
|
140
140
|
} else
|
|
141
|
-
return props.lang === "en" ? "New scope" : "Nouveau scope";
|
|
141
|
+
return props.lang === "en" ? "New scope" : props.lang === "en" ? "Nuevo scope" : "Nouveau scope";
|
|
142
142
|
});
|
|
143
143
|
function closeDropdown() {
|
|
144
144
|
isDisplay.value = false;
|
|
@@ -46,7 +46,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
46
46
|
isDisplay: import("vue").Ref<boolean>;
|
|
47
47
|
closeDropdown: () => void;
|
|
48
48
|
changeDisplay: () => void;
|
|
49
|
-
getTitle: import("vue").ComputedRef<"Mon scope" | "My scope" | "New scope" | "Nouveau scope">;
|
|
49
|
+
getTitle: import("vue").ComputedRef<"Mon scope" | "Mi scope" | "My scope" | "New scope" | "Nuevo scope" | "Nouveau scope">;
|
|
50
50
|
selectScope: (scope: any) => void;
|
|
51
51
|
selectedScope: import("vue").Ref<any>;
|
|
52
52
|
newScope: () => void;
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
? "Scope applied:"
|
|
7
7
|
: lang === "es"
|
|
8
8
|
? "Scope aplicado:"
|
|
9
|
-
: "Scope
|
|
9
|
+
: "Scope appliqué:"
|
|
10
10
|
}}
|
|
11
11
|
</p>
|
|
12
12
|
<p class="arg_scope">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
? selected
|
|
16
16
|
: lang === "en"
|
|
17
17
|
? "Custom"
|
|
18
|
-
: lang === "
|
|
18
|
+
: lang === "es"
|
|
19
19
|
? "Personalizado"
|
|
20
20
|
: "Sur mesure"
|
|
21
21
|
}}
|