mirror of
https://github.com/silverstripe/silverstripe-iframe
synced 2024-10-22 11:05:51 +02:00
Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
a6f7fbbc1c | ||
|
5d4b8f1d0d | ||
|
39c55ad975 | ||
|
5dd339b0ab | ||
|
a8243f3bcb | ||
|
73d93eb63f | ||
|
ab3d5360c5 | ||
|
5aa7dde8d8 | ||
|
82fc9ceb7c | ||
|
98fc4f3b3e |
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@ -4,13 +4,8 @@ on:
|
|||||||
push:
|
push:
|
||||||
pull_request:
|
pull_request:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
# Every Thursday at 11:20am UTC
|
|
||||||
schedule:
|
|
||||||
- cron: '20 11 * * 4'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ci:
|
ci:
|
||||||
name: CI
|
name: CI
|
||||||
# Only run cron on the silverstripe account
|
|
||||||
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
|
||||||
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
|
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1
|
||||||
|
16
.github/workflows/dispatch-ci.yml
vendored
Normal file
16
.github/workflows/dispatch-ci.yml
vendored
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
name: Dispatch CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
# At 11:20 AM UTC, only on Thursday and Friday
|
||||||
|
schedule:
|
||||||
|
- cron: '20 11 * * 4,5'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
dispatch-ci:
|
||||||
|
name: Dispatch CI
|
||||||
|
# Only run cron on the silverstripe account
|
||||||
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Dispatch CI
|
||||||
|
uses: silverstripe/gha-dispatch-ci@v1
|
@ -18,6 +18,7 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "^9.5",
|
"phpunit/phpunit": "^9.5",
|
||||||
|
"silverstripe/framework": "^4.10",
|
||||||
"squizlabs/php_codesniffer": "^3.0"
|
"squizlabs/php_codesniffer": "^3.0"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
|
22
lang/sk.yml
22
lang/sk.yml
@ -1,3 +1,23 @@
|
|||||||
sk:
|
sk:
|
||||||
SilverStripe\IFrame\IFramePage:
|
SilverStripe\IFrame\IFramePage:
|
||||||
PLURALNAME: 'Základné stránky'
|
DESCRIPTION: 'Vloží prvok iframe do tela stránky.'
|
||||||
|
ExternalNote: 'Upozorňujeme, že nasledujúca časť obsahu je pravdepodobne dodávaná z externého zdroja (IFRAME v jazyku HTML). Toto môže predstavovať určité problémy pre čítačky obrazovky.'
|
||||||
|
Loading: 'Prebieha načítavanie obsahu...'
|
||||||
|
PLURALNAME: 'IFrame stránky'
|
||||||
|
PLURALS:
|
||||||
|
few: '{count} IFrame stránky'
|
||||||
|
many: '{count} IFrame stránok'
|
||||||
|
one: 'IFrame stránka'
|
||||||
|
other: '{count} IFrame stránok'
|
||||||
|
SINGULARNAME: 'IFrame stránka'
|
||||||
|
TITLE_DESCRIPTION: 'Používané čítačkami obrazovky'
|
||||||
|
VALIDATION_BANNEDURLSCHEME: 'Táto schéma adresy URL nie je povolená.'
|
||||||
|
db_AlternateContent: 'Alternatívny obsah'
|
||||||
|
db_AutoHeight: 'Automatická výška'
|
||||||
|
db_AutoWidth: 'Automatická šírka'
|
||||||
|
db_BottomContent: 'Spodný obsah'
|
||||||
|
db_FixedHeight: 'Pevná výška'
|
||||||
|
db_FixedWidth: 'Pevná šírka'
|
||||||
|
db_ForceProtocol: 'Vynútiť protokol'
|
||||||
|
db_IFrameTitle: 'IFrame názov'
|
||||||
|
db_IFrameURL: 'IFrame URL'
|
||||||
|
Loading…
Reference in New Issue
Block a user