sumba 1.1.14 → 1.1.15
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/bajo/intl/en-US.json +2 -1
- package/bajo/intl/id.json +3 -2
- package/bajoTemplate/partial/layout/footer.html +1 -1
- package/bajoTemplate/partial/list-item/change-password.html +1 -1
- package/bajoTemplate/partial/list-item/forgot-password.html +1 -1
- package/bajoTemplate/partial/list-item/goto-home.html +1 -1
- package/bajoTemplate/partial/list-item/signin.html +1 -1
- package/bajoTemplate/partial/list-item/signout.html +1 -1
- package/bajoTemplate/partial/list-item/user-signup.html +1 -1
- package/bajoTemplate/partial/list-item/your-profile.html +1 -1
- package/package.json +1 -1
- package/plugin/factory.js +2 -2
package/bajo/intl/en-US.json
CHANGED
package/bajo/intl/id.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"forgotPassword": "Lupa Kata Sandi",
|
|
28
28
|
"userActivation": "Aktivasi Akun",
|
|
29
29
|
"signup": "Pendaftaran",
|
|
30
|
-
"newUserSignup": "Pendaftaran Pengguna
|
|
30
|
+
"newUserSignup": "Pendaftaran Pengguna",
|
|
31
31
|
"updateProfile": "Perbarui Profil",
|
|
32
32
|
"backToProfile": "Kembali ke Profil",
|
|
33
33
|
"displayApiKey": "Tampilkan Kunci API",
|
|
@@ -102,7 +102,8 @@
|
|
|
102
102
|
"iconset": "Iconset",
|
|
103
103
|
"subject": "Judul",
|
|
104
104
|
"message": "Pesan",
|
|
105
|
-
"cat": "Kategori"
|
|
105
|
+
"cat": "Kategori",
|
|
106
|
+
"waPhone": "WA Phone"
|
|
106
107
|
},
|
|
107
108
|
"validation": {
|
|
108
109
|
"password": {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item t:content="changePassword" href="sumba:/your-stuff/change-password"/>
|
|
1
|
+
<c:nav-item t:content="changePassword" href="sumba:/your-stuff/change-password" padding="x-2"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item t:content="forgotPassword" href="sumba:/user/forgot-password"/>
|
|
1
|
+
<c:nav-item t:content="forgotPassword" href="sumba:/user/forgot-password" padding="x-2"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item href="/" t:content="gotoHome"
|
|
1
|
+
<c:nav-item href="/" t:content="gotoHome" padding="x-2"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item t:content="signin" href="sumba:/signin"
|
|
1
|
+
<c:nav-item t:content="signin" href="sumba:/signin" padding="x-2"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item t:content="signout" href="sumba:/signout" />
|
|
1
|
+
<c:nav-item t:content="signout" href="sumba:/signout" padding="x-2" />
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item t:content="newUserSignup" href="sumba:/user/signup" />
|
|
1
|
+
<c:nav-item t:content="newUserSignup" href="sumba:/user/signup" padding="x-2"/>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<c:nav-item t:content="yourProfile" href="sumba:/your-stuff/profile" />
|
|
1
|
+
<c:nav-item t:content="yourProfile" href="sumba:/your-stuff/profile" padding="x-2" />
|
package/package.json
CHANGED
package/plugin/factory.js
CHANGED
|
@@ -68,8 +68,8 @@ async function factory (pkgName) {
|
|
|
68
68
|
level: 90,
|
|
69
69
|
children: [
|
|
70
70
|
{ title: 'contactForm', href: 'sumba:/help/contact-form' },
|
|
71
|
-
{ title: 'troubleTickets', href: 'sumba:/help/trouble-tickets' },
|
|
72
|
-
{ title: '-'
|
|
71
|
+
{ title: 'troubleTickets', href: 'sumba:/help/trouble-tickets', visible: 'auth' },
|
|
72
|
+
{ title: '-' },
|
|
73
73
|
{ title: 'cookiePolicy', href: 'sumba:/info/cookie-policy' },
|
|
74
74
|
{ title: 'privacy', href: 'sumba:/info/privacy' },
|
|
75
75
|
{ title: 'termsConditions', href: 'sumba:/info/terms-conditions' }
|