Files
nextcloud-server-mirror/core/src/mixins/Nextcloud.js
Ferdinand Thiessen 91f3b6b4ee chore: adjust code to new codestyle
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-10-02 13:19:42 +02:00

20 lines
336 B
JavaScript

/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import OC from '../OC/index.js'
import L10n from '../OC/l10n.js'
export default {
data() {
return {
OC,
}
},
methods: {
t: L10n.translate.bind(L10n),
n: L10n.translatePlural.bind(L10n),
},
}