diff --git a/.github/workflows/test-cc.yml b/.github/workflows/test-cc.yml index ce5c258..558af17 100644 --- a/.github/workflows/test-cc.yml +++ b/.github/workflows/test-cc.yml @@ -17,7 +17,7 @@ jobs: services: mysql: - image: mariadb + image: mariadb:10.5 env: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: database diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 290f41b..52ba3c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: services: mysql: - image: mariadb + image: mariadb:10.5 env: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: database @@ -66,7 +66,7 @@ jobs: services: mysql: - image: mariadb + image: mariadb:10.5 env: MYSQL_ROOT_PASSWORD: root MYSQL_DATABASE: database diff --git a/resources/lang/en/permissions.php b/resources/lang/en/permissions.php new file mode 100644 index 0000000..81a7db5 --- /dev/null +++ b/resources/lang/en/permissions.php @@ -0,0 +1,7 @@ + 'Statement list', +]; \ No newline at end of file diff --git a/resources/lang/pl/permissions.php b/resources/lang/pl/permissions.php new file mode 100644 index 0000000..94c0f05 --- /dev/null +++ b/resources/lang/pl/permissions.php @@ -0,0 +1,7 @@ + 'Lista zestawienia', +]; \ No newline at end of file diff --git a/src/EscolaLmsLrsServiceProvider.php b/src/EscolaLmsLrsServiceProvider.php index a7a5641..1ca65be 100644 --- a/src/EscolaLmsLrsServiceProvider.php +++ b/src/EscolaLmsLrsServiceProvider.php @@ -53,6 +53,7 @@ public function boot(): void ); $this->loadRoutesFrom(__DIR__ . '/routes.php'); + $this->loadTranslationsFrom(__DIR__ . '/../resources/lang', 'lrs'); } /**