diff --git a/public/locales/en/settings.json b/public/locales/en/settings.json
index 80e1bd8..eb860c7 100644
--- a/public/locales/en/settings.json
+++ b/public/locales/en/settings.json
@@ -166,6 +166,7 @@
"version": "Version",
"licensed": "Licensed",
"not_licensed": "Unlicensed",
+ "non_commercial": "No Need For License",
"license": "Licence",
"updated_at": "Updated Date",
"upload": {
diff --git a/public/locales/tr/settings.json b/public/locales/tr/settings.json
index babaa55..86fce24 100644
--- a/public/locales/tr/settings.json
+++ b/public/locales/tr/settings.json
@@ -166,6 +166,7 @@
"version": "Versiyon",
"licensed": "Lisanslanmış",
"not_licensed": "Lisanslanmamış",
+ "non_commercial": "Lisans Gerektirmeyen",
"license": "Lisans",
"updated_at": "Güncellenme Tarihi",
"upload": {
@@ -841,4 +842,4 @@
}
}
}
-}
+}
\ No newline at end of file
diff --git a/src/pages/settings/extensions/index.tsx b/src/pages/settings/extensions/index.tsx
index 9e59af0..0460202 100644
--- a/src/pages/settings/extensions/index.tsx
+++ b/src/pages/settings/extensions/index.tsx
@@ -44,9 +44,7 @@ export default function ExtensionSettingsPage() {
{
accessorKey: "licensed",
accessorFn: (row) => {
- return row.licensed
- ? 0 + t("extensions.licensed")
- : t("extensions.not_licensed")
+ return row.licensed === "licensed" ? "1" : "0"
},
header: ({ column }) => (