@apptegy/nuxt-navigation 0.1.58 → 0.1.59
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 +1 -1
- package/locale/en.json +20 -0
- package/locale/index.js +7 -0
- package/package.json +5 -3
package/dist/module.json
CHANGED
package/locale/en.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"navigation": {
|
|
3
|
+
"logout": "Logout",
|
|
4
|
+
"accountSettings": "Account settings",
|
|
5
|
+
"helpCenter": "Help center",
|
|
6
|
+
"helpArticles": "Help articles",
|
|
7
|
+
"impersonating": "Impersonating",
|
|
8
|
+
"clientName": "Client name",
|
|
9
|
+
"authenticatedAs": "Authenticated as",
|
|
10
|
+
"skipToContent": "Skip to content",
|
|
11
|
+
"orgDropdown": "Organization options",
|
|
12
|
+
"orgPlaceholder": "Start typing to search",
|
|
13
|
+
"orgBadge": "Intranet",
|
|
14
|
+
"sidebarToggle": "Menu",
|
|
15
|
+
"userDropdown": "User settings",
|
|
16
|
+
"logoAlt": "Thrillshare - Return Home",
|
|
17
|
+
"brandLogoAlt": "Logo",
|
|
18
|
+
"website": "School Website"
|
|
19
|
+
}
|
|
20
|
+
}
|
package/locale/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apptegy/nuxt-navigation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.59",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/types.d.ts",
|
|
8
8
|
"import": "./dist/module.mjs",
|
|
9
9
|
"require": "./dist/module.cjs"
|
|
10
|
-
}
|
|
10
|
+
},
|
|
11
|
+
"./locale/*": "./locale/*"
|
|
11
12
|
},
|
|
12
13
|
"main": "./dist/module.cjs",
|
|
13
14
|
"types": "./dist/types.d.ts",
|
|
14
15
|
"files": [
|
|
15
|
-
"dist"
|
|
16
|
+
"dist",
|
|
17
|
+
"locale"
|
|
16
18
|
],
|
|
17
19
|
"scripts": {
|
|
18
20
|
"prepack": "nuxt-module-build build",
|