0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-05-05 06:20:44 +00:00
nextcloud_server/core/src/mixins/Nextcloud.js
Andy Scherzinger 1f7e2ba599
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-13 17:41:36 +02:00

19 lines
336 B
JavaScript

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