diff --git a/src/backend/src/routers/filesystem_api/copy.js b/src/backend/src/routers/filesystem_api/copy.js index 16d454f2a..e8b0c1929 100644 --- a/src/backend/src/routers/filesystem_api/copy.js +++ b/src/backend/src/routers/filesystem_api/copy.js @@ -19,12 +19,8 @@ "use strict" const eggspress = require('../../api/eggspress.js'); const FSNodeParam = require('../../api/filesystem/FSNodeParam.js'); -const _path = require('path'); -const { NodeUIDSelector } = require('../../filesystem/node/selectors.js'); const { HLCopy } = require('../../filesystem/hl_operations/hl_copy.js'); const { Context } = require('../../util/context.js'); -const { DatabaseFSEntryService } = require('../../modules/puterfs/DatabaseFSEntryService.js'); -const { ProxyContainer } = require('../../services/Container.js'); // -----------------------------------------------------------------------// // POST /copy diff --git a/src/backend/src/routers/filesystem_api/readdir.js b/src/backend/src/routers/filesystem_api/readdir.js index 0356c4ebd..0476cca11 100644 --- a/src/backend/src/routers/filesystem_api/readdir.js +++ b/src/backend/src/routers/filesystem_api/readdir.js @@ -17,16 +17,10 @@ * along with this program. If not, see . */ "use strict" -const express = require('express'); -const router = express.Router(); -const auth = require('../../middleware/auth.js'); -const config = require('../../config.js'); -const PerformanceMonitor = require('../../monitor/PerformanceMonitor.js'); const { Context } = require('../../util/context.js'); const eggspress = require('../../api/eggspress.js'); const FSNodeParam = require('../../api/filesystem/FSNodeParam.js'); const FlagParam = require('../../api/filesystem/FlagParam.js'); -const { LLReadDir } = require('../../filesystem/ll_operations/ll_readdir.js'); const { HLReadDir } = require('../../filesystem/hl_operations/hl_readdir.js'); // -----------------------------------------------------------------------// diff --git a/src/backend/src/routers/filesystem_api/search.js b/src/backend/src/routers/filesystem_api/search.js index 379823b1e..7241de957 100644 --- a/src/backend/src/routers/filesystem_api/search.js +++ b/src/backend/src/routers/filesystem_api/search.js @@ -1,7 +1,5 @@ const eggspress = require("../../api/eggspress"); const { HLNameSearch } = require("../../filesystem/hl_operations/hl_name_search"); -const { subdomain } = require("../../helpers"); -const verified = require("../../middleware/verified"); module.exports = eggspress('/search', { subdomain: 'api', diff --git a/src/gui/src/i18n/translations/hu.js b/src/gui/src/i18n/translations/hu.js index 37df7a98d..01fe9412a 100644 --- a/src/gui/src/i18n/translations/hu.js +++ b/src/gui/src/i18n/translations/hu.js @@ -348,6 +348,7 @@ const hu = { "Owner": "Tulajdonos", // In English: "Owner" "You can't share with yourself.": "Nem oszthatod meg magaddal.", // In English: "You can't share with yourself." "This user already has access to this item": "Ez a felhasználó már hozzáfér ehhez az elemhez", // In English: "This user already has access to this item" + "billing.change_payment_method": "Módosítás", // In English: "Change" "billing.cancel": "Lemondás", // In English: "Cancel" "billing.change_payment_method": "Fizetési mód megváltoztatása", // In English: "Change" @@ -396,7 +397,6 @@ const hu = { "billing.expanded": "Bővített", // In English: "Expanded" "billing.accelerated": "Gyorsított", // In English: "Accelerated" "billing.enjoy_msg": "Élvezd a %% Felhőtárhelyet és további előnyöket.", // In English: "Enjoy %% of Cloud Storage plus other benefits." - } };