@jojomatik/nuxt-bundle 1.0.1-beta.2 → 1.1.0-beta.1
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/locales/de.json +6 -6
- package/locales/en.json +1 -1
- package/locales/fr.json +1 -1
- package/package.json +1 -1
- package/pages/license-information.vue +5 -1
package/locales/de.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"nuxt-bundle": {
|
|
3
3
|
"error": {
|
|
4
|
-
"title": "Fehler {error}",
|
|
5
|
-
"description": "Ein unbekannter Fehler ist aufgetreten",
|
|
6
4
|
"404": {
|
|
7
|
-
"
|
|
8
|
-
"
|
|
9
|
-
}
|
|
5
|
+
"description": "Diese Seite existiert nicht",
|
|
6
|
+
"title": "404 Nicht Gefunden"
|
|
7
|
+
},
|
|
8
|
+
"description": "Ein unbekannter Fehler ist aufgetreten",
|
|
9
|
+
"title": "Fehler {error}"
|
|
10
10
|
},
|
|
11
11
|
"license-information": {
|
|
12
|
-
"description": "
|
|
12
|
+
"description": "{title} basiert auf Free Open Source Software (FOSS), die gesonderten Lizenzbedingungen unterliegen, die im folgenden aufgelistet werden.",
|
|
13
13
|
"title": "Lizenzinformationen"
|
|
14
14
|
}
|
|
15
15
|
}
|
package/locales/en.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
},
|
|
11
11
|
"license-information": {
|
|
12
|
-
"description": "
|
|
12
|
+
"description": "{title} is based on Free Open Source Software (FOSS), which is subject to separate license conditions, which are listed below.",
|
|
13
13
|
"title": "License information"
|
|
14
14
|
}
|
|
15
15
|
}
|
package/locales/fr.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"title": "Erreur {error}"
|
|
10
10
|
},
|
|
11
11
|
"license-information": {
|
|
12
|
-
"description": "
|
|
12
|
+
"description": "{title} est basé sur des logiciels à code source ouvert (Free Open Source Software, FOSS), qui sont soumis à des conditions de licence distinctes, énumérées ci-dessous.",
|
|
13
13
|
"title": "Informations de licence"
|
|
14
14
|
}
|
|
15
15
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,11 @@
|
|
|
4
4
|
{{ i18n.t("nuxt-bundle.license-information.title") }}
|
|
5
5
|
</p>
|
|
6
6
|
<p class="text-body-1">
|
|
7
|
-
{{
|
|
7
|
+
{{
|
|
8
|
+
i18n.t("nuxt-bundle.license-information.description", {
|
|
9
|
+
title: i18n.t("title"),
|
|
10
|
+
})
|
|
11
|
+
}}
|
|
8
12
|
</p>
|
|
9
13
|
<v-row v-if="pending">
|
|
10
14
|
<v-col v-for="index in 12" :key="index" cols="12" md="6" lg="4" xl="3">
|