summaryrefslogtreecommitdiffstats
path: root/core/l10n/pt_PT.js
Commit message (Expand)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2018-10-311-3/+3
* [tx-robot] updated from transifexNextcloud bot2018-10-261-2/+2
* [tx-robot] updated from transifexNextcloud bot2018-10-101-3/+3
* [tx-robot] updated from transifexNextcloud bot2018-10-051-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-10-031-4/+4
* [tx-robot] updated from transifexNextcloud bot2018-09-281-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-09-141-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-08-011-2/+2
* [tx-robot] updated from transifexNextcloud bot2018-07-281-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-07-251-6/+6
* [tx-robot] updated from transifexNextcloud bot2018-06-141-2/+2
* [tx-robot] updated from transifexNextcloud bot2018-05-251-3/+3
* [tx-robot] updated from transifexNextcloud bot2018-04-181-3/+3
* [tx-robot] updated from transifexNextcloud bot2018-04-101-3/+3
* [tx-robot] updated from transifexNextcloud bot2018-04-071-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-03-221-3/+3
* [tx-robot] updated from transifexNextcloud bot2018-03-151-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-03-091-2/+2
* [tx-robot] updated from transifexNextcloud bot2018-02-231-0/+1
* [tx-robot] updated from transifexNextcloud bot2018-02-211-1/+38
* [tx-robot] updated from transifexNextcloud bot2018-02-201-2/+9
* [tx-robot] updated from transifexNextcloud bot2018-02-171-1/+20
* [tx-robot] updated from transifexNextcloud bot2018-02-091-3/+8
* [tx-robot] updated from transifexNextcloud bot2018-02-011-0/+280
* [tx-robot] updated from transifexNextcloud bot2018-02-011-342/+0
* [tx-robot] updated from transifexNextcloud bot2018-01-241-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-211-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-121-1/+1
* [tx-robot] updated from transifexNextcloud bot2018-01-041-4/+6
* [tx-robot] updated from transifexNextcloud bot2017-12-101-24/+26
* [tx-robot] updated from transifexNextcloud bot2017-11-281-7/+7
* [tx-robot] updated from transifexNextcloud bot2017-11-151-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-11-091-11/+11
* [tx-robot] updated from transifexNextcloud bot2017-11-031-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-10-191-12/+42
* [tx-robot] updated from transifexNextcloud bot2017-10-051-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-09-191-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-08-301-5/+5
* [tx-robot] updated from transifexNextcloud bot2017-06-151-5/+5
* [tx-robot] updated from transifexNextcloud bot2017-06-141-2/+1
* [tx-robot] updated from transifexNextcloud bot2017-06-131-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-05-201-2/+1
* [tx-robot] updated from transifexNextcloud bot2017-05-121-2/+2
* [tx-robot] updated from transifexNextcloud bot2017-05-051-3/+2
* [tx-robot] updated from transifexNextcloud bot2017-05-021-9/+9
* [tx-robot] updated from transifexNextcloud bot2017-04-251-9/+9
* [tx-robot] updated from transifexNextcloud bot2017-04-181-3/+2
* [tx-robot] updated from transifexNextcloud bot2017-04-141-1/+1
* [tx-robot] updated from transifexNextcloud bot2017-04-131-5/+5
* [tx-robot] updated from transifexNextcloud bot2017-04-091-3/+74
n class="o">: modulesToBuild(), output: { // Step away from the src folder and extract to the js folder path: path.join(__dirname, 'dist'), // Let webpack determine automatically where it's located publicPath: 'auto', filename: '[name].js?v=[contenthash]', chunkFilename: '[name]-[id].js?v=[contenthash]', // Make sure sourcemaps have a proper path and do not // leak local paths https://github.com/webpack/webpack/issues/3603 devtoolNamespace: 'nextcloud', devtoolModuleFilenameTemplate(info) { const rootDir = process?.cwd() const rel = path.relative(rootDir, info.absoluteResourcePath) return `webpack:///nextcloud/${rel}` }, clean: { keep: /icons\.css/, // Keep static icons css }, }, module: { rules: [ { test: /davclient/, loader: 'exports-loader', options: { type: 'commonjs', exports: 'dav', }, }, { test: /\.css$/, use: ['style-loader', 'css-loader'], }, { test: /\.scss$/, use: ['style-loader', 'css-loader', 'sass-loader'], }, { test: /\.vue$/, loader: 'vue-loader', exclude: BabelLoaderExcludeNodeModulesExcept([ 'vue-material-design-icons', 'emoji-mart-vue-fast', ]), }, { test: /\.tsx?$/, use: 'babel-loader', exclude: BabelLoaderExcludeNodeModulesExcept([]), }, { test: /\.js$/, loader: 'babel-loader', // automatically detect necessary packages to // transpile in the node_modules folder exclude: BabelLoaderExcludeNodeModulesExcept([ '@nextcloud/dialogs', '@nextcloud/event-bus', '@nextcloud/vue-dashboard', 'davclient.js', 'nextcloud-vue-collections', 'p-finally', 'p-limit', 'p-locate', 'p-queue', 'p-timeout', 'p-try', 'semver', 'striptags', 'toastify-js', 'v-tooltip', 'yocto-queue', ]), }, { test: /\.(png|jpe?g|gif|svg|woff2?|eot|ttf)$/, type: 'asset/inline', }, { test: /\.handlebars/, loader: 'handlebars-loader', }, { resourceQuery: /raw/, type: 'asset/source', }, ], }, optimization: { splitChunks: { automaticNameDelimiter: '-', cacheGroups: { vendors: { // split every dependency into one bundle test: /[\\/]node_modules[\\/]/, enforce: true, // necessary to keep this name to properly inject it // see OC_Template.php name: 'core-common', chunks: 'all', }, }, }, }, plugins: [ new VueLoaderPlugin(), new NodePolyfillPlugin(), new webpack.ProvidePlugin({ // Provide jQuery to jquery plugins as some are loaded before $ is exposed globally. // We need to provide the path to node_moduels as otherwise npm link will fail due // to tribute.js checking for jQuery in @nextcloud/vue jQuery: path.resolve(path.join(__dirname, 'node_modules/jquery')), // Shim ICAL to prevent using the global object (window.ICAL). // The library ical.js heavily depends on instanceof checks which will // break if two separate versions of the library are used (e.g. bundled one // and global one). ICAL: 'ical.js', }), ], externals: { OC: 'OC', OCA: 'OCA', OCP: 'OCP', }, resolve: { alias: { // make sure to use the handlebar runtime when importing handlebars: 'handlebars/runtime', }, extensions: ['*', '.ts', '.js', '.vue'], symlinks: true, fallback: { fs: false, }, }, }