├── LICENCE.md ├── composer.json ├── composer.lock ├── config └── cookies_consent.php ├── configure.php ├── lang ├── bg │ └── messages.php ├── cs │ └── messages.php ├── da │ └── messages.php ├── de │ └── messages.php ├── el │ └── messages.php ├── en │ └── messages.php ├── es │ └── messages.php ├── et │ └── messages.php ├── fi │ └── messages.php ├── fr │ └── messages.php ├── ga │ └── messages.php ├── hr │ └── messages.php ├── hu │ └── messages.php ├── it │ └── messages.php ├── lt │ └── messages.php ├── lv │ └── messages.php ├── mt │ └── messages.php ├── nl │ └── messages.php ├── pl │ └── messages.php ├── pt-br │ └── messages.php ├── ro │ └── messages.php ├── se │ └── messages.php ├── sk │ └── messages.php └── sl │ └── messages.php ├── package-lock.json ├── package.json ├── public ├── _variables.css ├── scripts.js └── styles.css ├── resources ├── images │ ├── README.md │ ├── close.svg │ └── cookie.svg ├── js │ └── scripts.js ├── styles │ ├── _variables.css │ ├── accordion.scss │ ├── form.scss │ ├── generic-rules.scss │ ├── scify-cookie-policy-page.scss │ └── styles.scss └── views │ ├── .gitkeep │ ├── components │ ├── _cookie-categories.blade.php │ ├── cookie-icon.blade.php │ ├── laravel-cookie-guard-page.blade.php │ ├── laravel-cookie-guard-scripts.blade.php │ └── laravel-cookie-guard.blade.php │ └── pages │ └── cookie-policy-default-page.blade.php ├── routes └── web.php └── src ├── Facades └── LaravelCookiesConsent.php ├── Http └── Controllers │ └── CookiesController.php ├── LaravelCookiesConsent.php ├── LaravelCookiesConsentServiceProvider.php └── View └── Components ├── LaravelCookiesConsent.php ├── LaravelCookiesConsentPage.php └── LaravelCookiesConsentScripts.php /LICENCE.md: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {2018} {SciFY} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "scify/laravel-cookie-guard", 3 | "description": "A Laravel package that provides a Cookies consent floating window and publishes the Cookies for the different consent categories", 4 | "keywords": [ 5 | "scify", 6 | "laravel", 7 | "laravel-cookie-guard", 8 | "cookies", 9 | "gdpr", 10 | "laravel cookies", 11 | "laravel gdpr" 12 | ], 13 | "homepage": "https://github.com/scify/laravel-cookie-guard", 14 | "license": "MIT", 15 | "authors": [ 16 | { 17 | "name": "Paul Isaris", 18 | "email": "paul@scify.com", 19 | "role": "Developer" 20 | } 21 | ], 22 | "require": { 23 | "php": "^8" 24 | }, 25 | "require-dev": { 26 | "larastan/larastan": "^3.3", 27 | "laravel/pint": "^1.21", 28 | "nunomaduro/collision": "^8.8", 29 | "orchestra/testbench": "^10.0", 30 | "pestphp/pest": "^3.8", 31 | "pestphp/pest-plugin-laravel": "^v3.1", 32 | "phpstan/extension-installer": "^1.1", 33 | "phpstan/phpstan-deprecation-rules": "^2.0", 34 | "phpstan/phpstan-phpunit": "^2.0", 35 | "phpunit/phpunit": "^11.5", 36 | "spatie/laravel-ray": "^1.40" 37 | }, 38 | "autoload": { 39 | "psr-4": { 40 | "SciFY\\LaravelCookiesConsent\\": "src", 41 | "SciFY\\LaravelCookiesConsent\\Database\\Factories\\": "database/factories" 42 | } 43 | }, 44 | "autoload-dev": { 45 | "psr-4": { 46 | "SciFY\\LaravelCookiesConsent\\Tests\\": "tests" 47 | } 48 | }, 49 | "scripts": { 50 | "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", 51 | "analyse": "vendor/bin/phpstan analyse", 52 | "test": "vendor/bin/pest", 53 | "test-coverage": "vendor/bin/pest --coverage", 54 | "format": "vendor/bin/pint" 55 | }, 56 | "config": { 57 | "sort-packages": true, 58 | "allow-plugins": { 59 | "pestphp/pest-plugin": true, 60 | "phpstan/extension-installer": true 61 | } 62 | }, 63 | "extra": { 64 | "laravel": { 65 | "providers": [ 66 | "SciFY\\LaravelCookiesConsent\\LaravelCookiesConsentServiceProvider" 67 | ], 68 | "aliases": { 69 | "LaravelCookiesConsent": "SciFY\\LaravelCookiesConsent\\Facades\\LaravelCookiesConsent" 70 | } 71 | } 72 | }, 73 | "minimum-stability": "dev", 74 | "prefer-stable": true 75 | } 76 | -------------------------------------------------------------------------------- /config/cookies_consent.php: -------------------------------------------------------------------------------- 1 | 'my_app_', 20 | 'display_floating_button' => true, // Set to false to display the footer link instead 21 | 'hide_floating_button_on_mobile' => false, // Set to true to hide the floating button on mobile 22 | 'use_separate_page' => false, // Set to true to use a separate page for cookies explanation 23 | 'categories_collapsed_by_default' => true, // Set to false to initially collapse the optional categories 24 | 'cookie_policy_page_custom_url' => null, // Set the custom page URL if use_separate_page is set to true and you want to use a custom URL or Laravel route 25 | 'use_floating_modal' => false, // Set to true to disable the use of showModal() on the dialog HTML element 26 | /* 27 | |-------------------------------------------------------------------------- 28 | | Editor 29 | |-------------------------------------------------------------------------- 30 | | 31 | | Choose your preferred cookies to be shown. You can add more cookies as desired. 32 | | 33 | | Built-in: "strictly_necessary" 34 | | 35 | */ 36 | 'cookies' => [ 37 | 'strictly_necessary' => [ 38 | [ 39 | // you need to change this in order to reflect the cookie_prefix from above 40 | 'name' => 'my_app_cookies_consent', 41 | 'description' => 'cookies_consent::messages.cookie_cookies_consent_description', 42 | 'duration' => 'cookies_consent::messages.years', 43 | 'duration_count' => 1, 44 | 'policy_external_link' => null, 45 | ], 46 | [ 47 | 'name' => 'XSRF-TOKEN', 48 | 'description' => 'cookies_consent::messages.cookie_xsrf_token_description', 49 | 'duration' => 'cookies_consent::messages.hours', 50 | 'duration_count' => 2, 51 | 'policy_external_link' => null, 52 | ], 53 | [ 54 | 'name' => 'laravel_session', 55 | 'description' => 'cookies_consent::messages.cookie_laravel_session_description', 56 | 'duration' => 'cookies_consent::messages.hours', 57 | 'duration_count' => 2, 58 | 'policy_external_link' => null, 59 | ], 60 | ], 61 | ], 62 | 'enabled' => [ 63 | 'strictly_necessary', 64 | ], 65 | 'required' => ['strictly_necessary'], 66 | /* 67 | * Set the cookie duration in days. Default is 365 days. 68 | */ 69 | 'cookie_lifetime' => 365, 70 | ]; 71 | -------------------------------------------------------------------------------- /configure.php: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | $version) { 81 | if (in_array($name, $names, true)) { 82 | unset($data['require-dev'][$name]); 83 | } 84 | } 85 | 86 | file_put_contents(COMPOSER_JSON_FILE, json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)); 87 | } 88 | 89 | function remove_composer_script($scriptName) { 90 | $data = json_decode(file_get_contents(COMPOSER_JSON_FILE), true); 91 | 92 | foreach ($data['scripts'] as $name => $script) { 93 | if ($scriptName === $name) { 94 | unset($data['scripts'][$name]); 95 | break; 96 | } 97 | } 98 | 99 | file_put_contents(COMPOSER_JSON_FILE, json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE)); 100 | } 101 | 102 | function remove_readme_paragraphs(string $file): void { 103 | $contents = file_get_contents($file); 104 | 105 | file_put_contents( 106 | $file, 107 | preg_replace('/.*/s', '', $contents) ?: $contents 108 | ); 109 | } 110 | 111 | function safeUnlink(string $filename) { 112 | if (file_exists($filename) && is_file($filename)) { 113 | unlink($filename); 114 | } 115 | } 116 | 117 | function determineSeparator(string $path): string { 118 | return str_replace('/', DIRECTORY_SEPARATOR, $path); 119 | } 120 | 121 | function replaceForWindows(): array { 122 | return preg_split('/\\r\\n|\\r|\\n/', run('dir /S /B * | findstr /v /i .git\ | findstr /v /i vendor | findstr /v /i ' . basename(__FILE__) . ' | findstr /r /i /M /F:/ ":author :vendor :package VendorName skeleton migration_table_name vendor_name vendor_slug author@domain.com"')); 123 | } 124 | 125 | function replaceForAllOtherOSes(): array { 126 | return explode(PHP_EOL, run('grep -E -r -l -i ":author|:vendor|:package|VendorName|skeleton|migration_table_name|vendor_name|vendor_slug|author@domain.com" --exclude-dir=vendor ./* ./.github/* | grep -v ' . basename(__FILE__))); 127 | } 128 | 129 | $gitName = run('git config user.name'); 130 | $authorName = ask('Author name', $gitName); 131 | 132 | $gitEmail = run('git config user.email'); 133 | $authorEmail = ask('Author email', $gitEmail); 134 | 135 | $usernameGuess = explode(':', run('git config remote.origin.url'))[1]; 136 | $usernameGuess = dirname($usernameGuess); 137 | $usernameGuess = basename($usernameGuess); 138 | $authorUsername = ask('Author username', $usernameGuess); 139 | 140 | $vendorName = ask('Vendor name', $authorUsername); 141 | $vendorSlug = slugify($vendorName); 142 | $vendorNamespace = str_replace('-', '', ucwords($vendorName)); 143 | $vendorNamespace = ask('Vendor namespace', $vendorNamespace); 144 | 145 | $currentDirectory = getcwd(); 146 | $folderName = basename($currentDirectory); 147 | 148 | $packageName = ask('Package name', $folderName); 149 | $packageSlug = slugify($packageName); 150 | $packageSlugWithoutPrefix = remove_prefix('laravel-', $packageSlug); 151 | 152 | $className = title_case($packageName); 153 | $className = ask('Class name', $className); 154 | $variableName = lcfirst($className); 155 | $description = ask('Package description', "This is my package {$packageSlug}"); 156 | 157 | $usePhpStan = confirm('Enable PhpStan?', true); 158 | $useLaravelPint = confirm('Enable Laravel Pint?', true); 159 | $useDependabot = confirm('Enable Dependabot?', true); 160 | $useLaravelRay = confirm('Use Ray for debugging?', true); 161 | $useUpdateChangelogWorkflow = confirm('Use automatic changelog updater workflow?', true); 162 | 163 | writeln('------'); 164 | writeln("Author : {$authorName} ({$authorUsername}, {$authorEmail})"); 165 | writeln("Vendor : {$vendorName} ({$vendorSlug})"); 166 | writeln("Package : {$packageSlug} <{$description}>"); 167 | writeln("Namespace : {$vendorNamespace}\\{$className}"); 168 | writeln("Class name : {$className}"); 169 | writeln('---'); 170 | writeln('Packages & Utilities'); 171 | writeln('Use Laravel/Pint : ' . ($useLaravelPint ? 'yes' : 'no')); 172 | writeln('Use Larastan/PhpStan : ' . ($usePhpStan ? 'yes' : 'no')); 173 | writeln('Use Dependabot : ' . ($useDependabot ? 'yes' : 'no')); 174 | writeln('Use Ray App : ' . ($useLaravelRay ? 'yes' : 'no')); 175 | writeln('Use Auto-Changelog : ' . ($useUpdateChangelogWorkflow ? 'yes' : 'no')); 176 | writeln('------'); 177 | 178 | writeln('This script will replace the above values in all relevant files in the project directory.'); 179 | 180 | if (!confirm('Modify files?', true)) { 181 | exit(1); 182 | } 183 | 184 | $files = (str_starts_with(strtoupper(PHP_OS), 'WIN') ? replaceForWindows() : replaceForAllOtherOSes()); 185 | 186 | foreach ($files as $file) { 187 | replace_in_file($file, [ 188 | ':author_name' => $authorName, 189 | ':author_username' => $authorUsername, 190 | 'author@domain.com' => $authorEmail, 191 | ':vendor_name' => $vendorName, 192 | ':vendor_slug' => $vendorSlug, 193 | 'VendorName' => $vendorNamespace, 194 | ':package_name' => $packageName, 195 | ':package_slug' => $packageSlug, 196 | ':package_slug_without_prefix' => $packageSlugWithoutPrefix, 197 | 'Skeleton' => $className, 198 | 'skeleton' => $packageSlug, 199 | 'migration_table_name' => title_snake($packageSlug), 200 | 'variable' => $variableName, 201 | ':package_description' => $description, 202 | ]); 203 | 204 | match (true) { 205 | str_contains($file, determineSeparator('src/Skeleton.php')) => rename($file, determineSeparator('./src/' . $className . '.php')), 206 | str_contains($file, determineSeparator('src/SkeletonServiceProvider.php')) => rename($file, determineSeparator('./src/' . $className . 'ServiceProvider.php')), 207 | str_contains($file, determineSeparator('src/Facades/Skeleton.php')) => rename($file, determineSeparator('./src/Facades/' . $className . '.php')), 208 | str_contains($file, determineSeparator('src/Commands/SkeletonCommand.php')) => rename($file, determineSeparator('./src/Commands/' . $className . 'Command.php')), 209 | str_contains($file, determineSeparator('database/migrations/create_skeleton_table.php.stub')) => rename($file, determineSeparator('./database/migrations/create_' . title_snake($packageSlugWithoutPrefix) . '_table.php.stub')), 210 | str_contains($file, determineSeparator('config/skeleton.php')) => rename($file, determineSeparator('./config/' . $packageSlugWithoutPrefix . '.php')), 211 | str_contains($file, 'README.md') => remove_readme_paragraphs($file), 212 | default => [], 213 | }; 214 | } 215 | 216 | if (!$useLaravelPint) { 217 | safeUnlink(__DIR__ . '/.github/workflows/fix-php-code-style-issues.yml'); 218 | safeUnlink(__DIR__ . '/pint.json'); 219 | } 220 | 221 | if (!$usePhpStan) { 222 | safeUnlink(__DIR__ . '/phpstan.neon.dist'); 223 | safeUnlink(__DIR__ . '/phpstan-baseline.neon'); 224 | safeUnlink(__DIR__ . '/.github/workflows/phpstan.yml'); 225 | 226 | remove_composer_deps([ 227 | 'phpstan/extension-installer', 228 | 'phpstan/phpstan-deprecation-rules', 229 | 'phpstan/phpstan-phpunit', 230 | 'nunomaduro/larastan', 231 | ]); 232 | 233 | remove_composer_script('phpstan'); 234 | } 235 | 236 | if (!$useDependabot) { 237 | safeUnlink(__DIR__ . '/.github/dependabot.yml'); 238 | safeUnlink(__DIR__ . '/.github/workflows/dependabot-auto-merge.yml'); 239 | } 240 | 241 | if (!$useLaravelRay) { 242 | remove_composer_deps(['spatie/laravel-ray']); 243 | } 244 | 245 | confirm('Execute `composer install` and run tests?') && run('composer install && composer test'); 246 | 247 | confirm('Let this script delete itself?', true) && unlink(__FILE__); 248 | -------------------------------------------------------------------------------- /lang/bg/messages.php: -------------------------------------------------------------------------------- 1 | 'Съгласие за бисквитки', 5 | 'description' => 'Използваме бисквитки, за да оптимизираме нашия уебсайт и услуга. Можете да изберете кои категории да приемете.', 6 | 'please_visit_1' => 'За по-подробна информация относно бисквитките, моля посетете нашата', 7 | 'cookie_policy_page' => 'страница с политика за бисквитки', 8 | 'accept_selection_btn' => 'Приемете избора', 9 | 'customise_btn' => 'Персонализирайте', 10 | 'accept_all_btn' => 'Приемете всички', 11 | 'reject_optional_btn' => 'Откажете опционалните', 12 | 'accept_additional_cookies_btn' => 'Приемете допълнителни бисквитки', 13 | 'reject_additional_cookies_btn' => 'Откажете допълнителни бисквитки', 14 | 'cookie_policy_title' => 'Политика за бисквитки', 15 | 'cookie_policy_text_1' => 'Това е страницата с политика за бисквитки. Тук можете да прочетете за бисквитките, използвани в приложението, и да изберете кои бисквитки да разрешите.', 16 | 'what_are_cookies_title' => 'Какво са бисквитките?', 17 | 'what_are_cookies_text_1' => 'Бисквитката е малък текстов файл, който уебсайт или приложение изпраща на устройството на потребителя. Този текстов файл събира информация за действията на потребителя на вашия уебсайт.', 18 | 'what_are_cookies_text_2' => 'Бисквитките съхраняват полезна информация, за да подобрят потребителското изживяване на вашия уебсайт и евентуално да подобрят способността ви да се свържете с тях по-късно.', 19 | 'what_are_cookies_text_3' => 'Информацията, събрана от бисквитките, може да включва предпочитания език на потребителя, настройки на устройството, активност при сърфиране и друга полезна информация.', 20 | 'what_are_cookies_text_4' => 'Уебсайтове като Google използват бисквитки, за да направят рекламите по-релевантни за своите потребители. Те също така проследяват анализи като броя на посетителите на страница, местоположенията на посетителите, предпочитанията за търсене и т.н.', 21 | 'what_are_cookies_text_5' => 'Бисквитките не са вредни за вашето устройство. Те не са вируси или зловреден софтуер. Те са само текстови файлове, които могат да бъдат изтрити по всяко време.', 22 | 'use_of_cookies_title' => 'Използване на бисквитки', 23 | 'use_of_cookies_text_1' => 'Бисквитките обикновено се използват за изпълнение на една или всички от следните функции:', 24 | 'use_of_cookies_text_2' => 'Аутентификация: Бисквитките помагат на уебсайтовете да определят дали потребителят е влязъл в системата и след това предоставят правилното изживяване и функции за този уникален потребител.', 25 | 'use_of_cookies_text_3' => 'Сигурност: Бисквитките помагат за прилагането на мерки за сигурност на уебсайт. Те също така помагат за откриване на необичайни и подозрителни дейности.', 26 | 'use_of_cookies_text_4' => 'Реклама: Бисквитките предлагат по-добро рекламно изживяване за потребителите и рекламодателите. Бисквитките помагат на рекламодателите да се свържат с потребители, които най-много се интересуват от техните продукти, въз основа на историята на сърфиране на потребителя.', 27 | 'use_of_cookies_text_5' => 'Производителност: Бисквитките помагат на вашия уебсайт да научи как услугите работят за различни хора и как се насочва трафикът между сървърите.', 28 | 'use_of_cookies_text_6' => 'Анализи и изследвания: Уебсайтовете и приложенията използват бисквитки, за да научат кои от техните услуги се използват най-много. Това помага да се определи какво трябва да се подобри, премахне и остане същото.', 29 | 'use_of_cookies_text_7' => 'Предпочитания: Бисквитките помагат на уебсайтовете да запомнят потребителските настройки като език, местоположение и други настройки.', 30 | 'use_of_cookies_text_8' => 'Някои бисквитки могат да събират данни от няколко уебсайта, за да създадат профили на потребителското поведение. Тези профили след това се използват за изпращане на целеви съдържание и реклама на потребителите.', 31 | 'cookies_used_title' => 'Бисквитки, използвани в това приложение', 32 | 'cookies_used_text_1' => 'Следните бисквитки се използват в това приложение. Моля, изберете кои бисквитки искате да разрешите.', 33 | 'hours' => '{1} :count час|[2,Inf] :count часа', 34 | 'days' => '{1} :count ден|[2,Inf] :count дни', 35 | 'years' => '{1} :count година|[2,Inf] :count години', 36 | 'minutes' => '{1} :count минута|[2,Inf] :count минути', 37 | 'months' => '{1} :count месец|[2,Inf] :count месеца', 38 | 'cookie_cookies_consent_description' => 'Тази бисквитка се задава от GDPR Cookie Consent плъгина и се използва за съхранение на това дали потребителят е съгласен с използването на бисквитки или не. Тя не съхранява лични данни.', 39 | 'cookie_xsrf_token_description' => 'Тази бисквитка се задава от Laravel, за да предотврати Cross-Site Request Forgery (CSRF) атаки.', 40 | 'cookie_laravel_session_description' => 'Тази бисквитка се задава от Laravel, за да идентифицира сесията на потребителя.', 41 | 'description_label' => 'Описание', 42 | 'duration_label' => 'Продължителност', 43 | 'policy_label' => 'Линк към политиката', 44 | 'strictly_necessary' => 'Строго необходимо', 45 | 'performance' => 'Производителност', 46 | 'targeting' => 'Целева аудитория', 47 | 'marketing' => 'Маркетинг', 48 | 'read_more' => 'Прочетете повече', 49 | 'read_less' => 'Прочетете по-малко', 50 | 'selection_saved_message' => 'Изборът за съгласие с бисквитките е запазен', 51 | 'cookies_settings' => 'Настройки на бисквитките', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/cs/messages.php: -------------------------------------------------------------------------------- 1 | 'Souhlas s cookies', 5 | 'description' => 'Používáme cookies, abychom optimalizovali naše webové stránky a služby. Můžete si vybrat, které kategorie chcete přijmout.', 6 | 'please_visit_1' => 'Pro podrobnější informace o cookies navštivte naši', 7 | 'cookie_policy_page' => 'stránku s politikou cookies', 8 | 'accept_selection_btn' => 'Přijmout výběr', 9 | 'customise_btn' => 'Přizpůsobit', 10 | 'accept_all_btn' => 'Přijmout vše', 11 | 'reject_optional_btn' => 'Odmítnout volitelné', 12 | 'accept_additional_cookies_btn' => 'Přijmout další cookies', 13 | 'reject_additional_cookies_btn' => 'Odmítnout další cookies', 14 | 'cookie_policy_title' => 'Politika cookies', 15 | 'cookie_policy_text_1' => 'Toto je stránka s politikou cookies. Zde si můžete přečíst o cookies používaných v aplikaci a vybrat, které cookies chcete povolit.', 16 | 'what_are_cookies_title' => 'Co jsou cookies?', 17 | 'what_are_cookies_text_1' => 'Cookie je malý textový soubor, který webová stránka nebo aplikace posílá na zařízení uživatele. Tento textový soubor shromažďuje informace o akcích uživatele na vašich webových stránkách.', 18 | 'what_are_cookies_text_2' => 'Cookies ukládají užitečné informace, aby zlepšily uživatelskou zkušenost na vašich webových stránkách a případně zlepšily vaši schopnost se s nimi později znovu spojit.', 19 | 'what_are_cookies_text_3' => 'Informace shromážděné cookies mohou zahrnovat preferovaný jazyk uživatele, nastavení zařízení, aktivitu při prohlížení a další užitečné informace.', 20 | 'what_are_cookies_text_4' => 'Webové stránky jako Google používají cookies, aby byly reklamy relevantnější pro jejich uživatele. Sledují také analýzy, jako je počet návštěvníků na stránce, umístění návštěvníků, preference vyhledávání atd.', 21 | 'what_are_cookies_text_5' => 'Cookies nejsou škodlivé pro vaše zařízení. Nejsou to viry ani malware. Jsou to pouze textové soubory, které lze kdykoli smazat.', 22 | 'use_of_cookies_title' => 'Použití cookies', 23 | 'use_of_cookies_text_1' => 'Cookies se obvykle používají k provádění jedné nebo všech následujících funkcí:', 24 | 'use_of_cookies_text_2' => 'Autentizace: Cookies pomáhají webovým stránkám určit, zda je uživatel přihlášen, a poté poskytují správnou zkušenost a funkce pro tohoto jedinečného uživatele.', 25 | 'use_of_cookies_text_3' => 'Bezpečnost: Cookies pomáhají při prosazování bezpečnostních opatření na webových stránkách. Pomáhají také při detekci neobvyklých a podezřelých aktivit.', 26 | 'use_of_cookies_text_4' => 'Reklama: Cookies poskytují lepší reklamní zážitek pro uživatele a inzerenty. Cookies pomáhají inzerentům spojit se s uživateli, kteří mají největší zájem o jejich produkty, na základě historie prohlížení uživatele.', 27 | 'use_of_cookies_text_5' => 'Výkon: Cookies pomáhají vašim webovým stránkám zjistit, jak služby fungují pro různé lidi a jak se směruje provoz mezi servery.', 28 | 'use_of_cookies_text_6' => 'Analýzy a výzkum: Webové stránky a aplikace používají cookies, aby zjistily, které jejich služby se nejvíce používají. To pomáhá určit, co je třeba zlepšit, odstranit a nechat stejné.', 29 | 'use_of_cookies_text_7' => 'Preference: Cookies pomáhají webovým stránkám zapamatovat si uživatelská nastavení, jako je jazyk, umístění a další nastavení.', 30 | 'use_of_cookies_text_8' => 'Některé cookies mohou shromažďovat data z několika webových stránek, aby vytvořily profily chování uživatelů. Tyto profily se pak používají k zasílání cíleného obsahu a reklamy uživatelům.', 31 | 'cookies_used_title' => 'Cookies používané v této aplikaci', 32 | 'cookies_used_text_1' => 'Následující cookies se používají v této aplikaci. Vyberte, které cookies chcete povolit.', 33 | 'hours' => '{1} :count hodina|[2,Inf] :count hodin', 34 | 'days' => '{1} :count den|[2,Inf] :count dní', 35 | 'years' => '{1} :count rok|[2,Inf] :count let', 36 | 'minutes' => '{1} :count minuta|[2,Inf] :count minut', 37 | 'months' => '{1} :count měsíc|[2,Inf] :count měsíců', 38 | 'cookie_cookies_consent_description' => 'Tento cookie je nastaven pluginem GDPR Cookie Consent a používá se k uložení toho, zda uživatel souhlasí s používáním cookies nebo ne. Neukládá žádné osobní údaje.', 39 | 'cookie_xsrf_token_description' => 'Tento cookie je nastaven Laravelem, aby zabránil útokům Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Tento cookie je nastaven Laravelem, aby identifikoval uživatelskou relaci.', 41 | 'description_label' => 'Popis', 42 | 'duration_label' => 'Doba trvání', 43 | 'policy_label' => 'Odkaz na politiku', 44 | 'strictly_necessary' => 'Nezbytně nutné', 45 | 'performance' => 'Výkon', 46 | 'targeting' => 'Cílení', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Přečtěte si více', 49 | 'read_less' => 'Přečtěte si méně', 50 | 'selection_saved_message' => 'Výběr souhlasu s cookies byl uložen', 51 | 'cookies_settings' => 'Nastavení cookies', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/da/messages.php: -------------------------------------------------------------------------------- 1 | 'Samtykke til cookies', 5 | 'description' => 'Vi bruger cookies til at optimere vores hjemmeside og service. Du kan vælge, hvilke kategorier du vil acceptere.', 6 | 'please_visit_1' => 'For mere detaljerede oplysninger om cookies, besøg venligst vores', 7 | 'cookie_policy_page' => 'cookiepolitik side', 8 | 'accept_selection_btn' => 'Accepter valgte', 9 | 'customise_btn' => 'Tilpas', 10 | 'accept_all_btn' => 'Accepter alle', 11 | 'reject_optional_btn' => 'Afvis valgfri', 12 | 'accept_additional_cookies_btn' => 'Accepter yderligere cookies', 13 | 'reject_additional_cookies_btn' => 'Afvis yderligere cookies', 14 | 'cookie_policy_title' => 'Cookiepolitik', 15 | 'cookie_policy_text_1' => 'Dette er cookiepolitik siden. Her kan du læse om de cookies, der bruges i applikationen, og vælge, hvilke cookies du vil tillade.', 16 | 'what_are_cookies_title' => 'Hvad er cookies?', 17 | 'what_are_cookies_text_1' => 'En cookie er en lille tekstfil, som en hjemmeside eller app sender til en brugers enhed. Denne tekstfil indsamler oplysninger om brugerens handlinger på din hjemmeside.', 18 | 'what_are_cookies_text_2' => 'Cookies gemmer nyttige oplysninger for at forbedre brugeroplevelsen på din hjemmeside og muligvis forbedre din evne til at genoprette forbindelsen med dem senere.', 19 | 'what_are_cookies_text_3' => 'Oplysninger indsamlet af cookies kan omfatte brugerens foretrukne sprog, enhedsindstillinger, browsing-aktiviteter og andre nyttige oplysninger.', 20 | 'what_are_cookies_text_4' => 'Websteder som Google bruger cookies til at gøre annoncer mere relevante for deres brugere. De sporer også analyser som antallet af besøgende på en side, besøgendes placeringer, søgepræferencer osv.', 21 | 'what_are_cookies_text_5' => 'Cookies er ikke skadelige for din enhed. De er ikke vira eller malware. De er blot tekstfiler, der kan slettes når som helst.', 22 | 'use_of_cookies_title' => 'Brug af cookies', 23 | 'use_of_cookies_text_1' => 'Cookies bruges generelt til at udføre en eller alle af følgende funktioner:', 24 | 'use_of_cookies_text_2' => 'Autentifikation: Cookies hjælper hjemmesider med at bestemme, om en bruger er logget ind, og leverer derefter den rigtige oplevelse og funktioner til den unikke bruger.', 25 | 'use_of_cookies_text_3' => 'Sikkerhed: Cookies hjælper med at håndhæve sikkerhedsforanstaltninger på en hjemmeside. De hjælper også med at opdage usædvanlige og mistænkelige aktiviteter.', 26 | 'use_of_cookies_text_4' => 'Reklame: Cookies leverer en bedre reklameoplevelse for både brugere og annoncører. Cookies hjælper annoncører med at forbinde med brugere, der er mest interesserede i deres produkter baseret på brugerens browsinghistorik.', 27 | 'use_of_cookies_text_5' => 'Ydeevne: Cookies hjælper din hjemmeside med at lære, hvordan tjenester fungerer for forskellige mennesker, og hvordan man dirigerer trafik mellem servere.', 28 | 'use_of_cookies_text_6' => 'Analyser og forskning: Websteder og apps bruger cookies til at lære, hvilke af deres tjenester der bruges mest. Dette hjælper med at bestemme, hvad der skal forbedres, fjernes og forblive det samme.', 29 | 'use_of_cookies_text_7' => 'Præferencer: Cookies hjælper hjemmesider med at huske brugerindstillinger som sprog, placering og andre indstillinger.', 30 | 'use_of_cookies_text_8' => 'Nogle cookies kan indsamle data på tværs af flere websteder for at oprette brugeradfærdsprofiler. Disse profiler bruges derefter til at sende målrettet indhold og reklame til brugere.', 31 | 'cookies_used_title' => 'Cookies brugt i denne applikation', 32 | 'cookies_used_text_1' => 'Følgende cookies bruges i denne applikation. Vælg venligst, hvilke cookies du vil tillade.', 33 | 'hours' => '{1} :count time|[2,Inf] :count timer', 34 | 'days' => '{1} :count dag|[2,Inf] :count dage', 35 | 'years' => '{1} :count år|[2,Inf] :count år', 36 | 'minutes' => '{1} :count minut|[2,Inf] :count minutter', 37 | 'months' => '{1} :count måned|[2,Inf] :count måneder', 38 | 'cookie_cookies_consent_description' => 'Denne cookie er sat af GDPR Cookie Consent plugin og bruges til at gemme, om brugeren har givet samtykke til brugen af cookies eller ej. Den gemmer ingen personlige data.', 39 | 'cookie_xsrf_token_description' => 'Denne cookie er sat af Laravel for at forhindre Cross-Site Request Forgery (CSRF) angreb.', 40 | 'cookie_laravel_session_description' => 'Denne cookie er sat af Laravel for at identificere en session for brugeren.', 41 | 'description_label' => 'Beskrivelse', 42 | 'duration_label' => 'Varighed', 43 | 'policy_label' => 'Politik link', 44 | 'strictly_necessary' => 'Strengt nødvendigt', 45 | 'performance' => 'Ydeevne', 46 | 'targeting' => 'Målretning', 47 | 'marketing' => 'Markedsføring', 48 | 'read_more' => 'Læs mere', 49 | 'read_less' => 'Læs mindre', 50 | 'selection_saved_message' => 'Valg af cookiesamtykke gemt', 51 | 'cookies_settings' => 'Cookies indstillinger', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/de/messages.php: -------------------------------------------------------------------------------- 1 | 'Cookie-Einwilligung', 5 | 'description' => 'Wir verwenden Cookies, um unsere Website und unseren Service zu optimieren. Sie können auswählen, welchen Kategorien Sie zustimmen.', 6 | 'please_visit_1' => 'Für detailliertere Informationen über Cookies besuchen Sie bitte unsere', 7 | 'cookie_policy_page' => 'Cookie-Richtlinien-Seite', 8 | 'accept_selection_btn' => 'Auswahl akzeptieren', 9 | 'customise_btn' => 'Anpassen', 10 | 'accept_all_btn' => 'Alle akzeptieren', 11 | 'reject_optional_btn' => 'Optionale ablehnen', 12 | 'accept_additional_cookies_btn' => 'Zusätzliche Cookies akzeptieren', 13 | 'reject_additional_cookies_btn' => 'Zusätzliche Cookies ablehnen', 14 | 'cookie_policy_title' => 'Cookie-Richtlinie', 15 | 'cookie_policy_text_1' => 'Dies ist die Cookie-Richtlinien-Seite. Hier können Sie über die in der Anwendung verwendeten Cookies lesen und auswählen, welche Cookies Sie zulassen möchten.', 16 | 'what_are_cookies_title' => 'Was sind Cookies?', 17 | 'what_are_cookies_text_1' => 'Ein Cookie ist eine kleine Textdatei, die eine Website oder App an das Gerät eines Benutzers sendet. Diese Textdatei sammelt Informationen über Benutzeraktionen auf Ihrer Website.', 18 | 'what_are_cookies_text_2' => 'Cookies speichern hilfreiche Informationen, um die Benutzererfahrung auf Ihrer Website zu verbessern und möglicherweise Ihre Fähigkeit zu verbessern, später wieder mit ihnen in Kontakt zu treten.', 19 | 'what_are_cookies_text_3' => 'Von Cookies gesammelte Informationen können die bevorzugte Sprache des Benutzers, Geräteeinstellungen, Browsing-Aktivitäten und andere nützliche Informationen umfassen.', 20 | 'what_are_cookies_text_4' => 'Websites wie Google verwenden Cookies, um Anzeigen relevanter für ihre Benutzer zu machen. Sie verfolgen auch Analysen wie die Anzahl der Besucher auf einer Seite, die Standorte der Besucher, Suchpräferenzen usw.', 21 | 'what_are_cookies_text_5' => 'Cookies sind nicht schädlich für Ihr Gerät. Sie sind keine Viren oder Malware. Es sind nur Textdateien, die jederzeit gelöscht werden können.', 22 | 'use_of_cookies_title' => 'Verwendung von Cookies', 23 | 'use_of_cookies_text_1' => 'Cookies werden im Allgemeinen verwendet, um eine oder alle der folgenden Funktionen auszuführen:', 24 | 'use_of_cookies_text_2' => 'Authentifizierung: Cookies helfen Websites festzustellen, ob ein Benutzer angemeldet ist, und liefern dann die richtige Erfahrung und Funktionen für diesen einzigartigen Benutzer.', 25 | 'use_of_cookies_text_3' => 'Sicherheit: Cookies helfen, Sicherheitsmaßnahmen auf einer Website durchzusetzen. Sie helfen auch, ungewöhnliche und verdächtige Aktivitäten zu erkennen.', 26 | 'use_of_cookies_text_4' => 'Werbung: Cookies bieten eine bessere Werbeerfahrung für Benutzer und Werbetreibende. Cookies helfen, Werbetreibende mit Benutzern zu verbinden, die am meisten an ihren Produkten interessiert sind, basierend auf dem Browserverlauf des Benutzers.', 27 | 'use_of_cookies_text_5' => 'Leistung: Cookies helfen Ihrer Website zu lernen, wie Dienste für verschiedene Personen funktionieren und wie der Datenverkehr zwischen Servern geleitet wird.', 28 | 'use_of_cookies_text_6' => 'Analysen und Forschung: Websites und Apps verwenden Cookies, um zu erfahren, welche ihrer Dienste am meisten genutzt werden. Dies hilft zu bestimmen, was verbessert, entfernt und gleich bleiben soll.', 29 | 'use_of_cookies_text_7' => 'Präferenzen: Cookies helfen Websites, sich an Benutzereinstellungen wie Sprache, Standort und andere Einstellungen zu erinnern.', 30 | 'use_of_cookies_text_8' => 'Einige Cookies können Daten über mehrere Websites hinweg sammeln, um Benutzerverhaltensprofile zu erstellen. Diese Profile werden dann verwendet, um gezielte Inhalte und Werbung an Benutzer zu senden.', 31 | 'cookies_used_title' => 'In dieser Anwendung verwendete Cookies', 32 | 'cookies_used_text_1' => 'Die folgenden Cookies werden in dieser Anwendung verwendet. Bitte wählen Sie aus, welche Cookies Sie zulassen möchten.', 33 | 'hours' => '{1} :count Stunde|[2,Inf] :count Stunden', 34 | 'days' => '{1} :count Tag|[2,Inf] :count Tage', 35 | 'years' => '{1} :count Jahr|[2,Inf] :count Jahre', 36 | 'minutes' => '{1} :count Minute|[2,Inf] :count Minuten', 37 | 'months' => '{1} :count Monat|[2,Inf] :count Monate', 38 | 'cookie_cookies_consent_description' => 'Dieses Cookie wird vom GDPR Cookie Consent-Plugin gesetzt und dient dazu, zu speichern, ob der Benutzer der Verwendung von Cookies zugestimmt hat oder nicht. Es speichert keine persönlichen Daten.', 39 | 'cookie_xsrf_token_description' => 'Dieses Cookie wird von Laravel gesetzt, um Cross-Site Request Forgery (CSRF)-Angriffe zu verhindern.', 40 | 'cookie_laravel_session_description' => 'Dieses Cookie wird von Laravel gesetzt, um eine Sitzungsinstanz für den Benutzer zu identifizieren.', 41 | 'description_label' => 'Beschreibung', 42 | 'duration_label' => 'Dauer', 43 | 'policy_label' => 'Richtlinienlink', 44 | 'strictly_necessary' => 'Unbedingt erforderlich', 45 | 'performance' => 'Leistung', 46 | 'targeting' => 'Zielgruppenausrichtung', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Mehr erfahren', 49 | 'read_less' => 'Weniger lesen', 50 | 'selection_saved_message' => 'Cookie-Einwilligungsauswahl gespeichert', 51 | 'cookies_settings' => 'Cookie-Einstellungen', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/el/messages.php: -------------------------------------------------------------------------------- 1 | 'Εκτιμούμε την ιδιωτικότητά σας', 5 | 'description' => 'Χρησιμοποιούμε cookies για να βελτιώσουμε την εμπειρία περιήγησής σας, να προβάλλουμε εξατομικευμένες διαφημίσεις ή περιεχόμενο και να αναλύουμε την επισκεψιμότητά μας. Κάνοντας κλικ στο "Αποδοχή όλων", συναινείτε στη χρήση των cookies από εμάς. Μπορείτε να επιλέξετε ποιες κατηγορίες συναινείτε.', 6 | 'please_visit_1' => 'Για πιο λεπτομερείς πληροφορίες σχετικά με τα cookies, επισκεφθείτε τη', 7 | 'cookie_policy_page' => 'σελίδα πολιτικής cookies', 8 | 'accept_selection_btn' => 'Αποθήκευση προτιμήσεων', 9 | 'customise_btn' => 'Προσαρμογή', 10 | 'accept_all_btn' => 'Αποδοχή Όλων', 11 | 'reject_optional_btn' => 'Απόρριψη Όλων', 12 | 'accept_additional_cookies_btn' => 'Αποδοχή επιπρόσθετων cookies', 13 | 'reject_additional_cookies_btn' => 'Απόρριψη επιπρόσθετων cookies', 14 | 'cookie_policy_title' => 'Πολιτική Cookies', 15 | 'cookie_policy_text_1' => 'Αυτή είναι η σελίδα πολιτικής cookies. Εδώ μπορείτε να διαβάσετε για τα Cookies που χρησιμοποιούνται στην εφαρμογή και να επιλέξετε ποια cookies θα επιτρέψετε.', 16 | 'what_are_cookies_title' => 'Τι είναι τα cookies;', 17 | 'what_are_cookies_text_1' => 'Ένα cookie είναι ένα μικρό αρχείο κειμένου που ένας ιστότοπος ή μια εφαρμογή στέλνει στη συσκευή του χρήστη. Αυτό το αρχείο κειμένου συλλέγει πληροφορίες σχετικά με τις ενέργειες του χρήστη στον ιστότοπό σας.', 18 | 'what_are_cookies_text_2' => 'Τα cookies αποθηκεύουν χρήσιμες πληροφορίες για να βελτιώσουν την εμπειρία των χρηστών στον ιστότοπό σας και ενδεχομένως να βελτιώσουν την ικανότητά σας να επανασυνδεθείτε μαζί τους αργότερα.', 19 | 'what_are_cookies_text_3' => 'Οι πληροφορίες που συλλέγονται από τα cookies μπορούν να περιλαμβάνουν την προτιμώμενη γλώσσα του χρήστη, τις ρυθμίσεις της συσκευής, τις δραστηριότητες περιήγησης και άλλες χρήσιμες πληροφορίες.', 20 | 'what_are_cookies_text_4' => 'Ιστότοποι όπως το Google χρησιμοποιούν cookies για να κάνουν τις διαφημίσεις πιο σχετικές για τους χρήστες τους. Επίσης, παρακολουθούν αναλυτικά στοιχεία όπως ο αριθμός των επισκεπτών σε μια σελίδα, οι τοποθεσίες των επισκεπτών, οι προτιμήσεις αναζήτησης κ.λπ.', 21 | 'what_are_cookies_text_5' => 'Τα cookies δεν είναι επιβλαβή για τη συσκευή σας. Δεν είναι ιοί ή κακόβουλο λογισμικό. Είναι απλά αρχεία κειμένου που μπορούν να διαγραφούν ανά πάσα στιγμή.', 22 | 'use_of_cookies_title' => 'Χρήση των cookies', 23 | 'use_of_cookies_text_1' => 'Τα cookies γενικά χρησιμοποιούνται για να εκτελέσουν μία ή όλες τις παρακάτω λειτουργίες:', 24 | 'use_of_cookies_text_2' => 'Αυθεντικοποίηση: Τα cookies βοηθούν τους ιστότοπους να καθορίσουν αν ένας χρήστης είναι συνδεδεμένος και στη συνέχεια να παρέχουν τη σωστή εμπειρία και λειτουργίες σε αυτόν τον μοναδικό χρήστη.', 25 | 'use_of_cookies_text_3' => 'Ασφάλεια: Τα cookies βοηθούν στην επιβολή μέτρων ασφαλείας σε έναν ιστότοπο. Επίσης, βοηθούν στην ανίχνευση ασυνήθιστων και ύποπτων δραστηριοτήτων.', 26 | 'use_of_cookies_text_4' => 'Διαφήμιση: Τα cookies παρέχουν μια καλύτερη διαφημιστική εμπειρία τόσο για τους χρήστες όσο και για τους διαφημιστές. Τα cookies βοηθούν στη σύνδεση των διαφημιστών με τους χρήστες που ενδιαφέρονται περισσότερο για τα προϊόντα τους βάσει του ιστορικού περιήγησης του χρήστη.', 27 | 'use_of_cookies_text_5' => 'Απόδοση: Τα cookies βοηθούν τον ιστότοπό σας να μάθει πώς λειτουργούν οι υπηρεσίες για διαφορετικούς ανθρώπους και πώς να κατευθύνει την κίνηση μεταξύ των διακομιστών.', 28 | 'use_of_cookies_text_6' => 'Αναλυτικά στοιχεία και Έρευνα: Οι ιστότοποι και οι εφαρμογές χρησιμοποιούν cookies για να μάθουν ποιες από τις υπηρεσίες τους χρησιμοποιούνται περισσότερο. Αυτό βοηθά στον καθορισμό του τι πρέπει να βελτιωθεί, τι να αφαιρεθεί και τι να παραμείνει το ίδιο.', 29 | 'use_of_cookies_text_7' => 'Προτιμήσεις: Τα cookies βοηθούν τους ιστότοπους να θυμούνται τις προτιμήσεις των χρηστών, όπως η γλώσσα, η τοποθεσία και άλλες ρυθμίσεις.', 30 | 'use_of_cookies_text_8' => 'Ορισμένα cookies μπορούν να συλλέγουν δεδομένα από διάφορους ιστότοπους για να δημιουργήσουν προφίλ συμπεριφοράς των χρηστών. Αυτά τα προφίλ χρησιμοποιούνται στη συνέχεια για την αποστολή στοχευμένου περιεχομένου και διαφημίσεων στους χρήστες.', 31 | 'cookies_used_title' => 'Cookies που χρησιμοποιούνται σε αυτήν την εφαρμογή', 32 | 'cookies_used_text_1' => 'Τα παρακάτω cookies χρησιμοποιούνται σε αυτήν την εφαρμογή. Παρακαλούμε επιλέξτε ποια cookies θα επιτρέψετε.', 33 | 'hours' => '{1} :count ώρα|[2,Inf] :count ώρες', 34 | 'days' => '{1} :count ημέρα|[2,Inf] :count ημέρες', 35 | 'years' => '{1} :count έτος|[2,Inf] :count έτη', 36 | 'minutes' => '{1} :count λεπτό|[2,Inf] :count λεπτά', 37 | 'months' => '{1} :count μήνας|[2,Inf] :count μήνες', 38 | 'cookie_cookies_consent_description' => 'Αυτό το cookie το ορίζει το πρόσθετο GDPR Cookie Consent και χρησιμοποιείται για να αποθηκεύσει εάν ο χρήστης έχει συναινέσει στη χρήση cookies ή όχι. Δεν αποθηκεύει καμία προσωπική πληροφορία.', 39 | 'cookie_xsrf_token_description' => 'Αυτό το cookie το ορίζει το Laravel για να αποτρέψει τις επιθέσεις Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Αυτό το cookie το ορίζει το Laravel για να αναγνωρίσει μια συνεδρία για τον χρήστη.', 41 | 'description_label' => 'Περιγραφή', 42 | 'duration_label' => 'Διάρκεια', 43 | 'policy_label' => 'Σύνδεσμος πολιτικής', 44 | 'strictly_necessary' => 'Απαραίτητα', 45 | 'performance' => 'Απόδοσης', 46 | 'targeting' => 'Στόχευσης', 47 | 'marketing' => 'Μάρκετινγκ', 48 | 'read_more' => 'Διαβάστε περισσότερα', 49 | 'read_less' => 'Διαβάστε λιγότερα', 50 | 'selection_saved_message' => 'Η επιλογή συναίνεσης για τα cookies αποθηκεύτηκε', 51 | 'cookies_settings' => 'Ρυθμίσεις Cookies', 52 | 'close_btn' => 'Αποθήκευση και κλείσιμο', 53 | ]; 54 | -------------------------------------------------------------------------------- /lang/en/messages.php: -------------------------------------------------------------------------------- 1 | 'We value your privacy', 5 | 'description' => 'We use cookies to enhance your browsing experience, serve personalized ads or content, and analyze our traffic. By clicking "Accept All", you consent to our use of cookies. You can choose which categories you consent to.', 6 | 'please_visit_1' => 'For more detailed information about cookies, please visit the', 7 | 'cookie_policy_page' => 'cookie policy page', 8 | 'accept_selection_btn' => 'Save selection', 9 | 'customise_btn' => 'Customise', 10 | 'accept_all_btn' => 'Accept All', 11 | 'reject_optional_btn' => 'Reject All', 12 | 'accept_additional_cookies_btn' => 'Accept additional cookies', 13 | 'reject_additional_cookies_btn' => 'Reject additional cookies', 14 | 'cookie_policy_title' => 'Cookie Policy', 15 | 'cookie_policy_text_1' => 'This is the cookie policy page. Here you can read about the Cookies that are used in the application and select which cookies to allow.', 16 | 'what_are_cookies_title' => 'What are cookies?', 17 | 'what_are_cookies_text_1' => 'A cookie is a small text file that a website or app sends to a user\'s device. This text file collects information about user actions on your site.', 18 | 'what_are_cookies_text_2' => 'Cookies store helpful information to enhance users\' experiences with your site, and possibly to improve your ability to reconnect with them later.', 19 | 'what_are_cookies_text_3' => 'Information collected by cookies can include the user\'s preferred language, device settings, browsing activities and other useful information.', 20 | 'what_are_cookies_text_4' => 'Websites like Google use cookies to make ads more relevant to their users. They also track analytics such as counting the number of visitors to a page, locations of visitors, search preferences and so on.', 21 | 'what_are_cookies_text_5' => 'Cookies are not harmful to your device. They are not viruses or malware. They are just text files that can be deleted at any time.', 22 | 'use_of_cookies_title' => 'Use of cookies', 23 | 'use_of_cookies_text_1' => 'Cookies generally are used to perform one or all of the following:', 24 | 'use_of_cookies_text_2' => 'Authentication: Cookies help websites determine if a user is logged in, and then deliver the right experience and features to that unique user.', 25 | 'use_of_cookies_text_3' => 'Security: Cookies help impose security measures on a website. They also help detect unusual and suspicious activities.', 26 | 'use_of_cookies_text_4' => 'Advertising: Cookies deliver a better advertising experience for both users and advertisers. Cookies help connect advertisers to users who are most interested in their products based on the user\'s browsing history.', 27 | 'use_of_cookies_text_5' => 'Performance: Cookies help your website learn how services work for different people and how to route traffic between servers.', 28 | 'use_of_cookies_text_6' => 'Analytics and Research: Websites and apps use cookies to learn which of their services are most used. This helps determine what to improve, what to remove and what to leave the same.', 29 | 'use_of_cookies_text_7' => 'Preferences: Cookies help websites remember user preferences such as language, location, and other settings.', 30 | 'use_of_cookies_text_8' => 'Some cookies can gather data across several websites in order to create user behavior profiles. These profiles are then used to send targeted content and advertisement to users.', 31 | 'cookies_used_title' => 'Cookies used in this application', 32 | 'cookies_used_text_1' => 'The following cookies are used in this application. Please select which cookies you would like to allow.', 33 | 'hours' => '{1} :count hour|[2,Inf] :count hours', 34 | 'days' => '{1} :count day|[2,Inf] :count days', 35 | 'years' => '{1} :count year|[2,Inf] :count years', 36 | 'minutes' => '{1} :count minute|[2,Inf] :count minutes', 37 | 'months' => '{1} :count month|[2,Inf] :count months', 38 | 'cookie_cookies_consent_description' => 'This cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.', 39 | 'cookie_xsrf_token_description' => 'This cookie is set by Laravel to prevent Cross-Site Request Forgery (CSRF) attacks.', 40 | 'cookie_laravel_session_description' => 'This cookie is set by Laravel to identify a session instance for the user.', 41 | 'description_label' => 'Description', 42 | 'duration_label' => 'Duration', 43 | 'policy_label' => 'Policy link', 44 | 'strictly_necessary' => 'Strictly Necessary', 45 | 'performance' => 'Performance', 46 | 'targeting' => 'Targeting', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Read more', 49 | 'read_less' => 'Read less', 50 | 'selection_saved_message' => 'Cookies consent selection saved', 51 | 'cookies_settings' => 'Cookies Settings', 52 | 'always_active' => 'always active', 53 | 'close_btn' => 'Save and close', 54 | ]; 55 | -------------------------------------------------------------------------------- /lang/es/messages.php: -------------------------------------------------------------------------------- 1 | 'Valoramos su privacidad', 5 | 'description' => 'Utilizamos cookies para optimizar nuestro sitio web y nuestro servicio. Puede elegir a qué categorías da su consentimiento.', 6 | 'please_visit_1' => 'Para obtener información más detallada sobre las cookies, visite nuestra', 7 | 'cookie_policy_page' => 'página de política de cookies', 8 | 'accept_selection_btn' => 'Aceptar Selección', 9 | 'customise_btn' => 'Personalizar', 10 | 'accept_all_btn' => 'Aceptar Todo', 11 | 'reject_optional_btn' => 'Rechazar Opcionales', 12 | 'accept_additional_cookies_btn' => 'Aceptar cookies adicionales', 13 | 'reject_additional_cookies_btn' => 'Rechazar cookies adicionales', 14 | 'cookie_policy_title' => 'Política de Cookies', 15 | 'cookie_policy_text_1' => 'Esta es la página de política de cookies. Aquí puede leer sobre las cookies utilizadas en la aplicación y elegir qué cookies permitir.', 16 | 'what_are_cookies_title' => '¿Qué son las cookies?', 17 | 'what_are_cookies_text_1' => 'Una cookie es un pequeño archivo de texto que un sitio web o una aplicación envía al dispositivo de un usuario. Este archivo de texto recopila información sobre las acciones del usuario en su sitio web.', 18 | 'what_are_cookies_text_2' => 'Las cookies almacenan información útil para mejorar la experiencia del usuario en su sitio web y posiblemente mejorar su capacidad para volver a conectarse con ellos más tarde.', 19 | 'what_are_cookies_text_3' => 'La información recopilada por las cookies puede incluir el idioma preferido del usuario, la configuración del dispositivo, las actividades de navegación y otra información útil.', 20 | 'what_are_cookies_text_4' => 'Sitios web como Google utilizan cookies para hacer que los anuncios sean más relevantes para sus usuarios. También rastrean análisis como el número de visitantes en una página, las ubicaciones de los visitantes, las preferencias de búsqueda, etc.', 21 | 'what_are_cookies_text_5' => 'Las cookies no son dañinas para su dispositivo. No son virus ni malware. Son solo archivos de texto que se pueden eliminar en cualquier momento.', 22 | 'use_of_cookies_title' => 'Uso de cookies', 23 | 'use_of_cookies_text_1' => 'Las cookies generalmente se utilizan para realizar una o todas las siguientes funciones:', 24 | 'use_of_cookies_text_2' => 'Autenticación: Las cookies ayudan a los sitios web a determinar si un usuario ha iniciado sesión y luego proporcionan la experiencia y las funciones correctas a ese usuario único.', 25 | 'use_of_cookies_text_3' => 'Seguridad: Las cookies ayudan a hacer cumplir las medidas de seguridad en un sitio web. También ayudan a detectar actividades inusuales y sospechosas.', 26 | 'use_of_cookies_text_4' => 'Publicidad: Las cookies proporcionan una mejor experiencia publicitaria tanto para los usuarios como para los anunciantes. Las cookies ayudan a conectar a los anunciantes con los usuarios que están más interesados en sus productos en función del historial de navegación del usuario.', 27 | 'use_of_cookies_text_5' => 'Rendimiento: Las cookies ayudan a su sitio web a aprender cómo funcionan los servicios para diferentes personas y cómo dirigir el tráfico entre los servidores.', 28 | 'use_of_cookies_text_6' => 'Análisis e Investigación: Los sitios web y las aplicaciones utilizan cookies para aprender cuáles de sus servicios se utilizan más. Esto ayuda a determinar qué debe mejorarse, eliminarse y mantenerse igual.', 29 | 'use_of_cookies_text_7' => 'Preferencias: Las cookies ayudan a los sitios web a recordar las preferencias de los usuarios, como el idioma, la ubicación y otras configuraciones.', 30 | 'use_of_cookies_text_8' => 'Algunas cookies pueden recopilar datos de varios sitios web para crear perfiles de comportamiento de los usuarios. Estos perfiles luego se utilizan para enviar contenido y publicidad dirigida a los usuarios.', 31 | 'cookies_used_title' => 'Cookies utilizadas en esta aplicación', 32 | 'cookies_used_text_1' => 'Las siguientes cookies se utilizan en esta aplicación. Por favor, elija qué cookies permitir.', 33 | 'hours' => '{1} :count hora|[2,Inf] :count horas', 34 | 'days' => '{1} :count día|[2,Inf] :count días', 35 | 'years' => '{1} :count año|[2,Inf] :count años', 36 | 'minutes' => '{1} :count minuto|[2,Inf] :count minutos', 37 | 'months' => '{1} :count mes|[2,Inf] :count meses', 38 | 'cookie_cookies_consent_description' => 'Esta cookie es establecida por el complemento GDPR Cookie Consent y se utiliza para almacenar si el usuario ha consentido o no el uso de cookies. No almacena ningún dato personal.', 39 | 'cookie_xsrf_token_description' => 'Esta cookie es establecida por Laravel para prevenir ataques de falsificación de solicitudes entre sitios (CSRF).', 40 | 'cookie_laravel_session_description' => 'Esta cookie es establecida por Laravel para identificar una instancia de sesión para el usuario.', 41 | 'description_label' => 'Descripción', 42 | 'duration_label' => 'Duración', 43 | 'policy_label' => 'Enlace de política', 44 | 'strictly_necessary' => 'Estrictamente Necesario', 45 | 'performance' => 'Rendimiento', 46 | 'targeting' => 'Dirigido', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Leer más', 49 | 'read_less' => 'Leer menos', 50 | 'selection_saved_message' => 'Selección de consentimiento de cookies guardada', 51 | 'cookies_settings' => 'Configuración de cookies', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/et/messages.php: -------------------------------------------------------------------------------- 1 | 'Küpsiste nõusolek', 5 | 'description' => 'Kasutame küpsiseid, et optimeerida meie veebisaiti ja teenust. Saate valida, milliste kategooriatega nõustute.', 6 | 'please_visit_1' => 'Küpsiste kohta üksikasjalikuma teabe saamiseks külastage meie', 7 | 'cookie_policy_page' => 'küpsiste poliitika lehte', 8 | 'accept_selection_btn' => 'Nõustu valitud', 9 | 'customise_btn' => 'Kohanda', 10 | 'accept_all_btn' => 'Nõustu kõigiga', 11 | 'reject_optional_btn' => 'Lükka tagasi valikulised', 12 | 'accept_additional_cookies_btn' => 'Nõustu täiendavate küpsistega', 13 | 'reject_additional_cookies_btn' => 'Lükka tagasi täiendavad küpsised', 14 | 'cookie_policy_title' => 'Küpsiste poliitika', 15 | 'cookie_policy_text_1' => 'See on küpsiste poliitika leht. Siin saate lugeda rakenduses kasutatavate küpsiste kohta ja valida, milliseid küpsiseid lubada.', 16 | 'what_are_cookies_title' => 'Mis on küpsised?', 17 | 'what_are_cookies_text_1' => 'Küpsis on väike tekstifail, mille veebisait või rakendus saadab kasutaja seadmesse. See tekstifail kogub teavet kasutaja tegevuste kohta teie saidil.', 18 | 'what_are_cookies_text_2' => 'Küpsised salvestavad kasulikku teavet, et parandada kasutajate kogemusi teie saidil ja võimalusel parandada teie võimet nendega hiljem uuesti ühendust võtta.', 19 | 'what_are_cookies_text_3' => 'Küpsiste kogutud teave võib sisaldada kasutaja eelistatud keelt, seadme seadeid, sirvimistegevusi ja muud kasulikku teavet.', 20 | 'what_are_cookies_text_4' => 'Sellised veebisaidid nagu Google kasutavad küpsiseid, et muuta reklaamid oma kasutajatele asjakohasemaks. Nad jälgivad ka analüütikat, näiteks lehe külastajate arvu, külastajate asukohti, otsingueelistusi jne.', 21 | 'what_are_cookies_text_5' => 'Küpsised ei ole teie seadmele kahjulikud. Need ei ole viirused ega pahavara. Need on lihtsalt tekstifailid, mida saab igal ajal kustutada.', 22 | 'use_of_cookies_title' => 'Küpsiste kasutamine', 23 | 'use_of_cookies_text_1' => 'Küpsiseid kasutatakse tavaliselt ühe või kõigi järgmiste funktsioonide täitmiseks:', 24 | 'use_of_cookies_text_2' => 'Autentimine: Küpsised aitavad veebisaitidel kindlaks teha, kas kasutaja on sisse logitud, ja seejärel pakkuda sellele ainulaadsele kasutajale õiget kogemust ja funktsioone.', 25 | 'use_of_cookies_text_3' => 'Turvalisus: Küpsised aitavad veebisaidil turvameetmeid rakendada. Need aitavad ka ebatavalise ja kahtlase tegevuse tuvastamisel.', 26 | 'use_of_cookies_text_4' => 'Reklaam: Küpsised pakuvad paremat reklaamikogemust nii kasutajatele kui ka reklaamijatele. Küpsised aitavad reklaamijatel ühendust võtta kasutajatega, kes on nende toodetest kõige rohkem huvitatud, tuginedes kasutaja sirvimisajaloole.', 27 | 'use_of_cookies_text_5' => 'Jõudlus: Küpsised aitavad teie veebisaidil õppida, kuidas teenused erinevate inimeste jaoks töötavad ja kuidas suunata liiklust serverite vahel.', 28 | 'use_of_cookies_text_6' => 'Analüüs ja uurimine: Veebisaidid ja rakendused kasutavad küpsiseid, et teada saada, milliseid nende teenuseid kõige rohkem kasutatakse. See aitab kindlaks teha, mida tuleb parandada, eemaldada ja samaks jätta.', 29 | 'use_of_cookies_text_7' => 'Eelistused: Küpsised aitavad veebisaitidel meeles pidada kasutaja eelistusi, nagu keel, asukoht ja muud seaded.', 30 | 'use_of_cookies_text_8' => 'Mõned küpsised võivad koguda andmeid mitmelt veebisaidilt, et luua kasutajate käitumisprofiile. Neid profiile kasutatakse seejärel sihitud sisu ja reklaamide saatmiseks kasutajatele.', 31 | 'cookies_used_title' => 'Selles rakenduses kasutatavad küpsised', 32 | 'cookies_used_text_1' => 'Järgmisi küpsiseid kasutatakse selles rakenduses. Valige, milliseid küpsiseid soovite lubada.', 33 | 'hours' => '{1} :count tund|[2,Inf] :count tundi', 34 | 'days' => '{1} :count päev|[2,Inf] :count päeva', 35 | 'years' => '{1} :count aasta|[2,Inf] :count aastat', 36 | 'minutes' => '{1} :count minut|[2,Inf] :count minutit', 37 | 'months' => '{1} :count kuu|[2,Inf] :count kuud', 38 | 'cookie_cookies_consent_description' => 'Selle küpsise määrab GDPR Cookie Consent plugin ja seda kasutatakse selleks, et salvestada, kas kasutaja on nõustunud küpsiste kasutamisega või mitte. See ei salvesta isikuandmeid.', 39 | 'cookie_xsrf_token_description' => 'Selle küpsise määrab Laravel, et vältida Cross-Site Request Forgery (CSRF) rünnakuid.', 40 | 'cookie_laravel_session_description' => 'Selle küpsise määrab Laravel, et tuvastada kasutaja seansi eksemplar.', 41 | 'description_label' => 'Kirjeldus', 42 | 'duration_label' => 'Kestus', 43 | 'policy_label' => 'Poliitika link', 44 | 'strictly_necessary' => 'Tingimata vajalik', 45 | 'performance' => 'Jõudlus', 46 | 'targeting' => 'Sihtrühm', 47 | 'marketing' => 'Turundus', 48 | 'read_more' => 'Loe rohkem', 49 | 'read_less' => 'Loe vähem', 50 | 'selection_saved_message' => 'Küpsiste nõusoleku valik on salvestatud', 51 | 'cookies_settings' => 'Küpsiste seaded', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/fi/messages.php: -------------------------------------------------------------------------------- 1 | 'Evästeiden suostumus', 5 | 'description' => 'Käytämme evästeitä optimoidaksemme verkkosivustomme ja palvelumme. Voit valita, mihin kategorioihin suostut.', 6 | 'please_visit_1' => 'Lisätietoja evästeistä saat käymällä', 7 | 'cookie_policy_page' => 'evästekäytäntösivullamme', 8 | 'accept_selection_btn' => 'Hyväksy valitut', 9 | 'customise_btn' => 'Mukauta', 10 | 'accept_all_btn' => 'Hyväksy kaikki', 11 | 'reject_optional_btn' => 'Hylkää valinnaiset', 12 | 'accept_additional_cookies_btn' => 'Hyväksy lisäevästeet', 13 | 'reject_additional_cookies_btn' => 'Hylkää lisäevästeet', 14 | 'cookie_policy_title' => 'Evästekäytäntö', 15 | 'cookie_policy_text_1' => 'Tämä on evästekäytäntösivu. Täältä voit lukea sovelluksessa käytetyistä evästeistä ja valita, mitkä evästeet haluat sallia.', 16 | 'what_are_cookies_title' => 'Mitä evästeet ovat?', 17 | 'what_are_cookies_text_1' => 'Eväste on pieni tekstitiedosto, jonka verkkosivusto tai sovellus lähettää käyttäjän laitteeseen. Tämä tekstitiedosto kerää tietoja käyttäjän toimista sivustollasi.', 18 | 'what_are_cookies_text_2' => 'Evästeet tallentavat hyödyllistä tietoa parantaakseen käyttäjien kokemuksia sivustollasi ja mahdollisesti parantaakseen kykyäsi ottaa heihin yhteyttä myöhemmin.', 19 | 'what_are_cookies_text_3' => 'Evästeiden keräämät tiedot voivat sisältää käyttäjän valitseman kielen, laiteasetukset, selaustoiminnot ja muita hyödyllisiä tietoja.', 20 | 'what_are_cookies_text_4' => 'Verkkosivustot, kuten Google, käyttävät evästeitä tehdäkseen mainoksista käyttäjilleen osuvampia. Ne seuraavat myös analytiikkaa, kuten sivun kävijämäärää, kävijöiden sijainteja, hakumieltymyksiä jne.', 21 | 'what_are_cookies_text_5' => 'Evästeet eivät ole haitallisia laitteellesi. Ne eivät ole viruksia tai haittaohjelmia. Ne ovat vain tekstitiedostoja, jotka voidaan poistaa milloin tahansa.', 22 | 'use_of_cookies_title' => 'Evästeiden käyttö', 23 | 'use_of_cookies_text_1' => 'Evästeitä käytetään yleensä suorittamaan yksi tai kaikki seuraavista toiminnoista:', 24 | 'use_of_cookies_text_2' => 'Todennus: Evästeet auttavat verkkosivustoja määrittämään, onko käyttäjä kirjautunut sisään, ja tarjoavat sitten oikean kokemuksen ja ominaisuudet tälle ainutlaatuiselle käyttäjälle.', 25 | 'use_of_cookies_text_3' => 'Turvallisuus: Evästeet auttavat verkkosivustoa toteuttamaan turvatoimia. Ne auttavat myös havaitsemaan epätavallisia ja epäilyttäviä toimintoja.', 26 | 'use_of_cookies_text_4' => 'Mainonta: Evästeet tarjoavat paremman mainoskokemuksen sekä käyttäjille että mainostajille. Evästeet auttavat mainostajia yhdistämään käyttäjiin, jotka ovat eniten kiinnostuneita heidän tuotteistaan käyttäjän selaushistorian perusteella.', 27 | 'use_of_cookies_text_5' => 'Suorituskyky: Evästeet auttavat verkkosivustoasi oppimaan, miten palvelut toimivat eri ihmisille ja miten liikennettä ohjataan palvelimien välillä.', 28 | 'use_of_cookies_text_6' => 'Analytiikka ja tutkimus: Verkkosivustot ja sovellukset käyttävät evästeitä oppiakseen, mitkä heidän palveluistaan ovat eniten käytettyjä. Tämä auttaa määrittämään, mitä parantaa, mitä poistaa ja mitä jättää ennalleen.', 29 | 'use_of_cookies_text_7' => 'Asetukset: Evästeet auttavat verkkosivustoja muistamaan käyttäjän asetukset, kuten kielen, sijainnin ja muut asetukset.', 30 | 'use_of_cookies_text_8' => 'Jotkut evästeet voivat kerätä tietoja useilta verkkosivustoilta luodakseen käyttäjäprofiileja. Näitä profiileja käytetään sitten kohdennetun sisällön ja mainosten lähettämiseen käyttäjille.', 31 | 'cookies_used_title' => 'Tässä sovelluksessa käytetyt evästeet', 32 | 'cookies_used_text_1' => 'Seuraavia evästeitä käytetään tässä sovelluksessa. Valitse, mitkä evästeet haluat sallia.', 33 | 'hours' => '{1} :count tunti|[2,Inf] :count tuntia', 34 | 'days' => '{1} :count päivä|[2,Inf] :count päivää', 35 | 'years' => '{1} :count vuosi|[2,Inf] :count vuotta', 36 | 'minutes' => '{1} :count minuutti|[2,Inf] :count minuuttia', 37 | 'months' => '{1} :count kuukausi|[2,Inf] :count kuukautta', 38 | 'cookie_cookies_consent_description' => 'Tämän evästeen asettaa GDPR Cookie Consent -laajennus, ja sitä käytetään tallentamaan, onko käyttäjä suostunut evästeiden käyttöön vai ei. Se ei tallenna henkilökohtaisia tietoja.', 39 | 'cookie_xsrf_token_description' => 'Tämän evästeen asettaa Laravel estääkseen Cross-Site Request Forgery (CSRF) -hyökkäykset.', 40 | 'cookie_laravel_session_description' => 'Tämän evästeen asettaa Laravel tunnistaakseen käyttäjän istunnon.', 41 | 'description_label' => 'Kuvaus', 42 | 'duration_label' => 'Kesto', 43 | 'policy_label' => 'Käytännön linkki', 44 | 'strictly_necessary' => 'Ehdottoman välttämätön', 45 | 'performance' => 'Suorituskyky', 46 | 'targeting' => 'Kohdentaminen', 47 | 'marketing' => 'Markkinointi', 48 | 'read_more' => 'Lue lisää', 49 | 'read_less' => 'Lue vähemmän', 50 | 'selection_saved_message' => 'Evästeiden suostumusvalinta tallennettu', 51 | 'cookies_settings' => 'Evästeasetukset', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/fr/messages.php: -------------------------------------------------------------------------------- 1 | 'Consentement aux cookies', 5 | 'description' => 'Nous utilisons des cookies pour optimiser notre site web et notre service. Vous pouvez choisir les catégories auxquelles vous consentez.', 6 | 'please_visit_1' => 'Pour plus d\'informations sur les cookies, veuillez visiter notre', 7 | 'cookie_policy_page' => 'page de politique de cookies', 8 | 'accept_selection_btn' => 'Accepter la sélection', 9 | 'customise_btn' => 'Personnaliser', 10 | 'accept_all_btn' => 'Tout accepter', 11 | 'reject_optional_btn' => 'Rejeter les options', 12 | 'accept_additional_cookies_btn' => 'Accepter les cookies supplémentaires', 13 | 'reject_additional_cookies_btn' => 'Rejeter les cookies supplémentaires', 14 | 'cookie_policy_title' => 'Politique de cookies', 15 | 'cookie_policy_text_1' => 'Ceci est la page de politique de cookies. Ici, vous pouvez lire sur les cookies utilisés dans l\'application et sélectionner ceux que vous souhaitez autoriser.', 16 | 'what_are_cookies_title' => 'Que sont les cookies?', 17 | 'what_are_cookies_text_1' => 'Un cookie est un petit fichier texte qu\'un site web ou une application envoie à l\'appareil d\'un utilisateur. Ce fichier texte collecte des informations sur les actions de l\'utilisateur sur votre site.', 18 | 'what_are_cookies_text_2' => 'Les cookies stockent des informations utiles pour améliorer l\'expérience des utilisateurs sur votre site et éventuellement améliorer votre capacité à les reconnecter plus tard.', 19 | 'what_are_cookies_text_3' => 'Les informations collectées par les cookies peuvent inclure la langue préférée de l\'utilisateur, les paramètres de l\'appareil, les activités de navigation et d\'autres informations utiles.', 20 | 'what_are_cookies_text_4' => 'Les sites web comme Google utilisent des cookies pour rendre les publicités plus pertinentes pour leurs utilisateurs. Ils suivent également des analyses telles que le nombre de visiteurs sur une page, les emplacements des visiteurs, les préférences de recherche, etc.', 21 | 'what_are_cookies_text_5' => 'Les cookies ne sont pas nuisibles à votre appareil. Ils ne sont pas des virus ou des logiciels malveillants. Ce sont simplement des fichiers texte qui peuvent être supprimés à tout moment.', 22 | 'use_of_cookies_title' => 'Utilisation des cookies', 23 | 'use_of_cookies_text_1' => 'Les cookies sont généralement utilisés pour effectuer une ou toutes les fonctions suivantes:', 24 | 'use_of_cookies_text_2' => 'Authentification: Les cookies aident les sites web à déterminer si un utilisateur est connecté, puis à fournir l\'expérience et les fonctionnalités appropriées à cet utilisateur unique.', 25 | 'use_of_cookies_text_3' => 'Sécurité: Les cookies aident à imposer des mesures de sécurité sur un site web. Ils aident également à détecter des activités inhabituelles et suspectes.', 26 | 'use_of_cookies_text_4' => 'Publicité: Les cookies offrent une meilleure expérience publicitaire pour les utilisateurs et les annonceurs. Les cookies aident les annonceurs à se connecter avec les utilisateurs les plus intéressés par leurs produits en fonction de l\'historique de navigation de l\'utilisateur.', 27 | 'use_of_cookies_text_5' => 'Performance: Les cookies aident votre site web à apprendre comment les services fonctionnent pour différentes personnes et comment acheminer le trafic entre les serveurs.', 28 | 'use_of_cookies_text_6' => 'Analyses et recherche: Les sites web et les applications utilisent des cookies pour savoir quels sont leurs services les plus utilisés. Cela aide à déterminer ce qu\'il faut améliorer, supprimer et laisser tel quel.', 29 | 'use_of_cookies_text_7' => 'Préférences: Les cookies aident les sites web à se souvenir des préférences des utilisateurs telles que la langue, l\'emplacement et d\'autres paramètres.', 30 | 'use_of_cookies_text_8' => 'Certains cookies peuvent collecter des données sur plusieurs sites web afin de créer des profils de comportement des utilisateurs. Ces profils sont ensuite utilisés pour envoyer du contenu et des publicités ciblés aux utilisateurs.', 31 | 'cookies_used_title' => 'Cookies utilisés dans cette application', 32 | 'cookies_used_text_1' => 'Les cookies suivants sont utilisés dans cette application. Veuillez sélectionner les cookies que vous souhaitez autoriser.', 33 | 'hours' => '{1} :count heure|[2,Inf] :count heures', 34 | 'days' => '{1} :count jour|[2,Inf] :count jours', 35 | 'years' => '{1} :count an|[2,Inf] :count ans', 36 | 'minutes' => '{1} :count minute|[2,Inf] :count minutes', 37 | 'months' => '{1} :count mois|[2,Inf] :count mois', 38 | 'cookie_cookies_consent_description' => 'Ce cookie est défini par le plugin GDPR Cookie Consent et est utilisé pour stocker si l\'utilisateur a consenti ou non à l\'utilisation de cookies. Il ne stocke aucune donnée personnelle.', 39 | 'cookie_xsrf_token_description' => 'Ce cookie est défini par Laravel pour empêcher les attaques Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Ce cookie est défini par Laravel pour identifier une instance de session pour l\'utilisateur.', 41 | 'description_label' => 'Description', 42 | 'duration_label' => 'Durée', 43 | 'policy_label' => 'Lien vers la politique', 44 | 'strictly_necessary' => 'Strictement nécessaire', 45 | 'performance' => 'Performance', 46 | 'targeting' => 'Ciblage', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Lire la suite', 49 | 'read_less' => 'Lire moins', 50 | 'selection_saved_message' => 'Sélection de consentement aux cookies enregistrée', 51 | 'cookies_settings' => 'Paramètres des cookies', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/ga/messages.php: -------------------------------------------------------------------------------- 1 | 'Toiliú Fianáin', 5 | 'description' => 'Bainimid úsáid as fianáin chun ár suíomh gréasáin agus ár seirbhís a bharrfheabhsú. Is féidir leat a roghnú cé na catagóirí a thoilíonn tú leo.', 6 | 'please_visit_1' => 'Chun tuilleadh faisnéise mionsonraithe faoi fhianáin, tabhair cuairt ar ár', 7 | 'cookie_policy_page' => 'leathanach beartas fianáin', 8 | 'accept_selection_btn' => 'Glac leis na Roghnaithe', 9 | 'customise_btn' => 'Saincheapadh', 10 | 'accept_all_btn' => 'Glac le Gach Rud', 11 | 'reject_optional_btn' => 'Diúltaigh Roghnach', 12 | 'accept_additional_cookies_btn' => 'Glac le fianáin bhreise', 13 | 'reject_additional_cookies_btn' => 'Diúltaigh fianáin bhreise', 14 | 'cookie_policy_title' => 'Beartas Fianáin', 15 | 'cookie_policy_text_1' => 'Seo an leathanach beartas fianáin. Anseo is féidir leat léamh faoi na Fianáin a úsáidtear san fheidhmchlár agus a roghnú cé na fianáin a cheadaíonn tú.', 16 | 'what_are_cookies_title' => 'Cad is fianáin ann?', 17 | 'what_are_cookies_text_1' => 'Is comhad beag téacs é fianán a sheolann suíomh gréasáin nó aip chuig gléas úsáideora. Bailíonn an comhad téacs seo faisnéis faoi ghníomhartha úsáideora ar do shuíomh.', 18 | 'what_are_cookies_text_2' => 'Stórálann fianáin faisnéis úsáideach chun eispéiris úsáideoirí le do shuíomh a fheabhsú, agus b\'fhéidir chun do chumas chun athnascadh leo níos déanaí a fheabhsú.', 19 | 'what_are_cookies_text_3' => 'Is féidir leis an bhfaisnéis a bhailíonn fianáin teanga roghnaithe an úsáideora, socruithe gléas, gníomhaíochtaí brabhsála agus faisnéis úsáideach eile a áireamh.', 20 | 'what_are_cookies_text_4' => 'Úsáideann suíomhanna gréasáin cosúil le Google fianáin chun fógraí a dhéanamh níos ábhartha dá n-úsáideoirí. Rianaíonn siad freisin anailísíocht cosúil le comhaireamh líon na gcuairteoirí ar leathanach, suíomhanna na gcuairteoirí, roghanna cuardaigh agus mar sin de.', 21 | 'what_are_cookies_text_5' => 'Níl fianáin díobhálach do do ghléas. Ní víris nó malware iad. Is comhaid téacs iad a fhéadfar a scriosadh ag am ar bith.', 22 | 'use_of_cookies_title' => 'Úsáid fianáin', 23 | 'use_of_cookies_text_1' => 'Úsáidtear fianáin go ginearálta chun ceann amháin nó gach ceann de na feidhmeanna seo a leanas a chomhlíonadh:', 24 | 'use_of_cookies_text_2' => 'Fíordheimhniú: Cabhraíonn fianáin le suíomhanna gréasáin a chinneadh an bhfuil úsáideoir logáilte isteach, agus ansin an taithí agus na gnéithe cearta a sheachadadh don úsáideoir uathúil sin.', 25 | 'use_of_cookies_text_3' => 'Slándáil: Cabhraíonn fianáin le bearta slándála a fhorchur ar shuíomh gréasáin. Cabhraíonn siad freisin le gníomhaíochtaí neamhghnácha agus amhrasacha a bhrath.', 26 | 'use_of_cookies_text_4' => 'Fógraíocht: Soláthraíonn fianáin eispéireas fógraíochta níos fearr do úsáideoirí agus do fhógróirí araon. Cabhraíonn fianáin le fógróirí nasc a dhéanamh le húsáideoirí atá an-suim acu ina gcuid táirgí bunaithe ar stair bhrabhsála an úsáideora.', 27 | 'use_of_cookies_text_5' => 'Feidhmíocht: Cabhraíonn fianáin le do shuíomh gréasáin foghlaim conas a oibríonn seirbhísí do dhaoine éagsúla agus conas trácht a atreorú idir freastalaithe.', 28 | 'use_of_cookies_text_6' => 'Anailísíocht agus Taighde: Úsáideann suíomhanna gréasáin agus aipeanna fianáin chun foghlaim cé na seirbhísí is mó a úsáidtear. Cabhraíonn sé seo le cinneadh a dhéanamh ar cad is gá a fheabhsú, a bhaint agus a fhágáil mar an gcéanna.', 29 | 'use_of_cookies_text_7' => 'Roghanna: Cabhraíonn fianáin le suíomhanna gréasáin cuimhneamh ar roghanna úsáideora cosúil le teanga, suíomh agus socruithe eile.', 30 | 'use_of_cookies_text_8' => 'Is féidir le roinnt fianáin sonraí a bhailiú ar fud roinnt suíomhanna gréasáin chun próifílí iompraíochta úsáideoirí a chruthú. Úsáidtear na próifílí seo ansin chun ábhar agus fógraí spriocdhírithe a sheoladh chuig úsáideoirí.', 31 | 'cookies_used_title' => 'Fianáin a úsáidtear san fheidhmchlár seo', 32 | 'cookies_used_text_1' => 'Úsáidtear na fianáin seo a leanas san fheidhmchlár seo. Roghnaigh cé na fianáin ar mhaith leat a cheadú.', 33 | 'hours' => '{1} :count uair|[2,Inf] :count uaireanta', 34 | 'days' => '{1} :count lá|[2,Inf] :count laethanta', 35 | 'years' => '{1} :count bliain|[2,Inf] :count blianta', 36 | 'minutes' => '{1} :count nóiméad|[2,Inf] :count nóiméad', 37 | 'months' => '{1} :count mí|[2,Inf] :count míonna', 38 | 'cookie_cookies_consent_description' => 'Socraítear an fianán seo ag an breiseán GDPR Cookie Consent agus úsáidtear é chun a stóráil an bhfuil an t-úsáideoir tar éis toiliú le húsáid fianáin nó nach bhfuil. Ní stórálann sé aon sonraí pearsanta.', 39 | 'cookie_xsrf_token_description' => 'Socraítear an fianán seo ag Laravel chun ionsaithe Cross-Site Request Forgery (CSRF) a chosc.', 40 | 'cookie_laravel_session_description' => 'Socraítear an fianán seo ag Laravel chun sampla seisiúin a aithint don úsáideoir.', 41 | 'description_label' => 'Cur síos', 42 | 'duration_label' => 'Fad', 43 | 'policy_label' => 'Nasc beartais', 44 | 'strictly_necessary' => 'Riachtanach go docht', 45 | 'performance' => 'Feidhmíocht', 46 | 'targeting' => 'Spriocdhírithe', 47 | 'marketing' => 'Margaíocht', 48 | 'read_more' => 'Léigh níos mó', 49 | 'read_less' => 'Léigh níos lú', 50 | 'selection_saved_message' => 'Rogha toiliú fianáin sábháilte', 51 | 'cookies_settings' => 'Socruithe Fianáin', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/hr/messages.php: -------------------------------------------------------------------------------- 1 | 'Pristanak za kolačiće', 5 | 'description' => 'Koristimo kolačiće kako bismo optimizirali našu web stranicu i uslugu. Možete odabrati koje kategorije prihvaćate.', 6 | 'please_visit_1' => 'Za detaljnije informacije o kolačićima, posjetite našu', 7 | 'cookie_policy_page' => 'stranicu s politikom kolačića', 8 | 'accept_selection_btn' => 'Prihvati odabrano', 9 | 'customise_btn' => 'Prilagodi', 10 | 'accept_all_btn' => 'Prihvati sve', 11 | 'reject_optional_btn' => 'Odbij opcionalno', 12 | 'accept_additional_cookies_btn' => 'Prihvati dodatne kolačiće', 13 | 'reject_additional_cookies_btn' => 'Odbij dodatne kolačiće', 14 | 'cookie_policy_title' => 'Politika kolačića', 15 | 'cookie_policy_text_1' => 'Ovo je stranica s politikom kolačića. Ovdje možete pročitati o kolačićima koji se koriste u aplikaciji i odabrati koje kolačiće želite dopustiti.', 16 | 'what_are_cookies_title' => 'Što su kolačići?', 17 | 'what_are_cookies_text_1' => 'Kolačić je mala tekstualna datoteka koju web stranica ili aplikacija šalje na uređaj korisnika. Ova tekstualna datoteka prikuplja informacije o radnjama korisnika na vašoj stranici.', 18 | 'what_are_cookies_text_2' => 'Kolačići pohranjuju korisne informacije kako bi poboljšali korisničko iskustvo na vašoj stranici i možda poboljšali vašu sposobnost ponovnog povezivanja s njima kasnije.', 19 | 'what_are_cookies_text_3' => 'Informacije prikupljene kolačićima mogu uključivati preferirani jezik korisnika, postavke uređaja, aktivnosti pregledavanja i druge korisne informacije.', 20 | 'what_are_cookies_text_4' => 'Web stranice poput Googlea koriste kolačiće kako bi oglasi bili relevantniji za njihove korisnike. Također prate analitiku poput broja posjetitelja na stranici, lokacija posjetitelja, preferencija pretraživanja i tako dalje.', 21 | 'what_are_cookies_text_5' => 'Kolačići nisu štetni za vaš uređaj. Oni nisu virusi ili zlonamjerni softver. Oni su samo tekstualne datoteke koje se mogu izbrisati u bilo kojem trenutku.', 22 | 'use_of_cookies_title' => 'Korištenje kolačića', 23 | 'use_of_cookies_text_1' => 'Kolačići se općenito koriste za obavljanje jedne ili svih sljedećih funkcija:', 24 | 'use_of_cookies_text_2' => 'Autentifikacija: Kolačići pomažu web stranicama da odrede je li korisnik prijavljen i zatim pružaju pravo iskustvo i značajke za tog jedinstvenog korisnika.', 25 | 'use_of_cookies_text_3' => 'Sigurnost: Kolačići pomažu u provođenju sigurnosnih mjera na web stranici. Također pomažu u otkrivanju neobičnih i sumnjivih aktivnosti.', 26 | 'use_of_cookies_text_4' => 'Oglašavanje: Kolačići pružaju bolje oglašivačko iskustvo za korisnike i oglašivače. Kolačići pomažu oglašivačima da se povežu s korisnicima koji su najviše zainteresirani za njihove proizvode na temelju povijesti pregledavanja korisnika.', 27 | 'use_of_cookies_text_5' => 'Performanse: Kolačići pomažu vašoj web stranici da nauči kako usluge rade za različite ljude i kako usmjeravati promet između poslužitelja.', 28 | 'use_of_cookies_text_6' => 'Analitika i istraživanje: Web stranice i aplikacije koriste kolačiće kako bi saznale koje se njihove usluge najviše koriste. To pomaže odrediti što treba poboljšati, ukloniti i ostaviti isto.', 29 | 'use_of_cookies_text_7' => 'Preferencije: Kolačići pomažu web stranicama da zapamte korisničke postavke poput jezika, lokacije i drugih postavki.', 30 | 'use_of_cookies_text_8' => 'Neki kolačići mogu prikupljati podatke s nekoliko web stranica kako bi stvorili profile ponašanja korisnika. Ovi profili se zatim koriste za slanje ciljanog sadržaja i oglasa korisnicima.', 31 | 'cookies_used_title' => 'Kolačići korišteni u ovoj aplikaciji', 32 | 'cookies_used_text_1' => 'Sljedeći kolačići se koriste u ovoj aplikaciji. Molimo odaberite koje kolačiće želite dopustiti.', 33 | 'hours' => '{1} :count sat|[2,Inf] :count sati', 34 | 'days' => '{1} :count dan|[2,Inf] :count dana', 35 | 'years' => '{1} :count godina|[2,Inf] :count godina', 36 | 'minutes' => '{1} :count minuta|[2,Inf] :count minuta', 37 | 'months' => '{1} :count mjesec|[2,Inf] :count mjeseci', 38 | 'cookie_cookies_consent_description' => 'Ovaj kolačić postavlja GDPR Cookie Consent plugin i koristi se za pohranu toga je li korisnik pristao na korištenje kolačića ili ne. Ne pohranjuje osobne podatke.', 39 | 'cookie_xsrf_token_description' => 'Ovaj kolačić postavlja Laravel kako bi spriječio Cross-Site Request Forgery (CSRF) napade.', 40 | 'cookie_laravel_session_description' => 'Ovaj kolačić postavlja Laravel kako bi identificirao sesiju korisnika.', 41 | 'description_label' => 'Opis', 42 | 'duration_label' => 'Trajanje', 43 | 'policy_label' => 'Link na politiku', 44 | 'strictly_necessary' => 'Strogo potrebno', 45 | 'performance' => 'Performanse', 46 | 'targeting' => 'Ciljanje', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Pročitajte više', 49 | 'read_less' => 'Pročitajte manje', 50 | 'selection_saved_message' => 'Izbor pristanka za kolačiće je spremljen', 51 | 'cookies_settings' => 'Postavke kolačića', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/hu/messages.php: -------------------------------------------------------------------------------- 1 | 'Cookie-k hozzájárulás', 5 | 'description' => 'A cookie-kat használjuk weboldalunk és szolgáltatásunk optimalizálására. Kiválaszthatja, hogy mely kategóriákhoz járul hozzá.', 6 | 'please_visit_1' => 'A cookie-król részletesebb információkért látogasson el a', 7 | 'cookie_policy_page' => 'cookie-kra vonatkozó irányelvek oldalunkra', 8 | 'accept_selection_btn' => 'Kiválasztottak elfogadása', 9 | 'customise_btn' => 'Testreszabás', 10 | 'accept_all_btn' => 'Összes elfogadása', 11 | 'reject_optional_btn' => 'Opcionális elutasítása', 12 | 'accept_additional_cookies_btn' => 'További cookie-k elfogadása', 13 | 'reject_additional_cookies_btn' => 'További cookie-k elutasítása', 14 | 'cookie_policy_title' => 'Cookie-kra vonatkozó irányelvek', 15 | 'cookie_policy_text_1' => 'Ez a cookie-kra vonatkozó irányelvek oldala. Itt olvashat a alkalmazásban használt cookie-król, és kiválaszthatja, mely cookie-kat engedélyezi.', 16 | 'what_are_cookies_title' => 'Mik azok a cookie-k?', 17 | 'what_are_cookies_text_1' => 'A cookie egy kis szöveges fájl, amelyet egy weboldal vagy alkalmazás küld a felhasználó eszközére. Ez a szöveges fájl információkat gyűjt a felhasználó tevékenységeiről az Ön webhelyén.', 18 | 'what_are_cookies_text_2' => 'A cookie-k hasznos információkat tárolnak a felhasználói élmény javítása érdekében az Ön webhelyén, és esetleg javítják az Ön képességét, hogy később újra kapcsolatba lépjen velük.', 19 | 'what_are_cookies_text_3' => 'A cookie-k által gyűjtött információk tartalmazhatják a felhasználó által preferált nyelvet, eszközbeállításokat, böngészési tevékenységeket és egyéb hasznos információkat.', 20 | 'what_are_cookies_text_4' => 'Az olyan webhelyek, mint a Google, cookie-kat használnak, hogy a hirdetések relevánsabbak legyenek a felhasználóik számára. Emellett nyomon követik az elemzéseket, például az oldal látogatóinak számát, a látogatók helyeit, keresési preferenciákat stb.', 21 | 'what_are_cookies_text_5' => 'A cookie-k nem károsak az Ön eszközére. Nem vírusok vagy rosszindulatú programok. Csak szöveges fájlok, amelyeket bármikor törölhet.', 22 | 'use_of_cookies_title' => 'A cookie-k használata', 23 | 'use_of_cookies_text_1' => 'A cookie-k általában az alábbi funkciók egyikét vagy mindegyikét végzik:', 24 | 'use_of_cookies_text_2' => 'Hitelesítés: A cookie-k segítenek a webhelyeknek meghatározni, hogy a felhasználó be van-e jelentkezve, majd a megfelelő élményt és funkciókat biztosítják az egyedi felhasználónak.', 25 | 'use_of_cookies_text_3' => 'Biztonság: A cookie-k segítenek a biztonsági intézkedések érvényesítésében egy webhelyen. Emellett segítenek azonosítani a szokatlan és gyanús tevékenységeket.', 26 | 'use_of_cookies_text_4' => 'Hirdetés: A cookie-k jobb hirdetési élményt nyújtanak mind a felhasználók, mind a hirdetők számára. A cookie-k segítenek a hirdetőknek kapcsolatba lépni azokkal a felhasználókkal, akik a leginkább érdeklődnek termékeik iránt a felhasználó böngészési előzményei alapján.', 27 | 'use_of_cookies_text_5' => 'Teljesítmény: A cookie-k segítenek a webhelyének megtanulni, hogyan működnek a szolgáltatások különböző emberek számára, és hogyan irányítsák a forgalmat a szerverek között.', 28 | 'use_of_cookies_text_6' => 'Elemzés és kutatás: A webhelyek és alkalmazások cookie-kat használnak annak megismerésére, hogy mely szolgáltatásaikat használják a leggyakrabban. Ez segít meghatározni, mit kell javítani, eltávolítani és változatlanul hagyni.', 29 | 'use_of_cookies_text_7' => 'Preferenciák: A cookie-k segítenek a webhelyeknek megjegyezni a felhasználói beállításokat, például a nyelvet, a helyet és egyéb beállításokat.', 30 | 'use_of_cookies_text_8' => 'Néhány cookie több webhelyen keresztül gyűjthet adatokat a felhasználói viselkedési profilok létrehozásához. Ezeket a profilokat ezután célzott tartalom és hirdetések küldésére használják a felhasználóknak.', 31 | 'cookies_used_title' => 'Az alkalmazásban használt cookie-k', 32 | 'cookies_used_text_1' => 'Az alábbi cookie-kat használják ebben az alkalmazásban. Kérjük, válassza ki, mely cookie-kat szeretné engedélyezni.', 33 | 'hours' => '{1} :count óra|[2,Inf] :count óra', 34 | 'days' => '{1} :count nap|[2,Inf] :count nap', 35 | 'years' => '{1} :count év|[2,Inf] :count év', 36 | 'minutes' => '{1} :count perc|[2,Inf] :count perc', 37 | 'months' => '{1} :count hónap|[2,Inf] :count hónap', 38 | 'cookie_cookies_consent_description' => 'Ezt a cookie-t a GDPR Cookie Consent plugin állítja be, és arra használják, hogy tárolják, hogy a felhasználó hozzájárult-e a cookie-k használatához vagy sem. Nem tárol személyes adatokat.', 39 | 'cookie_xsrf_token_description' => 'Ezt a cookie-t a Laravel állítja be, hogy megakadályozza a Cross-Site Request Forgery (CSRF) támadásokat.', 40 | 'cookie_laravel_session_description' => 'Ezt a cookie-t a Laravel állítja be, hogy azonosítsa a felhasználó munkamenet példányát.', 41 | 'description_label' => 'Leírás', 42 | 'duration_label' => 'Időtartam', 43 | 'policy_label' => 'Irányelv link', 44 | 'strictly_necessary' => 'Szigorúan szükséges', 45 | 'performance' => 'Teljesítmény', 46 | 'targeting' => 'Célzás', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'További információ', 49 | 'read_less' => 'Kevesebb információ', 50 | 'selection_saved_message' => 'A cookie-k hozzájárulási választása mentve', 51 | 'cookies_settings' => 'Cookie beállítások', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/it/messages.php: -------------------------------------------------------------------------------- 1 | 'Consenso sui Cookie', 5 | 'description' => 'Utilizziamo i cookie per ottimizzare il nostro sito web e il nostro servizio. Puoi scegliere a quali categorie dare il tuo consenso.', 6 | 'please_visit_1' => 'Per informazioni più dettagliate sui cookie, visita la nostra', 7 | 'cookie_policy_page' => 'pagina della politica sui cookie', 8 | 'accept_selection_btn' => 'Accetta Selezione', 9 | 'customise_btn' => 'Personalizza', 10 | 'accept_all_btn' => 'Accetta Tutto', 11 | 'reject_optional_btn' => 'Rifiuta Opzionali', 12 | 'accept_additional_cookies_btn' => 'Accetta cookie aggiuntivi', 13 | 'reject_additional_cookies_btn' => 'Rifiuta cookie aggiuntivi', 14 | 'cookie_policy_title' => 'Politica sui Cookie', 15 | 'cookie_policy_text_1' => 'Questa è la pagina della politica sui cookie. Qui puoi leggere sui cookie utilizzati nell\'applicazione e scegliere quali cookie permettere.', 16 | 'what_are_cookies_title' => 'Cosa sono i cookie?', 17 | 'what_are_cookies_text_1' => 'Un cookie è un piccolo file di testo che un sito web o un\'app invia al dispositivo di un utente. Questo file di testo raccoglie informazioni sulle azioni dell\'utente sul tuo sito web.', 18 | 'what_are_cookies_text_2' => 'I cookie memorizzano informazioni utili per migliorare l\'esperienza dell\'utente sul tuo sito web e possibilmente migliorare la tua capacità di riconnetterti con loro in seguito.', 19 | 'what_are_cookies_text_3' => 'Le informazioni raccolte dai cookie possono includere la lingua preferita dell\'utente, le impostazioni del dispositivo, le attività di navigazione e altre informazioni utili.', 20 | 'what_are_cookies_text_4' => 'Siti web come Google utilizzano i cookie per rendere gli annunci più pertinenti per i loro utenti. Tracciano anche analisi come il numero di visitatori su una pagina, le posizioni dei visitatori, le preferenze di ricerca, ecc.', 21 | 'what_are_cookies_text_5' => 'I cookie non sono dannosi per il tuo dispositivo. Non sono virus o malware. Sono solo file di testo che possono essere eliminati in qualsiasi momento.', 22 | 'use_of_cookies_title' => 'Uso dei cookie', 23 | 'use_of_cookies_text_1' => 'I cookie sono generalmente utilizzati per eseguire una o tutte le seguenti funzioni:', 24 | 'use_of_cookies_text_2' => 'Autenticazione: I cookie aiutano i siti web a determinare se un utente è connesso e quindi a fornire l\'esperienza e le funzionalità corrette a quell\'utente unico.', 25 | 'use_of_cookies_text_3' => 'Sicurezza: I cookie aiutano a far rispettare le misure di sicurezza su un sito web. Aiutano anche a rilevare attività insolite e sospette.', 26 | 'use_of_cookies_text_4' => 'Pubblicità: I cookie forniscono una migliore esperienza pubblicitaria sia per gli utenti che per gli inserzionisti. I cookie aiutano a collegare gli inserzionisti con gli utenti che sono più interessati ai loro prodotti in base alla cronologia di navigazione dell\'utente.', 27 | 'use_of_cookies_text_5' => 'Prestazioni: I cookie aiutano il tuo sito web a imparare come funzionano i servizi per persone diverse e come indirizzare il traffico tra i server.', 28 | 'use_of_cookies_text_6' => 'Analisi e Ricerca: I siti web e le app utilizzano i cookie per sapere quali dei loro servizi sono più utilizzati. Questo aiuta a determinare cosa deve essere migliorato, rimosso e mantenuto uguale.', 29 | 'use_of_cookies_text_7' => 'Preferenze: I cookie aiutano i siti web a ricordare le preferenze degli utenti, come la lingua, la posizione e altre impostazioni.', 30 | 'use_of_cookies_text_8' => 'Alcuni cookie possono raccogliere dati da più siti web per creare profili di comportamento degli utenti. Questi profili vengono poi utilizzati per inviare contenuti e pubblicità mirati agli utenti.', 31 | 'cookies_used_title' => 'Cookie utilizzati in questa applicazione', 32 | 'cookies_used_text_1' => 'I seguenti cookie sono utilizzati in questa applicazione. Si prega di scegliere quali cookie permettere.', 33 | 'hours' => '{1} :count ora|[2,Inf] :count ore', 34 | 'days' => '{1} :count giorno|[2,Inf] :count giorni', 35 | 'years' => '{1} :count anno|[2,Inf] :count anni', 36 | 'minutes' => '{1} :count minuto|[2,Inf] :count minuti', 37 | 'months' => '{1} :count mese|[2,Inf] :count mesi', 38 | 'cookie_cookies_consent_description' => 'Questo cookie è impostato dal plugin GDPR Cookie Consent e viene utilizzato per memorizzare se l\'utente ha acconsentito o meno all\'utilizzo dei cookie. Non memorizza dati personali.', 39 | 'cookie_xsrf_token_description' => 'Questo cookie è impostato da Laravel per prevenire attacchi di falsificazione di richiesta tra siti (CSRF).', 40 | 'cookie_laravel_session_description' => 'Questo cookie è impostato da Laravel per identificare un\'istanza di sessione per l\'utente.', 41 | 'description_label' => 'Descrizione', 42 | 'duration_label' => 'Durata', 43 | 'policy_label' => 'Link alla politica', 44 | 'strictly_necessary' => 'Strettamente Necessario', 45 | 'performance' => 'Prestazioni', 46 | 'targeting' => 'Targeting', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Leggi di più', 49 | 'read_less' => 'Leggi meno', 50 | 'selection_saved_message' => 'Selezione del consenso sui cookie salvata', 51 | 'cookies_settings' => 'Impostazioni dei cookie', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/lt/messages.php: -------------------------------------------------------------------------------- 1 | 'Slapukų sutikimas', 5 | 'description' => 'Mes naudojame slapukus, kad optimizuotume savo svetainę ir paslaugą. Galite pasirinkti, kurioms kategorijoms sutinkate.', 6 | 'please_visit_1' => 'Daugiau informacijos apie slapukus rasite mūsų', 7 | 'cookie_policy_page' => 'slapukų politikos puslapyje', 8 | 'accept_selection_btn' => 'Priimti pasirinktus', 9 | 'customise_btn' => 'Prisitaikyti', 10 | 'accept_all_btn' => 'Priimti visus', 11 | 'reject_optional_btn' => 'Atmesti pasirinktinius', 12 | 'accept_additional_cookies_btn' => 'Priimti papildomus slapukus', 13 | 'reject_additional_cookies_btn' => 'Atmesti papildomus slapukus', 14 | 'cookie_policy_title' => 'Slapukų politika', 15 | 'cookie_policy_text_1' => 'Tai yra slapukų politikos puslapis. Čia galite perskaityti apie programoje naudojamus slapukus ir pasirinkti, kuriuos slapukus leisti.', 16 | 'what_are_cookies_title' => 'Kas yra slapukai?', 17 | 'what_are_cookies_text_1' => 'Slapukas yra mažas teksto failas, kurį svetainė ar programa siunčia vartotojo įrenginiui. Šis teksto failas renka informaciją apie vartotojo veiksmus jūsų svetainėje.', 18 | 'what_are_cookies_text_2' => 'Slapukai saugo naudingą informaciją, kad pagerintų vartotojų patirtį jūsų svetainėje ir galbūt pagerintų jūsų gebėjimą vėliau su jais susisiekti.', 19 | 'what_are_cookies_text_3' => 'Slapukų surinkta informacija gali apimti vartotojo pasirinktą kalbą, įrenginio nustatymus, naršymo veiklą ir kitą naudingą informaciją.', 20 | 'what_are_cookies_text_4' => 'Tokios svetainės kaip „Google“ naudoja slapukus, kad reklamos būtų labiau susijusios su jų vartotojais. Jie taip pat seka analizę, pvz., lankytojų skaičių puslapyje, lankytojų vietas, paieškos nuostatas ir pan.', 21 | 'what_are_cookies_text_5' => 'Slapukai nėra kenksmingi jūsų įrenginiui. Jie nėra virusai ar kenkėjiška programinė įranga. Tai tik teksto failai, kuriuos galima bet kada ištrinti.', 22 | 'use_of_cookies_title' => 'Slapukų naudojimas', 23 | 'use_of_cookies_text_1' => 'Slapukai paprastai naudojami atlikti vieną ar visas šias funkcijas:', 24 | 'use_of_cookies_text_2' => 'Autentifikavimas: Slapukai padeda svetainėms nustatyti, ar vartotojas yra prisijungęs, ir tada pateikti tinkamą patirtį ir funkcijas tam unikaliam vartotojui.', 25 | 'use_of_cookies_text_3' => 'Saugumas: Slapukai padeda įgyvendinti saugumo priemones svetainėje. Jie taip pat padeda aptikti neįprastą ir įtartiną veiklą.', 26 | 'use_of_cookies_text_4' => 'Reklama: Slapukai suteikia geresnę reklamos patirtį tiek vartotojams, tiek reklamuotojams. Slapukai padeda reklamuotojams susisiekti su vartotojais, kurie labiausiai domisi jų produktais, remiantis vartotojo naršymo istorija.', 27 | 'use_of_cookies_text_5' => 'Veikimas: Slapukai padeda jūsų svetainei sužinoti, kaip paslaugos veikia skirtingiems žmonėms ir kaip nukreipti srautą tarp serverių.', 28 | 'use_of_cookies_text_6' => 'Analizė ir tyrimai: Svetainės ir programos naudoja slapukus, kad sužinotų, kurios jų paslaugos yra dažniausiai naudojamos. Tai padeda nustatyti, ką reikia tobulinti, ką pašalinti ir ką palikti nepakitusį.', 29 | 'use_of_cookies_text_7' => 'Nuostatos: Slapukai padeda svetainėms prisiminti vartotojo nuostatas, pvz., kalbą, vietą ir kitus nustatymus.', 30 | 'use_of_cookies_text_8' => 'Kai kurie slapukai gali rinkti duomenis iš kelių svetainių, kad sukurtų vartotojų elgesio profilius. Šie profiliai naudojami tiksliniam turiniui ir reklamai siųsti vartotojams.', 31 | 'cookies_used_title' => 'Šioje programoje naudojami slapukai', 32 | 'cookies_used_text_1' => 'Šioje programoje naudojami šie slapukai. Pasirinkite, kuriuos slapukus norite leisti.', 33 | 'hours' => '{1} :count valanda|[2,Inf] :count valandos', 34 | 'days' => '{1} :count diena|[2,Inf] :count dienos', 35 | 'years' => '{1} :count metai|[2,Inf] :count metai', 36 | 'minutes' => '{1} :count minutė|[2,Inf] :count minutės', 37 | 'months' => '{1} :count mėnuo|[2,Inf] :count mėnesiai', 38 | 'cookie_cookies_consent_description' => 'Šį slapuką nustato GDPR Cookie Consent įskiepis ir jis naudojamas saugoti, ar vartotojas sutiko su slapukų naudojimu, ar ne. Jis nesaugo jokių asmens duomenų.', 39 | 'cookie_xsrf_token_description' => 'Šį slapuką nustato Laravel, kad būtų išvengta Cross-Site Request Forgery (CSRF) atakų.', 40 | 'cookie_laravel_session_description' => 'Šį slapuką nustato Laravel, kad būtų identifikuota vartotojo sesijos instancija.', 41 | 'description_label' => 'Aprašymas', 42 | 'duration_label' => 'Trukmė', 43 | 'policy_label' => 'Politikos nuoroda', 44 | 'strictly_necessary' => 'Griežtai būtina', 45 | 'performance' => 'Veikimas', 46 | 'targeting' => 'Taikymas', 47 | 'marketing' => 'Rinkodara', 48 | 'read_more' => 'Skaityti daugiau', 49 | 'read_less' => 'Skaityti mažiau', 50 | 'selection_saved_message' => 'Slapukų sutikimo pasirinkimas išsaugotas', 51 | 'cookies_settings' => 'Slapukų nustatymai', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/lv/messages.php: -------------------------------------------------------------------------------- 1 | 'Sīkdatņu piekrišana', 5 | 'description' => 'Mēs izmantojam sīkdatnes, lai optimizētu mūsu vietni un pakalpojumu. Jūs varat izvēlēties, kurām kategorijām piekrītat.', 6 | 'please_visit_1' => 'Lai iegūtu sīkāku informāciju par sīkdatnēm, lūdzu, apmeklējiet mūsu', 7 | 'cookie_policy_page' => 'sīkdatņu politikas lapu', 8 | 'accept_selection_btn' => 'Pieņemt izvēlēto', 9 | 'customise_btn' => 'Pielāgot', 10 | 'accept_all_btn' => 'Pieņemt visu', 11 | 'reject_optional_btn' => 'Noraidīt izvēles', 12 | 'accept_additional_cookies_btn' => 'Pieņemt papildu sīkdatnes', 13 | 'reject_additional_cookies_btn' => 'Noraidīt papildu sīkdatnes', 14 | 'cookie_policy_title' => 'Sīkdatņu politika', 15 | 'cookie_policy_text_1' => 'Šī ir sīkdatņu politikas lapa. Šeit jūs varat izlasīt par lietotajām sīkdatnēm un izvēlēties, kuras sīkdatnes atļaut.', 16 | 'what_are_cookies_title' => 'Kas ir sīkdatnes?', 17 | 'what_are_cookies_text_1' => 'Sīkdatne ir neliels teksta fails, ko vietne vai lietotne nosūta lietotāja ierīcei. Šis teksta fails apkopo informāciju par lietotāja darbībām jūsu vietnē.', 18 | 'what_are_cookies_text_2' => 'Sīkdatnes glabā noderīgu informāciju, lai uzlabotu lietotāju pieredzi jūsu vietnē un, iespējams, uzlabotu jūsu spēju vēlāk ar viņiem sazināties.', 19 | 'what_are_cookies_text_3' => 'Sīkdatņu apkopotā informācija var ietvert lietotāja izvēlēto valodu, ierīces iestatījumus, pārlūkošanas darbības un citu noderīgu informāciju.', 20 | 'what_are_cookies_text_4' => 'Tādas vietnes kā Google izmanto sīkdatnes, lai padarītu reklāmas atbilstošākas saviem lietotājiem. Viņi arī seko analītikai, piemēram, lapas apmeklētāju skaitam, apmeklētāju atrašanās vietām, meklēšanas preferencēm utt.', 21 | 'what_are_cookies_text_5' => 'Sīkdatnes nav kaitīgas jūsu ierīcei. Tās nav vīrusi vai ļaunprātīga programmatūra. Tās ir tikai teksta faili, kurus var izdzēst jebkurā laikā.', 22 | 'use_of_cookies_title' => 'Sīkdatņu izmantošana', 23 | 'use_of_cookies_text_1' => 'Sīkdatnes parasti tiek izmantotas, lai veiktu vienu vai visas no šīm funkcijām:', 24 | 'use_of_cookies_text_2' => 'Autentifikācija: Sīkdatnes palīdz vietnēm noteikt, vai lietotājs ir pieteicies, un pēc tam nodrošina pareizo pieredzi un funkcijas šim unikālajam lietotājam.', 25 | 'use_of_cookies_text_3' => 'Drošība: Sīkdatnes palīdz ieviest drošības pasākumus vietnē. Tās arī palīdz atklāt neparastas un aizdomīgas darbības.', 26 | 'use_of_cookies_text_4' => 'Reklāma: Sīkdatnes nodrošina labāku reklāmas pieredzi gan lietotājiem, gan reklāmdevējiem. Sīkdatnes palīdz reklāmdevējiem sazināties ar lietotājiem, kuri visvairāk interesējas par viņu produktiem, pamatojoties uz lietotāja pārlūkošanas vēsturi.', 27 | 'use_of_cookies_text_5' => 'Veiktspēja: Sīkdatnes palīdz jūsu vietnei uzzināt, kā pakalpojumi darbojas dažādiem cilvēkiem un kā novirzīt trafiku starp serveriem.', 28 | 'use_of_cookies_text_6' => 'Analītika un izpēte: Vietnes un lietotnes izmanto sīkdatnes, lai uzzinātu, kuri no viņu pakalpojumiem tiek izmantoti visvairāk. Tas palīdz noteikt, ko uzlabot, ko noņemt un ko atstāt nemainītu.', 29 | 'use_of_cookies_text_7' => 'Preferences: Sīkdatnes palīdz vietnēm atcerēties lietotāja preferences, piemēram, valodu, atrašanās vietu un citus iestatījumus.', 30 | 'use_of_cookies_text_8' => 'Dažas sīkdatnes var apkopot datus no vairākām vietnēm, lai izveidotu lietotāju uzvedības profilus. Šie profili tiek izmantoti, lai nosūtītu lietotājiem mērķētu saturu un reklāmas.', 31 | 'cookies_used_title' => 'Šajā lietotnē izmantotās sīkdatnes', 32 | 'cookies_used_text_1' => 'Šajā lietotnē tiek izmantotas šādas sīkdatnes. Lūdzu, izvēlieties, kuras sīkdatnes vēlaties atļaut.', 33 | 'hours' => '{1} :count stunda|[2,Inf] :count stundas', 34 | 'days' => '{1} :count diena|[2,Inf] :count dienas', 35 | 'years' => '{1} :count gads|[2,Inf] :count gadi', 36 | 'minutes' => '{1} :count minūte|[2,Inf] :count minūtes', 37 | 'months' => '{1} :count mēnesis|[2,Inf] :count mēneši', 38 | 'cookie_cookies_consent_description' => 'Šo sīkdatni iestata GDPR Cookie Consent spraudnis, un to izmanto, lai saglabātu, vai lietotājs ir piekritis sīkdatņu izmantošanai vai nē. Tā neuzglabā nekādus personas datus.', 39 | 'cookie_xsrf_token_description' => 'Šo sīkdatni iestata Laravel, lai novērstu Cross-Site Request Forgery (CSRF) uzbrukumus.', 40 | 'cookie_laravel_session_description' => 'Šo sīkdatni iestata Laravel, lai identificētu lietotāja sesijas instanci.', 41 | 'description_label' => 'Apraksts', 42 | 'duration_label' => 'Ilgums', 43 | 'policy_label' => 'Politikas saite', 44 | 'strictly_necessary' => 'Stingri nepieciešams', 45 | 'performance' => 'Veiktspēja', 46 | 'targeting' => 'Mērķēšana', 47 | 'marketing' => 'Mārketings', 48 | 'read_more' => 'Lasīt vairāk', 49 | 'read_less' => 'Lasīt mazāk', 50 | 'selection_saved_message' => 'Sīkdatņu piekrišanas izvēle saglabāta', 51 | 'cookies_settings' => 'Sīkdatņu iestatījumi', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/mt/messages.php: -------------------------------------------------------------------------------- 1 | 'Slapukų sutikimas', 5 | 'description' => 'Mes naudojame slapukus, kad optimizuotume savo svetainę ir paslaugą. Galite pasirinkti, kurioms kategorijoms sutinkate.', 6 | 'please_visit_1' => 'Daugiau informacijos apie slapukus rasite mūsų', 7 | 'cookie_policy_page' => 'slapukų politikos puslapyje', 8 | 'accept_selection_btn' => 'Priimti pasirinktus', 9 | 'customise_btn' => 'Prisitaikyti', 10 | 'accept_all_btn' => 'Priimti visus', 11 | 'reject_optional_btn' => 'Atmesti pasirinktinius', 12 | 'accept_additional_cookies_btn' => 'Priimti papildomus slapukus', 13 | 'reject_additional_cookies_btn' => 'Atmesti papildomus slapukus', 14 | 'cookie_policy_title' => 'Slapukų politika', 15 | 'cookie_policy_text_1' => 'Tai yra slapukų politikos puslapis. Čia galite perskaityti apie programoje naudojamus slapukus ir pasirinkti, kuriuos slapukus leisti.', 16 | 'what_are_cookies_title' => 'Kas yra slapukai?', 17 | 'what_are_cookies_text_1' => 'Slapukas yra mažas teksto failas, kurį svetainė ar programa siunčia vartotojo įrenginiui. Šis teksto failas renka informaciją apie vartotojo veiksmus jūsų svetainėje.', 18 | 'what_are_cookies_text_2' => 'Slapukai saugo naudingą informaciją, kad pagerintų vartotojų patirtį jūsų svetainėje ir galbūt pagerintų jūsų gebėjimą vėliau su jais susisiekti.', 19 | 'what_are_cookies_text_3' => 'Slapukų surinkta informacija gali apimti vartotojo pasirinktą kalbą, įrenginio nustatymus, naršymo veiklą ir kitą naudingą informaciją.', 20 | 'what_are_cookies_text_4' => 'Tokios svetainės kaip „Google“ naudoja slapukus, kad reklamos būtų labiau susijusios su jų vartotojais. Jie taip pat seka analizę, pvz., lankytojų skaičių puslapyje, lankytojų vietas, paieškos nuostatas ir pan.', 21 | 'what_are_cookies_text_5' => 'Slapukai nėra kenksmingi jūsų įrenginiui. Jie nėra virusai ar kenkėjiška programinė įranga. Tai tik teksto failai, kuriuos galima bet kada ištrinti.', 22 | 'use_of_cookies_title' => 'Slapukų naudojimas', 23 | 'use_of_cookies_text_1' => 'Slapukai paprastai naudojami atlikti vieną ar visas šias funkcijas:', 24 | 'use_of_cookies_text_2' => 'Autentifikavimas: Slapukai padeda svetainėms nustatyti, ar vartotojas yra prisijungęs, ir tada pateikti tinkamą patirtį ir funkcijas tam unikaliam vartotojui.', 25 | 'use_of_cookies_text_3' => 'Saugumas: Slapukai padeda įgyvendinti saugumo priemones svetainėje. Jie taip pat padeda aptikti neįprastą ir įtartiną veiklą.', 26 | 'use_of_cookies_text_4' => 'Reklama: Slapukai suteikia geresnę reklamos patirtį tiek vartotojams, tiek reklamuotojams. Slapukai padeda reklamuotojams susisiekti su vartotojais, kurie labiausiai domisi jų produktais, remiantis vartotojo naršymo istorija.', 27 | 'use_of_cookies_text_5' => 'Veikimas: Slapukai padeda jūsų svetainei sužinoti, kaip paslaugos veikia skirtingiems žmonėms ir kaip nukreipti srautą tarp serverių.', 28 | 'use_of_cookies_text_6' => 'Analizė ir tyrimai: Svetainės ir programos naudoja slapukus, kad sužinotų, kurios jų paslaugos yra dažniausiai naudojamos. Tai padeda nustatyti, ką reikia tobulinti, ką pašalinti ir ką palikti nepakitusį.', 29 | 'use_of_cookies_text_7' => 'Nuostatos: Slapukai padeda svetainėms prisiminti vartotojo nuostatas, pvz., kalbą, vietą ir kitus nustatymus.', 30 | 'use_of_cookies_text_8' => 'Kai kurie slapukai gali rinkti duomenis iš kelių svetainių, kad sukurtų vartotojų elgesio profilius. Šie profiliai naudojami tiksliniam turiniui ir reklamai siųsti vartotojams.', 31 | 'cookies_used_title' => 'Šioje programoje naudojami slapukai', 32 | 'cookies_used_text_1' => 'Šioje programoje naudojami šie slapukai. Pasirinkite, kuriuos slapukus norite leisti.', 33 | 'hours' => '{1} :count valanda|[2,Inf] :count valandos', 34 | 'days' => '{1} :count diena|[2,Inf] :count dienos', 35 | 'years' => '{1} :count metai|[2,Inf] :count metai', 36 | 'minutes' => '{1} :count minutė|[2,Inf] :count minutės', 37 | 'months' => '{1} :count mėnuo|[2,Inf] :count mėnesiai', 38 | 'cookie_cookies_consent_description' => 'Šį slapuką nustato GDPR Cookie Consent įskiepis ir jis naudojamas saugoti, ar vartotojas sutiko su slapukų naudojimu, ar ne. Jis nesaugo jokių asmens duomenų.', 39 | 'cookie_xsrf_token_description' => 'Šį slapuką nustato Laravel, kad būtų išvengta Cross-Site Request Forgery (CSRF) atakų.', 40 | 'cookie_laravel_session_description' => 'Šį slapuką nustato Laravel, kad būtų identifikuota vartotojo sesijos instancija.', 41 | 'description_label' => 'Aprašymas', 42 | 'duration_label' => 'Trukmė', 43 | 'policy_label' => 'Politikos nuoroda', 44 | 'strictly_necessary' => 'Griežtai būtina', 45 | 'performance' => 'Veikimas', 46 | 'targeting' => 'Taikymas', 47 | 'marketing' => 'Rinkodara', 48 | 'read_more' => 'Skaityti daugiau', 49 | 'read_less' => 'Skaityti mažiau', 50 | 'selection_saved_message' => 'Slapukų sutikimo pasirinkimas išsaugotas', 51 | 'cookies_settings' => 'Slapukų nustatymai', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/nl/messages.php: -------------------------------------------------------------------------------- 1 | 'Cookies Toestemming', 5 | 'description' => 'We gebruiken cookies om onze website en onze service te optimaliseren. U kunt kiezen voor welke categorieën u toestemming geeft.', 6 | 'please_visit_1' => 'Voor meer gedetailleerde informatie over cookies, bezoek onze', 7 | 'cookie_policy_page' => 'cookiebeleid pagina', 8 | 'accept_selection_btn' => 'Geselecteerde Accepteren', 9 | 'customise_btn' => 'Aanpassen', 10 | 'accept_all_btn' => 'Alles Accepteren', 11 | 'reject_optional_btn' => 'Optionele Weigeren', 12 | 'accept_additional_cookies_btn' => 'Aanvullende cookies accepteren', 13 | 'reject_additional_cookies_btn' => 'Aanvullende cookies weigeren', 14 | 'cookie_policy_title' => 'Cookiebeleid', 15 | 'cookie_policy_text_1' => 'Dit is de cookiebeleid pagina. Hier kunt u lezen over de cookies die in de applicatie worden gebruikt en selecteren welke cookies u wilt toestaan.', 16 | 'what_are_cookies_title' => 'Wat zijn cookies?', 17 | 'what_are_cookies_text_1' => 'Een cookie is een klein tekstbestand dat een website of app naar het apparaat van een gebruiker stuurt. Dit tekstbestand verzamelt informatie over gebruikersacties op uw site.', 18 | 'what_are_cookies_text_2' => 'Cookies slaan nuttige informatie op om de gebruikerservaring op uw site te verbeteren en mogelijk uw vermogen om later opnieuw contact met hen op te nemen te verbeteren.', 19 | 'what_are_cookies_text_3' => 'Informatie verzameld door cookies kan de voorkeurstaal van de gebruiker, apparaatinstellingen, browse-activiteiten en andere nuttige informatie omvatten.', 20 | 'what_are_cookies_text_4' => 'Websites zoals Google gebruiken cookies om advertenties relevanter te maken voor hun gebruikers. Ze volgen ook analyses zoals het tellen van het aantal bezoekers op een pagina, locaties van bezoekers, zoekvoorkeuren enzovoort.', 21 | 'what_are_cookies_text_5' => 'Cookies zijn niet schadelijk voor uw apparaat. Ze zijn geen virussen of malware. Het zijn gewoon tekstbestanden die op elk moment kunnen worden verwijderd.', 22 | 'use_of_cookies_title' => 'Gebruik van cookies', 23 | 'use_of_cookies_text_1' => 'Cookies worden over het algemeen gebruikt om een of alle van de volgende functies uit te voeren:', 24 | 'use_of_cookies_text_2' => 'Authenticatie: Cookies helpen websites te bepalen of een gebruiker is ingelogd en leveren vervolgens de juiste ervaring en functies aan die unieke gebruiker.', 25 | 'use_of_cookies_text_3' => 'Beveiliging: Cookies helpen bij het afdwingen van beveiligingsmaatregelen op een website. Ze helpen ook bij het detecteren van ongebruikelijke en verdachte activiteiten.', 26 | 'use_of_cookies_text_4' => 'Adverteren: Cookies leveren een betere advertentie-ervaring voor zowel gebruikers als adverteerders. Cookies helpen adverteerders om in contact te komen met gebruikers die het meest geïnteresseerd zijn in hun producten op basis van de browsegeschiedenis van de gebruiker.', 27 | 'use_of_cookies_text_5' => 'Prestaties: Cookies helpen uw website te leren hoe diensten werken voor verschillende mensen en hoe verkeer tussen servers moet worden gerouteerd.', 28 | 'use_of_cookies_text_6' => 'Analyse en Onderzoek: Websites en apps gebruiken cookies om te leren welke van hun diensten het meest worden gebruikt. Dit helpt te bepalen wat moet worden verbeterd, verwijderd en hetzelfde moet blijven.', 29 | 'use_of_cookies_text_7' => 'Voorkeuren: Cookies helpen websites om gebruikersvoorkeuren zoals taal, locatie en andere instellingen te onthouden.', 30 | 'use_of_cookies_text_8' => 'Sommige cookies kunnen gegevens verzamelen over meerdere websites om gebruikersgedragsprofielen te maken. Deze profielen worden vervolgens gebruikt om gerichte inhoud en advertenties naar gebruikers te sturen.', 31 | 'cookies_used_title' => 'Cookies gebruikt in deze applicatie', 32 | 'cookies_used_text_1' => 'De volgende cookies worden in deze applicatie gebruikt. Selecteer welke cookies u wilt toestaan.', 33 | 'hours' => '{1} :count uur|[2,Inf] :count uren', 34 | 'days' => '{1} :count dag|[2,Inf] :count dagen', 35 | 'years' => '{1} :count jaar|[2,Inf] :count jaren', 36 | 'minutes' => '{1} :count minuut|[2,Inf] :count minuten', 37 | 'months' => '{1} :count maand|[2,Inf] :count maanden', 38 | 'cookie_cookies_consent_description' => 'Deze cookie wordt ingesteld door de GDPR Cookie Consent plugin en wordt gebruikt om op te slaan of de gebruiker al dan niet toestemming heeft gegeven voor het gebruik van cookies. Het slaat geen persoonlijke gegevens op.', 39 | 'cookie_xsrf_token_description' => 'Deze cookie wordt ingesteld door Laravel om Cross-Site Request Forgery (CSRF) aanvallen te voorkomen.', 40 | 'cookie_laravel_session_description' => 'Deze cookie wordt ingesteld door Laravel om een sessie-instantie voor de gebruiker te identificeren.', 41 | 'description_label' => 'Beschrijving', 42 | 'duration_label' => 'Duur', 43 | 'policy_label' => 'Beleid link', 44 | 'strictly_necessary' => 'Strikt Noodzakelijk', 45 | 'performance' => 'Prestaties', 46 | 'targeting' => 'Targeting', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Lees meer', 49 | 'read_less' => 'Lees minder', 50 | 'selection_saved_message' => 'Cookies toestemmingsselectie opgeslagen', 51 | 'cookies_settings' => 'Cookies Instellingen', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/pl/messages.php: -------------------------------------------------------------------------------- 1 | 'Zgoda na pliki cookie', 5 | 'description' => 'Używamy plików cookie, aby zoptymalizować naszą stronę internetową i nasze usługi. Możesz wybrać, na które kategorie wyrażasz zgodę.', 6 | 'please_visit_1' => 'Aby uzyskać bardziej szczegółowe informacje na temat plików cookie, odwiedź naszą', 7 | 'cookie_policy_page' => 'stronę polityki plików cookie', 8 | 'accept_selection_btn' => 'Akceptuj wybrane', 9 | 'customise_btn' => 'Dostosuj', 10 | 'accept_all_btn' => 'Akceptuj wszystkie', 11 | 'reject_optional_btn' => 'Odrzuć opcjonalne', 12 | 'accept_additional_cookies_btn' => 'Akceptuj dodatkowe pliki cookie', 13 | 'reject_additional_cookies_btn' => 'Odrzuć dodatkowe pliki cookie', 14 | 'cookie_policy_title' => 'Polityka plików cookie', 15 | 'cookie_policy_text_1' => 'To jest strona polityki plików cookie. Tutaj możesz przeczytać o plikach cookie używanych w aplikacji i wybrać, które pliki cookie zezwolić.', 16 | 'what_are_cookies_title' => 'Czym są pliki cookie?', 17 | 'what_are_cookies_text_1' => 'Plik cookie to mały plik tekstowy, który strona internetowa lub aplikacja wysyła do urządzenia użytkownika. Ten plik tekstowy zbiera informacje o działaniach użytkownika na Twojej stronie.', 18 | 'what_are_cookies_text_2' => 'Pliki cookie przechowują przydatne informacje, aby poprawić doświadczenia użytkowników na Twojej stronie i ewentualnie poprawić Twoją zdolność do ponownego połączenia się z nimi później.', 19 | 'what_are_cookies_text_3' => 'Informacje zbierane przez pliki cookie mogą obejmować preferowany język użytkownika, ustawienia urządzenia, działania przeglądania i inne przydatne informacje.', 20 | 'what_are_cookies_text_4' => 'Strony internetowe, takie jak Google, używają plików cookie, aby reklamy były bardziej odpowiednie dla ich użytkowników. Śledzą również analizy, takie jak liczba odwiedzających stronę, lokalizacje odwiedzających, preferencje wyszukiwania itp.', 21 | 'what_are_cookies_text_5' => 'Pliki cookie nie są szkodliwe dla Twojego urządzenia. Nie są to wirusy ani złośliwe oprogramowanie. To tylko pliki tekstowe, które można usunąć w dowolnym momencie.', 22 | 'use_of_cookies_title' => 'Użycie plików cookie', 23 | 'use_of_cookies_text_1' => 'Pliki cookie są zazwyczaj używane do wykonywania jednej lub wszystkich z następujących funkcji:', 24 | 'use_of_cookies_text_2' => 'Uwierzytelnianie: Pliki cookie pomagają stronom internetowym określić, czy użytkownik jest zalogowany, a następnie dostarczyć odpowiednie doświadczenia i funkcje dla tego unikalnego użytkownika.', 25 | 'use_of_cookies_text_3' => 'Bezpieczeństwo: Pliki cookie pomagają narzucić środki bezpieczeństwa na stronie internetowej. Pomagają również wykrywać nietypowe i podejrzane działania.', 26 | 'use_of_cookies_text_4' => 'Reklama: Pliki cookie zapewniają lepsze doświadczenia reklamowe zarówno dla użytkowników, jak i reklamodawców. Pliki cookie pomagają reklamodawcom łączyć się z użytkownikami, którzy są najbardziej zainteresowani ich produktami na podstawie historii przeglądania użytkownika.', 27 | 'use_of_cookies_text_5' => 'Wydajność: Pliki cookie pomagają Twojej stronie internetowej dowiedzieć się, jak usługi działają dla różnych osób i jak kierować ruch między serwerami.', 28 | 'use_of_cookies_text_6' => 'Analityka i badania: Strony internetowe i aplikacje używają plików cookie, aby dowiedzieć się, które z ich usług są najczęściej używane. Pomaga to określić, co należy poprawić, co usunąć i co pozostawić bez zmian.', 29 | 'use_of_cookies_text_7' => 'Preferencje: Pliki cookie pomagają stronom internetowym zapamiętać preferencje użytkowników, takie jak język, lokalizacja i inne ustawienia.', 30 | 'use_of_cookies_text_8' => 'Niektóre pliki cookie mogą zbierać dane z kilku stron internetowych, aby tworzyć profile zachowań użytkowników. Te profile są następnie używane do wysyłania ukierunkowanych treści i reklam do użytkowników.', 31 | 'cookies_used_title' => 'Pliki cookie używane w tej aplikacji', 32 | 'cookies_used_text_1' => 'W tej aplikacji używane są następujące pliki cookie. Wybierz, które pliki cookie chcesz zezwolić.', 33 | 'hours' => '{1} :count godzina|[2,Inf] :count godziny', 34 | 'days' => '{1} :count dzień|[2,Inf] :count dni', 35 | 'years' => '{1} :count rok|[2,Inf] :count lat', 36 | 'minutes' => '{1} :count minuta|[2,Inf] :count minut', 37 | 'months' => '{1} :count miesiąc|[2,Inf] :count miesięcy', 38 | 'cookie_cookies_consent_description' => 'Ten plik cookie jest ustawiany przez wtyczkę GDPR Cookie Consent i jest używany do przechowywania, czy użytkownik wyraził zgodę na używanie plików cookie, czy nie. Nie przechowuje żadnych danych osobowych.', 39 | 'cookie_xsrf_token_description' => 'Ten plik cookie jest ustawiany przez Laravel, aby zapobiec atakom Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Ten plik cookie jest ustawiany przez Laravel, aby zidentyfikować instancję sesji dla użytkownika.', 41 | 'description_label' => 'Opis', 42 | 'duration_label' => 'Czas trwania', 43 | 'policy_label' => 'Link do polityki', 44 | 'strictly_necessary' => 'Ściśle niezbędne', 45 | 'performance' => 'Wydajność', 46 | 'targeting' => 'Targetowanie', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Czytaj więcej', 49 | 'read_less' => 'Czytaj mniej', 50 | 'selection_saved_message' => 'Wybór zgody na pliki cookie zapisany', 51 | 'cookies_settings' => 'Ustawienia plików cookie', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/pt-br/messages.php: -------------------------------------------------------------------------------- 1 | 'Consentimento de Cookies', 5 | 'description' => 'Utilizamos cookies para otimizar nosso site e nosso serviço. Você pode escolher a quais categorias dá seu consentimento.', 6 | 'please_visit_1' => 'Para informações mais detalhadas sobre cookies, visite nossa', 7 | 'cookie_policy_page' => 'página de política de cookies', 8 | 'accept_selection_btn' => 'Aceitar Seleção', 9 | 'customise_btn' => 'Personalizar', 10 | 'accept_all_btn' => 'Aceitar Todos', 11 | 'reject_optional_btn' => 'Rejeitar Opcionais', 12 | 'accept_additional_cookies_btn' => 'Aceitar cookies adicionais', 13 | 'reject_additional_cookies_btn' => 'Rejeitar cookies adicionais', 14 | 'cookie_policy_title' => 'Política de Cookies', 15 | 'cookie_policy_text_1' => 'Esta é a página de política de cookies. Aqui você pode ler sobre os cookies utilizados na aplicação e escolher quais cookies permitir.', 16 | 'what_are_cookies_title' => 'O que são cookies?', 17 | 'what_are_cookies_text_1' => 'Um cookie é um pequeno arquivo de texto que um site ou aplicativo envia para o dispositivo de um usuário. Este arquivo de texto coleta informações sobre as ações do usuário no seu site.', 18 | 'what_are_cookies_text_2' => 'Os cookies armazenam informações úteis para melhorar a experiência do usuário no seu site e possivelmente melhorar sua capacidade de reconectar-se com eles mais tarde.', 19 | 'what_are_cookies_text_3' => 'As informações coletadas pelos cookies podem incluir o idioma preferido do usuário, configurações do dispositivo, atividades de navegação e outras informações úteis.', 20 | 'what_are_cookies_text_4' => 'Sites como o Google utilizam cookies para tornar os anúncios mais relevantes para seus usuários. Eles também rastreiam análises como o número de visitantes em uma página, as localizações dos visitantes, preferências de busca, etc.', 21 | 'what_are_cookies_text_5' => 'Os cookies não são prejudiciais para o seu dispositivo. Eles não são vírus ou malware. São apenas arquivos de texto que podem ser excluídos a qualquer momento.', 22 | 'use_of_cookies_title' => 'Uso de cookies', 23 | 'use_of_cookies_text_1' => 'Os cookies geralmente são usados para executar uma ou todas as seguintes funções:', 24 | 'use_of_cookies_text_2' => 'Autenticação: Os cookies ajudam os sites a determinar se um usuário está logado e, em seguida, fornecem a experiência e as funcionalidades corretas para esse usuário único.', 25 | 'use_of_cookies_text_3' => 'Segurança: Os cookies ajudam a aplicar medidas de segurança em um site. Eles também ajudam a detectar atividades incomuns e suspeitas.', 26 | 'use_of_cookies_text_4' => 'Publicidade: Os cookies fornecem uma melhor experiência publicitária tanto para os usuários quanto para os anunciantes. Os cookies ajudam a conectar os anunciantes com os usuários que estão mais interessados em seus produtos com base no histórico de navegação do usuário.', 27 | 'use_of_cookies_text_5' => 'Desempenho: Os cookies ajudam seu site a aprender como os serviços funcionam para diferentes pessoas e como direcionar o tráfego entre os servidores.', 28 | 'use_of_cookies_text_6' => 'Análise e Pesquisa: Sites e aplicativos utilizam cookies para saber quais de seus serviços são mais utilizados. Isso ajuda a determinar o que deve ser melhorado, removido e mantido igual.', 29 | 'use_of_cookies_text_7' => 'Preferências: Os cookies ajudam os sites a lembrar as preferências dos usuários, como idioma, localização e outras configurações.', 30 | 'use_of_cookies_text_8' => 'Alguns cookies podem coletar dados de vários sites para criar perfis de comportamento dos usuários. Esses perfis são então usados para enviar conteúdo e publicidade direcionados aos usuários.', 31 | 'cookies_used_title' => 'Cookies utilizados nesta aplicação', 32 | 'cookies_used_text_1' => 'Os seguintes cookies são utilizados nesta aplicação. Por favor, escolha quais cookies permitir.', 33 | 'hours' => '{1} :count hora|[2,Inf] :count horas', 34 | 'days' => '{1} :count dia|[2,Inf] :count dias', 35 | 'years' => '{1} :count ano|[2,Inf] :count anos', 36 | 'minutes' => '{1} :count minuto|[2,Inf] :count minutos', 37 | 'months' => '{1} :count mês|[2,Inf] :count meses', 38 | 'cookie_cookies_consent_description' => 'Este cookie é definido pelo plugin GDPR Cookie Consent e é usado para armazenar se o usuário consentiu ou não com o uso de cookies. Não armazena dados pessoais.', 39 | 'cookie_xsrf_token_description' => 'Este cookie é definido pelo Laravel para prevenir ataques de falsificação de solicitação entre sites (CSRF).', 40 | 'cookie_laravel_session_description' => 'Este cookie é definido pelo Laravel para identificar uma instância de sessão para o usuário.', 41 | 'description_label' => 'Descrição', 42 | 'duration_label' => 'Duração', 43 | 'policy_label' => 'Link da política', 44 | 'strictly_necessary' => 'Estritamente Necessário', 45 | 'performance' => 'Desempenho', 46 | 'targeting' => 'Segmentação', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Leia mais', 49 | 'read_less' => 'Leia menos', 50 | 'selection_saved_message' => 'Seleção de consentimento de cookies salva', 51 | 'cookies_settings' => 'Configurações de Cookies', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/ro/messages.php: -------------------------------------------------------------------------------- 1 | 'Consimțământ pentru cookie-uri', 5 | 'description' => 'Folosim cookie-uri pentru a optimiza site-ul nostru și serviciul nostru. Puteți alege categoriile la care consimțiți.', 6 | 'please_visit_1' => 'Pentru informații mai detaliate despre cookie-uri, vă rugăm să vizitați', 7 | 'cookie_policy_page' => 'pagina noastră de politică privind cookie-urile', 8 | 'accept_selection_btn' => 'Acceptați selecția', 9 | 'customise_btn' => 'Personalizați', 10 | 'accept_all_btn' => 'Acceptați toate', 11 | 'reject_optional_btn' => 'Respingeți opționalele', 12 | 'accept_additional_cookies_btn' => 'Acceptați cookie-uri suplimentare', 13 | 'reject_additional_cookies_btn' => 'Respingeți cookie-uri suplimentare', 14 | 'cookie_policy_title' => 'Politica privind cookie-urile', 15 | 'cookie_policy_text_1' => 'Aceasta este pagina de politică privind cookie-urile. Aici puteți citi despre cookie-urile utilizate în aplicație și selectați cookie-urile pe care doriți să le permiteți.', 16 | 'what_are_cookies_title' => 'Ce sunt cookie-urile?', 17 | 'what_are_cookies_text_1' => 'Un cookie este un fișier text mic pe care un site web sau o aplicație îl trimite pe dispozitivul unui utilizator. Acest fișier text colectează informații despre acțiunile utilizatorului pe site-ul dvs.', 18 | 'what_are_cookies_text_2' => 'Cookie-urile stochează informații utile pentru a îmbunătăți experiențele utilizatorilor pe site-ul dvs. și, eventual, pentru a îmbunătăți capacitatea dvs. de a vă reconecta cu aceștia mai târziu.', 19 | 'what_are_cookies_text_3' => 'Informațiile colectate de cookie-uri pot include limba preferată a utilizatorului, setările dispozitivului, activitățile de navigare și alte informații utile.', 20 | 'what_are_cookies_text_4' => 'Site-uri web precum Google folosesc cookie-uri pentru a face reclamele mai relevante pentru utilizatorii lor. De asemenea, urmăresc analize precum numărul de vizitatori pe o pagină, locațiile vizitatorilor, preferințele de căutare și așa mai departe.', 21 | 'what_are_cookies_text_5' => 'Cookie-urile nu sunt dăunătoare pentru dispozitivul dvs. Nu sunt viruși sau programe malware. Sunt doar fișiere text care pot fi șterse în orice moment.', 22 | 'use_of_cookies_title' => 'Utilizarea cookie-urilor', 23 | 'use_of_cookies_text_1' => 'Cookie-urile sunt utilizate în general pentru a îndeplini una sau toate dintre următoarele funcții:', 24 | 'use_of_cookies_text_2' => 'Autentificare: Cookie-urile ajută site-urile web să determine dacă un utilizator este autentificat și apoi să ofere experiența și funcțiile corecte pentru acel utilizator unic.', 25 | 'use_of_cookies_text_3' => 'Securitate: Cookie-urile ajută la impunerea măsurilor de securitate pe un site web. De asemenea, ajută la detectarea activităților neobișnuite și suspecte.', 26 | 'use_of_cookies_text_4' => 'Publicitate: Cookie-urile oferă o experiență publicitară mai bună atât pentru utilizatori, cât și pentru agenții de publicitate. Cookie-urile ajută agenții de publicitate să se conecteze cu utilizatorii care sunt cei mai interesați de produsele lor, pe baza istoricului de navigare al utilizatorului.', 27 | 'use_of_cookies_text_5' => 'Performanță: Cookie-urile ajută site-ul dvs. să învețe cum funcționează serviciile pentru diferite persoane și cum să direcționeze traficul între servere.', 28 | 'use_of_cookies_text_6' => 'Analiză și cercetare: Site-urile web și aplicațiile folosesc cookie-uri pentru a învăța care dintre serviciile lor sunt cele mai utilizate. Acest lucru ajută la determinarea a ceea ce trebuie îmbunătățit, eliminat și lăsat neschimbat.', 29 | 'use_of_cookies_text_7' => 'Preferințe: Cookie-urile ajută site-urile web să-și amintească preferințele utilizatorilor, cum ar fi limba, locația și alte setări.', 30 | 'use_of_cookies_text_8' => 'Unele cookie-uri pot colecta date de pe mai multe site-uri web pentru a crea profiluri de comportament ale utilizatorilor. Aceste profiluri sunt apoi utilizate pentru a trimite conținut și reclame direcționate către utilizatori.', 31 | 'cookies_used_title' => 'Cookie-uri utilizate în această aplicație', 32 | 'cookies_used_text_1' => 'Următoarele cookie-uri sunt utilizate în această aplicație. Vă rugăm să selectați cookie-urile pe care doriți să le permiteți.', 33 | 'hours' => '{1} :count oră|[2,Inf] :count ore', 34 | 'days' => '{1} :count zi|[2,Inf] :count zile', 35 | 'years' => '{1} :count an|[2,Inf] :count ani', 36 | 'minutes' => '{1} :count minut|[2,Inf] :count minute', 37 | 'months' => '{1} :count lună|[2,Inf] :count luni', 38 | 'cookie_cookies_consent_description' => 'Acest cookie este setat de pluginul GDPR Cookie Consent și este utilizat pentru a stoca dacă utilizatorul a consimțit sau nu la utilizarea cookie-urilor. Nu stochează date personale.', 39 | 'cookie_xsrf_token_description' => 'Acest cookie este setat de Laravel pentru a preveni atacurile Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Acest cookie este setat de Laravel pentru a identifica o instanță de sesiune pentru utilizator.', 41 | 'description_label' => 'Descriere', 42 | 'duration_label' => 'Durată', 43 | 'policy_label' => 'Link către politică', 44 | 'strictly_necessary' => 'Strict necesar', 45 | 'performance' => 'Performanță', 46 | 'targeting' => 'Direcționare', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Citește mai mult', 49 | 'read_less' => 'Citește mai puțin', 50 | 'selection_saved_message' => 'Selecția consimțământului pentru cookie-uri a fost salvată', 51 | 'cookies_settings' => 'Setări cookie-uri', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/se/messages.php: -------------------------------------------------------------------------------- 1 | 'Cookie-samtycke', 5 | 'description' => 'Vi använder cookies för att optimera vår webbplats och vår tjänst. Du kan välja vilka kategorier du ger ditt samtycke till.', 6 | 'please_visit_1' => 'För mer detaljerad information om cookies, besök vår', 7 | 'cookie_policy_page' => 'cookiepolicy-sida', 8 | 'accept_selection_btn' => 'Acceptera val', 9 | 'customise_btn' => 'Anpassa', 10 | 'accept_all_btn' => 'Acceptera alla', 11 | 'reject_optional_btn' => 'Avvisa valfria', 12 | 'accept_additional_cookies_btn' => 'Acceptera ytterligare cookies', 13 | 'reject_additional_cookies_btn' => 'Avvisa ytterligare cookies', 14 | 'cookie_policy_title' => 'Cookiepolicy', 15 | 'cookie_policy_text_1' => 'Detta är cookiepolicy-sidan. Här kan du läsa om de cookies som används i applikationen och välja vilka cookies du vill tillåta.', 16 | 'what_are_cookies_title' => 'Vad är cookies?', 17 | 'what_are_cookies_text_1' => 'En cookie är en liten textfil som en webbplats eller app skickar till en användares enhet. Denna textfil samlar information om användarens handlingar på din webbplats.', 18 | 'what_are_cookies_text_2' => 'Cookies lagrar användbar information för att förbättra användarupplevelsen på din webbplats och eventuellt förbättra din förmåga att återansluta med dem senare.', 19 | 'what_are_cookies_text_3' => 'Informationen som samlas in av cookies kan inkludera användarens föredragna språk, enhetsinställningar, surfaktiviteter och annan användbar information.', 20 | 'what_are_cookies_text_4' => 'Webbplatser som Google använder cookies för att göra annonser mer relevanta för sina användare. De spårar också analyser som antalet besökare på en sida, besökarnas platser, sökpreferenser osv.', 21 | 'what_are_cookies_text_5' => 'Cookies är inte skadliga för din enhet. De är inte virus eller skadlig programvara. De är bara textfiler som kan raderas när som helst.', 22 | 'use_of_cookies_title' => 'Användning av cookies', 23 | 'use_of_cookies_text_1' => 'Cookies används vanligtvis för att utföra en eller alla av följande funktioner:', 24 | 'use_of_cookies_text_2' => 'Autentisering: Cookies hjälper webbplatser att avgöra om en användare är inloggad och tillhandahåller sedan rätt upplevelse och funktioner för den unika användaren.', 25 | 'use_of_cookies_text_3' => 'Säkerhet: Cookies hjälper till att genomdriva säkerhetsåtgärder på en webbplats. De hjälper också till att upptäcka ovanliga och misstänkta aktiviteter.', 26 | 'use_of_cookies_text_4' => 'Reklam: Cookies ger en bättre reklamupplevelse för både användare och annonsörer. Cookies hjälper till att koppla annonsörer med användare som är mest intresserade av deras produkter baserat på användarens surfhistorik.', 27 | 'use_of_cookies_text_5' => 'Prestanda: Cookies hjälper din webbplats att lära sig hur tjänster fungerar för olika människor och hur man dirigerar trafik mellan servrar.', 28 | 'use_of_cookies_text_6' => 'Analys och forskning: Webbplatser och appar använder cookies för att lära sig vilka av deras tjänster som används mest. Detta hjälper till att avgöra vad som behöver förbättras, tas bort och förbli detsamma.', 29 | 'use_of_cookies_text_7' => 'Preferenser: Cookies hjälper webbplatser att komma ihåg användarens preferenser, som språk, plats och andra inställningar.', 30 | 'use_of_cookies_text_8' => 'Vissa cookies kan samla in data från flera webbplatser för att skapa användarprofiler. Dessa profiler används sedan för att skicka riktat innehåll och reklam till användare.', 31 | 'cookies_used_title' => 'Cookies som används i denna applikation', 32 | 'cookies_used_text_1' => 'Följande cookies används i denna applikation. Vänligen välj vilka cookies du vill tillåta.', 33 | 'hours' => '{1} :count timme|[2,Inf] :count timmar', 34 | 'days' => '{1} :count dag|[2,Inf] :count dagar', 35 | 'years' => '{1} :count år|[2,Inf] :count år', 36 | 'minutes' => '{1} :count minut|[2,Inf] :count minuter', 37 | 'months' => '{1} :count månad|[2,Inf] :count månader', 38 | 'cookie_cookies_consent_description' => 'Detta cookie sätts av GDPR Cookie Consent-pluginet och används för att lagra om användaren har samtyckt till användningen av cookies eller inte. Det lagrar ingen personlig data.', 39 | 'cookie_xsrf_token_description' => 'Detta cookie sätts av Laravel för att förhindra Cross-Site Request Forgery (CSRF)-attacker.', 40 | 'cookie_laravel_session_description' => 'Detta cookie sätts av Laravel för att identifiera en sessionsinstans för användaren.', 41 | 'description_label' => 'Beskrivning', 42 | 'duration_label' => 'Varaktighet', 43 | 'policy_label' => 'Policylänk', 44 | 'strictly_necessary' => 'Strikt nödvändiga', 45 | 'performance' => 'Prestanda', 46 | 'targeting' => 'Målgrupp', 47 | 'marketing' => 'Marknadsföring', 48 | 'read_more' => 'Läs mer', 49 | 'read_less' => 'Läs mindre', 50 | 'selection_saved_message' => 'Cookie-samtyckesval sparat', 51 | 'cookies_settings' => 'Cookieinställningar', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/sk/messages.php: -------------------------------------------------------------------------------- 1 | 'Súhlas s cookies', 5 | 'description' => 'Používame cookies na optimalizáciu našej webovej stránky a našich služieb. Môžete si vybrať, s ktorými kategóriami súhlasíte.', 6 | 'please_visit_1' => 'Pre podrobnejšie informácie o cookies, prosím, navštívte našu', 7 | 'cookie_policy_page' => 'stránku s politikou cookies', 8 | 'accept_selection_btn' => 'Prijať vybrané', 9 | 'customise_btn' => 'Prispôsobiť', 10 | 'accept_all_btn' => 'Prijať všetky', 11 | 'reject_optional_btn' => 'Odmietnuť voliteľné', 12 | 'accept_additional_cookies_btn' => 'Prijať ďalšie cookies', 13 | 'reject_additional_cookies_btn' => 'Odmietnuť ďalšie cookies', 14 | 'cookie_policy_title' => 'Politika cookies', 15 | 'cookie_policy_text_1' => 'Toto je stránka s politikou cookies. Tu si môžete prečítať o cookies, ktoré sa používajú v aplikácii, a vybrať, ktoré cookies povolíte.', 16 | 'what_are_cookies_title' => 'Čo sú cookies?', 17 | 'what_are_cookies_text_1' => 'Cookie je malý textový súbor, ktorý webová stránka alebo aplikácia pošle do zariadenia používateľa. Tento textový súbor zhromažďuje informácie o akciách používateľa na vašej stránke.', 18 | 'what_are_cookies_text_2' => 'Cookies ukladajú užitočné informácie na zlepšenie používateľských skúseností na vašej stránke a prípadne na zlepšenie vašej schopnosti sa s nimi neskôr spojiť.', 19 | 'what_are_cookies_text_3' => 'Informácie zhromaždené cookies môžu zahŕňať preferovaný jazyk používateľa, nastavenia zariadenia, aktivity prehliadania a ďalšie užitočné informácie.', 20 | 'what_are_cookies_text_4' => 'Webové stránky ako Google používajú cookies na to, aby boli reklamy relevantnejšie pre ich používateľov. Sledujú tiež analytiku, ako je počet návštevníkov stránky, miesta návštevníkov, preferencie vyhľadávania a podobne.', 21 | 'what_are_cookies_text_5' => 'Cookies nie sú škodlivé pre vaše zariadenie. Nie sú to vírusy ani malware. Sú to len textové súbory, ktoré je možné kedykoľvek vymazať.', 22 | 'use_of_cookies_title' => 'Používanie cookies', 23 | 'use_of_cookies_text_1' => 'Cookies sa zvyčajne používajú na vykonávanie jednej alebo všetkých z nasledujúcich funkcií:', 24 | 'use_of_cookies_text_2' => 'Autentifikácia: Cookies pomáhajú webovým stránkam určiť, či je používateľ prihlásený, a potom doručiť správne skúsenosti a funkcie pre tohto jedinečného používateľa.', 25 | 'use_of_cookies_text_3' => 'Bezpečnosť: Cookies pomáhajú zaviesť bezpečnostné opatrenia na webovej stránke. Pomáhajú tiež odhaliť neobvyklé a podozrivé aktivity.', 26 | 'use_of_cookies_text_4' => 'Reklama: Cookies poskytujú lepšie reklamné skúsenosti pre používateľov aj inzerentov. Cookies pomáhajú inzerentom spojiť sa s používateľmi, ktorí majú najväčší záujem o ich produkty na základe histórie prehliadania používateľa.', 27 | 'use_of_cookies_text_5' => 'Výkon: Cookies pomáhajú vašej webovej stránke zistiť, ako služby fungujú pre rôznych ľudí a ako smerovať prevádzku medzi servermi.', 28 | 'use_of_cookies_text_6' => 'Analytika a výskum: Webové stránky a aplikácie používajú cookies na zistenie, ktoré z ich služieb sa používajú najviac. To pomáha určiť, čo je potrebné zlepšiť, odstrániť a ponechať nezmenené.', 29 | 'use_of_cookies_text_7' => 'Preferencie: Cookies pomáhajú webovým stránkam zapamätať si preferencie používateľov, ako je jazyk, poloha a ďalšie nastavenia.', 30 | 'use_of_cookies_text_8' => 'Niektoré cookies môžu zhromažďovať údaje z viacerých webových stránok na vytvorenie profilov správania používateľov. Tieto profily sa potom používajú na zasielanie cieleného obsahu a reklám používateľom.', 31 | 'cookies_used_title' => 'Cookies používané v tejto aplikácii', 32 | 'cookies_used_text_1' => 'V tejto aplikácii sa používajú nasledujúce cookies. Vyberte, ktoré cookies chcete povoliť.', 33 | 'hours' => '{1} :count hodina|[2,Inf] :count hodiny', 34 | 'days' => '{1} :count deň|[2,Inf] :count dni', 35 | 'years' => '{1} :count rok|[2,Inf] :count roky', 36 | 'minutes' => '{1} :count minúta|[2,Inf] :count minúty', 37 | 'months' => '{1} :count mesiac|[2,Inf] :count mesiace', 38 | 'cookie_cookies_consent_description' => 'Tento cookie je nastavený pluginom GDPR Cookie Consent a používa sa na uloženie, či používateľ súhlasil s používaním cookies alebo nie. Neuchováva žiadne osobné údaje.', 39 | 'cookie_xsrf_token_description' => 'Tento cookie je nastavený Laravelom na zabránenie útokom Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Tento cookie je nastavený Laravelom na identifikáciu inštancie relácie pre používateľa.', 41 | 'description_label' => 'Popis', 42 | 'duration_label' => 'Trvanie', 43 | 'policy_label' => 'Odkaz na politiku', 44 | 'strictly_necessary' => 'Prísne nevyhnutné', 45 | 'performance' => 'Výkon', 46 | 'targeting' => 'Cielenie', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Čítať viac', 49 | 'read_less' => 'Čítať menej', 50 | 'selection_saved_message' => 'Výber súhlasu s cookies bol uložený', 51 | 'cookies_settings' => 'Nastavenia cookies', 52 | ]; 53 | -------------------------------------------------------------------------------- /lang/sl/messages.php: -------------------------------------------------------------------------------- 1 | 'Soglasje za piškotke', 5 | 'description' => 'Piškotke uporabljamo za optimizacijo naše spletne strani in naših storitev. Izberete lahko, s katerimi kategorijami se strinjate.', 6 | 'please_visit_1' => 'Za podrobnejše informacije o piškotkih obiščite našo', 7 | 'cookie_policy_page' => 'stran s politiko piškotkov', 8 | 'accept_selection_btn' => 'Sprejmi izbrano', 9 | 'customise_btn' => 'Prilagodi', 10 | 'accept_all_btn' => 'Sprejmi vse', 11 | 'reject_optional_btn' => 'Zavrni izbirne', 12 | 'accept_additional_cookies_btn' => 'Sprejmi dodatne piškotke', 13 | 'reject_additional_cookies_btn' => 'Zavrni dodatne piškotke', 14 | 'cookie_policy_title' => 'Politika piškotkov', 15 | 'cookie_policy_text_1' => 'To je stran s politiko piškotkov. Tukaj lahko preberete o piškotkih, ki se uporabljajo v aplikaciji, in izberete, katere piškotke dovoliti.', 16 | 'what_are_cookies_title' => 'Kaj so piškotki?', 17 | 'what_are_cookies_text_1' => 'Piškotek je majhna besedilna datoteka, ki jo spletna stran ali aplikacija pošlje v napravo uporabnika. Ta besedilna datoteka zbira informacije o dejanjih uporabnika na vaši strani.', 18 | 'what_are_cookies_text_2' => 'Piškotki shranjujejo koristne informacije za izboljšanje uporabniške izkušnje na vaši strani in morda za izboljšanje vaše sposobnosti, da se kasneje ponovno povežete z njimi.', 19 | 'what_are_cookies_text_3' => 'Informacije, zbrane s piškotki, lahko vključujejo uporabnikov izbrani jezik, nastavitve naprave, dejavnosti brskanja in druge koristne informacije.', 20 | 'what_are_cookies_text_4' => 'Spletne strani, kot je Google, uporabljajo piškotke za to, da so oglasi bolj relevantni za njihove uporabnike. Prav tako spremljajo analitiko, kot je štetje števila obiskovalcev strani, lokacije obiskovalcev, iskalne preference in tako naprej.', 21 | 'what_are_cookies_text_5' => 'Piškotki niso škodljivi za vašo napravo. Niso virusi ali zlonamerna programska oprema. So le besedilne datoteke, ki jih je mogoče kadar koli izbrisati.', 22 | 'use_of_cookies_title' => 'Uporaba piškotkov', 23 | 'use_of_cookies_text_1' => 'Piškotki se običajno uporabljajo za izvajanje ene ali vseh naslednjih funkcij:', 24 | 'use_of_cookies_text_2' => 'Avtentikacija: Piškotki pomagajo spletnim stranem določiti, ali je uporabnik prijavljen, in nato dostaviti pravo izkušnjo in funkcije za tega edinstvenega uporabnika.', 25 | 'use_of_cookies_text_3' => 'Varnost: Piškotki pomagajo uvesti varnostne ukrepe na spletni strani. Prav tako pomagajo odkriti nenavadne in sumljive dejavnosti.', 26 | 'use_of_cookies_text_4' => 'Oglaševanje: Piškotki zagotavljajo boljšo oglaševalsko izkušnjo tako za uporabnike kot za oglaševalce. Piškotki pomagajo oglaševalcem povezati se z uporabniki, ki jih njihovi izdelki najbolj zanimajo, na podlagi zgodovine brskanja uporabnika.', 27 | 'use_of_cookies_text_5' => 'Izvedba: Piškotki pomagajo vaši spletni strani izvedeti, kako storitve delujejo za različne ljudi in kako usmerjati promet med strežniki.', 28 | 'use_of_cookies_text_6' => 'Analitika in raziskave: Spletne strani in aplikacije uporabljajo piškotke za ugotavljanje, katere njihove storitve se najbolj uporabljajo. To pomaga določiti, kaj izboljšati, kaj odstraniti in kaj pustiti nespremenjeno.', 29 | 'use_of_cookies_text_7' => 'Preference: Piškotki pomagajo spletnim stranem zapomniti si uporabniške nastavitve, kot so jezik, lokacija in druge nastavitve.', 30 | 'use_of_cookies_text_8' => 'Nekateri piškotki lahko zbirajo podatke z več spletnih strani, da ustvarijo profile vedenja uporabnikov. Ti profili se nato uporabljajo za pošiljanje ciljanih vsebin in oglasov uporabnikom.', 31 | 'cookies_used_title' => 'Piškotki, uporabljeni v tej aplikaciji', 32 | 'cookies_used_text_1' => 'V tej aplikaciji se uporabljajo naslednji piškotki. Izberite, katere piškotke želite dovoliti.', 33 | 'hours' => '{1} :count ura|[2,Inf] :count ur', 34 | 'days' => '{1} :count dan|[2,Inf] :count dni', 35 | 'years' => '{1} :count leto|[2,Inf] :count let', 36 | 'minutes' => '{1} :count minuta|[2,Inf] :count minut', 37 | 'months' => '{1} :count mesec|[2,Inf] :count mesecev', 38 | 'cookie_cookies_consent_description' => 'Ta piškotek nastavi vtičnik GDPR Cookie Consent in se uporablja za shranjevanje, ali je uporabnik privolil v uporabo piškotkov ali ne. Ne shranjuje nobenih osebnih podatkov.', 39 | 'cookie_xsrf_token_description' => 'Ta piškotek nastavi Laravel za preprečevanje napadov Cross-Site Request Forgery (CSRF).', 40 | 'cookie_laravel_session_description' => 'Ta piškotek nastavi Laravel za identifikacijo seje uporabnika.', 41 | 'description_label' => 'Opis', 42 | 'duration_label' => 'Trajanje', 43 | 'policy_label' => 'Povezava do politike', 44 | 'strictly_necessary' => 'Strogo potrebno', 45 | 'performance' => 'Izvedba', 46 | 'targeting' => 'Ciljanje', 47 | 'marketing' => 'Marketing', 48 | 'read_more' => 'Preberi več', 49 | 'read_less' => 'Preberi manj', 50 | 'selection_saved_message' => 'Izbira soglasja za piškotke je shranjena', 51 | 'cookies_settings' => 'Nastavitve piškotkov', 52 | ]; 53 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "laravel-cookie-guard", 3 | "version": "4.1.4", 4 | "description": "

