@bigbinary/neeto-themes-frontend 4.0.5 → 4.0.7
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/README.md +24 -1
- package/app/javascript/src/translations/ar.json +5 -1
- package/app/javascript/src/translations/bg.json +5 -1
- package/app/javascript/src/translations/ca.json +5 -1
- package/app/javascript/src/translations/cs.json +5 -1
- package/app/javascript/src/translations/da.json +5 -1
- package/app/javascript/src/translations/de.json +5 -1
- package/app/javascript/src/translations/en.json +5 -1
- package/app/javascript/src/translations/es-MX.json +5 -1
- package/app/javascript/src/translations/es.json +5 -1
- package/app/javascript/src/translations/et.json +5 -1
- package/app/javascript/src/translations/fi.json +5 -1
- package/app/javascript/src/translations/fil.json +5 -1
- package/app/javascript/src/translations/fr.json +5 -1
- package/app/javascript/src/translations/he.json +5 -1
- package/app/javascript/src/translations/hi.json +5 -1
- package/app/javascript/src/translations/hr.json +5 -1
- package/app/javascript/src/translations/id.json +5 -1
- package/app/javascript/src/translations/it.json +5 -1
- package/app/javascript/src/translations/ja.json +5 -1
- package/app/javascript/src/translations/ko.json +5 -1
- package/app/javascript/src/translations/nl.json +5 -1
- package/app/javascript/src/translations/pl.json +5 -1
- package/app/javascript/src/translations/pt-BR.json +5 -1
- package/app/javascript/src/translations/pt.json +5 -1
- package/app/javascript/src/translations/ro.json +5 -1
- package/app/javascript/src/translations/ru.json +5 -1
- package/app/javascript/src/translations/sk.json +5 -1
- package/app/javascript/src/translations/sl.json +5 -1
- package/app/javascript/src/translations/sv.json +5 -1
- package/app/javascript/src/translations/th.json +5 -1
- package/app/javascript/src/translations/tr.json +5 -1
- package/app/javascript/src/translations/uk.json +5 -1
- package/app/javascript/src/translations/vi.json +5 -1
- package/app/javascript/src/translations/zh-CN.json +5 -1
- package/app/javascript/src/translations/zh-TW.json +5 -1
- package/dist/NeetoThemesBuilder.js +29 -12
- package/dist/NeetoThemesBuilder.js.map +1 -1
- package/dist/cjs/NeetoThemesBuilder.js +29 -12
- package/dist/cjs/NeetoThemesBuilder.js.map +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -188,6 +188,25 @@ for step-by-step instructions to develop the frontend package.
|
|
|
188
188
|
export default App;
|
|
189
189
|
```
|
|
190
190
|
|
|
191
|
+
**Props:**
|
|
192
|
+
|
|
193
|
+
- `entityId` (required): The ID of the entity to which the theme is attached.
|
|
194
|
+
- `entityType` (required): The type of the entity (e.g., "Meeting", "Booking").
|
|
195
|
+
- `thumbnail` (required): A React component to display as the theme thumbnail.
|
|
196
|
+
- `children` (required): The preview component to render.
|
|
197
|
+
- `onPropertiesChange` (optional): Callback function triggered when theme properties change.
|
|
198
|
+
- `defaultImageSize` (optional): Default image size for image uploads. Should be an object with `width` and `height` properties.
|
|
199
|
+
- `fixedAspectRatio` (optional): Fixed aspect ratio for image uploads. Should be an object with `width` and `height` properties.
|
|
200
|
+
- `helpDocUrl` (optional): URL to the help documentation.
|
|
201
|
+
- `isTemplateThemesEnabled` (optional): Boolean to enable template themes feature. Default: `false`.
|
|
202
|
+
- `pageTitle` (optional): Custom page title for the theme builder.
|
|
203
|
+
- `onApplyThemeSuccess` (optional): Callback function triggered when a theme is successfully applied.
|
|
204
|
+
- `onUpdateThemeSuccess` (optional): Callback function triggered when a theme is successfully updated.
|
|
205
|
+
- `onApplyGlobalThemeSuccess` (optional): Callback function triggered when a global theme is successfully applied.
|
|
206
|
+
- `helpPopoverProps` (optional): Props to pass to the help popover component.
|
|
207
|
+
- `enabledFeatures` (optional): Object to control which features are enabled. Default: `{ customCSS: true }`. Set `{ customCSS: false }` to disable the Custom CSS feature.
|
|
208
|
+
- `proFeatures` (optional): Object to specify which features should be marked as "pro" features. Example: `{ customCSS: true }` will mark Custom CSS as a pro feature.
|
|
209
|
+
|
|
191
210
|
#### hooks
|
|
192
211
|
|
|
193
212
|
1. Import `useThemeUtils` hook from "@bigbinary/neeto-themes-frontend"
|
|
@@ -209,7 +228,11 @@ for step-by-step instructions to develop the frontend package.
|
|
|
209
228
|
|
|
210
229
|
`neeto-themes-nano` will inject custom css into your application as part of a
|
|
211
230
|
theme. You can provide `enabledFeatures={{ customCSS: false }}` in
|
|
212
|
-
`NeetoThemesBuilder` to manually
|
|
231
|
+
`NeetoThemesBuilder` to manually **hide** the CustomCSS feature.
|
|
232
|
+
You can pair it with `proFeatures={{ customCSS: true }}` to show it *disabled*
|
|
233
|
+
in non-enabled cases.
|
|
234
|
+
|
|
235
|
+
This feature
|
|
213
236
|
requires the initializer to be set with the additional property
|
|
214
237
|
`{ kind: "custom_css", key: "custom_css", default_value: "", parent_class: "neeto-form-eui" }`.
|
|
215
238
|
The `parent_class` key will be used as a parent to inject styles and for CSS
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "صور",
|
|
30
30
|
"name": "اسم",
|
|
31
31
|
"left": "يسار",
|
|
32
|
-
"logo": "شعار"
|
|
32
|
+
"logo": "شعار",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "ميزة PRO",
|
|
35
|
+
"description": "هذه ميزة PRO. يرجى الترقية إلى خطة PRO لاستخدام هذه الميزة."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "حفظ التغييرات",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Изображения",
|
|
30
30
|
"name": "Име",
|
|
31
31
|
"left": "Ляво",
|
|
32
|
-
"logo": "Лого"
|
|
32
|
+
"logo": "Лого",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO функция",
|
|
35
|
+
"description": "Това е PRO функция. Моля, ъпгрейдвайте до PRO план, за да използвате тази функция."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Запази промените",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Imatges",
|
|
30
30
|
"name": "Nom",
|
|
31
31
|
"left": "Esquerra",
|
|
32
|
-
"logo": "Logotip"
|
|
32
|
+
"logo": "Logotip",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Funció PRO",
|
|
35
|
+
"description": "Aquesta és una funció PRO. Si us plau, actualitzeu a un pla PRO per utilitzar aquesta funció."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Desa els canvis",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Obrázky",
|
|
30
30
|
"name": "Název",
|
|
31
31
|
"left": "Vlevo",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO funkce",
|
|
35
|
+
"description": "Toto je PRO funkce. Pro použití této funkce prosím přejděte na PRO plán."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Uložit změny",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Billeder",
|
|
30
30
|
"name": "Navn",
|
|
31
31
|
"left": "Venstre",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO-funktion",
|
|
35
|
+
"description": "Dette er en PRO-funktion. Opgrader venligst til en PRO-plan for at bruge denne funktion."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Gem ændringer",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Bilder",
|
|
30
30
|
"name": "Name",
|
|
31
31
|
"left": "Links",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO-Funktion",
|
|
35
|
+
"description": "Dies ist eine PRO-Funktion. Bitte upgraden Sie auf einen PRO-Plan, um diese Funktion nutzen zu können."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Änderungen speichern",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Images",
|
|
30
30
|
"name": "Name",
|
|
31
31
|
"left": "Left",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO feature",
|
|
35
|
+
"description": "This is a PRO feature. Please upgrade to a PRO plan to use this feature."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Save changes",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Imágenes",
|
|
30
30
|
"name": "Nombre",
|
|
31
31
|
"left": "Izquierda",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Característica PRO",
|
|
35
|
+
"description": "Esta es una característica PRO. Por favor, actualice a un plan PRO para usar esta característica."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Guardar cambios",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Imágenes",
|
|
30
30
|
"name": "Nombre",
|
|
31
31
|
"left": "Izquierda",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Característica PRO",
|
|
35
|
+
"description": "Esta es una característica PRO. Por favor, actualiza a un plan PRO para usar esta característica."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Guardar cambios",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Pildid",
|
|
30
30
|
"name": "Nimi",
|
|
31
31
|
"left": "Vasak",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO funktsioon",
|
|
35
|
+
"description": "See on PRO funktsioon. Palun uuendage PRO plaanile, et seda funktsiooni kasutada."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Salvesta muudatused",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Kuvat",
|
|
30
30
|
"name": "Nimi",
|
|
31
31
|
"left": "Vasen",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO-ominaisuus",
|
|
35
|
+
"description": "Tämä on PRO-ominaisuus. Ole hyvä ja päivitä PRO-suunnitelmaan käyttääksesi tätä ominaisuutta."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Tallenna muutokset",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Mga Larawan",
|
|
30
30
|
"name": "Pangalan",
|
|
31
31
|
"left": "Kaliwa",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO na tampok",
|
|
35
|
+
"description": "Ito ay isang PRO na tampok. Mangyaring mag-upgrade sa isang PRO plano upang magamit ang tampok na ito."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "I-save ang mga pagbabago",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Images",
|
|
30
30
|
"name": "Nom",
|
|
31
31
|
"left": "Gauche",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Fonctionnalité PRO",
|
|
35
|
+
"description": "C'est une fonctionnalité PRO. Veuillez passer à un plan PRO pour utiliser cette fonctionnalité."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Enregistrer les modifications",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "תמונות",
|
|
30
30
|
"name": "שם",
|
|
31
31
|
"left": "שמאל",
|
|
32
|
-
"logo": "לוגו"
|
|
32
|
+
"logo": "לוגו",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "תכונת PRO",
|
|
35
|
+
"description": "זו תכונת PRO. אנא שדרגו לתוכנית PRO כדי להשתמש בתכונה זו."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "שמור שינויים",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "छवियाँ",
|
|
30
30
|
"name": "नाम",
|
|
31
31
|
"left": "बाएँ",
|
|
32
|
-
"logo": "लोगो"
|
|
32
|
+
"logo": "लोगो",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO विशेषता",
|
|
35
|
+
"description": "यह एक PRO विशेषता है। कृपया इस विशेषता का उपयोग करने के लिए PRO योजना में अपग्रेड करें।"
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "परिवर्तनों को सहेजें",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Slike",
|
|
30
30
|
"name": "Naziv",
|
|
31
31
|
"left": "Lijevo",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO značajka",
|
|
35
|
+
"description": "Ovo je PRO značajka. Molimo nadogradite na PRO plan kako biste koristili ovu značajku."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Spremi promjene",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Gambar",
|
|
30
30
|
"name": "Nama",
|
|
31
31
|
"left": "Kiri",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Fitur PRO",
|
|
35
|
+
"description": "Ini adalah fitur PRO. Silakan tingkatkan ke rencana PRO untuk menggunakan fitur ini."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Simpan perubahan",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Immagini",
|
|
30
30
|
"name": "Nome",
|
|
31
31
|
"left": "Sinistra",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Funzione PRO",
|
|
35
|
+
"description": "Questa è una funzione PRO. Si prega di passare a un piano PRO per utilizzare questa funzione."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Salva modifiche",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "이미지",
|
|
30
30
|
"name": "이름",
|
|
31
31
|
"left": "왼쪽",
|
|
32
|
-
"logo": "로고"
|
|
32
|
+
"logo": "로고",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO 기능",
|
|
35
|
+
"description": "이것은 PRO 기능입니다. 이 기능을 사용하려면 PRO 플랜으로 업그레이드하십시오."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "변경 사항 저장",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Afbeeldingen",
|
|
30
30
|
"name": "Naam",
|
|
31
31
|
"left": "Links",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO-functie",
|
|
35
|
+
"description": "Dit is een PRO-functie. Gelieve te upgraden naar een PRO-abonnement om deze functie te gebruiken."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Wijzigingen opslaan",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Obrazy",
|
|
30
30
|
"name": "Nazwa",
|
|
31
31
|
"left": "Lewo",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Funkcja PRO",
|
|
35
|
+
"description": "To jest funkcja PRO. Proszę zaktualizować plan do wersji PRO, aby korzystać z tej funkcji."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Zapisz zmiany",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Imagens",
|
|
30
30
|
"name": "Nome",
|
|
31
31
|
"left": "Esquerda",
|
|
32
|
-
"logo": "Logotipo"
|
|
32
|
+
"logo": "Logotipo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Recurso PRO",
|
|
35
|
+
"description": "Este é um recurso PRO. Por favor, faça upgrade para um plano PRO para usar este recurso."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Salvar alterações",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Imagens",
|
|
30
30
|
"name": "Nome",
|
|
31
31
|
"left": "Esquerda",
|
|
32
|
-
"logo": "Logotipo"
|
|
32
|
+
"logo": "Logotipo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Recurso PRO",
|
|
35
|
+
"description": "Este é um recurso PRO. Por favor, faça upgrade para um plano PRO para usar este recurso."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Salvar alterações",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Imagini",
|
|
30
30
|
"name": "Nume",
|
|
31
31
|
"left": "Stânga",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Funcția PRO",
|
|
35
|
+
"description": "Aceasta este o funcție PRO. Vă rugăm să faceți upgrade la un plan PRO pentru a utiliza această funcție."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Salvează modificările",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Изображения",
|
|
30
30
|
"name": "Имя",
|
|
31
31
|
"left": "Слева",
|
|
32
|
-
"logo": "Логотип"
|
|
32
|
+
"logo": "Логотип",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "ПРО функция",
|
|
35
|
+
"description": "Это ПРО функция. Пожалуйста, перейдите на ПРО план, чтобы использовать эту функцию."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Сохранить изменения",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Obrázky",
|
|
30
30
|
"name": "Názov",
|
|
31
31
|
"left": "Vľavo",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO funkcia",
|
|
35
|
+
"description": "Toto je PRO funkcia. Prosím, prejdite na PRO plán, aby ste mohli túto funkciu používať."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Uložiť zmeny",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Slike",
|
|
30
30
|
"name": "Ime",
|
|
31
31
|
"left": "Levo",
|
|
32
|
-
"logo": "Logotip"
|
|
32
|
+
"logo": "Logotip",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO funkcija",
|
|
35
|
+
"description": "To je PRO funkcija. Prosimo, nadgradite na PRO načrt, da uporabite to funkcijo."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Shrani spremembe",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Bilder",
|
|
30
30
|
"name": "Namn",
|
|
31
31
|
"left": "Vänster",
|
|
32
|
-
"logo": "Logotyp"
|
|
32
|
+
"logo": "Logotyp",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO-funktion",
|
|
35
|
+
"description": "Detta är en PRO-funktion. Vänligen uppgradera till en PRO-plan för att använda denna funktion."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Spara ändringar",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "รูปภาพ",
|
|
30
30
|
"name": "ชื่อ",
|
|
31
31
|
"left": "ซ้าย",
|
|
32
|
-
"logo": "โลโก้"
|
|
32
|
+
"logo": "โลโก้",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "ฟีเจอร์ PRO",
|
|
35
|
+
"description": "นี่เป็นฟีเจอร์ PRO โปรดอัพเกรดเป็นแผน PRO เพื่อใช้ฟีเจอร์นี้."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "บันทึกการเปลี่ยนแปลง",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Görüntüler",
|
|
30
30
|
"name": "İsim",
|
|
31
31
|
"left": "Sol",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "PRO özelliği",
|
|
35
|
+
"description": "Bu bir PRO özelliğidir. Bu özelliği kullanmak için lütfen bir PRO plana geçin."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Değişiklikleri kaydet",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Зображення",
|
|
30
30
|
"name": "Ім'я",
|
|
31
31
|
"left": "Ліворуч",
|
|
32
|
-
"logo": "Логотип"
|
|
32
|
+
"logo": "Логотип",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "ПРО функція",
|
|
35
|
+
"description": "Це ПРО функція. Будь ласка, оновіть до ПРО плану, щоб використовувати цю функцію."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Зберегти зміни",
|
|
@@ -29,7 +29,11 @@
|
|
|
29
29
|
"images": "Hình ảnh",
|
|
30
30
|
"name": "Tên",
|
|
31
31
|
"left": "Trái",
|
|
32
|
-
"logo": "Logo"
|
|
32
|
+
"logo": "Logo",
|
|
33
|
+
"proFeature": {
|
|
34
|
+
"title": "Tính năng PRO",
|
|
35
|
+
"description": "Đây là một tính năng PRO. Vui lòng nâng cấp lên gói PRO để sử dụng tính năng này."
|
|
36
|
+
}
|
|
33
37
|
},
|
|
34
38
|
"buttons": {
|
|
35
39
|
"saveChanges": "Lưu thay đổi",
|