-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into patch-purge-days
- Loading branch information
Showing
79 changed files
with
1,746 additions
and
709 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{css, inc, js, php, sh}] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 4 | ||
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: tests | ||
|
||
on: [push, pull_request, workflow_dispatch] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1'] | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
ini-values: error_reporting=-1, display_errors=On, zend.assertions=1 | ||
coverage: none | ||
tools: cs2pr, phpcs | ||
|
||
- name: Lint PHP files | ||
run: find . -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
$labels['acc_acc'] = 'Nastavenia e-mail účtu'; | ||
$labels['acc_alias'] = 'E-mail alias(y)'; | ||
$labels['acc_general'] = 'Informácie o e-mail účte používateľa'; | ||
$labels['acc_pass'] = 'Zmena hesla'; | ||
$labels['acc_forward'] = 'Preposielanie e-mailov'; | ||
$labels['acc_fetchmail'] = 'Preberanie e-mailov'; | ||
$labels['acc_autoreply'] = 'Automatická odpoveď'; | ||
$labels['acc_filter'] = 'Mailový filter'; | ||
$labels['acc_spam'] = 'Ochrana proti spamu'; | ||
$labels['acc_wblist'] = 'Čierna/Biela listina'; | ||
$labels['acc_lastlogin'] = 'Posledné prihlásenie'; | ||
$labels['acc_defaultidentity'] = 'Hlavný e-mail'; | ||
$labels['acc_noalias'] = 'Žiadne e-mail alias(y)'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
$labels['acc_acc'] = 'Hesap'; | ||
$labels['acc_alias'] = 'Bağlı E-Posta adres(ler)i'; | ||
$labels['acc_general'] = 'Genel'; | ||
$labels['acc_pass'] = 'Parola'; | ||
$labels['acc_forward'] = 'Yönlendirme'; | ||
$labels['acc_fetchmail'] = 'Mail Alma'; | ||
$labels['acc_autoreply'] = 'Otomatik Yanıt'; | ||
$labels['acc_filter'] = 'Posta Filtresi'; | ||
$labels['acc_wblist'] = 'Kara/Beyaz Liste'; | ||
$labels['acc_lastlogin'] = 'Son Giriş Zamanı'; | ||
$labels['acc_defaultidentity'] = 'Varsayılan Kimlik'; | ||
$labels['acc_noalias'] = 'Bağlı E-Posta adres(ler)i bulunamadı'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.