\"logo\"

", 5 | "main": "index.js", 6 | "directories": { 7 | "test": "tests" 8 | }, 9 | "scripts": { 10 | "test": "echo \"Error: no test specified\" && exit 1", 11 | "dev": "vite", 12 | "build": "vite build && cp resources/styles/_variables.css public/_variables.css" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+https://github.com/scify/laravel-cookie-guard.git" 17 | }, 18 | "keywords": [], 19 | "author": "", 20 | "license": "ISC", 21 | "bugs": { 22 | "url": "https://github.com/scify/laravel-cookie-guard/issues" 23 | }, 24 | "homepage": "https://github.com/scify/laravel-cookie-guard#readme", 25 | "devDependencies": { 26 | "blade-formatter": "^1.42.2", 27 | "sass": "^1.89.1", 28 | "vite": "^6.3.5" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /public/_variables.css: -------------------------------------------------------------------------------- 1 | #scify-cookies-consent-wrapper, #scify-cookie-consent-floating-button { 2 | --scify-cookies-font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif; 3 | --scify-cookies-gutter: 1.5rem; 4 | --scify-cookies-primary-color: #0d6efd; 5 | --scify-cookies-primary-hover-color: #0a58ca; 6 | --scify-cookies-link-color: #0d6efd; 7 | --scify-cookies-link-hover-color: #0a58ca; 8 | --scify-cookies-accordion-bg-color: #f8f9fa; 9 | --scify-cookies-accordion-btn-collapsed-bg-color: #f8f9fa; 10 | --scify-cookies-accordion-btn-collapsed-text-color: #212529; 11 | --scify-cookies-accordion-btn-bg-color: #f8f9fa; 12 | --scify-cookies-accordion-btn-text-color: #0d6efd; 13 | --scify-cookies-accordion-btn-font-size: 14px; 14 | --scify-cookies-accordion-header-padding: 0.75rem 1rem; 15 | --scify-cookies-accordion-border-color: #757575; 16 | --scify-cookies-check-input-border-color: #757575; 17 | --scify-cookies-border-radius: 0.375rem; 18 | --scify-cookies-font-size-base: 16px; 19 | --scify-cookies-font-size-small: 90%; 20 | --scify-cookies-font-size-lg: 1.75rem; 21 | --scify-cookies-h5-font-size: 1.25rem; 22 | --scify-cookies-checkbox-size: 1rem; 23 | --scify-cookies-btn-text-font-size: 14px; 24 | --scify-cookies-btn-bg-color: transparent; 25 | --scify-cookies-btn-hover-bg-color: #e9ecef; 26 | --scify-cookies-btn-border-width: 2px; 27 | --scify-cookies-btn-border-radius: 2px; 28 | --scify-cookies-btn-text-color: var(--scify-cookies-primary-color); 29 | --scify-cookies-btn-hover-text-color: #e7f1ff; 30 | --scify-cookies-btn-border-color: var(--scify-cookies-primary-color); 31 | --scify-cookies-btn-hover-border-color: var(--scify-cookies-primary-hover-color); 32 | --scify-cookies-btn-padding: 8px; 33 | --scify-cookies-btn-padding-lg: 1rem 1rem; 34 | --scify-cookies-text-color: #212529; 35 | --scify-cookies-bg-color: #fff; 36 | --scify-cookies-border-width: 1px; 37 | --scify-cookies-border-color: #ddd; 38 | --scify-cookies-accordion-item-border-color: #f8f9fa; 39 | --scify-cookies-success-message-bg-color: #d4edda; 40 | --scify-cookies-success-message-text-color: #155724; 41 | --scify-cookies-always-active-message-color: #155724; 42 | --scify-cookies-success-message-border-color: #c3e6cb; 43 | --scify-cookies-success-message-padding: 0.75rem 1.25rem; 44 | --scify-cookies-success-message-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); 45 | --scify-cookies-name-text-color: #d63384; 46 | --scify-cookies-floating-btn-bg-color: #f8f9fa; 47 | --scify-cookies-floating-btn-text-color: #0d6efd; 48 | --scify-cookies-floating-btn-hover-bg-color: #e9ecef; 49 | --scify-cookies-floating-btn-hover-text-color: #0a58ca; 50 | --scify-cookies-floating-btn-border-color: #0d6efd; 51 | --scify-cookies-floating-btn-border-radius: 1rem; 52 | --scify-cookies-floating-btn-border-width: 1px; 53 | --scify-cookies-floating-btn-left: 30px; 54 | --scify-cookies-floating-btn-bottom: 30px; 55 | --scify-cookies-banner-left: 30px; 56 | --scify-cookies-banner-bottom: 30px; 57 | --scify-cookies-banner-border-radius: 6px; 58 | --scify-cookies-floating-btn-padding: 10px; 59 | --scify-cookies-floating-btn-height: 55px; 60 | --scify-cookies-floating-btn-width: 55px; 61 | } 62 | -------------------------------------------------------------------------------- /public/scripts.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded",function(){y(),m(),L(),g(),I()});function g(){window.location.hash==="#consent-settings"&&typeof window.toggleCookieBanner=="function"&&window.toggleCookieBanner()}function y(){document.querySelectorAll(".accordion-button").forEach(e=>{e.removeEventListener("click",r)}),document.querySelectorAll(".accordion-button").forEach(e=>{e.addEventListener("click",r)})}function r(e){e.stopPropagation();const o=e.currentTarget;k(o)}function k(e){const o=document.querySelector(e.dataset.target);document.querySelectorAll(".accordion-collapse").forEach(t=>{if(t!==o){t.classList.remove("show");const n=document.querySelector(`[data-target="#${t.id}"]`);n&&(n.classList.add("collapsed"),window.cookies_consent_translations&&(n.textContent=window.cookies_consent_translations.read_more))}}),o.classList.contains("show")?(o.classList.remove("show"),e.classList.add("collapsed"),window.cookies_consent_translations&&(e.textContent=window.cookies_consent_translations.read_more)):(o.classList.add("show"),e.classList.remove("collapsed"),window.cookies_consent_translations&&(e.textContent=window.cookies_consent_translations.read_less))}function m(){const e=document.getElementById("scify-cookies-consent"),o=document.getElementById("scify-cookie-consent-floating-button"),t=e.dataset.showFloatingButton==="true"||e.dataset.showFloatingButton==="1",n=e.dataset.hideFloatingButtonOnMobile==="true"||e.dataset.hideFloatingButtonOnMobile==="1",s=e.dataset.cookiePrefix;let i=_(s+"cookies_consent");w(e,o,t,n,i),f(i),h({"customise-cookies":B,"accept-all-cookies":C,"accept-selected-cookies":u,"reject-optional-cookies":S,"close-cookie-policy-page":u})}function h(e){for(const[o,t]of Object.entries(e)){const n=document.getElementById(o);n&&n.addEventListener("click",t)}}function w(e,o,t,n,s){a()?e.style.display="block":p(e,o,t,n,s)}function p(e,o,t,n,s){const i=e.dataset.useShowModal==="true"||e.dataset.useShowModal==="1";if(s)e.style.display="none",t&&o&&(o.style.display=n&&window.innerWidth<768?"none":"block");else{e.style.display="block";const c=e.querySelector("dialog");c&&i&&c.showModal()}}function f(e){if(e){const o=JSON.parse(e);for(const t in o){const n=document.getElementById(t);n&&(n.checked=o[t])}}}function B(){document.getElementById("cookie-categories-container").classList.remove("display-none"),document.getElementById("customise-cookies").closest(".button-col").classList.add("display-none"),document.getElementById("accept-selected-cookies").closest(".button-col").classList.remove("display-none")}function C(){d(l(!0))}function u(){d(l())}function S(){d(l(!1,"strictly_necessary"))}function l(e=!1,o=null){const t={};return document.querySelectorAll(".cookie-category").forEach(n=>{t[n.id]=e||n.id===o||n.checked}),t}function d(e){const o=document.getElementById("scify-cookies-consent"),t=document.getElementById("scify-cookie-consent-floating-button"),n=o.dataset.showFloatingButton==="true"||o.dataset.showFloatingButton==="1",s=o.dataset.cookiePrefix;e.locale=o.dataset.locale,a()||(o.style.display="none",n&&(t.style.display="block")),fetch(o.dataset.ajaxUrl,{method:"POST",headers:{"Content-Type":"application/json","X-CSRF-TOKEN":document.querySelector('meta[name="csrf-token"]').getAttribute("content")},body:JSON.stringify(e)}).then(i=>i.json()).then(i=>{if(i.success){b(s+"cookies_consent",JSON.stringify(e),30),f(JSON.stringify(e)),E(i.message);const c=o.querySelector("dialog");c&&c.close(),a()&&history.back()}}).catch(()=>{console.error("Error storing cookie consent");const i=o.querySelector("dialog");i&&i.close()})}function E(e){const o=document.getElementById("scify-cookies-consent-wrapper");if(o){const t=document.createElement("div");t.classList.add("cookie-success-message"),t.innerText=e,o.appendChild(t),setTimeout(()=>{t.classList.add("show")},100),setTimeout(()=>{t.classList.remove("show"),setTimeout(()=>{t.remove()},1e3)},4e3)}}function L(){const e=document.getElementById("cookie-policy-link");e&&e.addEventListener("click",function(){v("cookieConsent")})}function a(){const e=document.getElementById("scify-cookies-consent");return e.dataset.onCookiesPage==="true"||e.dataset.onCookiesPage==="1"}function b(e,o,t){let n="";{const s=new Date;s.setTime(s.getTime()+t*24*60*60*1e3),n="; expires="+s.toUTCString()}document.cookie=e+"="+(o||"")+n+"; path=/"}function _(e){const o=e+"=",t=document.cookie.split(";");for(const n of t){let s=n.trim();if(s.startsWith(o))return s.substring(o.length,s.length)}return null}function v(e){document.cookie=e+"=; Max-Age=-99999999;"}window.toggleCookieBanner=function(){if(a())return;const e=document.getElementById("scify-cookies-consent"),o=document.getElementById("scify-cookie-consent-floating-button"),t=e.dataset.showFloatingButton==="true"||e.dataset.showFloatingButton==="1",n=e.dataset.useShowModal==="true"||e.dataset.useShowModal==="1",s=e.querySelector("dialog");e.style.display==="none"||e.style.display===""?(e.style.display="block",s&&n&&s.showModal(),t&&(o.style.display="none")):(e.style.display="none",s&&n&&s.close(),t&&(o.style.display="block"))};function I(){document.querySelectorAll('a[href="#consent-settings"]').forEach(e=>{e.addEventListener("click",function(o){o.preventDefault(),window.location.hash="#consent-settings",typeof window.toggleCookieBanner=="function"&&window.toggleCookieBanner()})})} 2 | -------------------------------------------------------------------------------- /resources/images/README.md: -------------------------------------------------------------------------------- 1 | The `close.svg` and `cookie.svg` images that are in this directory are not directly used in the application. 2 | Instead, we use the svg content directly in the html file. This is done to avoid the overhead of loading the images. 3 | 4 | The `close.svg` image is used in the `close` button in the `cookie-banner` component. 5 | The `cookie.svg` image is used in the `cookie-banner` component to show the cookie icon. 6 | 7 | The 2 images are stored here for reference purposes. 8 | -------------------------------------------------------------------------------- /resources/images/close.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 7 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/images/cookie.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /resources/styles/_variables.css: -------------------------------------------------------------------------------- 1 | #scify-cookies-consent-wrapper, #scify-cookie-consent-floating-button { 2 | --scify-cookies-font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", sans-serif; 3 | --scify-cookies-gutter: 1.5rem; 4 | --scify-cookies-primary-color: #0d6efd; 5 | --scify-cookies-primary-hover-color: #0a58ca; 6 | --scify-cookies-link-color: #0d6efd; 7 | --scify-cookies-link-hover-color: #0a58ca; 8 | --scify-cookies-accordion-bg-color: #f8f9fa; 9 | --scify-cookies-accordion-btn-collapsed-bg-color: #f8f9fa; 10 | --scify-cookies-accordion-btn-collapsed-text-color: #212529; 11 | --scify-cookies-accordion-btn-bg-color: #f8f9fa; 12 | --scify-cookies-accordion-btn-text-color: #0d6efd; 13 | --scify-cookies-accordion-btn-font-size: 14px; 14 | --scify-cookies-accordion-header-padding: 0.75rem 1rem; 15 | --scify-cookies-accordion-border-color: #757575; 16 | --scify-cookies-check-input-border-color: #757575; 17 | --scify-cookies-border-radius: 0.375rem; 18 | --scify-cookies-font-size-base: 16px; 19 | --scify-cookies-font-size-small: 90%; 20 | --scify-cookies-font-size-lg: 1.75rem; 21 | --scify-cookies-h5-font-size: 1.25rem; 22 | --scify-cookies-checkbox-size: 1rem; 23 | --scify-cookies-btn-text-font-size: 14px; 24 | --scify-cookies-btn-bg-color: transparent; 25 | --scify-cookies-btn-hover-bg-color: #e9ecef; 26 | --scify-cookies-btn-border-width: 2px; 27 | --scify-cookies-btn-border-radius: 2px; 28 | --scify-cookies-btn-text-color: var(--scify-cookies-primary-color); 29 | --scify-cookies-btn-hover-text-color: #e7f1ff; 30 | --scify-cookies-btn-border-color: var(--scify-cookies-primary-color); 31 | --scify-cookies-btn-hover-border-color: var(--scify-cookies-primary-hover-color); 32 | --scify-cookies-btn-padding: 8px; 33 | --scify-cookies-btn-padding-lg: 1rem 1rem; 34 | --scify-cookies-text-color: #212529; 35 | --scify-cookies-bg-color: #fff; 36 | --scify-cookies-border-width: 1px; 37 | --scify-cookies-border-color: #ddd; 38 | --scify-cookies-accordion-item-border-color: #f8f9fa; 39 | --scify-cookies-success-message-bg-color: #d4edda; 40 | --scify-cookies-success-message-text-color: #155724; 41 | --scify-cookies-always-active-message-color: #155724; 42 | --scify-cookies-success-message-border-color: #c3e6cb; 43 | --scify-cookies-success-message-padding: 0.75rem 1.25rem; 44 | --scify-cookies-success-message-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); 45 | --scify-cookies-name-text-color: #d63384; 46 | --scify-cookies-floating-btn-bg-color: #f8f9fa; 47 | --scify-cookies-floating-btn-text-color: #0d6efd; 48 | --scify-cookies-floating-btn-hover-bg-color: #e9ecef; 49 | --scify-cookies-floating-btn-hover-text-color: #0a58ca; 50 | --scify-cookies-floating-btn-border-color: #0d6efd; 51 | --scify-cookies-floating-btn-border-radius: 1rem; 52 | --scify-cookies-floating-btn-border-width: 1px; 53 | --scify-cookies-floating-btn-left: 30px; 54 | --scify-cookies-floating-btn-bottom: 30px; 55 | --scify-cookies-banner-left: 30px; 56 | --scify-cookies-banner-bottom: 30px; 57 | --scify-cookies-banner-border-radius: 6px; 58 | --scify-cookies-floating-btn-padding: 10px; 59 | --scify-cookies-floating-btn-height: 55px; 60 | --scify-cookies-floating-btn-width: 55px; 61 | } 62 | -------------------------------------------------------------------------------- /resources/styles/accordion.scss: -------------------------------------------------------------------------------- 1 | #scify-cookies-consent-wrapper, #scify-cookie-policy-page { 2 | .accordion { 3 | --bs-accordion-border-color: var(--scify-cookies-accordion-border-color); 4 | background-color: #fff; 5 | border: 1px solid #ddd; 6 | border-radius: 4px; 7 | margin: 0 0 20px; 8 | 9 | .accordion-item { 10 | background-color: #fff; 11 | border: 1px solid var(--scify-cookies-accordion-item-border-color); 12 | color: var(--scify-cookies-text-color); 13 | border-bottom: 1px solid #ddd; 14 | max-height: 45vh; // Default height based on viewport height 15 | overflow-y: auto; 16 | transition: max-height 0.3s ease-out; 17 | 18 | .accordion-button { 19 | font-size: var(--scify-cookies-accordion-btn-font-size); 20 | } 21 | } 22 | 23 | // Mobile devices (up to 767px) 24 | @media (max-width: 767px) { 25 | .scify-cookies-consent-banner { 26 | top: 0; 27 | bottom: auto; 28 | } 29 | .accordion-item { 30 | max-height: 30vh; // Adjust for mobile devices 31 | } 32 | } 33 | 34 | // Tablets (768px to 1023px) 35 | @media (min-width: 768px) and (max-width: 1023px) { 36 | .scify-cookies-consent-banner { 37 | top: 0; 38 | bottom: auto; 39 | } 40 | .accordion-item { 41 | max-height: 30vh; // Adjust for tablets 42 | } 43 | } 44 | 45 | // Laptops (1024px to 1439px) 46 | @media (min-width: 1024px) and (max-width: 1439px) { 47 | .scify-cookies-consent-banner { 48 | top: 0; 49 | bottom: auto; 50 | } 51 | .accordion-item { 52 | max-height: 35vh; // Adjust for laptops 53 | } 54 | } 55 | 56 | // Desktops (1440px and above) 57 | @media (min-width: 1440px) { 58 | .accordion-item { 59 | max-height: 45vh; // Default height for desktops 60 | } 61 | } 62 | 63 | .accordion-header { 64 | margin-bottom: 0; 65 | margin-top: 0; 66 | padding: var(--scify-cookies-accordion-header-padding); 67 | cursor: pointer; 68 | font-weight: bold; 69 | background-color: #f7f7f7; 70 | 71 | @media (max-width: 575.98px) { 72 | padding: 2px; 73 | } 74 | } 75 | 76 | .accordion-button { 77 | position: relative; 78 | display: flex; 79 | align-items: center; 80 | width: 100%; 81 | padding: 0; 82 | font-size: var(--scify-cookies-font-size-base); 83 | text-align: left; 84 | background-color: var(--scify-cookies-accordion-btn-collapsed-bg-color); 85 | color: var(--scify-cookies-accordion-btn-collapsed-text-color); 86 | border: 1px solid transparent; 87 | border-top-left-radius: var(--scify-cookies-border-radius); 88 | border-top-right-radius: var(--scify-cookies-border-radius); 89 | cursor: pointer; 90 | transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; 91 | 92 | // mobile 93 | @media (max-width: 575.98px) { 94 | padding: 0.3rem 0.75rem; 95 | } 96 | 97 | &:not(.collapsed) { 98 | color: var(--scify-cookies-accordion-btn-text-color); 99 | background-color: var(--scify-cookies-accordion-btn-bg-color); 100 | box-shadow: none; 101 | } 102 | 103 | &::after { 104 | flex-shrink: 0; 105 | width: 1.25rem; 106 | height: 1.25rem; 107 | margin-left: auto; 108 | content: ""; 109 | background: no-repeat center/50% url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); 110 | transform: rotate(0deg); 111 | transition: transform 0.2s ease-in-out; 112 | } 113 | 114 | &.collapsed::after { 115 | transform: rotate(90deg); 116 | } 117 | } 118 | 119 | .accordion-collapse { 120 | display: none; 121 | border-top: 1px solid var(--scify-cookies-accordion-border-color); 122 | 123 | &.show { 124 | display: block; 125 | } 126 | } 127 | 128 | .accordion-body { 129 | padding: 0; 130 | } 131 | } 132 | 133 | .cookies-external-page { 134 | .accordion-header { 135 | display: none; 136 | } 137 | } 138 | } 139 | -------------------------------------------------------------------------------- /resources/styles/form.scss: -------------------------------------------------------------------------------- 1 | #scify-cookies-consent-wrapper, #scify-cookie-policy-page { 2 | .form-check { 3 | position: relative; 4 | display: block; 5 | padding-left: 1.25rem; 6 | 7 | .form-check-input { 8 | float: left; 9 | margin-left: -1.25rem; 10 | width: var(--scify-cookies-checkbox-size); 11 | height: var(--scify-cookies-checkbox-size); 12 | border: 1px solid var(--scify-cookies-check-input-border-color); 13 | border-radius: var(--scify-cookies-border-radius); 14 | background-color: #fff; 15 | background-repeat: no-repeat; 16 | background-position: center; 17 | background-size: contain; 18 | appearance: none; 19 | -webkit-print-color-adjust: exact; 20 | color-adjust: exact; 21 | transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 22 | 23 | &[type='checkbox'] { 24 | border-radius: 1em; 25 | } 26 | 27 | &:checked { 28 | background-color: var(--scify-cookies-primary-color); 29 | border-color: var(--scify-cookies-primary-color); 30 | } 31 | 32 | &:focus { 33 | border-color: var(--scify-cookies-primary-color); 34 | outline: 0; 35 | box-shadow: 0 0 0 0.25rem rgba(var(--scify-cookies-primary-color), 0.25); 36 | } 37 | 38 | &:disabled { 39 | filter: none; 40 | opacity: .5; 41 | pointer-events: none; 42 | 43 | ~ .form-check-label { 44 | cursor: default; 45 | opacity: .5; 46 | } 47 | } 48 | } 49 | } 50 | 51 | .form-switch { 52 | padding-left: 2.5rem; 53 | display: flex; 54 | align-items: center; 55 | padding-top: 0.5rem; 56 | padding-bottom: 0.5rem; 57 | margin-bottom: 0; 58 | 59 | .form-check-input { 60 | width: 2em; 61 | height: 18px; 62 | margin-right: 10px; 63 | background-color: #adb5bd; 64 | border-radius: 1em; 65 | position: relative; 66 | transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 67 | --bs-form-switch-bg: none !important; // Removes Bootstrap background 68 | 69 | &:hover { 70 | cursor: pointer; 71 | } 72 | 73 | &::before { 74 | content: ""; 75 | position: absolute; 76 | top: 0.125em; 77 | left: 0.125em; 78 | width: 0.75em; 79 | height: 0.75em; 80 | border-radius: 0.75em; 81 | background-image: none !important; // Removes Bootstrap's background image 82 | background-color: #fff !important; 83 | transition: transform 0.15s ease-in-out; 84 | } 85 | 86 | &:checked::before { 87 | transform: translateX(1em); 88 | } 89 | 90 | &:checked { 91 | background-color: var(--scify-cookies-primary-color); 92 | --bs-form-switch-bg: none !important; 93 | background-image: none !important; // Ensures Bootstrap does not override the background 94 | } 95 | } 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /resources/styles/generic-rules.scss: -------------------------------------------------------------------------------- 1 | #scify-cookies-consent-wrapper, #scify-cookie-policy-page { 2 | .display-none { 3 | display: none !important; 4 | } 5 | 6 | .w-100 { 7 | width: 100% !important; 8 | } 9 | 10 | a { 11 | font-size: inherit; 12 | font-family: var(--scify-cookies-font-family), sans-serif; 13 | text-decoration: none; 14 | color: var(--scify-cookies-link-color); 15 | 16 | &:hover { 17 | color: var(--scify-cookies-link-hover-color); 18 | } 19 | 20 | svg { 21 | fill: currentColor; 22 | } 23 | 24 | .exit-icon { 25 | width: 20px; 26 | height: 20px; 27 | } 28 | } 29 | 30 | button { 31 | font-family: var(--scify-cookies-font-family), sans-serif; 32 | } 33 | 34 | button, input, optgroup, select, textarea { 35 | font-family: inherit; 36 | font-size: inherit; 37 | line-height: inherit; 38 | margin: 0; 39 | } 40 | 41 | .container { 42 | width: auto; 43 | padding-right: var(--scify-cookies-gutter); 44 | padding-left: var(--scify-cookies-gutter); 45 | margin-right: auto; 46 | margin-left: auto; 47 | } 48 | 49 | .text-center { 50 | text-align: center; 51 | } 52 | 53 | .mx-auto { 54 | margin-right: auto; 55 | margin-left: auto; 56 | } 57 | 58 | .row { 59 | display: flex; 60 | flex-wrap: wrap; 61 | margin-right: calc(var(--scify-cookies-gutter) / -2); 62 | margin-left: calc(var(--scify-cookies-gutter) / -2); 63 | align-items: center; 64 | justify-content: start; 65 | } 66 | 67 | .g-0 { 68 | margin-right: 0; 69 | margin-left: 0; 70 | padding-right: 0; 71 | padding-left: 0; 72 | } 73 | 74 | .col { 75 | flex: 1; 76 | padding: 0 15px; 77 | box-sizing: border-box; 78 | } 79 | 80 | .col-6 { 81 | width: 50%; 82 | padding: 0 15px; 83 | box-sizing: border-box; 84 | } 85 | 86 | .col-lg-9 { 87 | flex: 0 0 auto; 88 | width: 75%; 89 | padding: 0 15px; 90 | box-sizing: border-box; 91 | } 92 | 93 | .p-5 { 94 | padding: 1.25rem !important; 95 | } 96 | 97 | .mb-3 { 98 | margin-bottom: 1rem !important; 99 | } 100 | 101 | .mb-4 { 102 | margin-bottom: 1.5rem !important; 103 | } 104 | 105 | .my-3 { 106 | margin-top: 1rem !important; 107 | margin-bottom: 1rem !important; 108 | } 109 | 110 | .text-lg { 111 | font-size: var(--scify-cookies-font-size-lg); 112 | } 113 | 114 | @media (max-width: 991px) { 115 | .col-sm-12 { 116 | flex: 0 0 auto; 117 | width: 100%; 118 | padding: 0; 119 | } 120 | } 121 | 122 | @media (min-width: 992px) { 123 | .col-lg-4 { 124 | flex: 0 0 auto; 125 | width: 33.333333%; 126 | padding: 2px 6px; 127 | box-sizing: border-box; 128 | } 129 | } 130 | 131 | .mt-3 { 132 | margin-top: 1rem !important; 133 | } 134 | 135 | .h5 { 136 | font-size: var(--scify-cookies-h5-font-size); 137 | } 138 | 139 | .small { 140 | font-size: var(--scify-cookies-font-size-small); 141 | } 142 | 143 | .m-0 { 144 | margin: 0 !important; 145 | } 146 | 147 | .pt-0 { 148 | padding-top: 0 !important; 149 | } 150 | 151 | .pb-2 { 152 | padding-bottom: 0.5rem !important; 153 | } 154 | 155 | .pl-0 { 156 | padding-left: 0 !important; 157 | } 158 | 159 | .pr-0 { 160 | padding-right: 0 !important; 161 | } 162 | 163 | .px-5 { 164 | padding-left: 1.25rem !important; 165 | padding-right: 1.25rem !important; 166 | } 167 | 168 | dl { 169 | margin-top: 0; 170 | margin-bottom: 0; 171 | 172 | @media (max-width: 575.98px) { 173 | margin-bottom: 0; 174 | } 175 | 176 | dt { 177 | font-weight: bold; 178 | } 179 | 180 | dd { 181 | margin-bottom: .25rem; 182 | margin-left: 0; 183 | 184 | @media (max-width: 575.98px) { 185 | &:last-child { 186 | margin-bottom: 0; 187 | } 188 | } 189 | } 190 | } 191 | } 192 | -------------------------------------------------------------------------------- /resources/styles/scify-cookie-policy-page.scss: -------------------------------------------------------------------------------- 1 | 2 | #scify-cookie-policy-page { 3 | .btn { 4 | font-family: var(--scify-cookies-font-family), sans-serif; 5 | display: inline-block; 6 | font-weight: 400; 7 | text-align: center; 8 | white-space: nowrap; 9 | vertical-align: middle; 10 | user-select: none; 11 | border: 1px solid transparent; 12 | padding: 0.375rem 0.75rem; 13 | font-size: 1rem; 14 | line-height: 1.5; 15 | border-radius: 0.25rem; 16 | transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 17 | 18 | &:hover { 19 | cursor: pointer; 20 | } 21 | } 22 | 23 | .btn-secondary { 24 | color: #fff; 25 | background-color: #6c757d; 26 | border-color: #6c757d; 27 | } 28 | 29 | .btn-secondary:hover { 30 | color: #fff; 31 | background-color: #5a6268; 32 | border-color: #545b62; 33 | } 34 | 35 | .text-lg { 36 | font-size: 1.25rem; 37 | } 38 | 39 | .close-icon { 40 | margin-right: 0.5rem; 41 | vertical-align: middle; 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /resources/styles/styles.scss: -------------------------------------------------------------------------------- 1 | @use 'generic-rules'; 2 | @use "form"; 3 | @use "accordion"; 4 | @import 'scify-cookie-policy-page'; 5 | 6 | #scify-cookies-consent-wrapper, #scify-cookie-policy-page { 7 | 8 | .cookies-external-page { 9 | min-height: 100vh; 10 | width: auto; 11 | max-width: 100%; 12 | 13 | .cookies-policy-wrapper { 14 | min-height: auto; 15 | max-width: 100%; 16 | margin: 0 auto; 17 | position: relative !important; 18 | width: 100% !important; 19 | 20 | .accordion .accordion-item .accordion-button { 21 | font-size: var(--scify-cookies-font-size-base); 22 | } 23 | } 24 | 25 | .scify-cookies-consent-banner { 26 | padding: 2rem 1rem; 27 | max-width: 100%; 28 | width: 100%; 29 | margin: 0 auto; 30 | 31 | // cancel bottom and left properties 32 | bottom: auto; 33 | left: auto; 34 | border: none; 35 | box-shadow: none; 36 | 37 | .accordion-item.cookies-consent-category-item { 38 | border: none; 39 | border-bottom: 1px solid var(--scify-cookies-accordion-border-color); 40 | } 41 | 42 | .btn { 43 | padding: var(--scify-cookies-btn-padding-lg); 44 | } 45 | } 46 | 47 | .cookies-policy-wrapper { 48 | padding-bottom: 40px; 49 | } 50 | } 51 | 52 | // Cookie Success Message 53 | .cookie-success-message { 54 | position: fixed; 55 | bottom: var(--scify-cookies-gutter); 56 | right: var(--scify-cookies-gutter); 57 | z-index: 100000000; 58 | padding: var(--scify-cookies-success-message-padding); 59 | margin-bottom: var(--scify-cookies-gutter); 60 | border: 1px solid var(--scify-cookies-success-message-border-color); 61 | border-radius: var(--scify-cookies-border-radius); 62 | background-color: var(--scify-cookies-success-message-bg-color); 63 | color: var(--scify-cookies-success-message-text-color); 64 | box-shadow: var(--scify-cookies-success-message-box-shadow); 65 | transition: opacity 0.15s linear; 66 | font-size: var(--scify-cookies-font-size-base); 67 | 68 | &.show { 69 | opacity: 1; 70 | transform: translateY(0); 71 | transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; 72 | } 73 | } 74 | 75 | .scify-cookies-consent-banner { 76 | 77 | color: var(--scify-cookies-text-color); 78 | font-family: var(--scify-cookies-font-family), sans-serif; 79 | font-size: var(--scify-cookies-font-size-base); 80 | font-weight: 400; 81 | line-height: 1.6; 82 | padding: 25px; 83 | background-color: var(--scify-cookies-bg-color); 84 | border: var(--scify-cookies-border-width) solid var(--scify-cookies-border-color); 85 | border-radius: var(--scify-cookies-banner-border-radius); 86 | box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 87 | z-index: 1000000; 88 | width: 90%; // Default width for small screens 89 | max-width: 600px; // Maximum width for small screens 90 | 91 | &::backdrop { 92 | background: black; 93 | opacity: .3; 94 | } 95 | 96 | @media (min-width: 768px) { 97 | width: 60%; // Width for medium screens 98 | } 99 | 100 | @media (min-width: 1200px) { 101 | width: 45%; // Width for large screens 102 | } 103 | 104 | &.custom-dialog { 105 | height: auto; 106 | max-height: 80vh; 107 | overflow-y: auto; 108 | left: var(--scify-cookies-banner-left); 109 | bottom: var(--scify-cookies-banner-bottom); 110 | margin: 0; 111 | 112 | @media (max-width: 991px) { 113 | left: unset; 114 | margin: 0 auto; 115 | } 116 | } 117 | 118 | .btn { 119 | display: inline-block; 120 | line-height: 1.5; 121 | color: var(--scify-cookies-btn-text-color); 122 | background-color: var(--scify-cookies-btn-bg-color); 123 | text-align: center; 124 | text-decoration: none; 125 | vertical-align: middle; 126 | cursor: pointer; 127 | user-select: none; 128 | border: var(--scify-cookies-btn-border-width) solid var(--scify-cookies-btn-border-color); 129 | padding: var(--scify-cookies-btn-padding); 130 | font-size: var(--scify-cookies-btn-text-font-size); 131 | font-weight: 500; 132 | border-radius: var(--scify-cookies-btn-border-radius); 133 | transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 134 | white-space: nowrap; 135 | height: auto; 136 | text-transform: none; 137 | 138 | &:hover { 139 | background-color: var(--scify-cookies-primary-hover-color); 140 | box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.15); 141 | cursor: pointer; 142 | border-color: var(--scify-cookies-btn-hover-border-color); 143 | color: var(--scify-cookies-btn-hover-text-color); 144 | } 145 | 146 | &:focus { 147 | outline: 0; 148 | box-shadow: 0 0 3px var(--scify-cookies-btn-border-color), 0 0 3px var(--scify-cookies-btn-border-color); 149 | -webkit-box-shadow: 0 0 3px var(--scify-cookies-btn-border-color), 0 0 3px var(--scify-cookies-btn-border-color); 150 | } 151 | } 152 | 153 | .list-group { 154 | display: flex; 155 | flex-direction: column; 156 | padding-left: 0; 157 | margin-bottom: 0; 158 | 159 | .list-group-item { 160 | position: relative; 161 | display: block; 162 | padding: 0.75rem 1.25rem; 163 | background-color: #fff; 164 | border: none; 165 | border-bottom: 1px solid rgba(0, 0, 0, 0.125); 166 | 167 | @media (max-width: 575.98px) { 168 | padding: 0.25rem 0.5rem; 169 | } 170 | 171 | &:last-child { 172 | border-bottom: none; 173 | } 174 | } 175 | } 176 | 177 | 178 | code { 179 | font-size: 87.5%; 180 | color: var(--scify-cookies-name-text-color); 181 | word-wrap: break-word; 182 | } 183 | 184 | .cookie-actions { 185 | margin-top: 10px; 186 | width: 100%; 187 | text-align: center; 188 | 189 | .row { 190 | margin: 0; 191 | } 192 | } 193 | 194 | #cookie-consent-title { 195 | font-weight: 700; 196 | font-size: 21px; 197 | line-height: 24px; 198 | margin: 0 0 12px 0; 199 | } 200 | 201 | position: fixed; 202 | display: inline-block; 203 | overflow: hidden; 204 | 205 | .scify-cookies-container { 206 | overflow-y: auto; 207 | 208 | .always-active { 209 | color: var(--scify-cookies-always-active-message-color); 210 | margin-left: 5px; 211 | } 212 | } 213 | 214 | @media (max-width: 991px) { 215 | .cookie-actions { 216 | 217 | button#customise-cookies, button#reject-all-cookies, button#accept-selected-cookies { 218 | border-bottom: 0; 219 | } 220 | 221 | button#accept-all-cookies { 222 | border-top: 0; 223 | } 224 | } 225 | } 226 | 227 | 228 | .policy-link { 229 | font-size: small; 230 | text-decoration: underline; 231 | } 232 | } 233 | } 234 | 235 | #scify-cookies-consent-wrapper.scify-cookies-consent-wrapper-page { 236 | .scify-cookies-consent-banner { 237 | margin: 0 auto; 238 | position: relative; 239 | width: auto; 240 | max-width: 100%; 241 | } 242 | } 243 | 244 | #scify-cookie-consent-floating-button { 245 | position: fixed; 246 | bottom: var(--scify-cookies-floating-btn-bottom); 247 | left: var(--scify-cookies-floating-btn-left); 248 | z-index: 1000000; 249 | background-color: var(--scify-cookies-floating-btn-bg-color); 250 | color: var(--scify-cookies-floating-btn-text-color); 251 | border: var(--scify-cookies-floating-btn-border-width) solid var(--scify-cookies-floating-btn-border-color); 252 | border-radius: var(--scify-cookies-floating-btn-border-radius); 253 | padding: var(--scify-cookies-floating-btn-padding); 254 | height: var(--scify-cookies-floating-btn-height); 255 | width: var(--scify-cookies-floating-btn-width); 256 | 257 | &:hover { 258 | cursor: pointer; 259 | background-color: var(--scify-cookies-floating-btn-hover-bg-color); 260 | color: var(--scify-cookies-floating-btn-hover-text-color); 261 | } 262 | 263 | img, svg { 264 | width: 100%; 265 | height: 100%; 266 | } 267 | 268 | svg { 269 | stroke: currentColor; 270 | } 271 | } 272 | 273 | body:has(dialog.scify-cookies-consent-banner[open]) { 274 | // If the modal is open, then do not overflow main page: 275 | // (removes scrolling from main page): 276 | overflow: hidden; 277 | // Bootstrap only: mimics its behavior for its own modals 278 | // This is helpful when using containers on main page. 279 | // Can be ommited. 280 | padding-right: 0; 281 | } 282 | 283 | dialog.scify-cookies-consent-banner { 284 | position: fixed; 285 | top: 50%; 286 | left: 50%; 287 | transform: translate(-50%, -50%); 288 | margin: 0; // Remove any default margin 289 | overflow: auto !important; // Ensure content is scrollable if needed 290 | max-height: 90vh; // Prevent overflow on smaller screens 291 | } 292 | -------------------------------------------------------------------------------- /resources/views/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scify/laravel-cookie-guard/a2e626ce8b0f7e47b55acbc12081dbcc59ec6d7d/resources/views/.gitkeep -------------------------------------------------------------------------------- /resources/views/components/_cookie-categories.blade.php: -------------------------------------------------------------------------------- 1 | @php 2 | $alwaysOpen = $alwaysOpen ?? false; 3 | $cookieCategories = config('cookies_consent.cookies'); 4 | $categoriesCollapsedByDefault = config('cookies_consent.categories_collapsed_by_default', false); 5 | @endphp 6 | 7 |
8 | @foreach ($cookieCategories as $category => $cookies) 9 |
10 | 12 | 18 |
19 | 67 | @endforeach 68 |
69 | -------------------------------------------------------------------------------- /resources/views/components/cookie-icon.blade.php: -------------------------------------------------------------------------------- 1 | 4 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/components/laravel-cookie-guard-page.blade.php: -------------------------------------------------------------------------------- 1 | 92 | -------------------------------------------------------------------------------- /resources/views/components/laravel-cookie-guard-scripts.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /resources/views/components/laravel-cookie-guard.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 82 | @if (config('cookies_consent.display_floating_button')) 83 | 87 | @endif 88 | -------------------------------------------------------------------------------- /resources/views/pages/cookie-policy-default-page.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | {{ __('cookies_consent::messages.cookie_policy_title') }} 8 | @include('cookies_consent::components.laravel-cookie-guard-scripts') 9 | 10 | 11 | 12 |
13 |
14 |
15 | 31 |
32 |
33 |
34 |
35 | @include('cookies_consent::components.laravel-cookie-guard-page') 36 |
37 |
38 |
39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- 1 | setLocale($locale); 17 | 18 | return view('cookies_consent::pages.cookie-policy-default-page'); 19 | }); 20 | 21 | Route::post('/guard-settings/save', [CookiesController::class, 'save_cookies_consent_selection']); 22 | -------------------------------------------------------------------------------- /src/Facades/LaravelCookiesConsent.php: -------------------------------------------------------------------------------- 1 | all(); 26 | // store the JSON in a cookie 27 | Cookie::queue($this->get_cookie_prefix() . 'cookies_consent_selection', json_encode($data), (self::$MINUTES_IN_A_DAY * config('cookies_consent.cookie_lifetime'))); 28 | 29 | $locale = $request->get('locale'); 30 | 31 | // get the message for the specific locale 32 | $message = __('cookies_consent::messages.selection_saved_message', [], $locale); 33 | 34 | return response()->json(['message' => $message, 'data' => $data, 'success' => true]); 35 | } 36 | 37 | private function get_cookie_prefix(): string { 38 | return config('cookies_consent.cookie_prefix'); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/LaravelCookiesConsent.php: -------------------------------------------------------------------------------- 1 | loadTranslationsFrom($publishedPathResources, 'cookies_consent'); 19 | } elseif (is_dir($publishedPathLang)) { 20 | $this->loadTranslationsFrom($publishedPathLang, 'cookies_consent'); 21 | } else { 22 | $this->loadTranslationsFrom($packagePath, 'cookies_consent'); 23 | } 24 | 25 | $this->loadViewsFrom(__DIR__ . '/../resources/views', 'cookies_consent'); 26 | 27 | $this->publishes([ 28 | __DIR__ . '/../resources/views/components/' => resource_path('views/vendor/scify/laravel-cookie-guard/components'), 29 | ], 'cookies-consent-components'); 30 | 31 | $this->publishes([ 32 | __DIR__ . '/../public' => public_path('vendor/scify/laravel-cookie-guard'), 33 | ], 'cookies-consent-public'); 34 | 35 | $this->publishes([ 36 | __DIR__ . '/../config/cookies_consent.php' => config_path('cookies_consent.php'), 37 | ], 'cookies-consent-config'); 38 | 39 | $this->publishes([ 40 | __DIR__ . '/../lang' => app()->langPath() . '/vendor/scify/laravel-cookie-guard', 41 | ], 'cookies-consent-translations'); 42 | 43 | $this->loadRoutesFrom(__DIR__ . '/../routes/web.php'); 44 | 45 | Blade::component('laravel-cookie-guard', \SciFY\LaravelCookiesConsent\View\Components\LaravelCookiesConsent::class); 46 | Blade::component('laravel-cookie-guard-page', LaravelCookiesConsentPage::class); 47 | Blade::component('laravel-cookie-guard-scripts', LaravelCookiesConsentScripts::class); 48 | } 49 | 50 | public function register() { 51 | // Ensure the translation service is registered 52 | $this->app->register(TranslationServiceProvider::class); 53 | $this->mergeConfigFrom( 54 | __DIR__ . '/../config/cookies_consent.php', 'cookies_consent' 55 | ); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/View/Components/LaravelCookiesConsent.php: -------------------------------------------------------------------------------- 1 | heading = $heading; 13 | $this->accordionHeading = $accordionHeading; 14 | } 15 | 16 | public function render() { 17 | return view('cookies_consent::components.laravel-cookie-guard'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/View/Components/LaravelCookiesConsentPage.php: -------------------------------------------------------------------------------- 1 |