Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
ame: backend

on:
push:
branches:
- "*"
- "*/*"
pull_request:
branches:
- "*"
- "*/*"

jobs:
job_linting:
name: Linting (PHP ${{ matrix.php-versions }})

strategy:
matrix:
os: ["ubuntu-latest"]
php-versions: ["7.1", "7.2", "7.3", "7.4", "8.0", "8.1"]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3

- name: GitHub Action for PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
tools: pecl
extensions: ast, mbstring, curl, json, intl, gd, xml, zip, bz2, opcache, sockets

- name: Show environment information
run: |
php -v
php -m
- name: Get cache directory - Composer
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"

- name: Cache dependencies - Composer
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ matrix.os }}-${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ matrix.os }}-${{ matrix.php-versions }}-composer-

- name: Install dependencies
run: |
composer config platform.php $(php -r 'preg_match("#^\d+\.\d+\.\d+#", PHP_VERSION, $v); echo $v[0];')
composer update --prefer-dist --no-progress --no-suggest
- run: composer run-script lint
15 changes: 15 additions & 0 deletions localization/nl_NL.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

$labels = [];

$labels['show_folder_size (plugin name)'] = 'Show Folder Size';

// UI button
$labels['show_folder_size'] = 'Opslagoverzicht';

// popup dialog
$labels['folder_size'] = 'Opslag details per map';
$labels['name'] = 'Naam';
$labels['size'] = 'Grote';
$labels['cumulative_size'] = 'Grote (cumulatief)';
$labels['total'] = 'Totaal';