Merge branch 'main' into feature-hun-translation

This commit is contained in:
Nariman Jelveh
2024-12-11 09:43:30 -08:00
committed by GitHub
4 changed files with 1 additions and 13 deletions

View File

@@ -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

View File

@@ -17,16 +17,10 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
"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');
// -----------------------------------------------------------------------//

View File

@@ -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',

View File

@@ -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."
}
};